
    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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00000{font-family:ff1_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;}
.fc0_c00000{color:rgb(128,128,128);}
.fs0_c00000{font-size:48.000000px;}
.y0_c00000{bottom:0.000000px;}
.y2_c00000{bottom:3.105000px;}
.y1_c00000{bottom:7.228357px;}
.h2_c00000{height:13.200074px;}
.h3_c00000{height:43.804688px;}
.h1_c00000{height:843.750000px;}
.h0_c00000{height:844.050000px;}
.w2_c00000{width:104.875500px;}
.w0_c00000{width:638.850000px;}
.w1_c00000{width:639.000000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:271.239258px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs0_c00000{font-size:42.666667pt;}
.y0_c00000{bottom:0.000000pt;}
.y2_c00000{bottom:2.760000pt;}
.y1_c00000{bottom:6.425206pt;}
.h2_c00000{height:11.733399pt;}
.h3_c00000{height:38.937500pt;}
.h1_c00000{height:750.000000pt;}
.h0_c00000{height:750.266667pt;}
.w2_c00000{width:93.222667pt;}
.w0_c00000{width:567.866667pt;}
.w1_c00000{width:568.000000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:241.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00001{font-family:ff1_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;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:rgb(128,128,128);}
.fs0_c00001{font-size:48.000000px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:3.105000px;}
.y1_c00001{bottom:7.228355px;}
.h2_c00001{height:13.200074px;}
.h3_c00001{height:43.804688px;}
.h0_c00001{height:838.875000px;}
.h1_c00001{height:839.250000px;}
.w1_c00001{width:104.875500px;}
.w0_c00001{width:624.000000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:263.814240px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:42.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:2.760000pt;}
.y1_c00001{bottom:6.425204pt;}
.h2_c00001{height:11.733399pt;}
.h3_c00001{height:38.937500pt;}
.h0_c00001{height:745.666667pt;}
.h1_c00001{height:746.000000pt;}
.w1_c00001{width:93.222667pt;}
.w0_c00001{width:554.666667pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:234.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_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_1ac50a4fc0ea4dbceb48272e.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.568848;font-style:normal;font-weight:normal;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_1c804b7684200ace8172af53.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_c927e7e5983ab6d34acb8782.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_a9099e2ce343761ec4d46747.woff2')format("woff");}.ff4_c00002{font-family:ff4_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:ff5_c00002;src:url('chunks/assets/font_ead2978f9754fd5469967af1.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00002;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00002{font-family:ff6_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;}
.ls0_c00002{letter-spacing:0.000000px;}
.ls3_c00002{letter-spacing:3.000000px;}
.ls5_c00002{letter-spacing:9.000000px;}
.ls1_c00002{letter-spacing:12.000000px;}
.ls4_c00002{letter-spacing:30.000000px;}
.ls2_c00002{letter-spacing:36.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;}
}
.ws1_c00002{word-spacing:-92.523000px;}
.ws2_c00002{word-spacing:-74.862000px;}
.ws0_c00002{word-spacing:-38.862000px;}
.ws3_c00002{word-spacing:-26.250000px;}
.ws4_c00002{word-spacing:0.000000px;}
._1b_c00002{margin-left:-21.321000px;}
._1c_c00002{margin-left:-19.665000px;}
._1d_c00002{margin-left:-17.388000px;}
._8_c00002{margin-left:-15.453000px;}
._7_c00002{margin-left:-14.382000px;}
._9_c00002{margin-left:-9.945000px;}
._21_c00002{margin-left:-5.889000px;}
._1e_c00002{margin-left:-4.668000px;}
._0_c00002{margin-left:-2.295000px;}
._1_c00002{margin-left:-1.224000px;}
._16_c00002{width:1.104000px;}
._3_c00002{width:2.898000px;}
._2_c00002{width:4.347000px;}
._24_c00002{width:5.373000px;}
._5_c00002{width:6.426000px;}
._4_c00002{width:7.650000px;}
._23_c00002{width:8.877000px;}
._28_c00002{width:10.074000px;}
._a_c00002{width:11.109000px;}
._18_c00002{width:12.144000px;}
._b_c00002{width:13.800000px;}
._11_c00002{width:15.042000px;}
._d_c00002{width:17.043000px;}
._25_c00002{width:18.597000px;}
._22_c00002{width:20.631000px;}
._14_c00002{width:21.942000px;}
._f_c00002{width:23.598000px;}
._13_c00002{width:24.840000px;}
._10_c00002{width:27.186000px;}
._6_c00002{width:28.947000px;}
._c_c00002{width:30.429000px;}
._1f_c00002{width:31.704000px;}
._e_c00002{width:33.258000px;}
._12_c00002{width:35.052000px;}
._17_c00002{width:36.294000px;}
._1a_c00002{width:38.040000px;}
._19_c00002{width:51.303000px;}
._15_c00002{width:52.647000px;}
._20_c00002{width:55.683000px;}
._26_c00002{width:63.396000px;}
._29_c00002{width:68.379000px;}
._27_c00002{width:70.275000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(128,128,128);}
.fc0_c00002{color:rgb(0,0,0);}
.fs5_c00002{font-size:48.000000px;}
.fs3_c00002{font-size:54.000000px;}
.fs2_c00002{font-size:69.000000px;}
.fs4_c00002{font-size:75.000000px;}
.fs0_c00002{font-size:153.000000px;}
.fs1_c00002{font-size:207.000000px;}
.y0_c00002{bottom:0.000000px;}
.y15_c00002{bottom:3.105000px;}
.y13_c00002{bottom:7.065000px;}
.y14_c00002{bottom:7.228371px;}
.y12_c00002{bottom:94.815000px;}
.y11_c00002{bottom:124.965000px;}
.y10_c00002{bottom:322.665000px;}
.yf_c00002{bottom:347.715000px;}
.ye_c00002{bottom:372.915000px;}
.yd_c00002{bottom:397.665000px;}
.yc_c00002{bottom:428.265000px;}
.yb_c00002{bottom:454.065000px;}
.ya_c00002{bottom:497.865000px;}
.y9_c00002{bottom:522.915000px;}
.y8_c00002{bottom:550.215000px;}
.y7_c00002{bottom:579.165000px;}
.y6_c00002{bottom:606.465000px;}
.y5_c00002{bottom:635.565000px;}
.y4_c00002{bottom:662.265000px;}
.y3_c00002{bottom:688.215000px;}
.y2_c00002{bottom:726.315000px;}
.y1_c00002{bottom:774.915000px;}
.h8_c00002{height:13.200074px;}
.h9_c00002{height:43.804688px;}
.h6_c00002{height:63.202148px;}
.h5_c00002{height:67.719727px;}
.h4_c00002{height:87.361816px;}
.h7_c00002{height:94.958496px;}
.h2_c00002{height:193.715332px;}
.h3_c00002{height:216.936000px;}
.h1_c00002{height:836.250000px;}
.h0_c00002{height:836.475000px;}
.w1_c00002{width:104.875500px;}
.w0_c00002{width:580.500000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:17.850000px;}
.x4_c00002{left:21.300000px;}
.x8_c00002{left:23.400000px;}
.x6_c00002{left:49.350000px;}
.xc_c00002{left:58.800000px;}
.x3_c00002{left:65.250000px;}
.xb_c00002{left:72.900000px;}
.x10_c00002{left:76.500000px;}
.xa_c00002{left:84.750000px;}
.xd_c00002{left:111.450000px;}
.x1_c00002{left:112.950000px;}
.x9_c00002{left:134.700000px;}
.x5_c00002{left:138.450000px;}
.xf_c00002{left:139.650000px;}
.x7_c00002{left:143.400000px;}
.xe_c00002{left:206.100000px;}
.x11_c00002{left:227.100000px;}
.x12_c00002{left:242.064240px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ls3_c00002{letter-spacing:2.666667pt;}
.ls5_c00002{letter-spacing:8.000000pt;}
.ls1_c00002{letter-spacing:10.666667pt;}
.ls4_c00002{letter-spacing:26.666667pt;}
.ls2_c00002{letter-spacing:32.000000pt;}
.ws1_c00002{word-spacing:-82.242667pt;}
.ws2_c00002{word-spacing:-66.544000pt;}
.ws0_c00002{word-spacing:-34.544000pt;}
.ws3_c00002{word-spacing:-23.333333pt;}
.ws4_c00002{word-spacing:0.000000pt;}
._1b_c00002{margin-left:-18.952000pt;}
._1c_c00002{margin-left:-17.480000pt;}
._1d_c00002{margin-left:-15.456000pt;}
._8_c00002{margin-left:-13.736000pt;}
._7_c00002{margin-left:-12.784000pt;}
._9_c00002{margin-left:-8.840000pt;}
._21_c00002{margin-left:-5.234667pt;}
._1e_c00002{margin-left:-4.149333pt;}
._0_c00002{margin-left:-2.040000pt;}
._1_c00002{margin-left:-1.088000pt;}
._16_c00002{width:0.981333pt;}
._3_c00002{width:2.576000pt;}
._2_c00002{width:3.864000pt;}
._24_c00002{width:4.776000pt;}
._5_c00002{width:5.712000pt;}
._4_c00002{width:6.800000pt;}
._23_c00002{width:7.890667pt;}
._28_c00002{width:8.954667pt;}
._a_c00002{width:9.874667pt;}
._18_c00002{width:10.794667pt;}
._b_c00002{width:12.266667pt;}
._11_c00002{width:13.370667pt;}
._d_c00002{width:15.149333pt;}
._25_c00002{width:16.530667pt;}
._22_c00002{width:18.338667pt;}
._14_c00002{width:19.504000pt;}
._f_c00002{width:20.976000pt;}
._13_c00002{width:22.080000pt;}
._10_c00002{width:24.165333pt;}
._6_c00002{width:25.730667pt;}
._c_c00002{width:27.048000pt;}
._1f_c00002{width:28.181333pt;}
._e_c00002{width:29.562667pt;}
._12_c00002{width:31.157333pt;}
._17_c00002{width:32.261333pt;}
._1a_c00002{width:33.813333pt;}
._19_c00002{width:45.602667pt;}
._15_c00002{width:46.797333pt;}
._20_c00002{width:49.496000pt;}
._26_c00002{width:56.352000pt;}
._29_c00002{width:60.781333pt;}
._27_c00002{width:62.466667pt;}
.fs5_c00002{font-size:42.666667pt;}
.fs3_c00002{font-size:48.000000pt;}
.fs2_c00002{font-size:61.333333pt;}
.fs4_c00002{font-size:66.666667pt;}
.fs0_c00002{font-size:136.000000pt;}
.fs1_c00002{font-size:184.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y15_c00002{bottom:2.760000pt;}
.y13_c00002{bottom:6.280000pt;}
.y14_c00002{bottom:6.425219pt;}
.y12_c00002{bottom:84.280000pt;}
.y11_c00002{bottom:111.080000pt;}
.y10_c00002{bottom:286.813333pt;}
.yf_c00002{bottom:309.080000pt;}
.ye_c00002{bottom:331.480000pt;}
.yd_c00002{bottom:353.480000pt;}
.yc_c00002{bottom:380.680000pt;}
.yb_c00002{bottom:403.613333pt;}
.ya_c00002{bottom:442.546667pt;}
.y9_c00002{bottom:464.813333pt;}
.y8_c00002{bottom:489.080000pt;}
.y7_c00002{bottom:514.813333pt;}
.y6_c00002{bottom:539.080000pt;}
.y5_c00002{bottom:564.946667pt;}
.y4_c00002{bottom:588.680000pt;}
.y3_c00002{bottom:611.746667pt;}
.y2_c00002{bottom:645.613333pt;}
.y1_c00002{bottom:688.813333pt;}
.h8_c00002{height:11.733399pt;}
.h9_c00002{height:38.937500pt;}
.h6_c00002{height:56.179688pt;}
.h5_c00002{height:60.195312pt;}
.h4_c00002{height:77.654948pt;}
.h7_c00002{height:84.407552pt;}
.h2_c00002{height:172.191406pt;}
.h3_c00002{height:192.832000pt;}
.h1_c00002{height:743.333333pt;}
.h0_c00002{height:743.533333pt;}
.w1_c00002{width:93.222667pt;}
.w0_c00002{width:516.000000pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:15.866667pt;}
.x4_c00002{left:18.933333pt;}
.x8_c00002{left:20.800000pt;}
.x6_c00002{left:43.866667pt;}
.xc_c00002{left:52.266667pt;}
.x3_c00002{left:58.000000pt;}
.xb_c00002{left:64.800000pt;}
.x10_c00002{left:68.000000pt;}
.xa_c00002{left:75.333333pt;}
.xd_c00002{left:99.066667pt;}
.x1_c00002{left:100.400000pt;}
.x9_c00002{left:119.733333pt;}
.x5_c00002{left:123.066667pt;}
.xf_c00002{left:124.133333pt;}
.x7_c00002{left:127.466667pt;}
.xe_c00002{left:183.200000pt;}
.x11_c00002{left:201.866667pt;}
.x12_c00002{left:215.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_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_db6c6efa6bc7d1423e725c73.woff2')format("woff");}.ff1_c00003{font-family:ff1_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:ff2_c00003;src:url('chunks/assets/font_e6838c30615dbaf48011feba.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.480469;font-style:normal;font-weight:normal;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_a9f0ff53907f7d6e72170d5a.woff2')format("woff");}.ff3_c00003{font-family:ff3_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:ff4_c00003;src:url('chunks/assets/font_545f7577766b6ae5afe04f57.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_c1f0870702b658ac1ba3daa6.woff2')format("woff");}.ff5_c00003{font-family:ff5_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:ff6_c00003;src:url('chunks/assets/font_48ef115db246e20d73a6b76e.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00003;src:url('chunks/assets/font_b6c23c706dea1e63c90a0e37.woff2')format("woff");}.ff7_c00003{font-family:ff7_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:ff8_c00003;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00003{font-family:ff8_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);}
.v0_c00003{vertical-align:0.000000px;}
.ls9_c00003{letter-spacing:0.000000px;}
.lsa_c00003{letter-spacing:3.000000px;}
.ls4_c00003{letter-spacing:11.400000px;}
.lsb_c00003{letter-spacing:15.000000px;}
.ls7_c00003{letter-spacing:15.033000px;}
.ls3_c00003{letter-spacing:18.600000px;}
.ls1_c00003{letter-spacing:19.800000px;}
.ls0_c00003{letter-spacing:21.618000px;}
.ls8_c00003{letter-spacing:23.571000px;}
.ls6_c00003{letter-spacing:27.600000px;}
.ls2_c00003{letter-spacing:41.400000px;}
.lsc_c00003{letter-spacing:69.000000px;}
.ls5_c00003{letter-spacing:113.901000px;}
.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;}
}
.ws8_c00003{word-spacing:-85.629000px;}
.ws7_c00003{word-spacing:-59.022000px;}
.ws4_c00003{word-spacing:-48.126000px;}
.wsa_c00003{word-spacing:-44.988000px;}
.wsc_c00003{word-spacing:-30.636000px;}
.ws2_c00003{word-spacing:-27.420000px;}
.ws5_c00003{word-spacing:-23.755200px;}
.ws6_c00003{word-spacing:-19.629000px;}
.ws1_c00003{word-spacing:-16.629000px;}
.ws3_c00003{word-spacing:-15.069600px;}
.wsb_c00003{word-spacing:-0.345000px;}
.wsd_c00003{word-spacing:0.000000px;}
.ws0_c00003{word-spacing:1.188000px;}
.ws9_c00003{word-spacing:15.690000px;}
._23_c00003{margin-left:-73.791000px;}
._17_c00003{margin-left:-46.494000px;}
._3_c00003{margin-left:-38.394000px;}
._21_c00003{margin-left:-31.800000px;}
._22_c00003{margin-left:-17.448000px;}
._35_c00003{margin-left:-15.726000px;}
._36_c00003{margin-left:-14.199000px;}
._9_c00003{margin-left:-12.690000px;}
._3a_c00003{margin-left:-11.493000px;}
._1b_c00003{margin-left:-9.597000px;}
._4_c00003{margin-left:-8.424000px;}
._0_c00003{margin-left:-7.398000px;}
._3c_c00003{margin-left:-5.997000px;}
._1_c00003{margin-left:-4.482000px;}
._1e_c00003{margin-left:-3.033000px;}
._20_c00003{margin-left:-1.638000px;}
._1f_c00003{width:1.011000px;}
._30_c00003{width:2.937000px;}
._a_c00003{width:4.374000px;}
._b_c00003{width:6.102000px;}
._15_c00003{width:7.659000px;}
._31_c00003{width:9.012000px;}
._f_c00003{width:10.074000px;}
._c_c00003{width:11.598000px;}
._1a_c00003{width:12.972000px;}
._13_c00003{width:14.766000px;}
._8_c00003{width:15.768000px;}
._32_c00003{width:18.609000px;}
._7_c00003{width:20.034000px;}
._d_c00003{width:21.486000px;}
._2c_c00003{width:22.641000px;}
._12_c00003{width:23.754000px;}
._10_c00003{width:25.185000px;}
._11_c00003{width:26.547000px;}
._e_c00003{width:28.965000px;}
._1c_c00003{width:30.028800px;}
._6_c00003{width:31.050000px;}
._5_c00003{width:33.696000px;}
._14_c00003{width:37.674000px;}
._19_c00003{width:39.330000px;}
._33_c00003{width:41.448000px;}
._2a_c00003{width:42.918000px;}
._2f_c00003{width:45.264000px;}
._2e_c00003{width:47.265000px;}
._2d_c00003{width:51.198000px;}
._16_c00003{width:52.647000px;}
._29_c00003{width:54.510000px;}
._1d_c00003{width:56.587800px;}
._34_c00003{width:66.720000px;}
._25_c00003{width:77.271000px;}
._26_c00003{width:84.348000px;}
._28_c00003{width:94.806000px;}
._27_c00003{width:96.411000px;}
._2b_c00003{width:104.742000px;}
._3d_c00003{width:129.201000px;}
._18_c00003{width:130.680000px;}
._37_c00003{width:188.295000px;}
._3b_c00003{width:239.322000px;}
._2_c00003{width:250.722000px;}
._24_c00003{width:264.477000px;}
._38_c00003{width:294.522000px;}
._39_c00003{width:313.389000px;}
.fc2_c00003{color:transparent;}
.fc1_c00003{color:rgb(128,128,128);}
.fc0_c00003{color:rgb(0,0,0);}
.fs5_c00003{font-size:45.000000px;}
.fs6_c00003{font-size:48.000000px;}
.fs0_c00003{font-size:54.000000px;}
.fs4_c00003{font-size:55.200000px;}
.fs2_c00003{font-size:60.000000px;}
.fs3_c00003{font-size:66.000000px;}
.fs1_c00003{font-size:69.000000px;}
.y0_c00003{bottom:0.000000px;}
.y13_c00003{bottom:3.105000px;}
.y12_c00003{bottom:7.228355px;}
.y11_c00003{bottom:96.735000px;}
.y10_c00003{bottom:320.235000px;}
.yf_c00003{bottom:344.835000px;}
.ye_c00003{bottom:370.785000px;}
.yd_c00003{bottom:395.535000px;}
.yc_c00003{bottom:427.185000px;}
.yb_c00003{bottom:454.485000px;}
.ya_c00003{bottom:496.035000px;}
.y9_c00003{bottom:523.035000px;}
.y8_c00003{bottom:547.785000px;}
.y4_c00003{bottom:549.435000px;}
.y3_c00003{bottom:557.835000px;}
.y7_c00003{bottom:575.385000px;}
.y6_c00003{bottom:603.435000px;}
.y5_c00003{bottom:605.385000px;}
.y2_c00003{bottom:770.535000px;}
.y1_c00003{bottom:791.685000px;}
.h7_c00003{height:13.200074px;}
.h8_c00003{height:43.804688px;}
.h3_c00003{height:63.202148px;}
.h6_c00003{height:67.719727px;}
.h2_c00003{height:68.370117px;}
.h4_c00003{height:75.966797px;}
.h5_c00003{height:87.361816px;}
.h1_c00003{height:840.000000px;}
.h0_c00003{height:840.225000px;}
.w1_c00003{width:104.875500px;}
.w0_c00003{width:591.000000px;}
.x0_c00003{left:0.000000px;}
.x8_c00003{left:122.850000px;}
.x6_c00003{left:149.400000px;}
.xc_c00003{left:179.400000px;}
.x7_c00003{left:208.200000px;}
.xd_c00003{left:213.300000px;}
.xa_c00003{left:215.100000px;}
.x9_c00003{left:239.550000px;}
.x10_c00003{left:247.314240px;}
.xb_c00003{left:260.850000px;}
.xe_c00003{left:305.400000px;}
.x2_c00003{left:309.150000px;}
.x1_c00003{left:324.600000px;}
.x4_c00003{left:335.700000px;}
.x3_c00003{left:337.500000px;}
.xf_c00003{left:425.850000px;}
.x5_c00003{left:460.350000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls9_c00003{letter-spacing:0.000000pt;}
.lsa_c00003{letter-spacing:2.666667pt;}
.ls4_c00003{letter-spacing:10.133333pt;}
.lsb_c00003{letter-spacing:13.333333pt;}
.ls7_c00003{letter-spacing:13.362667pt;}
.ls3_c00003{letter-spacing:16.533333pt;}
.ls1_c00003{letter-spacing:17.600000pt;}
.ls0_c00003{letter-spacing:19.216000pt;}
.ls8_c00003{letter-spacing:20.952000pt;}
.ls6_c00003{letter-spacing:24.533333pt;}
.ls2_c00003{letter-spacing:36.800000pt;}
.lsc_c00003{letter-spacing:61.333333pt;}
.ls5_c00003{letter-spacing:101.245333pt;}
.ws8_c00003{word-spacing:-76.114667pt;}
.ws7_c00003{word-spacing:-52.464000pt;}
.ws4_c00003{word-spacing:-42.778667pt;}
.wsa_c00003{word-spacing:-39.989333pt;}
.wsc_c00003{word-spacing:-27.232000pt;}
.ws2_c00003{word-spacing:-24.373333pt;}
.ws5_c00003{word-spacing:-21.115733pt;}
.ws6_c00003{word-spacing:-17.448000pt;}
.ws1_c00003{word-spacing:-14.781333pt;}
.ws3_c00003{word-spacing:-13.395200pt;}
.wsb_c00003{word-spacing:-0.306667pt;}
.wsd_c00003{word-spacing:0.000000pt;}
.ws0_c00003{word-spacing:1.056000pt;}
.ws9_c00003{word-spacing:13.946667pt;}
._23_c00003{margin-left:-65.592000pt;}
._17_c00003{margin-left:-41.328000pt;}
._3_c00003{margin-left:-34.128000pt;}
._21_c00003{margin-left:-28.266667pt;}
._22_c00003{margin-left:-15.509333pt;}
._35_c00003{margin-left:-13.978667pt;}
._36_c00003{margin-left:-12.621333pt;}
._9_c00003{margin-left:-11.280000pt;}
._3a_c00003{margin-left:-10.216000pt;}
._1b_c00003{margin-left:-8.530667pt;}
._4_c00003{margin-left:-7.488000pt;}
._0_c00003{margin-left:-6.576000pt;}
._3c_c00003{margin-left:-5.330667pt;}
._1_c00003{margin-left:-3.984000pt;}
._1e_c00003{margin-left:-2.696000pt;}
._20_c00003{margin-left:-1.456000pt;}
._1f_c00003{width:0.898667pt;}
._30_c00003{width:2.610667pt;}
._a_c00003{width:3.888000pt;}
._b_c00003{width:5.424000pt;}
._15_c00003{width:6.808000pt;}
._31_c00003{width:8.010667pt;}
._f_c00003{width:8.954667pt;}
._c_c00003{width:10.309333pt;}
._1a_c00003{width:11.530667pt;}
._13_c00003{width:13.125333pt;}
._8_c00003{width:14.016000pt;}
._32_c00003{width:16.541333pt;}
._7_c00003{width:17.808000pt;}
._d_c00003{width:19.098667pt;}
._2c_c00003{width:20.125333pt;}
._12_c00003{width:21.114667pt;}
._10_c00003{width:22.386667pt;}
._11_c00003{width:23.597333pt;}
._e_c00003{width:25.746667pt;}
._1c_c00003{width:26.692267pt;}
._6_c00003{width:27.600000pt;}
._5_c00003{width:29.952000pt;}
._14_c00003{width:33.488000pt;}
._19_c00003{width:34.960000pt;}
._33_c00003{width:36.842667pt;}
._2a_c00003{width:38.149333pt;}
._2f_c00003{width:40.234667pt;}
._2e_c00003{width:42.013333pt;}
._2d_c00003{width:45.509333pt;}
._16_c00003{width:46.797333pt;}
._29_c00003{width:48.453333pt;}
._1d_c00003{width:50.300267pt;}
._34_c00003{width:59.306667pt;}
._25_c00003{width:68.685333pt;}
._26_c00003{width:74.976000pt;}
._28_c00003{width:84.272000pt;}
._27_c00003{width:85.698667pt;}
._2b_c00003{width:93.104000pt;}
._3d_c00003{width:114.845333pt;}
._18_c00003{width:116.160000pt;}
._37_c00003{width:167.373333pt;}
._3b_c00003{width:212.730667pt;}
._2_c00003{width:222.864000pt;}
._24_c00003{width:235.090667pt;}
._38_c00003{width:261.797333pt;}
._39_c00003{width:278.568000pt;}
.fs5_c00003{font-size:40.000000pt;}
.fs6_c00003{font-size:42.666667pt;}
.fs0_c00003{font-size:48.000000pt;}
.fs4_c00003{font-size:49.066667pt;}
.fs2_c00003{font-size:53.333333pt;}
.fs3_c00003{font-size:58.666667pt;}
.fs1_c00003{font-size:61.333333pt;}
.y0_c00003{bottom:0.000000pt;}
.y13_c00003{bottom:2.760000pt;}
.y12_c00003{bottom:6.425204pt;}
.y11_c00003{bottom:85.986667pt;}
.y10_c00003{bottom:284.653333pt;}
.yf_c00003{bottom:306.520000pt;}
.ye_c00003{bottom:329.586667pt;}
.yd_c00003{bottom:351.586667pt;}
.yc_c00003{bottom:379.720000pt;}
.yb_c00003{bottom:403.986667pt;}
.ya_c00003{bottom:440.920000pt;}
.y9_c00003{bottom:464.920000pt;}
.y8_c00003{bottom:486.920000pt;}
.y4_c00003{bottom:488.386667pt;}
.y3_c00003{bottom:495.853333pt;}
.y7_c00003{bottom:511.453333pt;}
.y6_c00003{bottom:536.386667pt;}
.y5_c00003{bottom:538.120000pt;}
.y2_c00003{bottom:684.920000pt;}
.y1_c00003{bottom:703.720000pt;}
.h7_c00003{height:11.733399pt;}
.h8_c00003{height:38.937500pt;}
.h3_c00003{height:56.179688pt;}
.h6_c00003{height:60.195312pt;}
.h2_c00003{height:60.773438pt;}
.h4_c00003{height:67.526042pt;}
.h5_c00003{height:77.654948pt;}
.h1_c00003{height:746.666667pt;}
.h0_c00003{height:746.866667pt;}
.w1_c00003{width:93.222667pt;}
.w0_c00003{width:525.333333pt;}
.x0_c00003{left:0.000000pt;}
.x8_c00003{left:109.200000pt;}
.x6_c00003{left:132.800000pt;}
.xc_c00003{left:159.466667pt;}
.x7_c00003{left:185.066667pt;}
.xd_c00003{left:189.600000pt;}
.xa_c00003{left:191.200000pt;}
.x9_c00003{left:212.933333pt;}
.x10_c00003{left:219.834880pt;}
.xb_c00003{left:231.866667pt;}
.xe_c00003{left:271.466667pt;}
.x2_c00003{left:274.800000pt;}
.x1_c00003{left:288.533333pt;}
.x4_c00003{left:298.400000pt;}
.x3_c00003{left:300.000000pt;}
.xf_c00003{left:378.533333pt;}
.x5_c00003{left:409.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_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_67cd274d5fbe81f026fc4c31.woff2')format("woff");}.ff1_c00004{font-family:ff1_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:ff2_c00004;src:url('chunks/assets/font_77f32b517b076654f0afabcf.woff2')format("woff");}.ff2_c00004{font-family:ff2_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:ff3_c00004;src:url('chunks/assets/font_d305cfff1f72ea4f7c10f23b.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_0c1ff37f4b8270820d84eb26.woff2')format("woff");}.ff4_c00004{font-family:ff4_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:ff5_c00004;src:url('chunks/assets/font_92d300abd0d690da9e8df625.woff2')format("woff");}.ff5_c00004{font-family:ff5_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:ff6_c00004;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00004{font-family:ff6_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;}
.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:235.200000px;}
.ls3_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:3.000000px;}
.ls1_c00004{letter-spacing:12.000000px;}
.ls2_c00004{letter-spacing:36.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00004{word-spacing:-99.060000px;}
.ws2_c00004{word-spacing:-13.014000px;}
.ws3_c00004{word-spacing:0.000000px;}
.ws0_c00004{word-spacing:0.240000px;}
._11_c00004{margin-left:-23.562000px;}
._10_c00004{margin-left:-21.879000px;}
._21_c00004{margin-left:-20.790000px;}
._22_c00004{margin-left:-18.177000px;}
._d_c00004{margin-left:-17.136000px;}
._e_c00004{margin-left:-15.300000px;}
._1e_c00004{margin-left:-11.295000px;}
._13_c00004{margin-left:-10.086000px;}
._12_c00004{margin-left:-8.886000px;}
._1f_c00004{margin-left:-5.880000px;}
._1d_c00004{margin-left:-4.305000px;}
._b_c00004{margin-left:-2.898000px;}
._c_c00004{margin-left:-1.656000px;}
._3_c00004{width:2.001000px;}
._4_c00004{width:3.036000px;}
._1b_c00004{width:4.968000px;}
._f_c00004{width:6.120000px;}
._15_c00004{width:8.109000px;}
._6_c00004{width:9.591000px;}
._7_c00004{width:11.040000px;}
._17_c00004{width:12.042000px;}
._8_c00004{width:13.110000px;}
._1_c00004{width:15.318000px;}
._0_c00004{width:16.974000px;}
._9_c00004{width:19.044000px;}
._1c_c00004{width:20.505000px;}
._1a_c00004{width:22.701000px;}
._14_c00004{width:24.564000px;}
._19_c00004{width:25.737000px;}
._20_c00004{width:29.556000px;}
._2_c00004{width:31.119000px;}
._a_c00004{width:35.190000px;}
._5_c00004{width:45.264000px;}
._16_c00004{width:48.852000px;}
._18_c00004{width:50.577000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(128,128,128);}
.fc0_c00004{color:rgb(0,0,0);}
.fs4_c00004{font-size:45.000000px;}
.fs8_c00004{font-size:48.000000px;}
.fs3_c00004{font-size:54.000000px;}
.fs5_c00004{font-size:60.000000px;}
.fs6_c00004{font-size:66.000000px;}
.fs0_c00004{font-size:69.000000px;}
.fs2_c00004{font-size:153.000000px;}
.fs1_c00004{font-size:207.000000px;}
.fs7_c00004{font-size:390.000000px;}
.y0_c00004{bottom:0.000000px;}
.y1e_c00004{bottom:3.105000px;}
.y1d_c00004{bottom:7.228371px;}
.y1c_c00004{bottom:89.415000px;}
.y1b_c00004{bottom:110.415000px;}
.y18_c00004{bottom:111.765000px;}
.y1a_c00004{bottom:130.065000px;}
.y19_c00004{bottom:150.315000px;}
.y17_c00004{bottom:212.415000px;}
.y16_c00004{bottom:253.815000px;}
.y15_c00004{bottom:274.065000px;}
.y14_c00004{bottom:294.615000px;}
.y13_c00004{bottom:315.015000px;}
.y12_c00004{bottom:335.265000px;}
.y11_c00004{bottom:355.515000px;}
.y10_c00004{bottom:376.065000px;}
.yf_c00004{bottom:396.015000px;}
.ye_c00004{bottom:416.265000px;}
.yd_c00004{bottom:440.865000px;}
.yc_c00004{bottom:466.515000px;}
.yb_c00004{bottom:490.515000px;}
.ya_c00004{bottom:514.665000px;}
.y9_c00004{bottom:539.715000px;}
.y8_c00004{bottom:563.715000px;}
.y7_c00004{bottom:588.315000px;}
.y6_c00004{bottom:613.215000px;}
.y5_c00004{bottom:637.665000px;}
.y4_c00004{bottom:661.515000px;}
.y3_c00004{bottom:688.215000px;}
.y2_c00004{bottom:727.365000px;}
.y1_c00004{bottom:779.265000px;}
.hc_c00004{height:13.200074px;}
.hd_c00004{height:43.804688px;}
.h5_c00004{height:52.668457px;}
.hb_c00004{height:63.202148px;}
.h6_c00004{height:67.719727px;}
.ha_c00004{height:68.370117px;}
.h7_c00004{height:75.966797px;}
.h8_c00004{height:83.563477px;}
.h2_c00004{height:87.361816px;}
.h4_c00004{height:193.715332px;}
.h3_c00004{height:216.936000px;}
.h9_c00004{height:493.784180px;}
.h1_c00004{height:831.000000px;}
.h0_c00004{height:831.075000px;}
.w1_c00004{width:104.875500px;}
.w0_c00004{width:557.250000px;}
.x0_c00004{left:0.000000px;}
.x4_c00004{left:20.550000px;}
.x2_c00004{left:22.050000px;}
.x5_c00004{left:45.000000px;}
.x9_c00004{left:51.000000px;}
.x8_c00004{left:73.650000px;}
.x6_c00004{left:78.750000px;}
.xa_c00004{left:81.300000px;}
.x3_c00004{left:83.700000px;}
.xf_c00004{left:94.800000px;}
.xd_c00004{left:97.500000px;}
.xe_c00004{left:98.550000px;}
.x7_c00004{left:113.850000px;}
.x1_c00004{left:140.700000px;}
.xc_c00004{left:146.850000px;}
.xb_c00004{left:179.250000px;}
.x10_c00004{left:230.439240px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:209.066667pt;}
.ls3_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:2.666667pt;}
.ls1_c00004{letter-spacing:10.666667pt;}
.ls2_c00004{letter-spacing:32.000000pt;}
.ws1_c00004{word-spacing:-88.053333pt;}
.ws2_c00004{word-spacing:-11.568000pt;}
.ws3_c00004{word-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.213333pt;}
._11_c00004{margin-left:-20.944000pt;}
._10_c00004{margin-left:-19.448000pt;}
._21_c00004{margin-left:-18.480000pt;}
._22_c00004{margin-left:-16.157333pt;}
._d_c00004{margin-left:-15.232000pt;}
._e_c00004{margin-left:-13.600000pt;}
._1e_c00004{margin-left:-10.040000pt;}
._13_c00004{margin-left:-8.965333pt;}
._12_c00004{margin-left:-7.898667pt;}
._1f_c00004{margin-left:-5.226667pt;}
._1d_c00004{margin-left:-3.826667pt;}
._b_c00004{margin-left:-2.576000pt;}
._c_c00004{margin-left:-1.472000pt;}
._3_c00004{width:1.778667pt;}
._4_c00004{width:2.698667pt;}
._1b_c00004{width:4.416000pt;}
._f_c00004{width:5.440000pt;}
._15_c00004{width:7.208000pt;}
._6_c00004{width:8.525333pt;}
._7_c00004{width:9.813333pt;}
._17_c00004{width:10.704000pt;}
._8_c00004{width:11.653333pt;}
._1_c00004{width:13.616000pt;}
._0_c00004{width:15.088000pt;}
._9_c00004{width:16.928000pt;}
._1c_c00004{width:18.226667pt;}
._1a_c00004{width:20.178667pt;}
._14_c00004{width:21.834667pt;}
._19_c00004{width:22.877333pt;}
._20_c00004{width:26.272000pt;}
._2_c00004{width:27.661333pt;}
._a_c00004{width:31.280000pt;}
._5_c00004{width:40.234667pt;}
._16_c00004{width:43.424000pt;}
._18_c00004{width:44.957333pt;}
.fs4_c00004{font-size:40.000000pt;}
.fs8_c00004{font-size:42.666667pt;}
.fs3_c00004{font-size:48.000000pt;}
.fs5_c00004{font-size:53.333333pt;}
.fs6_c00004{font-size:58.666667pt;}
.fs0_c00004{font-size:61.333333pt;}
.fs2_c00004{font-size:136.000000pt;}
.fs1_c00004{font-size:184.000000pt;}
.fs7_c00004{font-size:346.666667pt;}
.y0_c00004{bottom:0.000000pt;}
.y1e_c00004{bottom:2.760000pt;}
.y1d_c00004{bottom:6.425219pt;}
.y1c_c00004{bottom:79.480000pt;}
.y1b_c00004{bottom:98.146667pt;}
.y18_c00004{bottom:99.346667pt;}
.y1a_c00004{bottom:115.613333pt;}
.y19_c00004{bottom:133.613333pt;}
.y17_c00004{bottom:188.813333pt;}
.y16_c00004{bottom:225.613333pt;}
.y15_c00004{bottom:243.613333pt;}
.y14_c00004{bottom:261.880000pt;}
.y13_c00004{bottom:280.013333pt;}
.y12_c00004{bottom:298.013333pt;}
.y11_c00004{bottom:316.013333pt;}
.y10_c00004{bottom:334.280000pt;}
.yf_c00004{bottom:352.013333pt;}
.ye_c00004{bottom:370.013333pt;}
.yd_c00004{bottom:391.880000pt;}
.yc_c00004{bottom:414.680000pt;}
.yb_c00004{bottom:436.013333pt;}
.ya_c00004{bottom:457.480000pt;}
.y9_c00004{bottom:479.746667pt;}
.y8_c00004{bottom:501.080000pt;}
.y7_c00004{bottom:522.946667pt;}
.y6_c00004{bottom:545.080000pt;}
.y5_c00004{bottom:566.813333pt;}
.y4_c00004{bottom:588.013333pt;}
.y3_c00004{bottom:611.746667pt;}
.y2_c00004{bottom:646.546667pt;}
.y1_c00004{bottom:692.680000pt;}
.hc_c00004{height:11.733399pt;}
.hd_c00004{height:38.937500pt;}
.h5_c00004{height:46.816406pt;}
.hb_c00004{height:56.179688pt;}
.h6_c00004{height:60.195312pt;}
.ha_c00004{height:60.773438pt;}
.h7_c00004{height:67.526042pt;}
.h8_c00004{height:74.278646pt;}
.h2_c00004{height:77.654948pt;}
.h4_c00004{height:172.191406pt;}
.h3_c00004{height:192.832000pt;}
.h9_c00004{height:438.919271pt;}
.h1_c00004{height:738.666667pt;}
.h0_c00004{height:738.733333pt;}
.w1_c00004{width:93.222667pt;}
.w0_c00004{width:495.333333pt;}
.x0_c00004{left:0.000000pt;}
.x4_c00004{left:18.266667pt;}
.x2_c00004{left:19.600000pt;}
.x5_c00004{left:40.000000pt;}
.x9_c00004{left:45.333333pt;}
.x8_c00004{left:65.466667pt;}
.x6_c00004{left:70.000000pt;}
.xa_c00004{left:72.266667pt;}
.x3_c00004{left:74.400000pt;}
.xf_c00004{left:84.266667pt;}
.xd_c00004{left:86.666667pt;}
.xe_c00004{left:87.600000pt;}
.x7_c00004{left:101.200000pt;}
.x1_c00004{left:125.066667pt;}
.xc_c00004{left:130.533333pt;}
.xb_c00004{left:159.333333pt;}
.x10_c00004{left:204.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_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_9de5b6b3da4a58a06b69b1bc.woff2')format("woff");}.ff1_c00005{font-family:ff1_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:ff2_c00005;src:url('chunks/assets/font_8b96a4a9f0fee326fdc2c0fe.woff2')format("woff");}.ff2_c00005{font-family:ff2_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:ff3_c00005;src:url('chunks/assets/font_d54895245de858491e6b3389.woff2')format("woff");}.ff3_c00005{font-family:ff3_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:ff4_c00005;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00005{font-family:ff4_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.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_c00005{vertical-align:0.000000px;}
.ls2_c00005{letter-spacing:0.000000px;}
.ls1_c00005{letter-spacing:10.560000px;}
.ls0_c00005{letter-spacing:12.300000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:-13.014000px;}
.ws1_c00005{word-spacing:-12.510000px;}
.ws2_c00005{word-spacing:0.000000px;}
._17_c00005{margin-left:-19.290000px;}
._19_c00005{margin-left:-18.144000px;}
._1d_c00005{margin-left:-15.930000px;}
._18_c00005{margin-left:-14.100000px;}
._10_c00005{margin-left:-12.960000px;}
._1a_c00005{margin-left:-11.610000px;}
._15_c00005{margin-left:-9.882000px;}
._16_c00005{margin-left:-7.860000px;}
._e_c00005{margin-left:-6.534000px;}
._d_c00005{margin-left:-4.806000px;}
._14_c00005{margin-left:-3.456000px;}
._4_c00005{margin-left:-2.430000px;}
._c_c00005{margin-left:-1.242000px;}
._5_c00005{width:1.080000px;}
._3_c00005{width:2.322000px;}
._0_c00005{width:3.456000px;}
._1_c00005{width:4.536000px;}
._6_c00005{width:5.886000px;}
._9_c00005{width:7.506000px;}
._2_c00005{width:8.586000px;}
._8_c00005{width:9.882000px;}
._7_c00005{width:11.286000px;}
._a_c00005{width:14.202000px;}
._1e_c00005{width:15.444000px;}
._13_c00005{width:16.470000px;}
._f_c00005{width:17.550000px;}
._b_c00005{width:20.358000px;}
._1c_c00005{width:25.272000px;}
._1f_c00005{width:33.426000px;}
._11_c00005{width:37.638000px;}
._12_c00005{width:97.092000px;}
._1b_c00005{width:101.142000px;}
._20_c00005{width:1016.874000px;}
.fc2_c00005{color:transparent;}
.fc1_c00005{color:rgb(128,128,128);}
.fc0_c00005{color:rgb(0,0,0);}
.fs1_c00005{font-size:45.000000px;}
.fs2_c00005{font-size:48.000000px;}
.fs0_c00005{font-size:54.000000px;}
.y0_c00005{bottom:0.000000px;}
.y27_c00005{bottom:3.105000px;}
.y26_c00005{bottom:7.228357px;}
.y25_c00005{bottom:48.030000px;}
.y24_c00005{bottom:62.880000px;}
.y23_c00005{bottom:84.330000px;}
.y22_c00005{bottom:104.580000px;}
.y21_c00005{bottom:124.980000px;}
.y20_c00005{bottom:145.230000px;}
.y1f_c00005{bottom:165.330000px;}
.y1e_c00005{bottom:186.030000px;}
.y1d_c00005{bottom:206.280000px;}
.y1c_c00005{bottom:226.530000px;}
.y1b_c00005{bottom:246.780000px;}
.y1a_c00005{bottom:267.030000px;}
.y19_c00005{bottom:288.180000px;}
.y18_c00005{bottom:307.530000px;}
.y17_c00005{bottom:327.780000px;}
.y16_c00005{bottom:347.580000px;}
.y15_c00005{bottom:367.980000px;}
.y14_c00005{bottom:388.230000px;}
.y13_c00005{bottom:408.480000px;}
.y12_c00005{bottom:428.730000px;}
.y11_c00005{bottom:448.530000px;}
.y10_c00005{bottom:469.530000px;}
.yf_c00005{bottom:488.430000px;}
.ye_c00005{bottom:508.980000px;}
.yd_c00005{bottom:528.630000px;}
.yc_c00005{bottom:548.880000px;}
.yb_c00005{bottom:568.980000px;}
.ya_c00005{bottom:589.980000px;}
.y9_c00005{bottom:609.480000px;}
.y8_c00005{bottom:629.730000px;}
.y7_c00005{bottom:649.680000px;}
.y6_c00005{bottom:670.230000px;}
.y5_c00005{bottom:690.180000px;}
.y4_c00005{bottom:710.430000px;}
.y3_c00005{bottom:730.680000px;}
.y2_c00005{bottom:750.930000px;}
.y1_c00005{bottom:771.630000px;}
.h4_c00005{height:13.200074px;}
.h5_c00005{height:43.804688px;}
.h3_c00005{height:63.202148px;}
.h2_c00005{height:68.370117px;}
.h0_c00005{height:800.850000px;}
.h1_c00005{height:801.000000px;}
.w2_c00005{width:104.875500px;}
.w0_c00005{width:562.125000px;}
.w1_c00005{width:562.500000px;}
.x0_c00005{left:0.000000px;}
.x7_c00005{left:87.300000px;}
.x6_c00005{left:88.800000px;}
.x4_c00005{left:90.150000px;}
.x5_c00005{left:92.100000px;}
.x2_c00005{left:94.800000px;}
.x1_c00005{left:96.150000px;}
.x3_c00005{left:136.050000px;}
.x8_c00005{left:192.750000px;}
.xb_c00005{left:232.876740px;}
.x9_c00005{left:396.600000px;}
.xa_c00005{left:433.350000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls2_c00005{letter-spacing:0.000000pt;}
.ls1_c00005{letter-spacing:9.386667pt;}
.ls0_c00005{letter-spacing:10.933333pt;}
.ws0_c00005{word-spacing:-11.568000pt;}
.ws1_c00005{word-spacing:-11.120000pt;}
.ws2_c00005{word-spacing:0.000000pt;}
._17_c00005{margin-left:-17.146667pt;}
._19_c00005{margin-left:-16.128000pt;}
._1d_c00005{margin-left:-14.160000pt;}
._18_c00005{margin-left:-12.533333pt;}
._10_c00005{margin-left:-11.520000pt;}
._1a_c00005{margin-left:-10.320000pt;}
._15_c00005{margin-left:-8.784000pt;}
._16_c00005{margin-left:-6.986667pt;}
._e_c00005{margin-left:-5.808000pt;}
._d_c00005{margin-left:-4.272000pt;}
._14_c00005{margin-left:-3.072000pt;}
._4_c00005{margin-left:-2.160000pt;}
._c_c00005{margin-left:-1.104000pt;}
._5_c00005{width:0.960000pt;}
._3_c00005{width:2.064000pt;}
._0_c00005{width:3.072000pt;}
._1_c00005{width:4.032000pt;}
._6_c00005{width:5.232000pt;}
._9_c00005{width:6.672000pt;}
._2_c00005{width:7.632000pt;}
._8_c00005{width:8.784000pt;}
._7_c00005{width:10.032000pt;}
._a_c00005{width:12.624000pt;}
._1e_c00005{width:13.728000pt;}
._13_c00005{width:14.640000pt;}
._f_c00005{width:15.600000pt;}
._b_c00005{width:18.096000pt;}
._1c_c00005{width:22.464000pt;}
._1f_c00005{width:29.712000pt;}
._11_c00005{width:33.456000pt;}
._12_c00005{width:86.304000pt;}
._1b_c00005{width:89.904000pt;}
._20_c00005{width:903.888000pt;}
.fs1_c00005{font-size:40.000000pt;}
.fs2_c00005{font-size:42.666667pt;}
.fs0_c00005{font-size:48.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y27_c00005{bottom:2.760000pt;}
.y26_c00005{bottom:6.425206pt;}
.y25_c00005{bottom:42.693333pt;}
.y24_c00005{bottom:55.893333pt;}
.y23_c00005{bottom:74.960000pt;}
.y22_c00005{bottom:92.960000pt;}
.y21_c00005{bottom:111.093333pt;}
.y20_c00005{bottom:129.093333pt;}
.y1f_c00005{bottom:146.960000pt;}
.y1e_c00005{bottom:165.360000pt;}
.y1d_c00005{bottom:183.360000pt;}
.y1c_c00005{bottom:201.360000pt;}
.y1b_c00005{bottom:219.360000pt;}
.y1a_c00005{bottom:237.360000pt;}
.y19_c00005{bottom:256.160000pt;}
.y18_c00005{bottom:273.360000pt;}
.y17_c00005{bottom:291.360000pt;}
.y16_c00005{bottom:308.960000pt;}
.y15_c00005{bottom:327.093333pt;}
.y14_c00005{bottom:345.093333pt;}
.y13_c00005{bottom:363.093333pt;}
.y12_c00005{bottom:381.093333pt;}
.y11_c00005{bottom:398.693333pt;}
.y10_c00005{bottom:417.360000pt;}
.yf_c00005{bottom:434.160000pt;}
.ye_c00005{bottom:452.426667pt;}
.yd_c00005{bottom:469.893333pt;}
.yc_c00005{bottom:487.893333pt;}
.yb_c00005{bottom:505.760000pt;}
.ya_c00005{bottom:524.426667pt;}
.y9_c00005{bottom:541.760000pt;}
.y8_c00005{bottom:559.760000pt;}
.y7_c00005{bottom:577.493333pt;}
.y6_c00005{bottom:595.760000pt;}
.y5_c00005{bottom:613.493333pt;}
.y4_c00005{bottom:631.493333pt;}
.y3_c00005{bottom:649.493333pt;}
.y2_c00005{bottom:667.493333pt;}
.y1_c00005{bottom:685.893333pt;}
.h4_c00005{height:11.733399pt;}
.h5_c00005{height:38.937500pt;}
.h3_c00005{height:56.179688pt;}
.h2_c00005{height:60.773438pt;}
.h0_c00005{height:711.866667pt;}
.h1_c00005{height:712.000000pt;}
.w2_c00005{width:93.222667pt;}
.w0_c00005{width:499.666667pt;}
.w1_c00005{width:500.000000pt;}
.x0_c00005{left:0.000000pt;}
.x7_c00005{left:77.600000pt;}
.x6_c00005{left:78.933333pt;}
.x4_c00005{left:80.133333pt;}
.x5_c00005{left:81.866667pt;}
.x2_c00005{left:84.266667pt;}
.x1_c00005{left:85.466667pt;}
.x3_c00005{left:120.933333pt;}
.x8_c00005{left:171.333333pt;}
.xb_c00005{left:207.001546pt;}
.x9_c00005{left:352.533333pt;}
.xa_c00005{left:385.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_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_9f3904aa12848f2f30e5a49e.woff2')format("woff");}.ff1_c00006{font-family:ff1_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:ff2_c00006;src:url('chunks/assets/font_9b77696bd17a6fc450915257.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_3f51604e87e49f9049a5210a.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_de10ffdf388416cda73ac72b.woff2')format("woff");}.ff4_c00006{font-family:ff4_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:ff5_c00006;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00006{font-family:ff5_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:9.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-28.182000px;}
.ws3_c00006{word-spacing:-16.629000px;}
.ws1_c00006{word-spacing:-13.344000px;}
.ws2_c00006{word-spacing:-0.384000px;}
.ws4_c00006{word-spacing:0.000000px;}
._19_c00006{margin-left:-18.309000px;}
._1b_c00006{margin-left:-10.584000px;}
._16_c00006{margin-left:-9.282000px;}
._d_c00006{margin-left:-7.770000px;}
._17_c00006{margin-left:-6.570000px;}
._13_c00006{margin-left:-5.166000px;}
._1c_c00006{margin-left:-4.032000px;}
._9_c00006{margin-left:-2.688000px;}
._e_c00006{margin-left:-1.134000px;}
._1_c00006{width:1.470000px;}
._0_c00006{width:2.520000px;}
._2_c00006{width:3.570000px;}
._5_c00006{width:4.704000px;}
._3_c00006{width:6.090000px;}
._4_c00006{width:7.182000px;}
._7_c00006{width:8.400000px;}
._18_c00006{width:9.882000px;}
._8_c00006{width:11.928000px;}
._6_c00006{width:13.020000px;}
._f_c00006{width:14.448000px;}
._c_c00006{width:15.960000px;}
._11_c00006{width:17.262000px;}
._b_c00006{width:18.270000px;}
._15_c00006{width:20.244000px;}
._14_c00006{width:21.714000px;}
._a_c00006{width:23.562000px;}
._12_c00006{width:25.998000px;}
._10_c00006{width:27.048000px;}
._1a_c00006{width:62.286000px;}
._1d_c00006{width:530.541000px;}
.fc2_c00006{color:transparent;}
.fc1_c00006{color:rgb(128,128,128);}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:42.000000px;}
.fs2_c00006{font-size:48.000000px;}
.fs3_c00006{font-size:63.000000px;}
.fs1_c00006{font-size:69.000000px;}
.y0_c00006{bottom:0.000000px;}
.y25_c00006{bottom:3.105000px;}
.y24_c00006{bottom:7.228369px;}
.y23_c00006{bottom:88.470000px;}
.y22_c00006{bottom:106.020000px;}
.y21_c00006{bottom:142.020000px;}
.y20_c00006{bottom:162.270000px;}
.y1f_c00006{bottom:182.220000px;}
.y1e_c00006{bottom:202.770000px;}
.y1d_c00006{bottom:223.470000px;}
.y1c_c00006{bottom:243.270000px;}
.y1b_c00006{bottom:263.520000px;}
.y1a_c00006{bottom:283.770000px;}
.y19_c00006{bottom:304.020000px;}
.y18_c00006{bottom:324.270000px;}
.y17_c00006{bottom:344.520000px;}
.y16_c00006{bottom:364.470000px;}
.y15_c00006{bottom:384.720000px;}
.y14_c00006{bottom:404.670000px;}
.y13_c00006{bottom:424.920000px;}
.y12_c00006{bottom:444.870000px;}
.y11_c00006{bottom:465.120000px;}
.y10_c00006{bottom:484.920000px;}
.yf_c00006{bottom:504.570000px;}
.ye_c00006{bottom:524.520000px;}
.yd_c00006{bottom:545.070000px;}
.yc_c00006{bottom:564.870000px;}
.yb_c00006{bottom:585.270000px;}
.ya_c00006{bottom:605.370000px;}
.y9_c00006{bottom:625.320000px;}
.y8_c00006{bottom:645.870000px;}
.y7_c00006{bottom:665.520000px;}
.y6_c00006{bottom:685.770000px;}
.y5_c00006{bottom:706.620000px;}
.y4_c00006{bottom:725.970000px;}
.y3_c00006{bottom:746.220000px;}
.y2_c00006{bottom:766.170000px;}
.y1_c00006{bottom:786.420000px;}
.h7_c00006{height:13.200073px;}
.h8_c00006{height:43.804688px;}
.h3_c00006{height:49.157227px;}
.h2_c00006{height:53.176758px;}
.h4_c00006{height:67.719727px;}
.h5_c00006{height:79.765137px;}
.h6_c00006{height:80.758301px;}
.h0_c00006{height:821.850000px;}
.h1_c00006{height:822.000000px;}
.w2_c00006{width:104.875500px;}
.w1_c00006{width:550.500000px;}
.w0_c00006{width:550.800000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:33.000000px;}
.x2_c00006{left:34.800000px;}
.x3_c00006{left:35.850000px;}
.x5_c00006{left:37.200000px;}
.x4_c00006{left:38.250000px;}
.x6_c00006{left:39.450000px;}
.x7_c00006{left:40.800000px;}
.x8_c00006{left:123.900000px;}
.xa_c00006{left:227.214249px;}
.x9_c00006{left:362.850000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:8.000000pt;}
.ws0_c00006{word-spacing:-25.050667pt;}
.ws3_c00006{word-spacing:-14.781333pt;}
.ws1_c00006{word-spacing:-11.861333pt;}
.ws2_c00006{word-spacing:-0.341333pt;}
.ws4_c00006{word-spacing:0.000000pt;}
._19_c00006{margin-left:-16.274667pt;}
._1b_c00006{margin-left:-9.408000pt;}
._16_c00006{margin-left:-8.250667pt;}
._d_c00006{margin-left:-6.906667pt;}
._17_c00006{margin-left:-5.840000pt;}
._13_c00006{margin-left:-4.592000pt;}
._1c_c00006{margin-left:-3.584000pt;}
._9_c00006{margin-left:-2.389333pt;}
._e_c00006{margin-left:-1.008000pt;}
._1_c00006{width:1.306667pt;}
._0_c00006{width:2.240000pt;}
._2_c00006{width:3.173333pt;}
._5_c00006{width:4.181333pt;}
._3_c00006{width:5.413333pt;}
._4_c00006{width:6.384000pt;}
._7_c00006{width:7.466667pt;}
._18_c00006{width:8.784000pt;}
._8_c00006{width:10.602667pt;}
._6_c00006{width:11.573333pt;}
._f_c00006{width:12.842667pt;}
._c_c00006{width:14.186667pt;}
._11_c00006{width:15.344000pt;}
._b_c00006{width:16.240000pt;}
._15_c00006{width:17.994667pt;}
._14_c00006{width:19.301333pt;}
._a_c00006{width:20.944000pt;}
._12_c00006{width:23.109333pt;}
._10_c00006{width:24.042667pt;}
._1a_c00006{width:55.365333pt;}
._1d_c00006{width:471.592000pt;}
.fs0_c00006{font-size:37.333333pt;}
.fs2_c00006{font-size:42.666667pt;}
.fs3_c00006{font-size:56.000000pt;}
.fs1_c00006{font-size:61.333333pt;}
.y0_c00006{bottom:0.000000pt;}
.y25_c00006{bottom:2.760000pt;}
.y24_c00006{bottom:6.425217pt;}
.y23_c00006{bottom:78.640000pt;}
.y22_c00006{bottom:94.240000pt;}
.y21_c00006{bottom:126.240000pt;}
.y20_c00006{bottom:144.240000pt;}
.y1f_c00006{bottom:161.973333pt;}
.y1e_c00006{bottom:180.240000pt;}
.y1d_c00006{bottom:198.640000pt;}
.y1c_c00006{bottom:216.240000pt;}
.y1b_c00006{bottom:234.240000pt;}
.y1a_c00006{bottom:252.240000pt;}
.y19_c00006{bottom:270.240000pt;}
.y18_c00006{bottom:288.240000pt;}
.y17_c00006{bottom:306.240000pt;}
.y16_c00006{bottom:323.973333pt;}
.y15_c00006{bottom:341.973333pt;}
.y14_c00006{bottom:359.706667pt;}
.y13_c00006{bottom:377.706667pt;}
.y12_c00006{bottom:395.440000pt;}
.y11_c00006{bottom:413.440000pt;}
.y10_c00006{bottom:431.040000pt;}
.yf_c00006{bottom:448.506667pt;}
.ye_c00006{bottom:466.240000pt;}
.yd_c00006{bottom:484.506667pt;}
.yc_c00006{bottom:502.106667pt;}
.yb_c00006{bottom:520.240000pt;}
.ya_c00006{bottom:538.106667pt;}
.y9_c00006{bottom:555.840000pt;}
.y8_c00006{bottom:574.106667pt;}
.y7_c00006{bottom:591.573333pt;}
.y6_c00006{bottom:609.573333pt;}
.y5_c00006{bottom:628.106667pt;}
.y4_c00006{bottom:645.306667pt;}
.y3_c00006{bottom:663.306667pt;}
.y2_c00006{bottom:681.040000pt;}
.y1_c00006{bottom:699.040000pt;}
.h7_c00006{height:11.733399pt;}
.h8_c00006{height:38.937500pt;}
.h3_c00006{height:43.695312pt;}
.h2_c00006{height:47.268229pt;}
.h4_c00006{height:60.195312pt;}
.h5_c00006{height:70.902344pt;}
.h6_c00006{height:71.785156pt;}
.h0_c00006{height:730.533333pt;}
.h1_c00006{height:730.666667pt;}
.w2_c00006{width:93.222667pt;}
.w1_c00006{width:489.333333pt;}
.w0_c00006{width:489.600000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:29.333333pt;}
.x2_c00006{left:30.933333pt;}
.x3_c00006{left:31.866667pt;}
.x5_c00006{left:33.066667pt;}
.x4_c00006{left:34.000000pt;}
.x6_c00006{left:35.066667pt;}
.x7_c00006{left:36.266667pt;}
.x8_c00006{left:110.133333pt;}
.xa_c00006{left:201.968221pt;}
.x9_c00006{left:322.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_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_1b0e4651487aa39796418207.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_75a5f6e017aa7d5c77456569.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_e306ec691c827e773dd25f97.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_cb6b8d9fa2d194d4d27f3b3b.woff2')format("woff");}.ff4_c00007{font-family:ff4_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:ff5_c00007;src:url('chunks/assets/font_3613366f336d6de6171f7bb8.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_cb7313929ef37367c3bbc1ff.woff2')format("woff");}.ff6_c00007{font-family:ff6_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:ff7_c00007;src:url('chunks/assets/font_ecc61ad1dcc602322dfc626b.woff2')format("woff");}.ff7_c00007{font-family:ff7_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:ff8_c00007;src:url('chunks/assets/font_08e04f366d4708a034585300.woff2')format("woff");}.ff8_c00007{font-family:ff8_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:ff9_c00007;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00007{font-family:ff9_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;}
.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);}
.v2_c00007{vertical-align:-7.200000px;}
.v4_c00007{vertical-align:-5.400000px;}
.v5_c00007{vertical-align:-4.200000px;}
.v7_c00007{vertical-align:-2.400000px;}
.v1_c00007{vertical-align:-1.200000px;}
.v0_c00007{vertical-align:0.000000px;}
.v3_c00007{vertical-align:1.200000px;}
.v6_c00007{vertical-align:16.200000px;}
.lsd_c00007{letter-spacing:0.000000px;}
.ls1_c00007{letter-spacing:4.012800px;}
.lse_c00007{letter-spacing:6.000000px;}
.ls0_c00007{letter-spacing:6.780000px;}
.ls10_c00007{letter-spacing:9.000000px;}
.ls5_c00007{letter-spacing:9.399000px;}
.ls4_c00007{letter-spacing:9.663000px;}
.ls8_c00007{letter-spacing:19.264800px;}
.ls3_c00007{letter-spacing:19.965000px;}
.lsb_c00007{letter-spacing:20.808000px;}
.ls9_c00007{letter-spacing:21.408000px;}
.lsc_c00007{letter-spacing:25.514400px;}
.lsa_c00007{letter-spacing:26.421600px;}
.lsf_c00007{letter-spacing:33.000000px;}
.ls2_c00007{letter-spacing:248.808000px;}
.ls7_c00007{letter-spacing:260.208000px;}
.ls6_c00007{letter-spacing:377.208000px;}
.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;}
}
.ws1_c00007{word-spacing:-44.022000px;}
.ws6_c00007{word-spacing:-42.399000px;}
.ws0_c00007{word-spacing:-20.460000px;}
.wsc_c00007{word-spacing:-18.399000px;}
.ws2_c00007{word-spacing:-17.250000px;}
.ws3_c00007{word-spacing:-13.014000px;}
.ws9_c00007{word-spacing:-9.399000px;}
.wsf_c00007{word-spacing:-6.042000px;}
.ws13_c00007{word-spacing:0.000000px;}
.wsb_c00007{word-spacing:0.585000px;}
.ws5_c00007{word-spacing:1.023000px;}
.ws12_c00007{word-spacing:1.365000px;}
.wsd_c00007{word-spacing:4.251000px;}
.ws4_c00007{word-spacing:30.474000px;}
.ws7_c00007{word-spacing:173.793000px;}
.wse_c00007{word-spacing:233.712000px;}
.ws11_c00007{word-spacing:243.108000px;}
.wsa_c00007{word-spacing:264.594000px;}
.ws10_c00007{word-spacing:432.408000px;}
.ws8_c00007{word-spacing:852.768000px;}
._18_c00007{margin-left:-28.842000px;}
._12_c00007{margin-left:-13.281000px;}
._13_c00007{margin-left:-12.114000px;}
._10_c00007{margin-left:-7.968000px;}
._c_c00007{margin-left:-6.348000px;}
._9_c00007{margin-left:-4.899000px;}
._8_c00007{margin-left:-3.519000px;}
._3_c00007{margin-left:-1.518000px;}
._5_c00007{width:1.242000px;}
._1_c00007{width:3.174000px;}
._7_c00007{width:4.761000px;}
._0_c00007{width:6.555000px;}
._2_c00007{width:8.004000px;}
._6_c00007{width:9.522000px;}
._4_c00007{width:10.902000px;}
._a_c00007{width:12.627000px;}
._e_c00007{width:14.007000px;}
._b_c00007{width:15.042000px;}
._11_c00007{width:16.668000px;}
._21_c00007{width:18.234000px;}
._22_c00007{width:19.581000px;}
._16_c00007{width:22.212000px;}
._14_c00007{width:23.568000px;}
._d_c00007{width:24.909000px;}
._f_c00007{width:29.808000px;}
._1e_c00007{width:39.420000px;}
._15_c00007{width:45.624000px;}
._17_c00007{width:52.974000px;}
._23_c00007{width:66.216000px;}
._1c_c00007{width:166.482000px;}
._1f_c00007{width:194.808000px;}
._24_c00007{width:238.746000px;}
._20_c00007{width:241.788000px;}
._1d_c00007{width:287.442000px;}
._26_c00007{width:322.833000px;}
._27_c00007{width:326.151000px;}
._1a_c00007{width:377.145000px;}
._19_c00007{width:387.933000px;}
._25_c00007{width:443.088000px;}
._1b_c00007{width:509.502000px;}
.fc2_c00007{color:transparent;}
.fc1_c00007{color:rgb(128,128,128);}
.fc0_c00007{color:rgb(0,0,0);}
.fs7_c00007{font-size:31.200000px;}
.fs5_c00007{font-size:39.000000px;}
.fs6_c00007{font-size:42.000000px;}
.fs4_c00007{font-size:43.200000px;}
.fs8_c00007{font-size:48.000000px;}
.fs2_c00007{font-size:54.000000px;}
.fs1_c00007{font-size:60.000000px;}
.fs3_c00007{font-size:66.000000px;}
.fs0_c00007{font-size:69.000000px;}
.y0_c00007{bottom:0.000000px;}
.y22_c00007{bottom:3.105000px;}
.y21_c00007{bottom:7.228357px;}
.y20_c00007{bottom:68.880000px;}
.y1f_c00007{bottom:86.730000px;}
.y1e_c00007{bottom:105.030000px;}
.y1d_c00007{bottom:122.880000px;}
.y1c_c00007{bottom:139.680000px;}
.y1b_c00007{bottom:154.530000px;}
.y1a_c00007{bottom:177.180000px;}
.y19_c00007{bottom:193.680000px;}
.y18_c00007{bottom:212.280000px;}
.y17_c00007{bottom:228.930000px;}
.y16_c00007{bottom:246.330000px;}
.y15_c00007{bottom:265.980000px;}
.y14_c00007{bottom:301.680000px;}
.y13_c00007{bottom:321.630000px;}
.y12_c00007{bottom:363.480000px;}
.y11_c00007{bottom:403.980000px;}
.y10_c00007{bottom:423.330000px;}
.yf_c00007{bottom:443.880000px;}
.ye_c00007{bottom:463.830000px;}
.yd_c00007{bottom:484.080000px;}
.yc_c00007{bottom:504.330000px;}
.yb_c00007{bottom:524.580000px;}
.ya_c00007{bottom:544.680000px;}
.y9_c00007{bottom:564.930000px;}
.y8_c00007{bottom:585.030000px;}
.y7_c00007{bottom:605.580000px;}
.y6_c00007{bottom:626.130000px;}
.y5_c00007{bottom:646.080000px;}
.y4_c00007{bottom:665.580000px;}
.y3_c00007{bottom:686.280000px;}
.y2_c00007{bottom:706.680000px;}
.y1_c00007{bottom:727.080000px;}
.h8_c00007{height:13.200074px;}
.h9_c00007{height:43.804688px;}
.h6_c00007{height:46.845996px;}
.h7_c00007{height:49.378418px;}
.h5_c00007{height:63.202148px;}
.h2_c00007{height:67.719727px;}
.h4_c00007{height:68.370117px;}
.h3_c00007{height:75.966797px;}
.h0_c00007{height:787.350000px;}
.h1_c00007{height:787.500000px;}
.w2_c00007{width:104.875500px;}
.w1_c00007{width:552.750000px;}
.w0_c00007{width:552.975000px;}
.x0_c00007{left:0.000000px;}
.xe_c00007{left:71.550000px;}
.xf_c00007{left:73.200000px;}
.x5_c00007{left:74.550000px;}
.x3_c00007{left:76.650000px;}
.x4_c00007{left:77.850000px;}
.xc_c00007{left:80.550000px;}
.xb_c00007{left:82.350000px;}
.x9_c00007{left:88.800000px;}
.x6_c00007{left:132.300000px;}
.x1_c00007{left:142.650000px;}
.x2_c00007{left:152.850000px;}
.x11_c00007{left:162.900000px;}
.x10_c00007{left:164.400000px;}
.xa_c00007{left:217.650000px;}
.x12_c00007{left:228.301758px;}
.x7_c00007{left:317.250000px;}
.xd_c00007{left:344.250000px;}
.x8_c00007{left:403.350000px;}
@media print{
.v2_c00007{vertical-align:-6.400000pt;}
.v4_c00007{vertical-align:-4.800000pt;}
.v5_c00007{vertical-align:-3.733333pt;}
.v7_c00007{vertical-align:-2.133333pt;}
.v1_c00007{vertical-align:-1.066667pt;}
.v0_c00007{vertical-align:0.000000pt;}
.v3_c00007{vertical-align:1.066667pt;}
.v6_c00007{vertical-align:14.400000pt;}
.lsd_c00007{letter-spacing:0.000000pt;}
.ls1_c00007{letter-spacing:3.566933pt;}
.lse_c00007{letter-spacing:5.333333pt;}
.ls0_c00007{letter-spacing:6.026667pt;}
.ls10_c00007{letter-spacing:8.000000pt;}
.ls5_c00007{letter-spacing:8.354667pt;}
.ls4_c00007{letter-spacing:8.589333pt;}
.ls8_c00007{letter-spacing:17.124267pt;}
.ls3_c00007{letter-spacing:17.746667pt;}
.lsb_c00007{letter-spacing:18.496000pt;}
.ls9_c00007{letter-spacing:19.029333pt;}
.lsc_c00007{letter-spacing:22.679467pt;}
.lsa_c00007{letter-spacing:23.485867pt;}
.lsf_c00007{letter-spacing:29.333333pt;}
.ls2_c00007{letter-spacing:221.162667pt;}
.ls7_c00007{letter-spacing:231.296000pt;}
.ls6_c00007{letter-spacing:335.296000pt;}
.ws1_c00007{word-spacing:-39.130667pt;}
.ws6_c00007{word-spacing:-37.688000pt;}
.ws0_c00007{word-spacing:-18.186667pt;}
.wsc_c00007{word-spacing:-16.354667pt;}
.ws2_c00007{word-spacing:-15.333333pt;}
.ws3_c00007{word-spacing:-11.568000pt;}
.ws9_c00007{word-spacing:-8.354667pt;}
.wsf_c00007{word-spacing:-5.370667pt;}
.ws13_c00007{word-spacing:0.000000pt;}
.wsb_c00007{word-spacing:0.520000pt;}
.ws5_c00007{word-spacing:0.909333pt;}
.ws12_c00007{word-spacing:1.213333pt;}
.wsd_c00007{word-spacing:3.778667pt;}
.ws4_c00007{word-spacing:27.088000pt;}
.ws7_c00007{word-spacing:154.482667pt;}
.wse_c00007{word-spacing:207.744000pt;}
.ws11_c00007{word-spacing:216.096000pt;}
.wsa_c00007{word-spacing:235.194667pt;}
.ws10_c00007{word-spacing:384.362667pt;}
.ws8_c00007{word-spacing:758.016000pt;}
._18_c00007{margin-left:-25.637333pt;}
._12_c00007{margin-left:-11.805333pt;}
._13_c00007{margin-left:-10.768000pt;}
._10_c00007{margin-left:-7.082667pt;}
._c_c00007{margin-left:-5.642667pt;}
._9_c00007{margin-left:-4.354667pt;}
._8_c00007{margin-left:-3.128000pt;}
._3_c00007{margin-left:-1.349333pt;}
._5_c00007{width:1.104000pt;}
._1_c00007{width:2.821333pt;}
._7_c00007{width:4.232000pt;}
._0_c00007{width:5.826667pt;}
._2_c00007{width:7.114667pt;}
._6_c00007{width:8.464000pt;}
._4_c00007{width:9.690667pt;}
._a_c00007{width:11.224000pt;}
._e_c00007{width:12.450667pt;}
._b_c00007{width:13.370667pt;}
._11_c00007{width:14.816000pt;}
._21_c00007{width:16.208000pt;}
._22_c00007{width:17.405333pt;}
._16_c00007{width:19.744000pt;}
._14_c00007{width:20.949333pt;}
._d_c00007{width:22.141333pt;}
._f_c00007{width:26.496000pt;}
._1e_c00007{width:35.040000pt;}
._15_c00007{width:40.554667pt;}
._17_c00007{width:47.088000pt;}
._23_c00007{width:58.858667pt;}
._1c_c00007{width:147.984000pt;}
._1f_c00007{width:173.162667pt;}
._24_c00007{width:212.218667pt;}
._20_c00007{width:214.922667pt;}
._1d_c00007{width:255.504000pt;}
._26_c00007{width:286.962667pt;}
._27_c00007{width:289.912000pt;}
._1a_c00007{width:335.240000pt;}
._19_c00007{width:344.829333pt;}
._25_c00007{width:393.856000pt;}
._1b_c00007{width:452.890667pt;}
.fs7_c00007{font-size:27.733333pt;}
.fs5_c00007{font-size:34.666667pt;}
.fs6_c00007{font-size:37.333333pt;}
.fs4_c00007{font-size:38.400000pt;}
.fs8_c00007{font-size:42.666667pt;}
.fs2_c00007{font-size:48.000000pt;}
.fs1_c00007{font-size:53.333333pt;}
.fs3_c00007{font-size:58.666667pt;}
.fs0_c00007{font-size:61.333333pt;}
.y0_c00007{bottom:0.000000pt;}
.y22_c00007{bottom:2.760000pt;}
.y21_c00007{bottom:6.425206pt;}
.y20_c00007{bottom:61.226667pt;}
.y1f_c00007{bottom:77.093333pt;}
.y1e_c00007{bottom:93.360000pt;}
.y1d_c00007{bottom:109.226667pt;}
.y1c_c00007{bottom:124.160000pt;}
.y1b_c00007{bottom:137.360000pt;}
.y1a_c00007{bottom:157.493333pt;}
.y19_c00007{bottom:172.160000pt;}
.y18_c00007{bottom:188.693333pt;}
.y17_c00007{bottom:203.493333pt;}
.y16_c00007{bottom:218.960000pt;}
.y15_c00007{bottom:236.426667pt;}
.y14_c00007{bottom:268.160000pt;}
.y13_c00007{bottom:285.893333pt;}
.y12_c00007{bottom:323.093333pt;}
.y11_c00007{bottom:359.093333pt;}
.y10_c00007{bottom:376.293333pt;}
.yf_c00007{bottom:394.560000pt;}
.ye_c00007{bottom:412.293333pt;}
.yd_c00007{bottom:430.293333pt;}
.yc_c00007{bottom:448.293333pt;}
.yb_c00007{bottom:466.293333pt;}
.ya_c00007{bottom:484.160000pt;}
.y9_c00007{bottom:502.160000pt;}
.y8_c00007{bottom:520.026667pt;}
.y7_c00007{bottom:538.293333pt;}
.y6_c00007{bottom:556.560000pt;}
.y5_c00007{bottom:574.293333pt;}
.y4_c00007{bottom:591.626667pt;}
.y3_c00007{bottom:610.026667pt;}
.y2_c00007{bottom:628.160000pt;}
.y1_c00007{bottom:646.293333pt;}
.h8_c00007{height:11.733399pt;}
.h9_c00007{height:38.937500pt;}
.h6_c00007{height:41.640885pt;}
.h7_c00007{height:43.891927pt;}
.h5_c00007{height:56.179688pt;}
.h2_c00007{height:60.195312pt;}
.h4_c00007{height:60.773438pt;}
.h3_c00007{height:67.526042pt;}
.h0_c00007{height:699.866667pt;}
.h1_c00007{height:700.000000pt;}
.w2_c00007{width:93.222667pt;}
.w1_c00007{width:491.333333pt;}
.w0_c00007{width:491.533333pt;}
.x0_c00007{left:0.000000pt;}
.xe_c00007{left:63.600000pt;}
.xf_c00007{left:65.066667pt;}
.x5_c00007{left:66.266667pt;}
.x3_c00007{left:68.133333pt;}
.x4_c00007{left:69.200000pt;}
.xc_c00007{left:71.600000pt;}
.xb_c00007{left:73.200000pt;}
.x9_c00007{left:78.933333pt;}
.x6_c00007{left:117.600000pt;}
.x1_c00007{left:126.800000pt;}
.x2_c00007{left:135.866667pt;}
.x11_c00007{left:144.800000pt;}
.x10_c00007{left:146.133333pt;}
.xa_c00007{left:193.466667pt;}
.x12_c00007{left:202.934896pt;}
.x7_c00007{left:282.000000pt;}
.xd_c00007{left:306.000000pt;}
.x8_c00007{left:358.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_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_80c0d4fb5ab86dba202371a2.woff2')format("woff");}.ff1_c00008{font-family:ff1_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:ff2_c00008;src:url('chunks/assets/font_717c914185838902ebe52143.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_b2e939b2a4a42536038db027.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_f0110853eb1aea727153de2c.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;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_c00008;src:url('chunks/assets/font_ed5ad5a28a591e9e4ee8ac6f.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;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_c00008;src:url('chunks/assets/font_449a854ddabec077b9e8e0df.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_98fcb37b09d7ff86f680f0ad.woff2')format("woff");}.ff7_c00008{font-family:ff7_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:ff8_c00008;src:url('chunks/assets/font_cad75e73b0de0340b0c1ff9a.woff2')format("woff");}.ff8_c00008{font-family:ff8_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:ff9_c00008;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00008{font-family:ff9_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);}
.v1_c00008{vertical-align:-63.600000px;}
.v0_c00008{vertical-align:0.000000px;}
.lsf_c00008{letter-spacing:0.000000px;}
.ls7_c00008{letter-spacing:0.180000px;}
.ls0_c00008{letter-spacing:0.510000px;}
.ls3_c00008{letter-spacing:1.518000px;}
.ls2_c00008{letter-spacing:1.800000px;}
.ls5_c00008{letter-spacing:2.112000px;}
.lsd_c00008{letter-spacing:2.280000px;}
.lse_c00008{letter-spacing:2.592000px;}
.ls4_c00008{letter-spacing:3.000000px;}
.ls1_c00008{letter-spacing:3.600000px;}
.ls10_c00008{letter-spacing:6.000000px;}
.ls6_c00008{letter-spacing:7.992000px;}
.ls9_c00008{letter-spacing:11.190000px;}
.ls8_c00008{letter-spacing:15.000000px;}
.lsb_c00008{letter-spacing:17.784000px;}
.lsa_c00008{letter-spacing:19.200000px;}
.lsc_c00008{letter-spacing:48.171000px;}
.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;}
}
.ws9_c00008{word-spacing:-46.134000px;}
.ws3_c00008{word-spacing:-44.022000px;}
.ws4_c00008{word-spacing:-40.104000px;}
.ws8_c00008{word-spacing:-36.120000px;}
.ws12_c00008{word-spacing:-35.604000px;}
.ws0_c00008{word-spacing:-35.175000px;}
.wsd_c00008{word-spacing:-33.000000px;}
.ws10_c00008{word-spacing:-32.361000px;}
.ws2_c00008{word-spacing:-31.326000px;}
.ws7_c00008{word-spacing:-26.844000px;}
.wsa_c00008{word-spacing:-25.326000px;}
.wsb_c00008{word-spacing:-21.006000px;}
.ws5_c00008{word-spacing:-19.629000px;}
.wsc_c00008{word-spacing:-19.182000px;}
.ws13_c00008{word-spacing:-15.846000px;}
.ws11_c00008{word-spacing:-15.606000px;}
.ws1_c00008{word-spacing:-15.183000px;}
.ws6_c00008{word-spacing:-13.014000px;}
.ws14_c00008{word-spacing:0.000000px;}
.wsf_c00008{word-spacing:0.756000px;}
.wse_c00008{word-spacing:11.124000px;}
._15_c00008{margin-left:-59.724000px;}
._1c_c00008{margin-left:-15.246000px;}
._0_c00008{margin-left:-13.050000px;}
._1_c00008{margin-left:-11.100000px;}
._a_c00008{margin-left:-9.798000px;}
._b_c00008{margin-left:-8.487000px;}
._2_c00008{margin-left:-6.375000px;}
._8_c00008{margin-left:-4.677000px;}
._5_c00008{margin-left:-3.396000px;}
._4_c00008{margin-left:-1.518000px;}
._3_c00008{width:1.827000px;}
._9_c00008{width:3.357000px;}
._7_c00008{width:4.752000px;}
._6_c00008{width:6.696000px;}
._13_c00008{width:7.920000px;}
._e_c00008{width:9.324000px;}
._f_c00008{width:11.070000px;}
._16_c00008{width:12.537000px;}
._18_c00008{width:13.941000px;}
._17_c00008{width:17.853000px;}
._11_c00008{width:19.755000px;}
._1a_c00008{width:21.960000px;}
._10_c00008{width:25.413000px;}
._d_c00008{width:26.748000px;}
._19_c00008{width:30.363000px;}
._1b_c00008{width:37.401000px;}
._12_c00008{width:45.237000px;}
._1f_c00008{width:50.442000px;}
._c_c00008{width:57.438000px;}
._14_c00008{width:65.412000px;}
._20_c00008{width:92.931000px;}
._1d_c00008{width:163.971000px;}
._1e_c00008{width:264.417000px;}
.fc2_c00008{color:transparent;}
.fc1_c00008{color:rgb(128,128,128);}
.fc0_c00008{color:rgb(0,0,0);}
.fs4_c00008{font-size:42.000000px;}
.fs8_c00008{font-size:48.000000px;}
.fs2_c00008{font-size:54.000000px;}
.fs7_c00008{font-size:57.000000px;}
.fs6_c00008{font-size:60.000000px;}
.fs1_c00008{font-size:63.000000px;}
.fs3_c00008{font-size:66.000000px;}
.fs5_c00008{font-size:69.000000px;}
.fs0_c00008{font-size:75.000000px;}
.y0_c00008{bottom:0.000000px;}
.y90_c00008{bottom:3.105000px;}
.y8f_c00008{bottom:7.228363px;}
.y25_c00008{bottom:55.050000px;}
.y8e_c00008{bottom:55.950000px;}
.y75_c00008{bottom:58.050000px;}
.y24_c00008{bottom:70.200000px;}
.y8d_c00008{bottom:74.550000px;}
.y74_c00008{bottom:76.200000px;}
.y23_c00008{bottom:88.350000px;}
.y8c_c00008{bottom:91.800000px;}
.y73_c00008{bottom:92.850000px;}
.y8b_c00008{bottom:108.600000px;}
.y22_c00008{bottom:109.050000px;}
.y72_c00008{bottom:110.400000px;}
.y21_c00008{bottom:124.200000px;}
.y8a_c00008{bottom:126.150000px;}
.y71_c00008{bottom:127.950000px;}
.y89_c00008{bottom:144.000000px;}
.y20_c00008{bottom:144.150000px;}
.y70_c00008{bottom:144.450000px;}
.y88_c00008{bottom:161.250000px;}
.y1f_c00008{bottom:162.000000px;}
.y6f_c00008{bottom:163.050000px;}
.y1e_c00008{bottom:175.500000px;}
.y87_c00008{bottom:177.900000px;}
.y7e_c00008{bottom:179.250000px;}
.y6e_c00008{bottom:180.900000px;}
.y7d_c00008{bottom:192.750000px;}
.y86_c00008{bottom:196.050000px;}
.y6d_c00008{bottom:198.000000px;}
.y7c_c00008{bottom:210.150000px;}
.y85_c00008{bottom:213.300000px;}
.y6c_c00008{bottom:216.000000px;}
.y7b_c00008{bottom:229.200000px;}
.y84_c00008{bottom:230.400000px;}
.y1d_c00008{bottom:232.200000px;}
.y6b_c00008{bottom:233.550000px;}
.y83_c00008{bottom:248.100000px;}
.y1c_c00008{bottom:248.700000px;}
.y7a_c00008{bottom:249.450000px;}
.y6a_c00008{bottom:250.650000px;}
.y1b_c00008{bottom:265.500000px;}
.y82_c00008{bottom:266.250000px;}
.y79_c00008{bottom:267.600000px;}
.y69_c00008{bottom:268.350000px;}
.y1a_c00008{bottom:279.150000px;}
.y81_c00008{bottom:283.800000px;}
.y78_c00008{bottom:285.150000px;}
.y68_c00008{bottom:286.200000px;}
.y80_c00008{bottom:299.700000px;}
.y19_c00008{bottom:301.350000px;}
.y77_c00008{bottom:302.400000px;}
.y67_c00008{bottom:304.050000px;}
.y76_c00008{bottom:315.600000px;}
.y7f_c00008{bottom:318.150000px;}
.y66_c00008{bottom:321.600000px;}
.y65_c00008{bottom:338.100000px;}
.y18_c00008{bottom:350.250000px;}
.y64_c00008{bottom:355.050000px;}
.y17_c00008{bottom:367.500000px;}
.y63_c00008{bottom:370.950000px;}
.y53_c00008{bottom:373.200000px;}
.y16_c00008{bottom:388.050000px;}
.y46_c00008{bottom:389.400000px;}
.y52_c00008{bottom:389.850000px;}
.y62_c00008{bottom:391.050000px;}
.y45_c00008{bottom:402.300000px;}
.y15_c00008{bottom:403.350000px;}
.y61_c00008{bottom:407.250000px;}
.y51_c00008{bottom:407.700000px;}
.y60_c00008{bottom:421.500000px;}
.y14_c00008{bottom:424.500000px;}
.y50_c00008{bottom:424.950000px;}
.y13_c00008{bottom:436.650000px;}
.y44_c00008{bottom:437.400000px;}
.y4f_c00008{bottom:442.350000px;}
.y5f_c00008{bottom:442.500000px;}
.y12_c00008{bottom:457.650000px;}
.y5e_c00008{bottom:459.300000px;}
.y4e_c00008{bottom:459.600000px;}
.y43_c00008{bottom:472.050000px;}
.y11_c00008{bottom:475.200000px;}
.y5d_c00008{bottom:476.250000px;}
.y4d_c00008{bottom:477.150000px;}
.y10_c00008{bottom:492.750000px;}
.y5c_c00008{bottom:493.350000px;}
.y42_c00008{bottom:493.650000px;}
.yf_c00008{bottom:509.250000px;}
.y4c_c00008{bottom:510.300000px;}
.y5b_c00008{bottom:510.900000px;}
.y41_c00008{bottom:511.200000px;}
.y40_c00008{bottom:523.050000px;}
.ye_c00008{bottom:526.800000px;}
.y4b_c00008{bottom:527.400000px;}
.y5a_c00008{bottom:528.150000px;}
.yd_c00008{bottom:543.750000px;}
.y3f_c00008{bottom:544.350000px;}
.y4a_c00008{bottom:544.950000px;}
.y59_c00008{bottom:545.400000px;}
.yc_c00008{bottom:561.000000px;}
.y49_c00008{bottom:562.200000px;}
.y3e_c00008{bottom:562.500000px;}
.y58_c00008{bottom:563.250000px;}
.yb_c00008{bottom:578.550000px;}
.y3d_c00008{bottom:578.850000px;}
.y48_c00008{bottom:579.750000px;}
.y57_c00008{bottom:581.100000px;}
.ya_c00008{bottom:595.800000px;}
.y47_c00008{bottom:596.700000px;}
.y56_c00008{bottom:597.750000px;}
.y3c_c00008{bottom:609.900000px;}
.y9_c00008{bottom:614.100000px;}
.y55_c00008{bottom:615.150000px;}
.y3b_c00008{bottom:627.000000px;}
.y8_c00008{bottom:630.900000px;}
.y54_c00008{bottom:632.700000px;}
.y7_c00008{bottom:647.700000px;}
.y3a_c00008{bottom:649.650000px;}
.y6_c00008{bottom:665.250000px;}
.y31_c00008{bottom:666.450000px;}
.y39_c00008{bottom:667.500000px;}
.y5_c00008{bottom:682.200000px;}
.y2b_c00008{bottom:682.800000px;}
.y30_c00008{bottom:684.000000px;}
.y38_c00008{bottom:685.050000px;}
.y2f_c00008{bottom:701.250000px;}
.y37_c00008{bottom:702.000000px;}
.y2a_c00008{bottom:713.100000px;}
.y4_c00008{bottom:714.900000px;}
.y2e_c00008{bottom:718.800000px;}
.y36_c00008{bottom:719.550000px;}
.y29_c00008{bottom:735.750000px;}
.y3_c00008{bottom:736.050000px;}
.y35_c00008{bottom:737.400000px;}
.y28_c00008{bottom:752.550000px;}
.y2d_c00008{bottom:754.200000px;}
.y34_c00008{bottom:754.350000px;}
.y2_c00008{bottom:768.750000px;}
.y27_c00008{bottom:769.800000px;}
.y2c_c00008{bottom:770.850000px;}
.y33_c00008{bottom:772.200000px;}
.y1_c00008{bottom:787.500000px;}
.y26_c00008{bottom:787.950000px;}
.y32_c00008{bottom:789.750000px;}
.hb_c00008{height:13.200074px;}
.hc_c00008{height:43.804688px;}
.h3_c00008{height:63.202148px;}
.h9_c00008{height:64.020000px;}
.h8_c00008{height:67.686035px;}
.h4_c00008{height:68.370117px;}
.ha_c00008{height:75.966797px;}
.h2_c00008{height:79.765137px;}
.h6_c00008{height:80.025000px;}
.h5_c00008{height:80.365137px;}
.h7_c00008{height:87.361816px;}
.h1_c00008{height:87.780762px;}
.h0_c00008{height:823.500000px;}
.w2_c00008{width:104.875500px;}
.w0_c00008{width:551.850000px;}
.w1_c00008{width:552.000000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:29.250000px;}
.x2_c00008{left:32.100000px;}
.x3_c00008{left:34.800000px;}
.x4_c00008{left:36.750000px;}
.x5_c00008{left:38.100000px;}
.x2e_c00008{left:98.850000px;}
.x9_c00008{left:108.300000px;}
.x15_c00008{left:110.100000px;}
.x2f_c00008{left:115.050000px;}
.x2d_c00008{left:118.500000px;}
.x30_c00008{left:119.850000px;}
.x6_c00008{left:122.850000px;}
.x31_c00008{left:123.900000px;}
.x7_c00008{left:126.000000px;}
.x8_c00008{left:127.950000px;}
.x17_c00008{left:129.150000px;}
.x16_c00008{left:130.950000px;}
.x18_c00008{left:137.700000px;}
.x2a_c00008{left:171.450000px;}
.x2b_c00008{left:189.000000px;}
.x1c_c00008{left:190.650000px;}
.x1b_c00008{left:192.750000px;}
.x1e_c00008{left:196.800000px;}
.x1f_c00008{left:200.700000px;}
.x1a_c00008{left:202.200000px;}
.xe_c00008{left:204.750000px;}
.xa_c00008{left:207.600000px;}
.x19_c00008{left:208.950000px;}
.xd_c00008{left:210.900000px;}
.xb_c00008{left:211.950000px;}
.x1d_c00008{left:213.300000px;}
.xc_c00008{left:215.700000px;}
.x2c_c00008{left:220.500000px;}
.x38_c00008{left:227.739258px;}
.x21_c00008{left:332.550000px;}
.x20_c00008{left:340.200000px;}
.x27_c00008{left:342.300000px;}
.x10_c00008{left:355.050000px;}
.x35_c00008{left:360.450000px;}
.x24_c00008{left:362.100000px;}
.xf_c00008{left:365.550000px;}
.x34_c00008{left:373.650000px;}
.x25_c00008{left:376.050000px;}
.x12_c00008{left:380.250000px;}
.x26_c00008{left:383.850000px;}
.x11_c00008{left:385.800000px;}
.x14_c00008{left:387.000000px;}
.x33_c00008{left:388.500000px;}
.x23_c00008{left:390.600000px;}
.x22_c00008{left:391.800000px;}
.x13_c00008{left:394.650000px;}
.x28_c00008{left:398.700000px;}
.x37_c00008{left:404.550000px;}
.x29_c00008{left:408.000000px;}
.x32_c00008{left:411.150000px;}
.x36_c00008{left:412.350000px;}
@media print{
.v1_c00008{vertical-align:-56.533333pt;}
.v0_c00008{vertical-align:0.000000pt;}
.lsf_c00008{letter-spacing:0.000000pt;}
.ls7_c00008{letter-spacing:0.160000pt;}
.ls0_c00008{letter-spacing:0.453333pt;}
.ls3_c00008{letter-spacing:1.349333pt;}
.ls2_c00008{letter-spacing:1.600000pt;}
.ls5_c00008{letter-spacing:1.877333pt;}
.lsd_c00008{letter-spacing:2.026667pt;}
.lse_c00008{letter-spacing:2.304000pt;}
.ls4_c00008{letter-spacing:2.666667pt;}
.ls1_c00008{letter-spacing:3.200000pt;}
.ls10_c00008{letter-spacing:5.333333pt;}
.ls6_c00008{letter-spacing:7.104000pt;}
.ls9_c00008{letter-spacing:9.946667pt;}
.ls8_c00008{letter-spacing:13.333333pt;}
.lsb_c00008{letter-spacing:15.808000pt;}
.lsa_c00008{letter-spacing:17.066667pt;}
.lsc_c00008{letter-spacing:42.818667pt;}
.ws9_c00008{word-spacing:-41.008000pt;}
.ws3_c00008{word-spacing:-39.130667pt;}
.ws4_c00008{word-spacing:-35.648000pt;}
.ws8_c00008{word-spacing:-32.106667pt;}
.ws12_c00008{word-spacing:-31.648000pt;}
.ws0_c00008{word-spacing:-31.266667pt;}
.wsd_c00008{word-spacing:-29.333333pt;}
.ws10_c00008{word-spacing:-28.765333pt;}
.ws2_c00008{word-spacing:-27.845333pt;}
.ws7_c00008{word-spacing:-23.861333pt;}
.wsa_c00008{word-spacing:-22.512000pt;}
.wsb_c00008{word-spacing:-18.672000pt;}
.ws5_c00008{word-spacing:-17.448000pt;}
.wsc_c00008{word-spacing:-17.050667pt;}
.ws13_c00008{word-spacing:-14.085333pt;}
.ws11_c00008{word-spacing:-13.872000pt;}
.ws1_c00008{word-spacing:-13.496000pt;}
.ws6_c00008{word-spacing:-11.568000pt;}
.ws14_c00008{word-spacing:0.000000pt;}
.wsf_c00008{word-spacing:0.672000pt;}
.wse_c00008{word-spacing:9.888000pt;}
._15_c00008{margin-left:-53.088000pt;}
._1c_c00008{margin-left:-13.552000pt;}
._0_c00008{margin-left:-11.600000pt;}
._1_c00008{margin-left:-9.866667pt;}
._a_c00008{margin-left:-8.709333pt;}
._b_c00008{margin-left:-7.544000pt;}
._2_c00008{margin-left:-5.666667pt;}
._8_c00008{margin-left:-4.157333pt;}
._5_c00008{margin-left:-3.018667pt;}
._4_c00008{margin-left:-1.349333pt;}
._3_c00008{width:1.624000pt;}
._9_c00008{width:2.984000pt;}
._7_c00008{width:4.224000pt;}
._6_c00008{width:5.952000pt;}
._13_c00008{width:7.040000pt;}
._e_c00008{width:8.288000pt;}
._f_c00008{width:9.840000pt;}
._16_c00008{width:11.144000pt;}
._18_c00008{width:12.392000pt;}
._17_c00008{width:15.869333pt;}
._11_c00008{width:17.560000pt;}
._1a_c00008{width:19.520000pt;}
._10_c00008{width:22.589333pt;}
._d_c00008{width:23.776000pt;}
._19_c00008{width:26.989333pt;}
._1b_c00008{width:33.245333pt;}
._12_c00008{width:40.210667pt;}
._1f_c00008{width:44.837333pt;}
._c_c00008{width:51.056000pt;}
._14_c00008{width:58.144000pt;}
._20_c00008{width:82.605333pt;}
._1d_c00008{width:145.752000pt;}
._1e_c00008{width:235.037333pt;}
.fs4_c00008{font-size:37.333333pt;}
.fs8_c00008{font-size:42.666667pt;}
.fs2_c00008{font-size:48.000000pt;}
.fs7_c00008{font-size:50.666667pt;}
.fs6_c00008{font-size:53.333333pt;}
.fs1_c00008{font-size:56.000000pt;}
.fs3_c00008{font-size:58.666667pt;}
.fs5_c00008{font-size:61.333333pt;}
.fs0_c00008{font-size:66.666667pt;}
.y0_c00008{bottom:0.000000pt;}
.y90_c00008{bottom:2.760000pt;}
.y8f_c00008{bottom:6.425212pt;}
.y25_c00008{bottom:48.933333pt;}
.y8e_c00008{bottom:49.733333pt;}
.y75_c00008{bottom:51.600000pt;}
.y24_c00008{bottom:62.400000pt;}
.y8d_c00008{bottom:66.266667pt;}
.y74_c00008{bottom:67.733333pt;}
.y23_c00008{bottom:78.533333pt;}
.y8c_c00008{bottom:81.600000pt;}
.y73_c00008{bottom:82.533333pt;}
.y8b_c00008{bottom:96.533333pt;}
.y22_c00008{bottom:96.933333pt;}
.y72_c00008{bottom:98.133333pt;}
.y21_c00008{bottom:110.400000pt;}
.y8a_c00008{bottom:112.133333pt;}
.y71_c00008{bottom:113.733333pt;}
.y89_c00008{bottom:128.000000pt;}
.y20_c00008{bottom:128.133333pt;}
.y70_c00008{bottom:128.400000pt;}
.y88_c00008{bottom:143.333333pt;}
.y1f_c00008{bottom:144.000000pt;}
.y6f_c00008{bottom:144.933333pt;}
.y1e_c00008{bottom:156.000000pt;}
.y87_c00008{bottom:158.133333pt;}
.y7e_c00008{bottom:159.333333pt;}
.y6e_c00008{bottom:160.800000pt;}
.y7d_c00008{bottom:171.333333pt;}
.y86_c00008{bottom:174.266667pt;}
.y6d_c00008{bottom:176.000000pt;}
.y7c_c00008{bottom:186.800000pt;}
.y85_c00008{bottom:189.600000pt;}
.y6c_c00008{bottom:192.000000pt;}
.y7b_c00008{bottom:203.733333pt;}
.y84_c00008{bottom:204.800000pt;}
.y1d_c00008{bottom:206.400000pt;}
.y6b_c00008{bottom:207.600000pt;}
.y83_c00008{bottom:220.533333pt;}
.y1c_c00008{bottom:221.066667pt;}
.y7a_c00008{bottom:221.733333pt;}
.y6a_c00008{bottom:222.800000pt;}
.y1b_c00008{bottom:236.000000pt;}
.y82_c00008{bottom:236.666667pt;}
.y79_c00008{bottom:237.866667pt;}
.y69_c00008{bottom:238.533333pt;}
.y1a_c00008{bottom:248.133333pt;}
.y81_c00008{bottom:252.266667pt;}
.y78_c00008{bottom:253.466667pt;}
.y68_c00008{bottom:254.400000pt;}
.y80_c00008{bottom:266.400000pt;}
.y19_c00008{bottom:267.866667pt;}
.y77_c00008{bottom:268.800000pt;}
.y67_c00008{bottom:270.266667pt;}
.y76_c00008{bottom:280.533333pt;}
.y7f_c00008{bottom:282.800000pt;}
.y66_c00008{bottom:285.866667pt;}
.y65_c00008{bottom:300.533333pt;}
.y18_c00008{bottom:311.333333pt;}
.y64_c00008{bottom:315.600000pt;}
.y17_c00008{bottom:326.666667pt;}
.y63_c00008{bottom:329.733333pt;}
.y53_c00008{bottom:331.733333pt;}
.y16_c00008{bottom:344.933333pt;}
.y46_c00008{bottom:346.133333pt;}
.y52_c00008{bottom:346.533333pt;}
.y62_c00008{bottom:347.600000pt;}
.y45_c00008{bottom:357.600000pt;}
.y15_c00008{bottom:358.533333pt;}
.y61_c00008{bottom:362.000000pt;}
.y51_c00008{bottom:362.400000pt;}
.y60_c00008{bottom:374.666667pt;}
.y14_c00008{bottom:377.333333pt;}
.y50_c00008{bottom:377.733333pt;}
.y13_c00008{bottom:388.133333pt;}
.y44_c00008{bottom:388.800000pt;}
.y4f_c00008{bottom:393.200000pt;}
.y5f_c00008{bottom:393.333333pt;}
.y12_c00008{bottom:406.800000pt;}
.y5e_c00008{bottom:408.266667pt;}
.y4e_c00008{bottom:408.533333pt;}
.y43_c00008{bottom:419.600000pt;}
.y11_c00008{bottom:422.400000pt;}
.y5d_c00008{bottom:423.333333pt;}
.y4d_c00008{bottom:424.133333pt;}
.y10_c00008{bottom:438.000000pt;}
.y5c_c00008{bottom:438.533333pt;}
.y42_c00008{bottom:438.800000pt;}
.yf_c00008{bottom:452.666667pt;}
.y4c_c00008{bottom:453.600000pt;}
.y5b_c00008{bottom:454.133333pt;}
.y41_c00008{bottom:454.400000pt;}
.y40_c00008{bottom:464.933333pt;}
.ye_c00008{bottom:468.266667pt;}
.y4b_c00008{bottom:468.800000pt;}
.y5a_c00008{bottom:469.466667pt;}
.yd_c00008{bottom:483.333333pt;}
.y3f_c00008{bottom:483.866667pt;}
.y4a_c00008{bottom:484.400000pt;}
.y59_c00008{bottom:484.800000pt;}
.yc_c00008{bottom:498.666667pt;}
.y49_c00008{bottom:499.733333pt;}
.y3e_c00008{bottom:500.000000pt;}
.y58_c00008{bottom:500.666667pt;}
.yb_c00008{bottom:514.266667pt;}
.y3d_c00008{bottom:514.533333pt;}
.y48_c00008{bottom:515.333333pt;}
.y57_c00008{bottom:516.533333pt;}
.ya_c00008{bottom:529.600000pt;}
.y47_c00008{bottom:530.400000pt;}
.y56_c00008{bottom:531.333333pt;}
.y3c_c00008{bottom:542.133333pt;}
.y9_c00008{bottom:545.866667pt;}
.y55_c00008{bottom:546.800000pt;}
.y3b_c00008{bottom:557.333333pt;}
.y8_c00008{bottom:560.800000pt;}
.y54_c00008{bottom:562.400000pt;}
.y7_c00008{bottom:575.733333pt;}
.y3a_c00008{bottom:577.466667pt;}
.y6_c00008{bottom:591.333333pt;}
.y31_c00008{bottom:592.400000pt;}
.y39_c00008{bottom:593.333333pt;}
.y5_c00008{bottom:606.400000pt;}
.y2b_c00008{bottom:606.933333pt;}
.y30_c00008{bottom:608.000000pt;}
.y38_c00008{bottom:608.933333pt;}
.y2f_c00008{bottom:623.333333pt;}
.y37_c00008{bottom:624.000000pt;}
.y2a_c00008{bottom:633.866667pt;}
.y4_c00008{bottom:635.466667pt;}
.y2e_c00008{bottom:638.933333pt;}
.y36_c00008{bottom:639.600000pt;}
.y29_c00008{bottom:654.000000pt;}
.y3_c00008{bottom:654.266667pt;}
.y35_c00008{bottom:655.466667pt;}
.y28_c00008{bottom:668.933333pt;}
.y2d_c00008{bottom:670.400000pt;}
.y34_c00008{bottom:670.533333pt;}
.y2_c00008{bottom:683.333333pt;}
.y27_c00008{bottom:684.266667pt;}
.y2c_c00008{bottom:685.200000pt;}
.y33_c00008{bottom:686.400000pt;}
.y1_c00008{bottom:700.000000pt;}
.y26_c00008{bottom:700.400000pt;}
.y32_c00008{bottom:702.000000pt;}
.hb_c00008{height:11.733399pt;}
.hc_c00008{height:38.937500pt;}
.h3_c00008{height:56.179688pt;}
.h9_c00008{height:56.906667pt;}
.h8_c00008{height:60.165365pt;}
.h4_c00008{height:60.773438pt;}
.ha_c00008{height:67.526042pt;}
.h2_c00008{height:70.902344pt;}
.h6_c00008{height:71.133333pt;}
.h5_c00008{height:71.435677pt;}
.h7_c00008{height:77.654948pt;}
.h1_c00008{height:78.027344pt;}
.h0_c00008{height:732.000000pt;}
.w2_c00008{width:93.222667pt;}
.w0_c00008{width:490.533333pt;}
.w1_c00008{width:490.666667pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:26.000000pt;}
.x2_c00008{left:28.533333pt;}
.x3_c00008{left:30.933333pt;}
.x4_c00008{left:32.666667pt;}
.x5_c00008{left:33.866667pt;}
.x2e_c00008{left:87.866667pt;}
.x9_c00008{left:96.266667pt;}
.x15_c00008{left:97.866667pt;}
.x2f_c00008{left:102.266667pt;}
.x2d_c00008{left:105.333333pt;}
.x30_c00008{left:106.533333pt;}
.x6_c00008{left:109.200000pt;}
.x31_c00008{left:110.133333pt;}
.x7_c00008{left:112.000000pt;}
.x8_c00008{left:113.733333pt;}
.x17_c00008{left:114.800000pt;}
.x16_c00008{left:116.400000pt;}
.x18_c00008{left:122.400000pt;}
.x2a_c00008{left:152.400000pt;}
.x2b_c00008{left:168.000000pt;}
.x1c_c00008{left:169.466667pt;}
.x1b_c00008{left:171.333333pt;}
.x1e_c00008{left:174.933333pt;}
.x1f_c00008{left:178.400000pt;}
.x1a_c00008{left:179.733333pt;}
.xe_c00008{left:182.000000pt;}
.xa_c00008{left:184.533333pt;}
.x19_c00008{left:185.733333pt;}
.xd_c00008{left:187.466667pt;}
.xb_c00008{left:188.400000pt;}
.x1d_c00008{left:189.600000pt;}
.xc_c00008{left:191.733333pt;}
.x2c_c00008{left:196.000000pt;}
.x38_c00008{left:202.434896pt;}
.x21_c00008{left:295.600000pt;}
.x20_c00008{left:302.400000pt;}
.x27_c00008{left:304.266667pt;}
.x10_c00008{left:315.600000pt;}
.x35_c00008{left:320.400000pt;}
.x24_c00008{left:321.866667pt;}
.xf_c00008{left:324.933333pt;}
.x34_c00008{left:332.133333pt;}
.x25_c00008{left:334.266667pt;}
.x12_c00008{left:338.000000pt;}
.x26_c00008{left:341.200000pt;}
.x11_c00008{left:342.933333pt;}
.x14_c00008{left:344.000000pt;}
.x33_c00008{left:345.333333pt;}
.x23_c00008{left:347.200000pt;}
.x22_c00008{left:348.266667pt;}
.x13_c00008{left:350.800000pt;}
.x28_c00008{left:354.400000pt;}
.x37_c00008{left:359.600000pt;}
.x29_c00008{left:362.666667pt;}
.x32_c00008{left:365.466667pt;}
.x36_c00008{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_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_8a840aefd87485da0abcdd46.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_2b94ef56959a842acd04fa64.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_5a8f399b7cf3d949b013c51d.woff2')format("woff");}.ff3_c00009{font-family:ff3_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:ff4_c00009;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00009{font-family:ff4_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;}
.ls0_c00009{letter-spacing:0.000000px;}
.ls1_c00009{letter-spacing:9.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:-26.250000px;}
.ws0_c00009{word-spacing:-17.250000px;}
.ws2_c00009{word-spacing:-11.556000px;}
.ws3_c00009{word-spacing:0.000000px;}
._b_c00009{margin-left:-26.979000px;}
._1a_c00009{margin-left:-16.629000px;}
._19_c00009{margin-left:-12.321000px;}
._8_c00009{margin-left:-10.626000px;}
._16_c00009{margin-left:-9.528000px;}
._14_c00009{margin-left:-7.758000px;}
._15_c00009{margin-left:-6.180000px;}
._9_c00009{margin-left:-4.485000px;}
._1_c00009{margin-left:-3.450000px;}
._5_c00009{margin-left:-2.346000px;}
._4_c00009{margin-left:-1.311000px;}
._2_c00009{width:1.173000px;}
._3_c00009{width:2.484000px;}
._0_c00009{width:4.209000px;}
._7_c00009{width:5.382000px;}
._12_c00009{width:6.555000px;}
._f_c00009{width:7.797000px;}
._d_c00009{width:9.789000px;}
._e_c00009{width:10.971000px;}
._6_c00009{width:12.222000px;}
._a_c00009{width:13.662000px;}
._11_c00009{width:14.982000px;}
._c_c00009{width:19.458000px;}
._1d_c00009{width:20.979000px;}
._18_c00009{width:27.837000px;}
._17_c00009{width:29.748000px;}
._13_c00009{width:31.188000px;}
._1b_c00009{width:32.193000px;}
._10_c00009{width:34.086000px;}
._1c_c00009{width:297.942000px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(128,128,128);}
.fc0_c00009{color:rgb(0,0,0);}
.fs2_c00009{font-size:48.000000px;}
.fs1_c00009{font-size:54.000000px;}
.fs0_c00009{font-size:69.000000px;}
.y0_c00009{bottom:0.000000px;}
.y20_c00009{bottom:3.105000px;}
.y1f_c00009{bottom:7.228357px;}
.y1e_c00009{bottom:53.730000px;}
.y1d_c00009{bottom:158.580000px;}
.y1c_c00009{bottom:179.280000px;}
.y1b_c00009{bottom:199.830000px;}
.y1a_c00009{bottom:219.780000px;}
.y19_c00009{bottom:240.630000px;}
.y18_c00009{bottom:260.880000px;}
.y17_c00009{bottom:281.430000px;}
.y16_c00009{bottom:301.380000px;}
.y15_c00009{bottom:321.630000px;}
.y14_c00009{bottom:341.280000px;}
.y13_c00009{bottom:361.530000px;}
.y12_c00009{bottom:381.480000px;}
.y11_c00009{bottom:402.030000px;}
.y10_c00009{bottom:422.280000px;}
.yf_c00009{bottom:442.530000px;}
.ye_c00009{bottom:462.780000px;}
.yd_c00009{bottom:482.730000px;}
.yc_c00009{bottom:502.830000px;}
.yb_c00009{bottom:522.780000px;}
.ya_c00009{bottom:543.030000px;}
.y9_c00009{bottom:563.280000px;}
.y8_c00009{bottom:583.530000px;}
.y7_c00009{bottom:603.480000px;}
.y6_c00009{bottom:623.730000px;}
.y5_c00009{bottom:644.280000px;}
.y4_c00009{bottom:664.530000px;}
.y3_c00009{bottom:684.780000px;}
.y2_c00009{bottom:705.330000px;}
.y1_c00009{bottom:725.280000px;}
.h3_c00009{height:13.200074px;}
.h4_c00009{height:43.804688px;}
.h1_c00009{height:67.719727px;}
.h2_c00009{height:68.370117px;}
.h0_c00009{height:792.750000px;}
.w2_c00009{width:104.875500px;}
.w1_c00009{width:556.500000px;}
.w0_c00009{width:556.725000px;}
.x0_c00009{left:0.000000px;}
.x7_c00009{left:75.600000px;}
.x6_c00009{left:77.250000px;}
.x5_c00009{left:78.300000px;}
.x4_c00009{left:79.350000px;}
.x3_c00009{left:143.400000px;}
.x1_c00009{left:144.750000px;}
.x2_c00009{left:153.900000px;}
.x9_c00009{left:230.176758px;}
.x8_c00009{left:460.050000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ls1_c00009{letter-spacing:8.000000pt;}
.ws1_c00009{word-spacing:-23.333333pt;}
.ws0_c00009{word-spacing:-15.333333pt;}
.ws2_c00009{word-spacing:-10.272000pt;}
.ws3_c00009{word-spacing:0.000000pt;}
._b_c00009{margin-left:-23.981333pt;}
._1a_c00009{margin-left:-14.781333pt;}
._19_c00009{margin-left:-10.952000pt;}
._8_c00009{margin-left:-9.445333pt;}
._16_c00009{margin-left:-8.469333pt;}
._14_c00009{margin-left:-6.896000pt;}
._15_c00009{margin-left:-5.493333pt;}
._9_c00009{margin-left:-3.986667pt;}
._1_c00009{margin-left:-3.066667pt;}
._5_c00009{margin-left:-2.085333pt;}
._4_c00009{margin-left:-1.165333pt;}
._2_c00009{width:1.042667pt;}
._3_c00009{width:2.208000pt;}
._0_c00009{width:3.741333pt;}
._7_c00009{width:4.784000pt;}
._12_c00009{width:5.826667pt;}
._f_c00009{width:6.930667pt;}
._d_c00009{width:8.701333pt;}
._e_c00009{width:9.752000pt;}
._6_c00009{width:10.864000pt;}
._a_c00009{width:12.144000pt;}
._11_c00009{width:13.317333pt;}
._c_c00009{width:17.296000pt;}
._1d_c00009{width:18.648000pt;}
._18_c00009{width:24.744000pt;}
._17_c00009{width:26.442667pt;}
._13_c00009{width:27.722667pt;}
._1b_c00009{width:28.616000pt;}
._10_c00009{width:30.298667pt;}
._1c_c00009{width:264.837333pt;}
.fs2_c00009{font-size:42.666667pt;}
.fs1_c00009{font-size:48.000000pt;}
.fs0_c00009{font-size:61.333333pt;}
.y0_c00009{bottom:0.000000pt;}
.y20_c00009{bottom:2.760000pt;}
.y1f_c00009{bottom:6.425206pt;}
.y1e_c00009{bottom:47.760000pt;}
.y1d_c00009{bottom:140.960000pt;}
.y1c_c00009{bottom:159.360000pt;}
.y1b_c00009{bottom:177.626667pt;}
.y1a_c00009{bottom:195.360000pt;}
.y19_c00009{bottom:213.893333pt;}
.y18_c00009{bottom:231.893333pt;}
.y17_c00009{bottom:250.160000pt;}
.y16_c00009{bottom:267.893333pt;}
.y15_c00009{bottom:285.893333pt;}
.y14_c00009{bottom:303.360000pt;}
.y13_c00009{bottom:321.360000pt;}
.y12_c00009{bottom:339.093333pt;}
.y11_c00009{bottom:357.360000pt;}
.y10_c00009{bottom:375.360000pt;}
.yf_c00009{bottom:393.360000pt;}
.ye_c00009{bottom:411.360000pt;}
.yd_c00009{bottom:429.093333pt;}
.yc_c00009{bottom:446.960000pt;}
.yb_c00009{bottom:464.693333pt;}
.ya_c00009{bottom:482.693333pt;}
.y9_c00009{bottom:500.693333pt;}
.y8_c00009{bottom:518.693333pt;}
.y7_c00009{bottom:536.426667pt;}
.y6_c00009{bottom:554.426667pt;}
.y5_c00009{bottom:572.693333pt;}
.y4_c00009{bottom:590.693333pt;}
.y3_c00009{bottom:608.693333pt;}
.y2_c00009{bottom:626.960000pt;}
.y1_c00009{bottom:644.693333pt;}
.h3_c00009{height:11.733399pt;}
.h4_c00009{height:38.937500pt;}
.h1_c00009{height:60.195312pt;}
.h2_c00009{height:60.773438pt;}
.h0_c00009{height:704.666667pt;}
.w2_c00009{width:93.222667pt;}
.w1_c00009{width:494.666667pt;}
.w0_c00009{width:494.866667pt;}
.x0_c00009{left:0.000000pt;}
.x7_c00009{left:67.200000pt;}
.x6_c00009{left:68.666667pt;}
.x5_c00009{left:69.600000pt;}
.x4_c00009{left:70.533333pt;}
.x3_c00009{left:127.466667pt;}
.x1_c00009{left:128.666667pt;}
.x2_c00009{left:136.800000pt;}
.x9_c00009{left:204.601563pt;}
.x8_c00009{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_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_2c0ea881c48a0dc54743b4f1.woff2')format("woff");}.ff1_c00010{font-family:ff1_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:ff2_c00010;src:url('chunks/assets/font_63e9be83aa883c8d375598b9.woff2')format("woff");}.ff2_c00010{font-family:ff2_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:ff3_c00010;src:url('chunks/assets/font_a3bf2a907f682d5506e90fe4.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_eea4694b42144a29f98f3325.woff2')format("woff");}.ff4_c00010{font-family:ff4_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:ff5_c00010;src:url('chunks/assets/font_63bd50b407a5fc15036bc3e3.woff2')format("woff");}.ff5_c00010{font-family:ff5_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:ff6_c00010;src:url('chunks/assets/font_0e0917064e70c80ca1058cf8.woff2')format("woff");}.ff6_c00010{font-family:ff6_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:ff7_c00010;src:url('chunks/assets/font_a742755be8d1b90fadd74003.woff2')format("woff");}.ff7_c00010{font-family:ff7_c00010;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_c00010;src:url('chunks/assets/font_03b62eb506aa3c27fd76861b.woff2')format("woff");}.ff8_c00010{font-family:ff8_c00010;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_c00010;src:url('chunks/assets/font_9868118731066c5bd8a7d6f5.woff2')format("woff");}.ff9_c00010{font-family:ff9_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:ffa_c00010;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffa_c00010{font-family:ffa_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;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls7_c00010{letter-spacing:0.000000px;}
.ls4_c00010{letter-spacing:3.000000px;}
.ls1_c00010{letter-spacing:6.030000px;}
.ls3_c00010{letter-spacing:12.000000px;}
.ls2_c00010{letter-spacing:13.746000px;}
.ls6_c00010{letter-spacing:21.000000px;}
.ls5_c00010{letter-spacing:30.000000px;}
.ls0_c00010{letter-spacing:52.248000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:-92.523000px;}
.ws4_c00010{word-spacing:-60.900000px;}
.ws2_c00010{word-spacing:-50.311200px;}
.ws1_c00010{word-spacing:-43.881600px;}
.ws3_c00010{word-spacing:-19.629000px;}
.ws5_c00010{word-spacing:0.000000px;}
._3_c00010{margin-left:-13.455000px;}
._19_c00010{margin-left:-12.075000px;}
._1_c00010{margin-left:-9.936000px;}
._0_c00010{margin-left:-8.901000px;}
._16_c00010{margin-left:-7.191600px;}
._2_c00010{margin-left:-5.796000px;}
._b_c00010{margin-left:-4.147200px;}
._14_c00010{margin-left:-2.553000px;}
._11_c00010{margin-left:-1.224000px;}
._12_c00010{width:1.368000px;}
._10_c00010{width:2.918400px;}
._13_c00010{width:3.960000px;}
._f_c00010{width:5.454000px;}
._d_c00010{width:7.382400px;}
._c_c00010{width:9.321600px;}
._a_c00010{width:11.277000px;}
._8_c00010{width:12.627000px;}
._5_c00010{width:13.662000px;}
._6_c00010{width:15.318000px;}
._4_c00010{width:17.148000px;}
._7_c00010{width:18.561000px;}
._17_c00010{width:20.410200px;}
._9_c00010{width:21.804000px;}
._e_c00010{width:23.128800px;}
._18_c00010{width:24.710400px;}
._1a_c00010{width:33.741000px;}
._15_c00010{width:35.241000px;}
._1b_c00010{width:44.229000px;}
._1c_c00010{width:533.149200px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(128,128,128);}
.fc0_c00010{color:rgb(0,0,0);}
.fs6_c00010{font-size:48.000000px;}
.fs5_c00010{font-size:51.000000px;}
.fs4_c00010{font-size:55.200000px;}
.fs2_c00010{font-size:57.600000px;}
.fs1_c00010{font-size:69.000000px;}
.fs3_c00010{font-size:72.000000px;}
.fs8_c00010{font-size:75.000000px;}
.fs7_c00010{font-size:90.000000px;}
.fs0_c00010{font-size:207.000000px;}
.y0_c00010{bottom:0.000000px;}
.y14_c00010{bottom:3.105000px;}
.y13_c00010{bottom:7.228371px;}
.y12_c00010{bottom:56.415000px;}
.y11_c00010{bottom:82.065000px;}
.y10_c00010{bottom:107.715000px;}
.yf_c00010{bottom:132.615000px;}
.ye_c00010{bottom:157.065000px;}
.yd_c00010{bottom:181.965000px;}
.yc_c00010{bottom:208.215000px;}
.yb_c00010{bottom:232.665000px;}
.ya_c00010{bottom:258.615000px;}
.y9_c00010{bottom:282.615000px;}
.y8_c00010{bottom:310.215000px;}
.y7_c00010{bottom:332.565000px;}
.y6_c00010{bottom:354.015000px;}
.y5_c00010{bottom:380.715000px;}
.y4_c00010{bottom:429.765000px;}
.y3_c00010{bottom:470.265000px;}
.y2_c00010{bottom:494.115000px;}
.y1_c00010{bottom:528.615000px;}
.h9_c00010{height:13.200074px;}
.ha_c00010{height:43.804688px;}
.h7_c00010{height:56.179688px;}
.h6_c00010{height:64.571777px;}
.h5_c00010{height:80.758301px;}
.h3_c00010{height:87.361816px;}
.h4_c00010{height:91.160156px;}
.h8_c00010{height:96.030000px;}
.h2_c00010{height:216.936000px;}
.h1_c00010{height:831.000000px;}
.h0_c00010{height:831.075000px;}
.w1_c00010{width:104.875500px;}
.w0_c00010{width:557.250000px;}
.x0_c00010{left:0.000000px;}
.xa_c00010{left:42.600000px;}
.xd_c00010{left:44.550000px;}
.x2_c00010{left:45.600000px;}
.xc_c00010{left:65.250000px;}
.xb_c00010{left:66.450000px;}
.xe_c00010{left:67.500000px;}
.x1_c00010{left:131.250000px;}
.x4_c00010{left:152.550000px;}
.x3_c00010{left:166.050000px;}
.x5_c00010{left:199.500000px;}
.x6_c00010{left:208.200000px;}
.x8_c00010{left:212.250000px;}
.x9_c00010{left:221.100000px;}
.x7_c00010{left:222.750000px;}
.x10_c00010{left:230.439240px;}
.xf_c00010{left:295.350000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls7_c00010{letter-spacing:0.000000pt;}
.ls4_c00010{letter-spacing:2.666667pt;}
.ls1_c00010{letter-spacing:5.360000pt;}
.ls3_c00010{letter-spacing:10.666667pt;}
.ls2_c00010{letter-spacing:12.218667pt;}
.ls6_c00010{letter-spacing:18.666667pt;}
.ls5_c00010{letter-spacing:26.666667pt;}
.ls0_c00010{letter-spacing:46.442667pt;}
.ws0_c00010{word-spacing:-82.242667pt;}
.ws4_c00010{word-spacing:-54.133333pt;}
.ws2_c00010{word-spacing:-44.721067pt;}
.ws1_c00010{word-spacing:-39.005867pt;}
.ws3_c00010{word-spacing:-17.448000pt;}
.ws5_c00010{word-spacing:0.000000pt;}
._3_c00010{margin-left:-11.960000pt;}
._19_c00010{margin-left:-10.733333pt;}
._1_c00010{margin-left:-8.832000pt;}
._0_c00010{margin-left:-7.912000pt;}
._16_c00010{margin-left:-6.392533pt;}
._2_c00010{margin-left:-5.152000pt;}
._b_c00010{margin-left:-3.686400pt;}
._14_c00010{margin-left:-2.269333pt;}
._11_c00010{margin-left:-1.088000pt;}
._12_c00010{width:1.216000pt;}
._10_c00010{width:2.594133pt;}
._13_c00010{width:3.520000pt;}
._f_c00010{width:4.848000pt;}
._d_c00010{width:6.562133pt;}
._c_c00010{width:8.285867pt;}
._a_c00010{width:10.024000pt;}
._8_c00010{width:11.224000pt;}
._5_c00010{width:12.144000pt;}
._6_c00010{width:13.616000pt;}
._4_c00010{width:15.242667pt;}
._7_c00010{width:16.498667pt;}
._17_c00010{width:18.142400pt;}
._9_c00010{width:19.381333pt;}
._e_c00010{width:20.558933pt;}
._18_c00010{width:21.964800pt;}
._1a_c00010{width:29.992000pt;}
._15_c00010{width:31.325333pt;}
._1b_c00010{width:39.314667pt;}
._1c_c00010{width:473.910400pt;}
.fs6_c00010{font-size:42.666667pt;}
.fs5_c00010{font-size:45.333333pt;}
.fs4_c00010{font-size:49.066667pt;}
.fs2_c00010{font-size:51.200000pt;}
.fs1_c00010{font-size:61.333333pt;}
.fs3_c00010{font-size:64.000000pt;}
.fs8_c00010{font-size:66.666667pt;}
.fs7_c00010{font-size:80.000000pt;}
.fs0_c00010{font-size:184.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y14_c00010{bottom:2.760000pt;}
.y13_c00010{bottom:6.425219pt;}
.y12_c00010{bottom:50.146667pt;}
.y11_c00010{bottom:72.946667pt;}
.y10_c00010{bottom:95.746667pt;}
.yf_c00010{bottom:117.880000pt;}
.ye_c00010{bottom:139.613333pt;}
.yd_c00010{bottom:161.746667pt;}
.yc_c00010{bottom:185.080000pt;}
.yb_c00010{bottom:206.813333pt;}
.ya_c00010{bottom:229.880000pt;}
.y9_c00010{bottom:251.213333pt;}
.y8_c00010{bottom:275.746667pt;}
.y7_c00010{bottom:295.613333pt;}
.y6_c00010{bottom:314.680000pt;}
.y5_c00010{bottom:338.413333pt;}
.y4_c00010{bottom:382.013333pt;}
.y3_c00010{bottom:418.013333pt;}
.y2_c00010{bottom:439.213333pt;}
.y1_c00010{bottom:469.880000pt;}
.h9_c00010{height:11.733399pt;}
.ha_c00010{height:38.937500pt;}
.h7_c00010{height:49.937500pt;}
.h6_c00010{height:57.397135pt;}
.h5_c00010{height:71.785156pt;}
.h3_c00010{height:77.654948pt;}
.h4_c00010{height:81.031250pt;}
.h8_c00010{height:85.360000pt;}
.h2_c00010{height:192.832000pt;}
.h1_c00010{height:738.666667pt;}
.h0_c00010{height:738.733333pt;}
.w1_c00010{width:93.222667pt;}
.w0_c00010{width:495.333333pt;}
.x0_c00010{left:0.000000pt;}
.xa_c00010{left:37.866667pt;}
.xd_c00010{left:39.600000pt;}
.x2_c00010{left:40.533333pt;}
.xc_c00010{left:58.000000pt;}
.xb_c00010{left:59.066667pt;}
.xe_c00010{left:60.000000pt;}
.x1_c00010{left:116.666667pt;}
.x4_c00010{left:135.600000pt;}
.x3_c00010{left:147.600000pt;}
.x5_c00010{left:177.333333pt;}
.x6_c00010{left:185.066667pt;}
.x8_c00010{left:188.666667pt;}
.x9_c00010{left:196.533333pt;}
.x7_c00010{left:198.000000pt;}
.x10_c00010{left:204.834880pt;}
.xf_c00010{left:262.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_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_17da77e38ddb524c94ddc608.woff2')format("woff");}.ff1_c00011{font-family:ff1_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:ff2_c00011;src:url('chunks/assets/font_481d978f46f20ca6cda1ff9f.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_c224416830745eb4f65aedc3.woff2')format("woff");}.ff3_c00011{font-family:ff3_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:ff4_c00011;src:url('chunks/assets/font_949280bb561a1dd3f2949ffc.woff2')format("woff");}.ff4_c00011{font-family:ff4_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:ff5_c00011;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.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_d629450326d1887cebb53b1a.woff2')format("woff");}.ff6_c00011{font-family:ff6_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:ff7_c00011;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff7_c00011{font-family:ff7_c00011;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_c00011;src:url('chunks/assets/font_bc2704078a4dd0a1655755e3.woff2')format("woff");}.ff8_c00011{font-family:ff8_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:ff9_c00011;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00011{font-family:ff9_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls7_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:0.900000px;}
.ls6_c00011{letter-spacing:3.000000px;}
.ls2_c00011{letter-spacing:3.300000px;}
.ls8_c00011{letter-spacing:9.000000px;}
.ls1_c00011{letter-spacing:10.110000px;}
.ls3_c00011{letter-spacing:16.350000px;}
.ls5_c00011{letter-spacing:21.000000px;}
.ls4_c00011{letter-spacing:21.753000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00011{word-spacing:-37.629000px;}
.ws5_c00011{word-spacing:-23.250000px;}
.ws2_c00011{word-spacing:-22.500000px;}
.ws7_c00011{word-spacing:-19.845000px;}
.ws8_c00011{word-spacing:-19.818000px;}
.ws0_c00011{word-spacing:-19.629000px;}
.ws9_c00011{word-spacing:-17.352000px;}
.wsa_c00011{word-spacing:-14.484000px;}
.ws4_c00011{word-spacing:-14.250000px;}
.ws6_c00011{word-spacing:-10.845000px;}
.wsb_c00011{word-spacing:0.000000px;}
.ws3_c00011{word-spacing:5.970000px;}
._22_c00011{margin-left:-35.517000px;}
._f_c00011{margin-left:-22.770000px;}
._9_c00011{margin-left:-20.631000px;}
._23_c00011{margin-left:-18.096000px;}
._e_c00011{margin-left:-12.081000px;}
._1c_c00011{margin-left:-10.503000px;}
._16_c00011{margin-left:-8.973000px;}
._1b_c00011{margin-left:-7.809000px;}
._14_c00011{margin-left:-6.300000px;}
._1a_c00011{margin-left:-4.848000px;}
._1_c00011{margin-left:-3.450000px;}
._0_c00011{margin-left:-1.863000px;}
._2_c00011{width:2.001000px;}
._6_c00011{width:3.036000px;}
._b_c00011{width:4.209000px;}
._5_c00011{width:5.520000px;}
._d_c00011{width:6.804000px;}
._4_c00011{width:8.004000px;}
._15_c00011{width:9.714000px;}
._17_c00011{width:11.724000px;}
._8_c00011{width:13.179000px;}
._20_c00011{width:14.352000px;}
._a_c00011{width:15.768000px;}
._7_c00011{width:17.319000px;}
._c_c00011{width:18.423000px;}
._13_c00011{width:20.700000px;}
._12_c00011{width:21.831000px;}
._19_c00011{width:23.865000px;}
._1d_c00011{width:30.579000px;}
._11_c00011{width:34.500000px;}
._21_c00011{width:36.312000px;}
._3_c00011{width:37.605000px;}
._1e_c00011{width:40.737000px;}
._1f_c00011{width:43.128000px;}
._10_c00011{width:52.992000px;}
._18_c00011{width:206.130000px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(128,128,128);}
.fc0_c00011{color:rgb(0,0,0);}
.fs2_c00011{font-size:45.000000px;}
.fs7_c00011{font-size:48.000000px;}
.fs6_c00011{font-size:51.000000px;}
.fs3_c00011{font-size:54.000000px;}
.fs1_c00011{font-size:57.000000px;}
.fs0_c00011{font-size:69.000000px;}
.fs4_c00011{font-size:72.000000px;}
.fs5_c00011{font-size:75.000000px;}
.y0_c00011{bottom:0.000000px;}
.y20_c00011{bottom:3.105000px;}
.y1f_c00011{bottom:7.228363px;}
.y1e_c00011{bottom:54.000000px;}
.y1d_c00011{bottom:78.600000px;}
.y1c_c00011{bottom:104.850000px;}
.y1b_c00011{bottom:130.200000px;}
.y1a_c00011{bottom:155.250000px;}
.y19_c00011{bottom:180.900000px;}
.y18_c00011{bottom:210.150000px;}
.y17_c00011{bottom:227.400000px;}
.y16_c00011{bottom:245.400000px;}
.y15_c00011{bottom:280.350000px;}
.y14_c00011{bottom:304.050000px;}
.y13_c00011{bottom:330.450000px;}
.y12_c00011{bottom:353.250000px;}
.y11_c00011{bottom:382.650000px;}
.y10_c00011{bottom:399.900000px;}
.yf_c00011{bottom:417.450000px;}
.ye_c00011{bottom:435.000000px;}
.yd_c00011{bottom:452.550000px;}
.yc_c00011{bottom:478.950000px;}
.yb_c00011{bottom:503.100000px;}
.ya_c00011{bottom:527.550000px;}
.y9_c00011{bottom:552.450000px;}
.y8_c00011{bottom:577.350000px;}
.y7_c00011{bottom:603.000000px;}
.y6_c00011{bottom:627.000000px;}
.y5_c00011{bottom:656.700000px;}
.y4_c00011{bottom:676.950000px;}
.y3_c00011{bottom:700.350000px;}
.y2_c00011{bottom:725.850000px;}
.y1_c00011{bottom:751.200000px;}
.ha_c00011{height:13.200074px;}
.hb_c00011{height:43.804688px;}
.h7_c00011{height:52.668457px;}
.h3_c00011{height:55.914551px;}
.h4_c00011{height:55.942383px;}
.h5_c00011{height:56.975098px;}
.h6_c00011{height:58.536000px;}
.h9_c00011{height:64.571777px;}
.h2_c00011{height:87.361816px;}
.h8_c00011{height:94.958496px;}
.h1_c00011{height:815.250000px;}
.h0_c00011{height:815.400000px;}
.w2_c00011{width:104.875500px;}
.w0_c00011{width:572.925000px;}
.w1_c00011{width:573.000000px;}
.x0_c00011{left:0.000000px;}
.xe_c00011{left:82.050000px;}
.x5_c00011{left:84.000000px;}
.xb_c00011{left:103.050000px;}
.xc_c00011{left:104.250000px;}
.x4_c00011{left:105.300000px;}
.x2_c00011{left:106.350000px;}
.x8_c00011{left:119.100000px;}
.x7_c00011{left:120.450000px;}
.x9_c00011{left:121.500000px;}
.xd_c00011{left:125.250000px;}
.xa_c00011{left:126.300000px;}
.x6_c00011{left:128.250000px;}
.x3_c00011{left:129.600000px;}
.x1_c00011{left:131.700000px;}
.x10_c00011{left:238.276749px;}
.xf_c00011{left:514.350000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls7_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:0.800000pt;}
.ls6_c00011{letter-spacing:2.666667pt;}
.ls2_c00011{letter-spacing:2.933333pt;}
.ls8_c00011{letter-spacing:8.000000pt;}
.ls1_c00011{letter-spacing:8.986667pt;}
.ls3_c00011{letter-spacing:14.533333pt;}
.ls5_c00011{letter-spacing:18.666667pt;}
.ls4_c00011{letter-spacing:19.336000pt;}
.ws1_c00011{word-spacing:-33.448000pt;}
.ws5_c00011{word-spacing:-20.666667pt;}
.ws2_c00011{word-spacing:-20.000000pt;}
.ws7_c00011{word-spacing:-17.640000pt;}
.ws8_c00011{word-spacing:-17.616000pt;}
.ws0_c00011{word-spacing:-17.448000pt;}
.ws9_c00011{word-spacing:-15.424000pt;}
.wsa_c00011{word-spacing:-12.874667pt;}
.ws4_c00011{word-spacing:-12.666667pt;}
.ws6_c00011{word-spacing:-9.640000pt;}
.wsb_c00011{word-spacing:0.000000pt;}
.ws3_c00011{word-spacing:5.306667pt;}
._22_c00011{margin-left:-31.570667pt;}
._f_c00011{margin-left:-20.240000pt;}
._9_c00011{margin-left:-18.338667pt;}
._23_c00011{margin-left:-16.085333pt;}
._e_c00011{margin-left:-10.738667pt;}
._1c_c00011{margin-left:-9.336000pt;}
._16_c00011{margin-left:-7.976000pt;}
._1b_c00011{margin-left:-6.941333pt;}
._14_c00011{margin-left:-5.600000pt;}
._1a_c00011{margin-left:-4.309333pt;}
._1_c00011{margin-left:-3.066667pt;}
._0_c00011{margin-left:-1.656000pt;}
._2_c00011{width:1.778667pt;}
._6_c00011{width:2.698667pt;}
._b_c00011{width:3.741333pt;}
._5_c00011{width:4.906667pt;}
._d_c00011{width:6.048000pt;}
._4_c00011{width:7.114667pt;}
._15_c00011{width:8.634667pt;}
._17_c00011{width:10.421333pt;}
._8_c00011{width:11.714667pt;}
._20_c00011{width:12.757333pt;}
._a_c00011{width:14.016000pt;}
._7_c00011{width:15.394667pt;}
._c_c00011{width:16.376000pt;}
._13_c00011{width:18.400000pt;}
._12_c00011{width:19.405333pt;}
._19_c00011{width:21.213333pt;}
._1d_c00011{width:27.181333pt;}
._11_c00011{width:30.666667pt;}
._21_c00011{width:32.277333pt;}
._3_c00011{width:33.426667pt;}
._1e_c00011{width:36.210667pt;}
._1f_c00011{width:38.336000pt;}
._10_c00011{width:47.104000pt;}
._18_c00011{width:183.226667pt;}
.fs2_c00011{font-size:40.000000pt;}
.fs7_c00011{font-size:42.666667pt;}
.fs6_c00011{font-size:45.333333pt;}
.fs3_c00011{font-size:48.000000pt;}
.fs1_c00011{font-size:50.666667pt;}
.fs0_c00011{font-size:61.333333pt;}
.fs4_c00011{font-size:64.000000pt;}
.fs5_c00011{font-size:66.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y20_c00011{bottom:2.760000pt;}
.y1f_c00011{bottom:6.425212pt;}
.y1e_c00011{bottom:48.000000pt;}
.y1d_c00011{bottom:69.866667pt;}
.y1c_c00011{bottom:93.200000pt;}
.y1b_c00011{bottom:115.733333pt;}
.y1a_c00011{bottom:138.000000pt;}
.y19_c00011{bottom:160.800000pt;}
.y18_c00011{bottom:186.800000pt;}
.y17_c00011{bottom:202.133333pt;}
.y16_c00011{bottom:218.133333pt;}
.y15_c00011{bottom:249.200000pt;}
.y14_c00011{bottom:270.266667pt;}
.y13_c00011{bottom:293.733333pt;}
.y12_c00011{bottom:314.000000pt;}
.y11_c00011{bottom:340.133333pt;}
.y10_c00011{bottom:355.466667pt;}
.yf_c00011{bottom:371.066667pt;}
.ye_c00011{bottom:386.666667pt;}
.yd_c00011{bottom:402.266667pt;}
.yc_c00011{bottom:425.733333pt;}
.yb_c00011{bottom:447.200000pt;}
.ya_c00011{bottom:468.933333pt;}
.y9_c00011{bottom:491.066667pt;}
.y8_c00011{bottom:513.200000pt;}
.y7_c00011{bottom:536.000000pt;}
.y6_c00011{bottom:557.333333pt;}
.y5_c00011{bottom:583.733333pt;}
.y4_c00011{bottom:601.733333pt;}
.y3_c00011{bottom:622.533333pt;}
.y2_c00011{bottom:645.200000pt;}
.y1_c00011{bottom:667.733333pt;}
.ha_c00011{height:11.733399pt;}
.hb_c00011{height:38.937500pt;}
.h7_c00011{height:46.816406pt;}
.h3_c00011{height:49.701823pt;}
.h4_c00011{height:49.726562pt;}
.h5_c00011{height:50.644531pt;}
.h6_c00011{height:52.032000pt;}
.h9_c00011{height:57.397135pt;}
.h2_c00011{height:77.654948pt;}
.h8_c00011{height:84.407552pt;}
.h1_c00011{height:724.666667pt;}
.h0_c00011{height:724.800000pt;}
.w2_c00011{width:93.222667pt;}
.w0_c00011{width:509.266667pt;}
.w1_c00011{width:509.333333pt;}
.x0_c00011{left:0.000000pt;}
.xe_c00011{left:72.933333pt;}
.x5_c00011{left:74.666667pt;}
.xb_c00011{left:91.600000pt;}
.xc_c00011{left:92.666667pt;}
.x4_c00011{left:93.600000pt;}
.x2_c00011{left:94.533333pt;}
.x8_c00011{left:105.866667pt;}
.x7_c00011{left:107.066667pt;}
.x9_c00011{left:108.000000pt;}
.xd_c00011{left:111.333333pt;}
.xa_c00011{left:112.266667pt;}
.x6_c00011{left:114.000000pt;}
.x3_c00011{left:115.200000pt;}
.x1_c00011{left:117.066667pt;}
.x10_c00011{left:211.801554pt;}
.xf_c00011{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_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_63ed9231501f6573283b2301.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_4e4df9cd763dbd20699f4ed6.woff2')format("woff");}.ff2_c00012{font-family:ff2_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:ff3_c00012;src:url('chunks/assets/font_64b4966a78d74ea7eae17e68.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00012{font-family:ff4_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);}
.v0_c00012{vertical-align:0.000000px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:2.460000px;}
.ls1_c00012{letter-spacing:3.000000px;}
.ls3_c00012{letter-spacing:21.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-53.361000px;}
.ws1_c00012{word-spacing:-19.629000px;}
.ws2_c00012{word-spacing:0.000000px;}
._22_c00012{margin-left:-24.012000px;}
._24_c00012{margin-left:-17.460000px;}
._19_c00012{margin-left:-15.456000px;}
._1e_c00012{margin-left:-14.421000px;}
._1a_c00012{margin-left:-10.260000px;}
._4_c00012{margin-left:-6.279000px;}
._3_c00012{margin-left:-4.347000px;}
._5_c00012{margin-left:-3.105000px;}
._16_c00012{margin-left:-2.070000px;}
._2_c00012{margin-left:-1.035000px;}
._0_c00012{width:1.380000px;}
._1_c00012{width:2.829000px;}
._6_c00012{width:4.002000px;}
._7_c00012{width:5.520000px;}
._a_c00012{width:6.969000px;}
._c_c00012{width:8.763000px;}
._b_c00012{width:10.350000px;}
._8_c00012{width:11.454000px;}
._17_c00012{width:12.696000px;}
._d_c00012{width:13.800000px;}
._21_c00012{width:14.835000px;}
._12_c00012{width:16.560000px;}
._9_c00012{width:17.940000px;}
._f_c00012{width:20.700000px;}
._13_c00012{width:22.080000px;}
._1c_c00012{width:23.874000px;}
._20_c00012{width:31.809000px;}
._1d_c00012{width:32.844000px;}
._10_c00012{width:34.467000px;}
._11_c00012{width:36.225000px;}
._1f_c00012{width:37.398000px;}
._e_c00012{width:39.054000px;}
._1b_c00012{width:40.986000px;}
._15_c00012{width:42.504000px;}
._18_c00012{width:46.506000px;}
._14_c00012{width:125.763000px;}
._25_c00012{width:435.459000px;}
._23_c00012{width:1001.535000px;}
.fc2_c00012{color:transparent;}
.fc1_c00012{color:rgb(128,128,128);}
.fc0_c00012{color:rgb(0,0,0);}
.fs4_c00012{font-size:48.000000px;}
.fs1_c00012{font-size:54.000000px;}
.fs3_c00012{font-size:60.000000px;}
.fs0_c00012{font-size:69.000000px;}
.fs2_c00012{font-size:75.000000px;}
.y0_c00012{bottom:0.000000px;}
.y1f_c00012{bottom:3.105000px;}
.y1e_c00012{bottom:7.228357px;}
.y1d_c00012{bottom:64.530000px;}
.y1c_c00012{bottom:88.080000px;}
.y1b_c00012{bottom:113.730000px;}
.y1a_c00012{bottom:138.030000px;}
.y19_c00012{bottom:163.680000px;}
.y18_c00012{bottom:188.280000px;}
.y17_c00012{bottom:213.330000px;}
.y16_c00012{bottom:238.380000px;}
.y15_c00012{bottom:263.280000px;}
.y14_c00012{bottom:288.630000px;}
.y13_c00012{bottom:312.630000px;}
.y12_c00012{bottom:338.280000px;}
.y11_c00012{bottom:362.130000px;}
.y10_c00012{bottom:388.080000px;}
.yf_c00012{bottom:412.530000px;}
.ye_c00012{bottom:438.480000px;}
.yd_c00012{bottom:462.480000px;}
.yc_c00012{bottom:487.080000px;}
.yb_c00012{bottom:511.080000px;}
.ya_c00012{bottom:535.980000px;}
.y9_c00012{bottom:561.030000px;}
.y8_c00012{bottom:585.930000px;}
.y7_c00012{bottom:610.830000px;}
.y6_c00012{bottom:636.630000px;}
.y5_c00012{bottom:660.180000px;}
.y4_c00012{bottom:685.830000px;}
.y3_c00012{bottom:709.380000px;}
.y2_c00012{bottom:735.030000px;}
.y1_c00012{bottom:759.780000px;}
.h4_c00012{height:13.200074px;}
.h5_c00012{height:43.804688px;}
.h2_c00012{height:87.361816px;}
.h3_c00012{height:94.958496px;}
.h1_c00012{height:816.750000px;}
.h0_c00012{height:817.050000px;}
.w2_c00012{width:104.875500px;}
.w1_c00012{width:547.500000px;}
.w0_c00012{width:547.575000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:36.150000px;}
.x4_c00012{left:37.500000px;}
.x8_c00012{left:39.600000px;}
.x6_c00012{left:42.600000px;}
.x1_c00012{left:57.000000px;}
.x3_c00012{left:58.650000px;}
.x5_c00012{left:61.050000px;}
.x7_c00012{left:62.400000px;}
.x9_c00012{left:225.601730px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:2.186667pt;}
.ls1_c00012{letter-spacing:2.666667pt;}
.ls3_c00012{letter-spacing:18.666667pt;}
.ws0_c00012{word-spacing:-47.432000pt;}
.ws1_c00012{word-spacing:-17.448000pt;}
.ws2_c00012{word-spacing:0.000000pt;}
._22_c00012{margin-left:-21.344000pt;}
._24_c00012{margin-left:-15.520000pt;}
._19_c00012{margin-left:-13.738667pt;}
._1e_c00012{margin-left:-12.818667pt;}
._1a_c00012{margin-left:-9.120000pt;}
._4_c00012{margin-left:-5.581333pt;}
._3_c00012{margin-left:-3.864000pt;}
._5_c00012{margin-left:-2.760000pt;}
._16_c00012{margin-left:-1.840000pt;}
._2_c00012{margin-left:-0.920000pt;}
._0_c00012{width:1.226667pt;}
._1_c00012{width:2.514667pt;}
._6_c00012{width:3.557333pt;}
._7_c00012{width:4.906667pt;}
._a_c00012{width:6.194667pt;}
._c_c00012{width:7.789333pt;}
._b_c00012{width:9.200000pt;}
._8_c00012{width:10.181333pt;}
._17_c00012{width:11.285333pt;}
._d_c00012{width:12.266667pt;}
._21_c00012{width:13.186667pt;}
._12_c00012{width:14.720000pt;}
._9_c00012{width:15.946667pt;}
._f_c00012{width:18.400000pt;}
._13_c00012{width:19.626667pt;}
._1c_c00012{width:21.221333pt;}
._20_c00012{width:28.274667pt;}
._1d_c00012{width:29.194667pt;}
._10_c00012{width:30.637333pt;}
._11_c00012{width:32.200000pt;}
._1f_c00012{width:33.242667pt;}
._e_c00012{width:34.714667pt;}
._1b_c00012{width:36.432000pt;}
._15_c00012{width:37.781333pt;}
._18_c00012{width:41.338667pt;}
._14_c00012{width:111.789333pt;}
._25_c00012{width:387.074667pt;}
._23_c00012{width:890.253333pt;}
.fs4_c00012{font-size:42.666667pt;}
.fs1_c00012{font-size:48.000000pt;}
.fs3_c00012{font-size:53.333333pt;}
.fs0_c00012{font-size:61.333333pt;}
.fs2_c00012{font-size:66.666667pt;}
.y0_c00012{bottom:0.000000pt;}
.y1f_c00012{bottom:2.760000pt;}
.y1e_c00012{bottom:6.425206pt;}
.y1d_c00012{bottom:57.360000pt;}
.y1c_c00012{bottom:78.293333pt;}
.y1b_c00012{bottom:101.093333pt;}
.y1a_c00012{bottom:122.693333pt;}
.y19_c00012{bottom:145.493333pt;}
.y18_c00012{bottom:167.360000pt;}
.y17_c00012{bottom:189.626667pt;}
.y16_c00012{bottom:211.893333pt;}
.y15_c00012{bottom:234.026667pt;}
.y14_c00012{bottom:256.560000pt;}
.y13_c00012{bottom:277.893333pt;}
.y12_c00012{bottom:300.693333pt;}
.y11_c00012{bottom:321.893333pt;}
.y10_c00012{bottom:344.960000pt;}
.yf_c00012{bottom:366.693333pt;}
.ye_c00012{bottom:389.760000pt;}
.yd_c00012{bottom:411.093333pt;}
.yc_c00012{bottom:432.960000pt;}
.yb_c00012{bottom:454.293333pt;}
.ya_c00012{bottom:476.426667pt;}
.y9_c00012{bottom:498.693333pt;}
.y8_c00012{bottom:520.826667pt;}
.y7_c00012{bottom:542.960000pt;}
.y6_c00012{bottom:565.893333pt;}
.y5_c00012{bottom:586.826667pt;}
.y4_c00012{bottom:609.626667pt;}
.y3_c00012{bottom:630.560000pt;}
.y2_c00012{bottom:653.360000pt;}
.y1_c00012{bottom:675.360000pt;}
.h4_c00012{height:11.733399pt;}
.h5_c00012{height:38.937500pt;}
.h2_c00012{height:77.654948pt;}
.h3_c00012{height:84.407552pt;}
.h1_c00012{height:726.000000pt;}
.h0_c00012{height:726.266667pt;}
.w2_c00012{width:93.222667pt;}
.w1_c00012{width:486.666667pt;}
.w0_c00012{width:486.733333pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:32.133333pt;}
.x4_c00012{left:33.333333pt;}
.x8_c00012{left:35.200000pt;}
.x6_c00012{left:37.866667pt;}
.x1_c00012{left:50.666667pt;}
.x3_c00012{left:52.133333pt;}
.x5_c00012{left:54.266667pt;}
.x7_c00012{left:55.466667pt;}
.x9_c00012{left:200.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_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_f7c1397595cff5e14c20c37b.woff2')format("woff");}.ff1_c00013{font-family:ff1_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:ff2_c00013;src:url('chunks/assets/font_a7155e892a6241c4fcee57e7.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_2977228aa03b995ef97c5f51.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_1851b94acef1a33e8893a820.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_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00013{letter-spacing:0.000000px;}
.ls1_c00013{letter-spacing:3.000000px;}
.ls0_c00013{letter-spacing:3.900000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:-11.568000px;}
.ws1_c00013{word-spacing:0.000000px;}
._1f_c00013{margin-left:-20.493000px;}
._13_c00013{margin-left:-12.420000px;}
._12_c00013{margin-left:-10.422000px;}
._11_c00013{margin-left:-9.045000px;}
._19_c00013{margin-left:-7.728000px;}
._f_c00013{margin-left:-6.654000px;}
._0_c00013{margin-left:-4.380000px;}
._d_c00013{margin-left:-3.111000px;}
._4_c00013{margin-left:-2.070000px;}
._e_c00013{margin-left:-1.002000px;}
._1_c00013{width:2.001000px;}
._2_c00013{width:3.588000px;}
._3_c00013{width:5.106000px;}
._5_c00013{width:6.555000px;}
._8_c00013{width:8.142000px;}
._c_c00013{width:9.408000px;}
._21_c00013{width:10.488000px;}
._9_c00013{width:11.661000px;}
._a_c00013{width:13.317000px;}
._7_c00013{width:14.421000px;}
._17_c00013{width:15.489000px;}
._10_c00013{width:16.854000px;}
._16_c00013{width:18.321000px;}
._14_c00013{width:24.012000px;}
._15_c00013{width:25.020000px;}
._1e_c00013{width:26.985000px;}
._1d_c00013{width:30.774000px;}
._b_c00013{width:33.639000px;}
._1b_c00013{width:35.046000px;}
._1c_c00013{width:38.019000px;}
._18_c00013{width:39.054000px;}
._6_c00013{width:40.365000px;}
._22_c00013{width:55.269000px;}
._1a_c00013{width:80.454000px;}
._20_c00013{width:139.719000px;}
._23_c00013{width:776.940000px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(128,128,128);}
.fc0_c00013{color:rgb(0,0,0);}
.fs2_c00013{font-size:39.000000px;}
.fs1_c00013{font-size:48.000000px;}
.fs3_c00013{font-size:51.000000px;}
.fs4_c00013{font-size:66.000000px;}
.fs0_c00013{font-size:69.000000px;}
.y0_c00013{bottom:0.000000px;}
.y20_c00013{bottom:3.105000px;}
.y1f_c00013{bottom:7.228357px;}
.y1e_c00013{bottom:53.430000px;}
.y1d_c00013{bottom:78.930000px;}
.y1c_c00013{bottom:104.580000px;}
.y1b_c00013{bottom:129.930000px;}
.y1a_c00013{bottom:154.680000px;}
.y19_c00013{bottom:180.330000px;}
.y18_c00013{bottom:204.630000px;}
.y17_c00013{bottom:230.280000px;}
.y16_c00013{bottom:255.480000px;}
.y15_c00013{bottom:281.130000px;}
.y14_c00013{bottom:305.130000px;}
.y13_c00013{bottom:329.130000px;}
.y12_c00013{bottom:354.480000px;}
.y11_c00013{bottom:378.780000px;}
.y10_c00013{bottom:403.680000px;}
.yf_c00013{bottom:428.730000px;}
.ye_c00013{bottom:453.630000px;}
.yd_c00013{bottom:478.980000px;}
.yc_c00013{bottom:503.280000px;}
.yb_c00013{bottom:528.180000px;}
.ya_c00013{bottom:551.880000px;}
.y9_c00013{bottom:568.380000px;}
.y8_c00013{bottom:585.930000px;}
.y7_c00013{bottom:603.480000px;}
.y6_c00013{bottom:631.080000px;}
.y5_c00013{bottom:655.080000px;}
.y4_c00013{bottom:680.130000px;}
.y3_c00013{bottom:705.030000px;}
.y2_c00013{bottom:729.630000px;}
.y1_c00013{bottom:754.680000px;}
.h6_c00013{height:13.200074px;}
.h7_c00013{height:43.804688px;}
.h5_c00013{height:56.179688px;}
.h3_c00013{height:60.773438px;}
.h4_c00013{height:64.571777px;}
.h2_c00013{height:87.361816px;}
.h0_c00013{height:808.950000px;}
.h1_c00013{height:809.250000px;}
.w2_c00013{width:104.875500px;}
.w1_c00013{width:567.750000px;}
.w0_c00013{width:568.050000px;}
.x0_c00013{left:0.000000px;}
.xd_c00013{left:65.100000px;}
.xc_c00013{left:97.500000px;}
.xb_c00013{left:99.450000px;}
.x9_c00013{left:100.950000px;}
.x2_c00013{left:104.700000px;}
.x3_c00013{left:107.550000px;}
.xe_c00013{left:119.550000px;}
.x6_c00013{left:121.500000px;}
.x7_c00013{left:122.550000px;}
.xa_c00013{left:123.600000px;}
.x8_c00013{left:126.300000px;}
.x5_c00013{left:129.150000px;}
.x4_c00013{left:131.250000px;}
.x1_c00013{left:132.900000px;}
.xf_c00013{left:174.150000px;}
.x11_c00013{left:235.839249px;}
.x10_c00013{left:267.000000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls2_c00013{letter-spacing:0.000000pt;}
.ls1_c00013{letter-spacing:2.666667pt;}
.ls0_c00013{letter-spacing:3.466667pt;}
.ws0_c00013{word-spacing:-10.282667pt;}
.ws1_c00013{word-spacing:0.000000pt;}
._1f_c00013{margin-left:-18.216000pt;}
._13_c00013{margin-left:-11.040000pt;}
._12_c00013{margin-left:-9.264000pt;}
._11_c00013{margin-left:-8.040000pt;}
._19_c00013{margin-left:-6.869333pt;}
._f_c00013{margin-left:-5.914667pt;}
._0_c00013{margin-left:-3.893333pt;}
._d_c00013{margin-left:-2.765333pt;}
._4_c00013{margin-left:-1.840000pt;}
._e_c00013{margin-left:-0.890667pt;}
._1_c00013{width:1.778667pt;}
._2_c00013{width:3.189333pt;}
._3_c00013{width:4.538667pt;}
._5_c00013{width:5.826667pt;}
._8_c00013{width:7.237333pt;}
._c_c00013{width:8.362667pt;}
._21_c00013{width:9.322667pt;}
._9_c00013{width:10.365333pt;}
._a_c00013{width:11.837333pt;}
._7_c00013{width:12.818667pt;}
._17_c00013{width:13.768000pt;}
._10_c00013{width:14.981333pt;}
._16_c00013{width:16.285333pt;}
._14_c00013{width:21.344000pt;}
._15_c00013{width:22.240000pt;}
._1e_c00013{width:23.986667pt;}
._1d_c00013{width:27.354667pt;}
._b_c00013{width:29.901333pt;}
._1b_c00013{width:31.152000pt;}
._1c_c00013{width:33.794667pt;}
._18_c00013{width:34.714667pt;}
._6_c00013{width:35.880000pt;}
._22_c00013{width:49.128000pt;}
._1a_c00013{width:71.514667pt;}
._20_c00013{width:124.194667pt;}
._23_c00013{width:690.613333pt;}
.fs2_c00013{font-size:34.666667pt;}
.fs1_c00013{font-size:42.666667pt;}
.fs3_c00013{font-size:45.333333pt;}
.fs4_c00013{font-size:58.666667pt;}
.fs0_c00013{font-size:61.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y20_c00013{bottom:2.760000pt;}
.y1f_c00013{bottom:6.425206pt;}
.y1e_c00013{bottom:47.493333pt;}
.y1d_c00013{bottom:70.160000pt;}
.y1c_c00013{bottom:92.960000pt;}
.y1b_c00013{bottom:115.493333pt;}
.y1a_c00013{bottom:137.493333pt;}
.y19_c00013{bottom:160.293333pt;}
.y18_c00013{bottom:181.893333pt;}
.y17_c00013{bottom:204.693333pt;}
.y16_c00013{bottom:227.093333pt;}
.y15_c00013{bottom:249.893333pt;}
.y14_c00013{bottom:271.226667pt;}
.y13_c00013{bottom:292.560000pt;}
.y12_c00013{bottom:315.093333pt;}
.y11_c00013{bottom:336.693333pt;}
.y10_c00013{bottom:358.826667pt;}
.yf_c00013{bottom:381.093333pt;}
.ye_c00013{bottom:403.226667pt;}
.yd_c00013{bottom:425.760000pt;}
.yc_c00013{bottom:447.360000pt;}
.yb_c00013{bottom:469.493333pt;}
.ya_c00013{bottom:490.560000pt;}
.y9_c00013{bottom:505.226667pt;}
.y8_c00013{bottom:520.826667pt;}
.y7_c00013{bottom:536.426667pt;}
.y6_c00013{bottom:560.960000pt;}
.y5_c00013{bottom:582.293333pt;}
.y4_c00013{bottom:604.560000pt;}
.y3_c00013{bottom:626.693333pt;}
.y2_c00013{bottom:648.560000pt;}
.y1_c00013{bottom:670.826667pt;}
.h6_c00013{height:11.733399pt;}
.h7_c00013{height:38.937500pt;}
.h5_c00013{height:49.937500pt;}
.h3_c00013{height:54.020833pt;}
.h4_c00013{height:57.397135pt;}
.h2_c00013{height:77.654948pt;}
.h0_c00013{height:719.066667pt;}
.h1_c00013{height:719.333333pt;}
.w2_c00013{width:93.222667pt;}
.w1_c00013{width:504.666667pt;}
.w0_c00013{width:504.933333pt;}
.x0_c00013{left:0.000000pt;}
.xd_c00013{left:57.866667pt;}
.xc_c00013{left:86.666667pt;}
.xb_c00013{left:88.400000pt;}
.x9_c00013{left:89.733333pt;}
.x2_c00013{left:93.066667pt;}
.x3_c00013{left:95.600000pt;}
.xe_c00013{left:106.266667pt;}
.x6_c00013{left:108.000000pt;}
.x7_c00013{left:108.933333pt;}
.xa_c00013{left:109.866667pt;}
.x8_c00013{left:112.266667pt;}
.x5_c00013{left:114.800000pt;}
.x4_c00013{left:116.666667pt;}
.x1_c00013{left:118.133333pt;}
.xf_c00013{left:154.800000pt;}
.x11_c00013{left:209.634888pt;}
.x10_c00013{left:237.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_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_159585555dca0cd01988fc61.woff2')format("woff");}.ff1_c00014{font-family:ff1_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:ff2_c00014;src:url('chunks/assets/font_cdea660f42c034ea3e3a4e31.woff2')format("woff");}.ff2_c00014{font-family:ff2_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:ff3_c00014;src:url('chunks/assets/font_bc749505bec83b065c436d6b.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00014{font-family:ff4_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:ff5_c00014;src:url('chunks/assets/font_dbe8743bbb7b3249290338de.woff2')format("woff");}.ff5_c00014{font-family:ff5_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:ff6_c00014;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00014{font-family:ff6_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);}
.v1_c00014{vertical-align:-97.800000px;}
.v0_c00014{vertical-align:0.000000px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:3.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;}
}
.ws0_c00014{word-spacing:-33.000000px;}
.ws3_c00014{word-spacing:-19.629000px;}
.ws4_c00014{word-spacing:-17.404800px;}
.ws1_c00014{word-spacing:-16.629000px;}
.ws2_c00014{word-spacing:-2.931000px;}
.ws5_c00014{word-spacing:0.000000px;}
._17_c00014{margin-left:-22.152000px;}
._21_c00014{margin-left:-20.784000px;}
._f_c00014{margin-left:-19.044000px;}
._15_c00014{margin-left:-15.801000px;}
._7_c00014{margin-left:-12.558000px;}
._19_c00014{margin-left:-9.177000px;}
._8_c00014{margin-left:-6.900000px;}
._9_c00014{margin-left:-5.106000px;}
._d_c00014{margin-left:-3.933000px;}
._b_c00014{margin-left:-2.400000px;}
._5_c00014{margin-left:-1.035000px;}
._1_c00014{width:1.380000px;}
._0_c00014{width:3.036000px;}
._4_c00014{width:4.209000px;}
._1c_c00014{width:5.244000px;}
._3_c00014{width:6.279000px;}
._1f_c00014{width:7.287000px;}
._c_c00014{width:8.403000px;}
._a_c00014{width:9.756000px;}
._23_c00014{width:10.761000px;}
._22_c00014{width:12.213000px;}
._13_c00014{width:13.332000px;}
._12_c00014{width:14.697000px;}
._10_c00014{width:15.822000px;}
._e_c00014{width:16.974000px;}
._16_c00014{width:18.825000px;}
._11_c00014{width:20.631000px;}
._1d_c00014{width:22.113000px;}
._20_c00014{width:23.406000px;}
._18_c00014{width:24.909000px;}
._26_c00014{width:28.362000px;}
._6_c00014{width:32.754000px;}
._24_c00014{width:34.257000px;}
._1e_c00014{width:35.535000px;}
._25_c00014{width:36.777000px;}
._1b_c00014{width:39.123000px;}
._1a_c00014{width:42.159000px;}
._2_c00014{width:44.229000px;}
._14_c00014{width:118.140000px;}
._27_c00014{width:877.944000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(128,128,128);}
.fc0_c00014{color:rgb(0,0,0);}
.fs2_c00014{font-size:33.600000px;}
.fs3_c00014{font-size:42.000000px;}
.fs5_c00014{font-size:48.000000px;}
.fs1_c00014{font-size:66.000000px;}
.fs0_c00014{font-size:69.000000px;}
.fs4_c00014{font-size:81.000000px;}
.y0_c00014{bottom:0.000000px;}
.y1b_c00014{bottom:3.105000px;}
.y1a_c00014{bottom:7.228371px;}
.y19_c00014{bottom:96.315000px;}
.y18_c00014{bottom:120.915000px;}
.y17_c00014{bottom:146.865000px;}
.y16_c00014{bottom:169.815000px;}
.y15_c00014{bottom:196.815000px;}
.y14_c00014{bottom:220.365000px;}
.y13_c00014{bottom:250.815000px;}
.y12_c00014{bottom:268.665000px;}
.y11_c00014{bottom:295.965000px;}
.y10_c00014{bottom:320.715000px;}
.yf_c00014{bottom:370.665000px;}
.ye_c00014{bottom:420.615000px;}
.yd_c00014{bottom:445.515000px;}
.yc_c00014{bottom:470.115000px;}
.yb_c00014{bottom:494.565000px;}
.ya_c00014{bottom:518.865000px;}
.y9_c00014{bottom:543.465000px;}
.y8_c00014{bottom:592.965000px;}
.y7_c00014{bottom:617.715000px;}
.y6_c00014{bottom:643.065000px;}
.y5_c00014{bottom:667.965000px;}
.y4_c00014{bottom:692.565000px;}
.y3_c00014{bottom:717.315000px;}
.y2_c00014{bottom:742.215000px;}
.y1_c00014{bottom:766.515000px;}
.h7_c00014{height:13.200074px;}
.h8_c00014{height:43.804688px;}
.h5_c00014{height:49.157227px;}
.h4_c00014{height:53.176758px;}
.h3_c00014{height:80.758301px;}
.h2_c00014{height:87.361816px;}
.h6_c00014{height:102.555176px;}
.h1_c00014{height:831.000000px;}
.h0_c00014{height:831.075000px;}
.w1_c00014{width:104.875500px;}
.w0_c00014{width:557.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:27.000000px;}
.x5_c00014{left:30.000000px;}
.x6_c00014{left:44.550000px;}
.x7_c00014{left:46.650000px;}
.x2_c00014{left:50.400000px;}
.x3_c00014{left:51.600000px;}
.x8_c00014{left:54.000000px;}
.x4_c00014{left:92.850000px;}
.x9_c00014{left:230.439240px;}
@media print{
.v1_c00014{vertical-align:-86.933333pt;}
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:2.666667pt;}
.ws0_c00014{word-spacing:-29.333333pt;}
.ws3_c00014{word-spacing:-17.448000pt;}
.ws4_c00014{word-spacing:-15.470933pt;}
.ws1_c00014{word-spacing:-14.781333pt;}
.ws2_c00014{word-spacing:-2.605333pt;}
.ws5_c00014{word-spacing:0.000000pt;}
._17_c00014{margin-left:-19.690667pt;}
._21_c00014{margin-left:-18.474667pt;}
._f_c00014{margin-left:-16.928000pt;}
._15_c00014{margin-left:-14.045333pt;}
._7_c00014{margin-left:-11.162667pt;}
._19_c00014{margin-left:-8.157333pt;}
._8_c00014{margin-left:-6.133333pt;}
._9_c00014{margin-left:-4.538667pt;}
._d_c00014{margin-left:-3.496000pt;}
._b_c00014{margin-left:-2.133333pt;}
._5_c00014{margin-left:-0.920000pt;}
._1_c00014{width:1.226667pt;}
._0_c00014{width:2.698667pt;}
._4_c00014{width:3.741333pt;}
._1c_c00014{width:4.661333pt;}
._3_c00014{width:5.581333pt;}
._1f_c00014{width:6.477333pt;}
._c_c00014{width:7.469333pt;}
._a_c00014{width:8.672000pt;}
._23_c00014{width:9.565333pt;}
._22_c00014{width:10.856000pt;}
._13_c00014{width:11.850667pt;}
._12_c00014{width:13.064000pt;}
._10_c00014{width:14.064000pt;}
._e_c00014{width:15.088000pt;}
._16_c00014{width:16.733333pt;}
._11_c00014{width:18.338667pt;}
._1d_c00014{width:19.656000pt;}
._20_c00014{width:20.805333pt;}
._18_c00014{width:22.141333pt;}
._26_c00014{width:25.210667pt;}
._6_c00014{width:29.114667pt;}
._24_c00014{width:30.450667pt;}
._1e_c00014{width:31.586667pt;}
._25_c00014{width:32.690667pt;}
._1b_c00014{width:34.776000pt;}
._1a_c00014{width:37.474667pt;}
._2_c00014{width:39.314667pt;}
._14_c00014{width:105.013333pt;}
._27_c00014{width:780.394667pt;}
.fs2_c00014{font-size:29.866667pt;}
.fs3_c00014{font-size:37.333333pt;}
.fs5_c00014{font-size:42.666667pt;}
.fs1_c00014{font-size:58.666667pt;}
.fs0_c00014{font-size:61.333333pt;}
.fs4_c00014{font-size:72.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y1b_c00014{bottom:2.760000pt;}
.y1a_c00014{bottom:6.425219pt;}
.y19_c00014{bottom:85.613333pt;}
.y18_c00014{bottom:107.480000pt;}
.y17_c00014{bottom:130.546667pt;}
.y16_c00014{bottom:150.946667pt;}
.y15_c00014{bottom:174.946667pt;}
.y14_c00014{bottom:195.880000pt;}
.y13_c00014{bottom:222.946667pt;}
.y12_c00014{bottom:238.813333pt;}
.y11_c00014{bottom:263.080000pt;}
.y10_c00014{bottom:285.080000pt;}
.yf_c00014{bottom:329.480000pt;}
.ye_c00014{bottom:373.880000pt;}
.yd_c00014{bottom:396.013333pt;}
.yc_c00014{bottom:417.880000pt;}
.yb_c00014{bottom:439.613333pt;}
.ya_c00014{bottom:461.213333pt;}
.y9_c00014{bottom:483.080000pt;}
.y8_c00014{bottom:527.080000pt;}
.y7_c00014{bottom:549.080000pt;}
.y6_c00014{bottom:571.613333pt;}
.y5_c00014{bottom:593.746667pt;}
.y4_c00014{bottom:615.613333pt;}
.y3_c00014{bottom:637.613333pt;}
.y2_c00014{bottom:659.746667pt;}
.y1_c00014{bottom:681.346667pt;}
.h7_c00014{height:11.733399pt;}
.h8_c00014{height:38.937500pt;}
.h5_c00014{height:43.695312pt;}
.h4_c00014{height:47.268229pt;}
.h3_c00014{height:71.785156pt;}
.h2_c00014{height:77.654948pt;}
.h6_c00014{height:91.160156pt;}
.h1_c00014{height:738.666667pt;}
.h0_c00014{height:738.733333pt;}
.w1_c00014{width:93.222667pt;}
.w0_c00014{width:495.333333pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:24.000000pt;}
.x5_c00014{left:26.666667pt;}
.x6_c00014{left:39.600000pt;}
.x7_c00014{left:41.466667pt;}
.x2_c00014{left:44.800000pt;}
.x3_c00014{left:45.866667pt;}
.x8_c00014{left:48.000000pt;}
.x4_c00014{left:82.533333pt;}
.x9_c00014{left:204.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_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_34ef3d9dfd84abcbf5bfee4a.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_66a97258c9f02f4ecc18d193.woff2')format("woff");}.ff2_c00015{font-family:ff2_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:ff3_c00015;src:url('chunks/assets/font_45496be2b44130b68cb9af44.woff2')format("woff");}.ff3_c00015{font-family:ff3_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:ff4_c00015;src:url('chunks/assets/font_fafbfda0396a0b5d438de9a3.woff2')format("woff");}.ff4_c00015{font-family:ff4_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:ff5_c00015;src:url('chunks/assets/font_d4df94d4242355622d89eb11.woff2')format("woff");}.ff5_c00015{font-family:ff5_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:ff6_c00015;src:url('chunks/assets/font_efd7637e814e821ab430fc04.woff2')format("woff");}.ff6_c00015{font-family:ff6_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00015;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00015{font-family:ff7_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;}
.ls3_c00015{letter-spacing:0.000000px;}
.ls0_c00015{letter-spacing:1.680000px;}
.ls2_c00015{letter-spacing:3.000000px;}
.ls1_c00015{letter-spacing:3.300000px;}
.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:-49.023000px;}
.ws2_c00015{word-spacing:-31.296000px;}
.ws3_c00015{word-spacing:-19.629000px;}
.ws1_c00015{word-spacing:-16.629000px;}
.ws4_c00015{word-spacing:0.000000px;}
._1a_c00015{margin-left:-10.971000px;}
._17_c00015{margin-left:-8.615400px;}
._16_c00015{margin-left:-6.168000px;}
._f_c00015{margin-left:-3.519000px;}
._c_c00015{margin-left:-2.484000px;}
._1_c00015{margin-left:-1.242000px;}
._3_c00015{width:1.242000px;}
._4_c00015{width:2.277000px;}
._5_c00015{width:3.381000px;}
._2_c00015{width:4.416000px;}
._0_c00015{width:6.279000px;}
._d_c00015{width:7.659000px;}
._11_c00015{width:9.246000px;}
._e_c00015{width:10.695000px;}
._14_c00015{width:12.972000px;}
._6_c00015{width:14.145000px;}
._10_c00015{width:16.044000px;}
._9_c00015{width:17.526000px;}
._8_c00015{width:18.561000px;}
._a_c00015{width:21.321000px;}
._12_c00015{width:22.839000px;}
._19_c00015{width:33.465000px;}
._13_c00015{width:36.087000px;}
._b_c00015{width:37.536000px;}
._7_c00015{width:41.262000px;}
._18_c00015{width:44.160000px;}
._22_c00015{width:50.715000px;}
._20_c00015{width:73.872000px;}
._21_c00015{width:90.144000px;}
._1e_c00015{width:103.380000px;}
._1c_c00015{width:120.231000px;}
._1b_c00015{width:141.618000px;}
._1d_c00015{width:147.906000px;}
._1f_c00015{width:260.301000px;}
._15_c00015{width:499.422000px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(128,128,128);}
.fc0_c00015{color:rgb(0,0,0);}
.fs2_c00015{font-size:38.400000px;}
.fs4_c00015{font-size:39.000000px;}
.fs1_c00015{font-size:48.000000px;}
.fs3_c00015{font-size:51.000000px;}
.fs0_c00015{font-size:69.000000px;}
.y0_c00015{bottom:0.000000px;}
.y22_c00015{bottom:3.105000px;}
.y21_c00015{bottom:7.228357px;}
.y20_c00015{bottom:54.330000px;}
.y1f_c00015{bottom:79.680000px;}
.y1e_c00015{bottom:105.630000px;}
.y1d_c00015{bottom:130.680000px;}
.y1c_c00015{bottom:156.030000px;}
.y1b_c00015{bottom:181.680000px;}
.y1a_c00015{bottom:205.830000px;}
.y19_c00015{bottom:229.530000px;}
.y18_c00015{bottom:255.480000px;}
.y17_c00015{bottom:273.780000px;}
.y16_c00015{bottom:291.030000px;}
.y15_c00015{bottom:308.130000px;}
.y14_c00015{bottom:325.380000px;}
.y13_c00015{bottom:342.630000px;}
.y12_c00015{bottom:360.780000px;}
.y11_c00015{bottom:381.330000px;}
.y10_c00015{bottom:405.330000px;}
.yf_c00015{bottom:430.680000px;}
.ye_c00015{bottom:460.380000px;}
.yd_c00015{bottom:477.630000px;}
.yc_c00015{bottom:505.530000px;}
.yb_c00015{bottom:528.480000px;}
.ya_c00015{bottom:554.880000px;}
.y9_c00015{bottom:577.230000px;}
.y8_c00015{bottom:602.880000px;}
.y7_c00015{bottom:627.780000px;}
.y6_c00015{bottom:653.130000px;}
.y5_c00015{bottom:677.730000px;}
.y4_c00015{bottom:702.630000px;}
.y3_c00015{bottom:728.430000px;}
.y2_c00015{bottom:752.580000px;}
.y1_c00015{bottom:778.230000px;}
.h7_c00015{height:13.200074px;}
.h8_c00015{height:43.804688px;}
.h5_c00015{height:56.179688px;}
.h4_c00015{height:60.773438px;}
.h6_c00015{height:64.571777px;}
.h2_c00015{height:69.539062px;}
.h3_c00015{height:87.361816px;}
.h0_c00015{height:808.950000px;}
.h1_c00015{height:809.250000px;}
.w2_c00015{width:104.875500px;}
.w1_c00015{width:567.750000px;}
.w0_c00015{width:568.050000px;}
.x0_c00015{left:0.000000px;}
.xb_c00015{left:49.500000px;}
.xa_c00015{left:58.500000px;}
.xc_c00015{left:59.700000px;}
.xd_c00015{left:76.950000px;}
.xf_c00015{left:96.150000px;}
.x6_c00015{left:97.200000px;}
.x8_c00015{left:99.300000px;}
.x4_c00015{left:101.700000px;}
.xe_c00015{left:102.900000px;}
.x1_c00015{left:113.100000px;}
.x9_c00015{left:117.150000px;}
.x11_c00015{left:118.800000px;}
.x10_c00015{left:120.150000px;}
.x7_c00015{left:122.550000px;}
.x3_c00015{left:124.200000px;}
.x5_c00015{left:125.850000px;}
.x2_c00015{left:129.600000px;}
.x13_c00015{left:235.839249px;}
.x12_c00015{left:481.500000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls3_c00015{letter-spacing:0.000000pt;}
.ls0_c00015{letter-spacing:1.493333pt;}
.ls2_c00015{letter-spacing:2.666667pt;}
.ls1_c00015{letter-spacing:2.933333pt;}
.ws0_c00015{word-spacing:-43.576000pt;}
.ws2_c00015{word-spacing:-27.818667pt;}
.ws3_c00015{word-spacing:-17.448000pt;}
.ws1_c00015{word-spacing:-14.781333pt;}
.ws4_c00015{word-spacing:0.000000pt;}
._1a_c00015{margin-left:-9.752000pt;}
._17_c00015{margin-left:-7.658133pt;}
._16_c00015{margin-left:-5.482667pt;}
._f_c00015{margin-left:-3.128000pt;}
._c_c00015{margin-left:-2.208000pt;}
._1_c00015{margin-left:-1.104000pt;}
._3_c00015{width:1.104000pt;}
._4_c00015{width:2.024000pt;}
._5_c00015{width:3.005333pt;}
._2_c00015{width:3.925333pt;}
._0_c00015{width:5.581333pt;}
._d_c00015{width:6.808000pt;}
._11_c00015{width:8.218667pt;}
._e_c00015{width:9.506667pt;}
._14_c00015{width:11.530667pt;}
._6_c00015{width:12.573333pt;}
._10_c00015{width:14.261333pt;}
._9_c00015{width:15.578667pt;}
._8_c00015{width:16.498667pt;}
._a_c00015{width:18.952000pt;}
._12_c00015{width:20.301333pt;}
._19_c00015{width:29.746667pt;}
._13_c00015{width:32.077333pt;}
._b_c00015{width:33.365333pt;}
._7_c00015{width:36.677333pt;}
._18_c00015{width:39.253333pt;}
._22_c00015{width:45.080000pt;}
._20_c00015{width:65.664000pt;}
._21_c00015{width:80.128000pt;}
._1e_c00015{width:91.893333pt;}
._1c_c00015{width:106.872000pt;}
._1b_c00015{width:125.882667pt;}
._1d_c00015{width:131.472000pt;}
._1f_c00015{width:231.378667pt;}
._15_c00015{width:443.930667pt;}
.fs2_c00015{font-size:34.133333pt;}
.fs4_c00015{font-size:34.666667pt;}
.fs1_c00015{font-size:42.666667pt;}
.fs3_c00015{font-size:45.333333pt;}
.fs0_c00015{font-size:61.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y22_c00015{bottom:2.760000pt;}
.y21_c00015{bottom:6.425206pt;}
.y20_c00015{bottom:48.293333pt;}
.y1f_c00015{bottom:70.826667pt;}
.y1e_c00015{bottom:93.893333pt;}
.y1d_c00015{bottom:116.160000pt;}
.y1c_c00015{bottom:138.693333pt;}
.y1b_c00015{bottom:161.493333pt;}
.y1a_c00015{bottom:182.960000pt;}
.y19_c00015{bottom:204.026667pt;}
.y18_c00015{bottom:227.093333pt;}
.y17_c00015{bottom:243.360000pt;}
.y16_c00015{bottom:258.693333pt;}
.y15_c00015{bottom:273.893333pt;}
.y14_c00015{bottom:289.226667pt;}
.y13_c00015{bottom:304.560000pt;}
.y12_c00015{bottom:320.693333pt;}
.y11_c00015{bottom:338.960000pt;}
.y10_c00015{bottom:360.293333pt;}
.yf_c00015{bottom:382.826667pt;}
.ye_c00015{bottom:409.226667pt;}
.yd_c00015{bottom:424.560000pt;}
.yc_c00015{bottom:449.360000pt;}
.yb_c00015{bottom:469.760000pt;}
.ya_c00015{bottom:493.226667pt;}
.y9_c00015{bottom:513.093333pt;}
.y8_c00015{bottom:535.893333pt;}
.y7_c00015{bottom:558.026667pt;}
.y6_c00015{bottom:580.560000pt;}
.y5_c00015{bottom:602.426667pt;}
.y4_c00015{bottom:624.560000pt;}
.y3_c00015{bottom:647.493333pt;}
.y2_c00015{bottom:668.960000pt;}
.y1_c00015{bottom:691.760000pt;}
.h7_c00015{height:11.733399pt;}
.h8_c00015{height:38.937500pt;}
.h5_c00015{height:49.937500pt;}
.h4_c00015{height:54.020833pt;}
.h6_c00015{height:57.397135pt;}
.h2_c00015{height:61.812500pt;}
.h3_c00015{height:77.654948pt;}
.h0_c00015{height:719.066667pt;}
.h1_c00015{height:719.333333pt;}
.w2_c00015{width:93.222667pt;}
.w1_c00015{width:504.666667pt;}
.w0_c00015{width:504.933333pt;}
.x0_c00015{left:0.000000pt;}
.xb_c00015{left:44.000000pt;}
.xa_c00015{left:52.000000pt;}
.xc_c00015{left:53.066667pt;}
.xd_c00015{left:68.400000pt;}
.xf_c00015{left:85.466667pt;}
.x6_c00015{left:86.400000pt;}
.x8_c00015{left:88.266667pt;}
.x4_c00015{left:90.400000pt;}
.xe_c00015{left:91.466667pt;}
.x1_c00015{left:100.533333pt;}
.x9_c00015{left:104.133333pt;}
.x11_c00015{left:105.600000pt;}
.x10_c00015{left:106.800000pt;}
.x7_c00015{left:108.933333pt;}
.x3_c00015{left:110.400000pt;}
.x5_c00015{left:111.866667pt;}
.x2_c00015{left:115.200000pt;}
.x13_c00015{left:209.634888pt;}
.x12_c00015{left:428.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_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_201500b79b6b80988f828815.woff2')format("woff");}.ff1_c00016{font-family:ff1_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:ff2_c00016;src:url('chunks/assets/font_76c77c26f1b067d35b15c71a.woff2')format("woff");}.ff2_c00016{font-family:ff2_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:ff3_c00016;src:url('chunks/assets/font_a9c5c33f3b62013e224d07f0.woff2')format("woff");}.ff3_c00016{font-family:ff3_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:ff4_c00016;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_a4bef2e475b003f23b55ad2d.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00016;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00016{font-family:ff6_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;}
.ls2_c00016{letter-spacing:0.000000px;}
.ls1_c00016{letter-spacing:3.000000px;}
.ls0_c00016{letter-spacing:6.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-19.629000px;}
.ws2_c00016{word-spacing:-19.182000px;}
.ws0_c00016{word-spacing:-11.568000px;}
.ws3_c00016{word-spacing:0.000000px;}
._23_c00016{margin-left:-16.284000px;}
._24_c00016{margin-left:-15.210000px;}
._12_c00016{margin-left:-11.259000px;}
._21_c00016{margin-left:-9.957000px;}
._17_c00016{margin-left:-6.543000px;}
._10_c00016{margin-left:-4.743000px;}
._19_c00016{margin-left:-3.588000px;}
._2_c00016{margin-left:-2.346000px;}
._3_c00016{margin-left:-1.173000px;}
._d_c00016{width:1.068000px;}
._0_c00016{width:2.070000px;}
._1_c00016{width:3.381000px;}
._13_c00016{width:4.539000px;}
._4_c00016{width:5.589000px;}
._b_c00016{width:6.771000px;}
._c_c00016{width:8.520000px;}
._16_c00016{width:9.522000px;}
._5_c00016{width:13.041000px;}
._a_c00016{width:14.490000px;}
._6_c00016{width:15.801000px;}
._e_c00016{width:18.276000px;}
._1b_c00016{width:19.434000px;}
._7_c00016{width:21.045000px;}
._8_c00016{width:23.046000px;}
._14_c00016{width:24.528000px;}
._1f_c00016{width:25.806000px;}
._1d_c00016{width:27.600000px;}
._1a_c00016{width:29.187000px;}
._1e_c00016{width:30.498000px;}
._18_c00016{width:32.061000px;}
._9_c00016{width:34.293000px;}
._f_c00016{width:39.519000px;}
._15_c00016{width:40.992000px;}
._11_c00016{width:47.175000px;}
._1c_c00016{width:50.001000px;}
._20_c00016{width:67.620000px;}
._22_c00016{width:74.289000px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(128,128,128);}
.fc0_c00016{color:rgb(0,0,0);}
.fs1_c00016{font-size:48.000000px;}
.fs2_c00016{font-size:51.000000px;}
.fs3_c00016{font-size:66.000000px;}
.fs0_c00016{font-size:69.000000px;}
.y0_c00016{bottom:0.000000px;}
.y1e_c00016{bottom:3.105000px;}
.y1d_c00016{bottom:7.228371px;}
.y1c_c00016{bottom:84.765000px;}
.y1b_c00016{bottom:134.115000px;}
.y1a_c00016{bottom:159.765000px;}
.y19_c00016{bottom:186.615000px;}
.y18_c00016{bottom:210.015000px;}
.y17_c00016{bottom:235.215000px;}
.y16_c00016{bottom:260.565000px;}
.y15_c00016{bottom:286.515000px;}
.y14_c00016{bottom:310.215000px;}
.y13_c00016{bottom:335.865000px;}
.y12_c00016{bottom:360.915000px;}
.y11_c00016{bottom:385.065000px;}
.y10_c00016{bottom:410.415000px;}
.yf_c00016{bottom:435.165000px;}
.ye_c00016{bottom:459.765000px;}
.yd_c00016{bottom:484.665000px;}
.yc_c00016{bottom:508.965000px;}
.yb_c00016{bottom:533.265000px;}
.ya_c00016{bottom:557.865000px;}
.y9_c00016{bottom:582.915000px;}
.y8_c00016{bottom:607.215000px;}
.y7_c00016{bottom:633.615000px;}
.y6_c00016{bottom:650.715000px;}
.y5_c00016{bottom:668.565000px;}
.y4_c00016{bottom:685.815000px;}
.y3_c00016{bottom:704.715000px;}
.y2_c00016{bottom:730.065000px;}
.y1_c00016{bottom:754.965000px;}
.h8_c00016{height:13.200074px;}
.h9_c00016{height:43.804688px;}
.h5_c00016{height:56.179688px;}
.h4_c00016{height:60.773438px;}
.h3_c00016{height:64.571777px;}
.h7_c00016{height:67.686035px;}
.h6_c00016{height:80.758301px;}
.h2_c00016{height:87.361816px;}
.h1_c00016{height:831.000000px;}
.h0_c00016{height:831.075000px;}
.w1_c00016{width:104.875500px;}
.w0_c00016{width:557.250000px;}
.x0_c00016{left:0.000000px;}
.x3_c00016{left:27.000000px;}
.x6_c00016{left:31.350000px;}
.x9_c00016{left:32.700000px;}
.xe_c00016{left:33.750000px;}
.xc_c00016{left:34.800000px;}
.x5_c00016{left:42.750000px;}
.x4_c00016{left:44.250000px;}
.x1_c00016{left:49.650000px;}
.x2_c00016{left:50.850000px;}
.x7_c00016{left:52.650000px;}
.x8_c00016{left:54.000000px;}
.xa_c00016{left:55.050000px;}
.xb_c00016{left:57.000000px;}
.xd_c00016{left:210.600000px;}
.xf_c00016{left:230.439240px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls2_c00016{letter-spacing:0.000000pt;}
.ls1_c00016{letter-spacing:2.666667pt;}
.ls0_c00016{letter-spacing:5.333333pt;}
.ws1_c00016{word-spacing:-17.448000pt;}
.ws2_c00016{word-spacing:-17.050667pt;}
.ws0_c00016{word-spacing:-10.282667pt;}
.ws3_c00016{word-spacing:0.000000pt;}
._23_c00016{margin-left:-14.474667pt;}
._24_c00016{margin-left:-13.520000pt;}
._12_c00016{margin-left:-10.008000pt;}
._21_c00016{margin-left:-8.850667pt;}
._17_c00016{margin-left:-5.816000pt;}
._10_c00016{margin-left:-4.216000pt;}
._19_c00016{margin-left:-3.189333pt;}
._2_c00016{margin-left:-2.085333pt;}
._3_c00016{margin-left:-1.042667pt;}
._d_c00016{width:0.949333pt;}
._0_c00016{width:1.840000pt;}
._1_c00016{width:3.005333pt;}
._13_c00016{width:4.034667pt;}
._4_c00016{width:4.968000pt;}
._b_c00016{width:6.018667pt;}
._c_c00016{width:7.573333pt;}
._16_c00016{width:8.464000pt;}
._5_c00016{width:11.592000pt;}
._a_c00016{width:12.880000pt;}
._6_c00016{width:14.045333pt;}
._e_c00016{width:16.245333pt;}
._1b_c00016{width:17.274667pt;}
._7_c00016{width:18.706667pt;}
._8_c00016{width:20.485333pt;}
._14_c00016{width:21.802667pt;}
._1f_c00016{width:22.938667pt;}
._1d_c00016{width:24.533333pt;}
._1a_c00016{width:25.944000pt;}
._1e_c00016{width:27.109333pt;}
._18_c00016{width:28.498667pt;}
._9_c00016{width:30.482667pt;}
._f_c00016{width:35.128000pt;}
._15_c00016{width:36.437333pt;}
._11_c00016{width:41.933333pt;}
._1c_c00016{width:44.445333pt;}
._20_c00016{width:60.106667pt;}
._22_c00016{width:66.034667pt;}
.fs1_c00016{font-size:42.666667pt;}
.fs2_c00016{font-size:45.333333pt;}
.fs3_c00016{font-size:58.666667pt;}
.fs0_c00016{font-size:61.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y1e_c00016{bottom:2.760000pt;}
.y1d_c00016{bottom:6.425219pt;}
.y1c_c00016{bottom:75.346667pt;}
.y1b_c00016{bottom:119.213333pt;}
.y1a_c00016{bottom:142.013333pt;}
.y19_c00016{bottom:165.880000pt;}
.y18_c00016{bottom:186.680000pt;}
.y17_c00016{bottom:209.080000pt;}
.y16_c00016{bottom:231.613333pt;}
.y15_c00016{bottom:254.680000pt;}
.y14_c00016{bottom:275.746667pt;}
.y13_c00016{bottom:298.546667pt;}
.y12_c00016{bottom:320.813333pt;}
.y11_c00016{bottom:342.280000pt;}
.y10_c00016{bottom:364.813333pt;}
.yf_c00016{bottom:386.813333pt;}
.ye_c00016{bottom:408.680000pt;}
.yd_c00016{bottom:430.813333pt;}
.yc_c00016{bottom:452.413333pt;}
.yb_c00016{bottom:474.013333pt;}
.ya_c00016{bottom:495.880000pt;}
.y9_c00016{bottom:518.146667pt;}
.y8_c00016{bottom:539.746667pt;}
.y7_c00016{bottom:563.213333pt;}
.y6_c00016{bottom:578.413333pt;}
.y5_c00016{bottom:594.280000pt;}
.y4_c00016{bottom:609.613333pt;}
.y3_c00016{bottom:626.413333pt;}
.y2_c00016{bottom:648.946667pt;}
.y1_c00016{bottom:671.080000pt;}
.h8_c00016{height:11.733399pt;}
.h9_c00016{height:38.937500pt;}
.h5_c00016{height:49.937500pt;}
.h4_c00016{height:54.020833pt;}
.h3_c00016{height:57.397135pt;}
.h7_c00016{height:60.165365pt;}
.h6_c00016{height:71.785156pt;}
.h2_c00016{height:77.654948pt;}
.h1_c00016{height:738.666667pt;}
.h0_c00016{height:738.733333pt;}
.w1_c00016{width:93.222667pt;}
.w0_c00016{width:495.333333pt;}
.x0_c00016{left:0.000000pt;}
.x3_c00016{left:24.000000pt;}
.x6_c00016{left:27.866667pt;}
.x9_c00016{left:29.066667pt;}
.xe_c00016{left:30.000000pt;}
.xc_c00016{left:30.933333pt;}
.x5_c00016{left:38.000000pt;}
.x4_c00016{left:39.333333pt;}
.x1_c00016{left:44.133333pt;}
.x2_c00016{left:45.200000pt;}
.x7_c00016{left:46.800000pt;}
.x8_c00016{left:48.000000pt;}
.xa_c00016{left:48.933333pt;}
.xb_c00016{left:50.666667pt;}
.xd_c00016{left:187.200000pt;}
.xf_c00016{left:204.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_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_c47f589309764b82fa579fb7.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_7ff9ae77a8f844cd67ae7907.woff2')format("woff");}.ff2_c00017{font-family:ff2_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:ff3_c00017;src:url('chunks/assets/font_b76e9a626bf2ed76cddc08ee.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_1e05d8acfa89371e4c3ec5c1.woff2')format("woff");}.ff4_c00017{font-family:ff4_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:ff5_c00017;src:url('chunks/assets/font_ec40c94c6becd0c7a2fdaace.woff2')format("woff");}.ff5_c00017{font-family:ff5_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:ff6_c00017;src:url('chunks/assets/font_3989b302ecd12cbbfc8028e1.woff2')format("woff");}.ff6_c00017{font-family:ff6_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:ff7_c00017;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00017{font-family:ff7_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;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls4_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:0.150000px;}
.ls5_c00017{letter-spacing:3.000000px;}
.ls1_c00017{letter-spacing:12.000000px;}
.ls2_c00017{letter-spacing:14.925000px;}
.ls3_c00017{letter-spacing:19.725000px;}
.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:-19.629000px;}
.ws2_c00017{word-spacing:-16.629000px;}
.ws3_c00017{word-spacing:0.000000px;}
.ws0_c00017{word-spacing:4.692000px;}
._2a_c00017{margin-left:-27.876000px;}
._24_c00017{margin-left:-18.060000px;}
._10_c00017{margin-left:-15.852000px;}
._d_c00017{margin-left:-14.247000px;}
._17_c00017{margin-left:-12.609000px;}
._12_c00017{margin-left:-11.247000px;}
._19_c00017{margin-left:-9.867000px;}
._1a_c00017{margin-left:-8.487000px;}
._7_c00017{margin-left:-6.624000px;}
._c_c00017{margin-left:-5.346000px;}
._f_c00017{margin-left:-4.002000px;}
._5_c00017{margin-left:-2.967000px;}
._a_c00017{margin-left:-1.320000px;}
._16_c00017{width:1.002000px;}
._b_c00017{width:2.034000px;}
._8_c00017{width:3.702000px;}
._4_c00017{width:4.899000px;}
._3_c00017{width:6.900000px;}
._2_c00017{width:8.694000px;}
._0_c00017{width:10.074000px;}
._9_c00017{width:11.868000px;}
._14_c00017{width:13.227000px;}
._11_c00017{width:14.904000px;}
._1_c00017{width:15.939000px;}
._6_c00017{width:17.802000px;}
._1b_c00017{width:20.235000px;}
._1d_c00017{width:21.963000px;}
._25_c00017{width:23.580000px;}
._1c_c00017{width:25.071000px;}
._1f_c00017{width:27.255000px;}
._21_c00017{width:31.716000px;}
._22_c00017{width:32.913000px;}
._27_c00017{width:36.594000px;}
._20_c00017{width:42.435000px;}
._26_c00017{width:61.386000px;}
._29_c00017{width:72.795000px;}
._28_c00017{width:78.657000px;}
._1e_c00017{width:87.468000px;}
._23_c00017{width:126.111000px;}
._e_c00017{width:134.940000px;}
._15_c00017{width:151.506000px;}
._18_c00017{width:155.760000px;}
._13_c00017{width:171.309000px;}
._2b_c00017{width:1489.134000px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(128,128,128);}
.fc0_c00017{color:rgb(0,0,0);}
.fs3_c00017{font-size:48.000000px;}
.fs1_c00017{font-size:66.000000px;}
.fs0_c00017{font-size:69.000000px;}
.fs2_c00017{font-size:75.000000px;}
.y0_c00017{bottom:0.000000px;}
.y1e_c00017{bottom:3.105000px;}
.y1d_c00017{bottom:7.228371px;}
.y1c_c00017{bottom:42.315000px;}
.y1b_c00017{bottom:69.165000px;}
.y1a_c00017{bottom:94.215000px;}
.y19_c00017{bottom:119.265000px;}
.y18_c00017{bottom:144.165000px;}
.y17_c00017{bottom:169.065000px;}
.y16_c00017{bottom:193.515000px;}
.y15_c00017{bottom:218.415000px;}
.y14_c00017{bottom:244.065000px;}
.y13_c00017{bottom:270.015000px;}
.y12_c00017{bottom:293.415000px;}
.y11_c00017{bottom:318.315000px;}
.y10_c00017{bottom:342.315000px;}
.yf_c00017{bottom:368.265000px;}
.ye_c00017{bottom:392.565000px;}
.yd_c00017{bottom:443.115000px;}
.yc_c00017{bottom:493.215000px;}
.yb_c00017{bottom:518.115000px;}
.ya_c00017{bottom:543.015000px;}
.y9_c00017{bottom:568.065000px;}
.y8_c00017{bottom:592.965000px;}
.y7_c00017{bottom:617.715000px;}
.y6_c00017{bottom:642.615000px;}
.y5_c00017{bottom:667.665000px;}
.y4_c00017{bottom:692.565000px;}
.y3_c00017{bottom:717.615000px;}
.y2_c00017{bottom:741.915000px;}
.y1_c00017{bottom:766.215000px;}
.h7_c00017{height:13.200074px;}
.h8_c00017{height:43.804688px;}
.h4_c00017{height:67.686035px;}
.h2_c00017{height:67.719727px;}
.h5_c00017{height:80.758301px;}
.h3_c00017{height:87.361816px;}
.h6_c00017{height:94.958496px;}
.h1_c00017{height:804.000000px;}
.h0_c00017{height:804.075000px;}
.w2_c00017{width:104.875500px;}
.w1_c00017{width:564.750000px;}
.w0_c00017{width:564.825000px;}
.x0_c00017{left:0.000000px;}
.xb_c00017{left:48.600000px;}
.x9_c00017{left:52.050000px;}
.xd_c00017{left:55.800000px;}
.xc_c00017{left:57.450000px;}
.xa_c00017{left:58.500000px;}
.xf_c00017{left:83.400000px;}
.xe_c00017{left:96.300000px;}
.x7_c00017{left:98.250000px;}
.x3_c00017{left:100.350000px;}
.x2_c00017{left:101.550000px;}
.x1_c00017{left:112.050000px;}
.x5_c00017{left:123.300000px;}
.x4_c00017{left:124.500000px;}
.x6_c00017{left:139.500000px;}
.x10_c00017{left:234.226730px;}
.x8_c00017{left:278.850000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls4_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:0.133333pt;}
.ls5_c00017{letter-spacing:2.666667pt;}
.ls1_c00017{letter-spacing:10.666667pt;}
.ls2_c00017{letter-spacing:13.266667pt;}
.ls3_c00017{letter-spacing:17.533333pt;}
.ws1_c00017{word-spacing:-17.448000pt;}
.ws2_c00017{word-spacing:-14.781333pt;}
.ws3_c00017{word-spacing:0.000000pt;}
.ws0_c00017{word-spacing:4.170667pt;}
._2a_c00017{margin-left:-24.778667pt;}
._24_c00017{margin-left:-16.053333pt;}
._10_c00017{margin-left:-14.090667pt;}
._d_c00017{margin-left:-12.664000pt;}
._17_c00017{margin-left:-11.208000pt;}
._12_c00017{margin-left:-9.997333pt;}
._19_c00017{margin-left:-8.770667pt;}
._1a_c00017{margin-left:-7.544000pt;}
._7_c00017{margin-left:-5.888000pt;}
._c_c00017{margin-left:-4.752000pt;}
._f_c00017{margin-left:-3.557333pt;}
._5_c00017{margin-left:-2.637333pt;}
._a_c00017{margin-left:-1.173333pt;}
._16_c00017{width:0.890667pt;}
._b_c00017{width:1.808000pt;}
._8_c00017{width:3.290667pt;}
._4_c00017{width:4.354667pt;}
._3_c00017{width:6.133333pt;}
._2_c00017{width:7.728000pt;}
._0_c00017{width:8.954667pt;}
._9_c00017{width:10.549333pt;}
._14_c00017{width:11.757333pt;}
._11_c00017{width:13.248000pt;}
._1_c00017{width:14.168000pt;}
._6_c00017{width:15.824000pt;}
._1b_c00017{width:17.986667pt;}
._1d_c00017{width:19.522667pt;}
._25_c00017{width:20.960000pt;}
._1c_c00017{width:22.285333pt;}
._1f_c00017{width:24.226667pt;}
._21_c00017{width:28.192000pt;}
._22_c00017{width:29.256000pt;}
._27_c00017{width:32.528000pt;}
._20_c00017{width:37.720000pt;}
._26_c00017{width:54.565333pt;}
._29_c00017{width:64.706667pt;}
._28_c00017{width:69.917333pt;}
._1e_c00017{width:77.749333pt;}
._23_c00017{width:112.098667pt;}
._e_c00017{width:119.946667pt;}
._15_c00017{width:134.672000pt;}
._18_c00017{width:138.453333pt;}
._13_c00017{width:152.274667pt;}
._2b_c00017{width:1323.674667pt;}
.fs3_c00017{font-size:42.666667pt;}
.fs1_c00017{font-size:58.666667pt;}
.fs0_c00017{font-size:61.333333pt;}
.fs2_c00017{font-size:66.666667pt;}
.y0_c00017{bottom:0.000000pt;}
.y1e_c00017{bottom:2.760000pt;}
.y1d_c00017{bottom:6.425219pt;}
.y1c_c00017{bottom:37.613333pt;}
.y1b_c00017{bottom:61.480000pt;}
.y1a_c00017{bottom:83.746667pt;}
.y19_c00017{bottom:106.013333pt;}
.y18_c00017{bottom:128.146667pt;}
.y17_c00017{bottom:150.280000pt;}
.y16_c00017{bottom:172.013333pt;}
.y15_c00017{bottom:194.146667pt;}
.y14_c00017{bottom:216.946667pt;}
.y13_c00017{bottom:240.013333pt;}
.y12_c00017{bottom:260.813333pt;}
.y11_c00017{bottom:282.946667pt;}
.y10_c00017{bottom:304.280000pt;}
.yf_c00017{bottom:327.346667pt;}
.ye_c00017{bottom:348.946667pt;}
.yd_c00017{bottom:393.880000pt;}
.yc_c00017{bottom:438.413333pt;}
.yb_c00017{bottom:460.546667pt;}
.ya_c00017{bottom:482.680000pt;}
.y9_c00017{bottom:504.946667pt;}
.y8_c00017{bottom:527.080000pt;}
.y7_c00017{bottom:549.080000pt;}
.y6_c00017{bottom:571.213333pt;}
.y5_c00017{bottom:593.480000pt;}
.y4_c00017{bottom:615.613333pt;}
.y3_c00017{bottom:637.880000pt;}
.y2_c00017{bottom:659.480000pt;}
.y1_c00017{bottom:681.080000pt;}
.h7_c00017{height:11.733399pt;}
.h8_c00017{height:38.937500pt;}
.h4_c00017{height:60.165365pt;}
.h2_c00017{height:60.195312pt;}
.h5_c00017{height:71.785156pt;}
.h3_c00017{height:77.654948pt;}
.h6_c00017{height:84.407552pt;}
.h1_c00017{height:714.666667pt;}
.h0_c00017{height:714.733333pt;}
.w2_c00017{width:93.222667pt;}
.w1_c00017{width:502.000000pt;}
.w0_c00017{width:502.066667pt;}
.x0_c00017{left:0.000000pt;}
.xb_c00017{left:43.200000pt;}
.x9_c00017{left:46.266667pt;}
.xd_c00017{left:49.600000pt;}
.xc_c00017{left:51.066667pt;}
.xa_c00017{left:52.000000pt;}
.xf_c00017{left:74.133333pt;}
.xe_c00017{left:85.600000pt;}
.x7_c00017{left:87.333333pt;}
.x3_c00017{left:89.200000pt;}
.x2_c00017{left:90.266667pt;}
.x1_c00017{left:99.600000pt;}
.x5_c00017{left:109.600000pt;}
.x4_c00017{left:110.666667pt;}
.x6_c00017{left:124.000000pt;}
.x10_c00017{left:208.201538pt;}
.x8_c00017{left:247.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_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_11d411f185d797a08eadd03d.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_6d028639c06a26d642370152.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.568848;font-style:normal;font-weight:normal;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_6a6d5def7c355a3f763b0ddd.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.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_f8a23be3c9e980d4985a5706.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00018;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00018;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00018{font-family:ff7_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;}
.v1_c00018{vertical-align:39.000000px;}
.ls2_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.360000px;}
.ls3_c00018{letter-spacing:3.000000px;}
.ls1_c00018{letter-spacing:9.846000px;}
.ls4_c00018{letter-spacing:15.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;}
}
.ws3_c00018{word-spacing:-59.022000px;}
.ws0_c00018{word-spacing:-16.629000px;}
.ws2_c00018{word-spacing:-12.954000px;}
.ws5_c00018{word-spacing:-10.122000px;}
.ws4_c00018{word-spacing:-0.117000px;}
.ws6_c00018{word-spacing:0.000000px;}
.ws1_c00018{word-spacing:3.120000px;}
._22_c00018{margin-left:-22.476000px;}
._1c_c00018{margin-left:-17.967000px;}
._21_c00018{margin-left:-13.800000px;}
._1_c00018{margin-left:-11.040000px;}
._1a_c00018{margin-left:-8.073000px;}
._c_c00018{margin-left:-6.759000px;}
._4_c00018{margin-left:-4.830000px;}
._2_c00018{margin-left:-2.967000px;}
._3_c00018{margin-left:-1.656000px;}
._6_c00018{width:1.104000px;}
._0_c00018{width:2.415000px;}
._b_c00018{width:3.450000px;}
._8_c00018{width:4.692000px;}
._d_c00018{width:6.624000px;}
._f_c00018{width:8.280000px;}
._7_c00018{width:9.798000px;}
._16_c00018{width:11.592000px;}
._10_c00018{width:13.212000px;}
._17_c00018{width:14.355000px;}
._9_c00018{width:15.801000px;}
._12_c00018{width:16.803000px;}
._14_c00018{width:17.871000px;}
._a_c00018{width:21.183000px;}
._e_c00018{width:22.350000px;}
._1f_c00018{width:25.890000px;}
._23_c00018{width:29.598000px;}
._1e_c00018{width:36.045000px;}
._19_c00018{width:37.986000px;}
._11_c00018{width:47.679000px;}
._1d_c00018{width:58.170000px;}
._24_c00018{width:62.727000px;}
._13_c00018{width:66.039000px;}
._25_c00018{width:71.058000px;}
._15_c00018{width:75.009000px;}
._20_c00018{width:77.244000px;}
._1b_c00018{width:150.066000px;}
._18_c00018{width:159.285000px;}
._26_c00018{width:360.399000px;}
._5_c00018{width:571.965000px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(128,128,128);}
.fc0_c00018{color:rgb(0,0,0);}
.fs4_c00018{font-size:42.000000px;}
.fs1_c00018{font-size:48.000000px;}
.fs2_c00018{font-size:51.000000px;}
.fs5_c00018{font-size:63.000000px;}
.fs3_c00018{font-size:66.000000px;}
.fs0_c00018{font-size:69.000000px;}
.y0_c00018{bottom:0.000000px;}
.y1a_c00018{bottom:3.105000px;}
.y19_c00018{bottom:7.228369px;}
.y18_c00018{bottom:131.970000px;}
.y17_c00018{bottom:156.870000px;}
.y16_c00018{bottom:181.470000px;}
.y15_c00018{bottom:207.120000px;}
.y14_c00018{bottom:231.120000px;}
.y13_c00018{bottom:256.770000px;}
.y12_c00018{bottom:281.370000px;}
.y11_c00018{bottom:306.720000px;}
.y10_c00018{bottom:331.320000px;}
.yf_c00018{bottom:355.620000px;}
.ye_c00018{bottom:380.370000px;}
.yd_c00018{bottom:405.270000px;}
.yc_c00018{bottom:429.570000px;}
.yb_c00018{bottom:454.920000px;}
.ya_c00018{bottom:479.220000px;}
.y9_c00018{bottom:527.820000px;}
.y8_c00018{bottom:552.870000px;}
.y7_c00018{bottom:601.770000px;}
.y6_c00018{bottom:651.270000px;}
.y5_c00018{bottom:676.620000px;}
.y4_c00018{bottom:701.670000px;}
.y3_c00018{bottom:726.570000px;}
.y2_c00018{bottom:751.170000px;}
.y1_c00018{bottom:775.920000px;}
.h7_c00018{height:13.200073px;}
.h8_c00018{height:43.804688px;}
.h5_c00018{height:67.686035px;}
.h4_c00018{height:67.719727px;}
.h3_c00018{height:80.758301px;}
.h2_c00018{height:87.361816px;}
.h6_c00018{height:118.765137px;}
.h1_c00018{height:810.750000px;}
.h0_c00018{height:811.050000px;}
.w1_c00018{width:104.875500px;}
.w0_c00018{width:543.750000px;}
.x0_c00018{left:0.000000px;}
.x9_c00018{left:25.050000px;}
.x7_c00018{left:26.100000px;}
.x8_c00018{left:27.300000px;}
.x2_c00018{left:28.350000px;}
.x3_c00018{left:30.000000px;}
.x6_c00018{left:49.650000px;}
.x4_c00018{left:75.000000px;}
.x5_c00018{left:145.500000px;}
.x1_c00018{left:182.550000px;}
.xa_c00018{left:223.689240px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:34.666667pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.320000pt;}
.ls3_c00018{letter-spacing:2.666667pt;}
.ls1_c00018{letter-spacing:8.752000pt;}
.ls4_c00018{letter-spacing:13.333333pt;}
.ws3_c00018{word-spacing:-52.464000pt;}
.ws0_c00018{word-spacing:-14.781333pt;}
.ws2_c00018{word-spacing:-11.514667pt;}
.ws5_c00018{word-spacing:-8.997333pt;}
.ws4_c00018{word-spacing:-0.104000pt;}
.ws6_c00018{word-spacing:0.000000pt;}
.ws1_c00018{word-spacing:2.773333pt;}
._22_c00018{margin-left:-19.978667pt;}
._1c_c00018{margin-left:-15.970667pt;}
._21_c00018{margin-left:-12.266667pt;}
._1_c00018{margin-left:-9.813333pt;}
._1a_c00018{margin-left:-7.176000pt;}
._c_c00018{margin-left:-6.008000pt;}
._4_c00018{margin-left:-4.293333pt;}
._2_c00018{margin-left:-2.637333pt;}
._3_c00018{margin-left:-1.472000pt;}
._6_c00018{width:0.981333pt;}
._0_c00018{width:2.146667pt;}
._b_c00018{width:3.066667pt;}
._8_c00018{width:4.170667pt;}
._d_c00018{width:5.888000pt;}
._f_c00018{width:7.360000pt;}
._7_c00018{width:8.709333pt;}
._16_c00018{width:10.304000pt;}
._10_c00018{width:11.744000pt;}
._17_c00018{width:12.760000pt;}
._9_c00018{width:14.045333pt;}
._12_c00018{width:14.936000pt;}
._14_c00018{width:15.885333pt;}
._a_c00018{width:18.829333pt;}
._e_c00018{width:19.866667pt;}
._1f_c00018{width:23.013333pt;}
._23_c00018{width:26.309333pt;}
._1e_c00018{width:32.040000pt;}
._19_c00018{width:33.765333pt;}
._11_c00018{width:42.381333pt;}
._1d_c00018{width:51.706667pt;}
._24_c00018{width:55.757333pt;}
._13_c00018{width:58.701333pt;}
._25_c00018{width:63.162667pt;}
._15_c00018{width:66.674667pt;}
._20_c00018{width:68.661333pt;}
._1b_c00018{width:133.392000pt;}
._18_c00018{width:141.586667pt;}
._26_c00018{width:320.354667pt;}
._5_c00018{width:508.413333pt;}
.fs4_c00018{font-size:37.333333pt;}
.fs1_c00018{font-size:42.666667pt;}
.fs2_c00018{font-size:45.333333pt;}
.fs5_c00018{font-size:56.000000pt;}
.fs3_c00018{font-size:58.666667pt;}
.fs0_c00018{font-size:61.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y1a_c00018{bottom:2.760000pt;}
.y19_c00018{bottom:6.425217pt;}
.y18_c00018{bottom:117.306667pt;}
.y17_c00018{bottom:139.440000pt;}
.y16_c00018{bottom:161.306667pt;}
.y15_c00018{bottom:184.106667pt;}
.y14_c00018{bottom:205.440000pt;}
.y13_c00018{bottom:228.240000pt;}
.y12_c00018{bottom:250.106667pt;}
.y11_c00018{bottom:272.640000pt;}
.y10_c00018{bottom:294.506667pt;}
.yf_c00018{bottom:316.106667pt;}
.ye_c00018{bottom:338.106667pt;}
.yd_c00018{bottom:360.240000pt;}
.yc_c00018{bottom:381.840000pt;}
.yb_c00018{bottom:404.373333pt;}
.ya_c00018{bottom:425.973333pt;}
.y9_c00018{bottom:469.173333pt;}
.y8_c00018{bottom:491.440000pt;}
.y7_c00018{bottom:534.906667pt;}
.y6_c00018{bottom:578.906667pt;}
.y5_c00018{bottom:601.440000pt;}
.y4_c00018{bottom:623.706667pt;}
.y3_c00018{bottom:645.840000pt;}
.y2_c00018{bottom:667.706667pt;}
.y1_c00018{bottom:689.706667pt;}
.h7_c00018{height:11.733399pt;}
.h8_c00018{height:38.937500pt;}
.h5_c00018{height:60.165365pt;}
.h4_c00018{height:60.195312pt;}
.h3_c00018{height:71.785156pt;}
.h2_c00018{height:77.654948pt;}
.h6_c00018{height:105.569010pt;}
.h1_c00018{height:720.666667pt;}
.h0_c00018{height:720.933333pt;}
.w1_c00018{width:93.222667pt;}
.w0_c00018{width:483.333333pt;}
.x0_c00018{left:0.000000pt;}
.x9_c00018{left:22.266667pt;}
.x7_c00018{left:23.200000pt;}
.x8_c00018{left:24.266667pt;}
.x2_c00018{left:25.200000pt;}
.x3_c00018{left:26.666667pt;}
.x6_c00018{left:44.133333pt;}
.x4_c00018{left:66.666667pt;}
.x5_c00018{left:129.333333pt;}
.x1_c00018{left:162.266667pt;}
.xa_c00018{left:198.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_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_5d5eb19dc730c7d022fd64bc.woff2')format("woff");}.ff1_c00019{font-family:ff1_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:ff2_c00019;src:url('chunks/assets/font_fb18e238f0ef1d39cb08caa8.woff2')format("woff");}.ff2_c00019{font-family:ff2_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:ff3_c00019;src:url('chunks/assets/font_7290fa2fb0dafe7535deced0.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.568848;font-style:normal;font-weight:normal;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_edec6b3f2e32b3f31cd0de1c.woff2')format("woff");}.ff4_c00019{font-family:ff4_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:ff5_c00019;src:url('chunks/assets/font_9222d5a95dfc569143c5a8b2.woff2')format("woff");}.ff5_c00019{font-family:ff5_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:ff6_c00019;src:url('chunks/assets/font_faa17ed3206f69f00b459fe3.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;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_c00019;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00019{font-family:ff7_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);}
.v0_c00019{vertical-align:0.000000px;}
.ls6_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:1.950000px;}
.ls0_c00019{letter-spacing:3.000000px;}
.ls2_c00019{letter-spacing:5.550000px;}
.ls4_c00019{letter-spacing:12.150000px;}
.ls7_c00019{letter-spacing:15.000000px;}
.ls3_c00019{letter-spacing:16.350000px;}
.ls5_c00019{letter-spacing:53.577000px;}
.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;}
}
.ws5_c00019{word-spacing:-31.500000px;}
.ws4_c00019{word-spacing:-19.629000px;}
.ws2_c00019{word-spacing:-16.800000px;}
.ws3_c00019{word-spacing:-16.629000px;}
.ws0_c00019{word-spacing:-0.483000px;}
.ws6_c00019{word-spacing:-0.102000px;}
.ws7_c00019{word-spacing:0.000000px;}
.ws1_c00019{word-spacing:15.801000px;}
._14_c00019{margin-left:-27.117000px;}
._10_c00019{margin-left:-16.146000px;}
._f_c00019{margin-left:-13.662000px;}
._11_c00019{margin-left:-12.351000px;}
._13_c00019{margin-left:-11.040000px;}
._20_c00019{margin-left:-9.892200px;}
._22_c00019{margin-left:-8.418000px;}
._17_c00019{margin-left:-7.383000px;}
._16_c00019{margin-left:-6.348000px;}
._18_c00019{margin-left:-5.037000px;}
._1_c00019{margin-left:-3.864000px;}
._12_c00019{margin-left:-2.760000px;}
._0_c00019{margin-left:-1.656000px;}
._4_c00019{width:1.449000px;}
._3_c00019{width:2.760000px;}
._15_c00019{width:4.071000px;}
._19_c00019{width:5.796000px;}
._1d_c00019{width:7.150200px;}
._6_c00019{width:8.211000px;}
._1a_c00019{width:9.522000px;}
._1c_c00019{width:11.241000px;}
._d_c00019{width:12.696000px;}
._a_c00019{width:14.766000px;}
._1f_c00019{width:16.422000px;}
._5_c00019{width:17.595000px;}
._7_c00019{width:19.803000px;}
._21_c00019{width:21.345000px;}
._1e_c00019{width:22.486800px;}
._c_c00019{width:24.909000px;}
._29_c00019{width:26.203200px;}
._8_c00019{width:27.255000px;}
._b_c00019{width:28.290000px;}
._2a_c00019{width:29.532000px;}
._e_c00019{width:31.395000px;}
._27_c00019{width:33.603000px;}
._1b_c00019{width:36.363000px;}
._26_c00019{width:37.536000px;}
._23_c00019{width:39.471000px;}
._28_c00019{width:42.297000px;}
._24_c00019{width:67.689000px;}
._2b_c00019{width:77.529000px;}
._9_c00019{width:83.577000px;}
._25_c00019{width:116.094000px;}
._2_c00019{width:360.753000px;}
.fc2_c00019{color:transparent;}
.fc1_c00019{color:rgb(128,128,128);}
.fc0_c00019{color:rgb(0,0,0);}
.fs6_c00019{font-size:48.000000px;}
.fs1_c00019{font-size:55.200000px;}
.fs2_c00019{font-size:63.000000px;}
.fs3_c00019{font-size:66.000000px;}
.fs0_c00019{font-size:69.000000px;}
.fs4_c00019{font-size:81.000000px;}
.fs5_c00019{font-size:102.000000px;}
.y0_c00019{bottom:0.000000px;}
.y1f_c00019{bottom:3.105000px;}
.y1e_c00019{bottom:7.228363px;}
.y1d_c00019{bottom:62.550000px;}
.y1c_c00019{bottom:84.750000px;}
.y1b_c00019{bottom:110.400000px;}
.y1a_c00019{bottom:135.300000px;}
.y19_c00019{bottom:160.650000px;}
.y18_c00019{bottom:186.000000px;}
.y17_c00019{bottom:210.900000px;}
.y16_c00019{bottom:236.250000px;}
.y15_c00019{bottom:261.150000px;}
.y14_c00019{bottom:285.300000px;}
.y13_c00019{bottom:310.500000px;}
.y12_c00019{bottom:359.400000px;}
.y11_c00019{bottom:398.850000px;}
.y10_c00019{bottom:408.000000px;}
.yf_c00019{bottom:433.950000px;}
.ye_c00019{bottom:459.600000px;}
.yd_c00019{bottom:483.750000px;}
.yc_c00019{bottom:508.500000px;}
.yb_c00019{bottom:532.500000px;}
.ya_c00019{bottom:557.100000px;}
.y9_c00019{bottom:581.250000px;}
.y8_c00019{bottom:606.450000px;}
.y7_c00019{bottom:631.350000px;}
.y6_c00019{bottom:656.100000px;}
.y5_c00019{bottom:681.000000px;}
.y4_c00019{bottom:687.450000px;}
.y3_c00019{bottom:712.350000px;}
.y2_c00019{bottom:748.950000px;}
.y1_c00019{bottom:780.750000px;}
.h8_c00019{height:13.200074px;}
.h9_c00019{height:43.804688px;}
.h4_c00019{height:67.719727px;}
.h2_c00019{height:80.758301px;}
.h3_c00019{height:87.361816px;}
.h5_c00019{height:87.961816px;}
.h6_c00019{height:102.555176px;}
.h7_c00019{height:108.834000px;}
.h1_c00019{height:815.250000px;}
.h0_c00019{height:815.400000px;}
.w2_c00019{width:104.875500px;}
.w0_c00019{width:572.925000px;}
.w1_c00019{width:573.000000px;}
.x0_c00019{left:0.000000px;}
.x9_c00019{left:66.450000px;}
.x7_c00019{left:69.150000px;}
.xb_c00019{left:112.950000px;}
.xf_c00019{left:114.000000px;}
.x8_c00019{left:116.700000px;}
.x3_c00019{left:118.350000px;}
.x1_c00019{left:135.300000px;}
.x6_c00019{left:136.650000px;}
.xc_c00019{left:138.450000px;}
.x2_c00019{left:159.000000px;}
.xa_c00019{left:163.050000px;}
.xd_c00019{left:172.950000px;}
.x11_c00019{left:238.276749px;}
.x4_c00019{left:255.750000px;}
.x5_c00019{left:296.550000px;}
.xe_c00019{left:306.000000px;}
.x10_c00019{left:513.600000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls6_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:1.733333pt;}
.ls0_c00019{letter-spacing:2.666667pt;}
.ls2_c00019{letter-spacing:4.933333pt;}
.ls4_c00019{letter-spacing:10.800000pt;}
.ls7_c00019{letter-spacing:13.333333pt;}
.ls3_c00019{letter-spacing:14.533333pt;}
.ls5_c00019{letter-spacing:47.624000pt;}
.ws5_c00019{word-spacing:-28.000000pt;}
.ws4_c00019{word-spacing:-17.448000pt;}
.ws2_c00019{word-spacing:-14.933333pt;}
.ws3_c00019{word-spacing:-14.781333pt;}
.ws0_c00019{word-spacing:-0.429333pt;}
.ws6_c00019{word-spacing:-0.090667pt;}
.ws7_c00019{word-spacing:0.000000pt;}
.ws1_c00019{word-spacing:14.045333pt;}
._14_c00019{margin-left:-24.104000pt;}
._10_c00019{margin-left:-14.352000pt;}
._f_c00019{margin-left:-12.144000pt;}
._11_c00019{margin-left:-10.978667pt;}
._13_c00019{margin-left:-9.813333pt;}
._20_c00019{margin-left:-8.793067pt;}
._22_c00019{margin-left:-7.482667pt;}
._17_c00019{margin-left:-6.562667pt;}
._16_c00019{margin-left:-5.642667pt;}
._18_c00019{margin-left:-4.477333pt;}
._1_c00019{margin-left:-3.434667pt;}
._12_c00019{margin-left:-2.453333pt;}
._0_c00019{margin-left:-1.472000pt;}
._4_c00019{width:1.288000pt;}
._3_c00019{width:2.453333pt;}
._15_c00019{width:3.618667pt;}
._19_c00019{width:5.152000pt;}
._1d_c00019{width:6.355733pt;}
._6_c00019{width:7.298667pt;}
._1a_c00019{width:8.464000pt;}
._1c_c00019{width:9.992000pt;}
._d_c00019{width:11.285333pt;}
._a_c00019{width:13.125333pt;}
._1f_c00019{width:14.597333pt;}
._5_c00019{width:15.640000pt;}
._7_c00019{width:17.602667pt;}
._21_c00019{width:18.973333pt;}
._1e_c00019{width:19.988267pt;}
._c_c00019{width:22.141333pt;}
._29_c00019{width:23.291733pt;}
._8_c00019{width:24.226667pt;}
._b_c00019{width:25.146667pt;}
._2a_c00019{width:26.250667pt;}
._e_c00019{width:27.906667pt;}
._27_c00019{width:29.869333pt;}
._1b_c00019{width:32.322667pt;}
._26_c00019{width:33.365333pt;}
._23_c00019{width:35.085333pt;}
._28_c00019{width:37.597333pt;}
._24_c00019{width:60.168000pt;}
._2b_c00019{width:68.914667pt;}
._9_c00019{width:74.290667pt;}
._25_c00019{width:103.194667pt;}
._2_c00019{width:320.669333pt;}
.fs6_c00019{font-size:42.666667pt;}
.fs1_c00019{font-size:49.066667pt;}
.fs2_c00019{font-size:56.000000pt;}
.fs3_c00019{font-size:58.666667pt;}
.fs0_c00019{font-size:61.333333pt;}
.fs4_c00019{font-size:72.000000pt;}
.fs5_c00019{font-size:90.666667pt;}
.y0_c00019{bottom:0.000000pt;}
.y1f_c00019{bottom:2.760000pt;}
.y1e_c00019{bottom:6.425212pt;}
.y1d_c00019{bottom:55.600000pt;}
.y1c_c00019{bottom:75.333333pt;}
.y1b_c00019{bottom:98.133333pt;}
.y1a_c00019{bottom:120.266667pt;}
.y19_c00019{bottom:142.800000pt;}
.y18_c00019{bottom:165.333333pt;}
.y17_c00019{bottom:187.466667pt;}
.y16_c00019{bottom:210.000000pt;}
.y15_c00019{bottom:232.133333pt;}
.y14_c00019{bottom:253.600000pt;}
.y13_c00019{bottom:276.000000pt;}
.y12_c00019{bottom:319.466667pt;}
.y11_c00019{bottom:354.533333pt;}
.y10_c00019{bottom:362.666667pt;}
.yf_c00019{bottom:385.733333pt;}
.ye_c00019{bottom:408.533333pt;}
.yd_c00019{bottom:430.000000pt;}
.yc_c00019{bottom:452.000000pt;}
.yb_c00019{bottom:473.333333pt;}
.ya_c00019{bottom:495.200000pt;}
.y9_c00019{bottom:516.666667pt;}
.y8_c00019{bottom:539.066667pt;}
.y7_c00019{bottom:561.200000pt;}
.y6_c00019{bottom:583.200000pt;}
.y5_c00019{bottom:605.333333pt;}
.y4_c00019{bottom:611.066667pt;}
.y3_c00019{bottom:633.200000pt;}
.y2_c00019{bottom:665.733333pt;}
.y1_c00019{bottom:694.000000pt;}
.h8_c00019{height:11.733399pt;}
.h9_c00019{height:38.937500pt;}
.h4_c00019{height:60.195312pt;}
.h2_c00019{height:71.785156pt;}
.h3_c00019{height:77.654948pt;}
.h5_c00019{height:78.188281pt;}
.h6_c00019{height:91.160156pt;}
.h7_c00019{height:96.741333pt;}
.h1_c00019{height:724.666667pt;}
.h0_c00019{height:724.800000pt;}
.w2_c00019{width:93.222667pt;}
.w0_c00019{width:509.266667pt;}
.w1_c00019{width:509.333333pt;}
.x0_c00019{left:0.000000pt;}
.x9_c00019{left:59.066667pt;}
.x7_c00019{left:61.466667pt;}
.xb_c00019{left:100.400000pt;}
.xf_c00019{left:101.333333pt;}
.x8_c00019{left:103.733333pt;}
.x3_c00019{left:105.200000pt;}
.x1_c00019{left:120.266667pt;}
.x6_c00019{left:121.466667pt;}
.xc_c00019{left:123.066667pt;}
.x2_c00019{left:141.333333pt;}
.xa_c00019{left:144.933333pt;}
.xd_c00019{left:153.733333pt;}
.x11_c00019{left:211.801554pt;}
.x4_c00019{left:227.333333pt;}
.x5_c00019{left:263.600000pt;}
.xe_c00019{left:272.000000pt;}
.x10_c00019{left:456.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_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_fb704a685e0ff3cd75300c8a.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_8c0d0e6a45ae3e5a277a0859.woff2')format("woff");}.ff2_c00020{font-family:ff2_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:ff3_c00020;src:url('chunks/assets/font_c77ec386638c2f304b9d90ec.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.568848;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00020{font-family:ff4_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:ff5_c00020;src:url('chunks/assets/font_6380efd9e4364854e4cb6f9e.woff2')format("woff");}.ff5_c00020{font-family:ff5_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:ff6_c00020;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00020{font-family:ff6_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;}
.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;}
.ls5_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:3.000000px;}
.ls4_c00020{letter-spacing:4.347000px;}
.ls6_c00020{letter-spacing:9.000000px;}
.ls3_c00020{letter-spacing:14.823000px;}
.ls2_c00020{letter-spacing:15.423000px;}
.ls7_c00020{letter-spacing:30.000000px;}
.ls0_c00020{letter-spacing:515.550000px;}
.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;}
}
.ws5_c00020{word-spacing:-23.529000px;}
.ws1_c00020{word-spacing:-23.460000px;}
.ws3_c00020{word-spacing:-20.250000px;}
.ws0_c00020{word-spacing:-19.182000px;}
.ws2_c00020{word-spacing:-5.658000px;}
.ws6_c00020{word-spacing:0.000000px;}
.ws4_c00020{word-spacing:39.276000px;}
._1c_c00020{margin-left:-33.546000px;}
._f_c00020{margin-left:-27.621000px;}
._25_c00020{margin-left:-26.445000px;}
._1e_c00020{margin-left:-24.837000px;}
._21_c00020{margin-left:-20.496000px;}
._24_c00020{margin-left:-19.218000px;}
._23_c00020{margin-left:-17.100000px;}
._27_c00020{margin-left:-13.356000px;}
._1d_c00020{margin-left:-10.005000px;}
._12_c00020{margin-left:-8.142000px;}
._20_c00020{margin-left:-7.080000px;}
._2_c00020{margin-left:-6.003000px;}
._3_c00020{margin-left:-4.485000px;}
._6_c00020{margin-left:-2.553000px;}
._7_c00020{margin-left:-1.380000px;}
._8_c00020{width:1.035000px;}
._1_c00020{width:2.139000px;}
._5_c00020{width:3.174000px;}
._0_c00020{width:4.209000px;}
._9_c00020{width:5.244000px;}
._b_c00020{width:6.348000px;}
._a_c00020{width:7.383000px;}
._10_c00020{width:8.592000px;}
._4_c00020{width:10.074000px;}
._16_c00020{width:11.832000px;}
._c_c00020{width:12.834000px;}
._14_c00020{width:14.835000px;}
._d_c00020{width:15.870000px;}
._13_c00020{width:17.043000px;}
._1b_c00020{width:18.630000px;}
._11_c00020{width:21.252000px;}
._18_c00020{width:23.151000px;}
._15_c00020{width:24.495000px;}
._17_c00020{width:26.082000px;}
._1f_c00020{width:29.676000px;}
._19_c00020{width:34.191000px;}
._22_c00020{width:36.414000px;}
._26_c00020{width:64.044000px;}
._1a_c00020{width:152.973000px;}
._e_c00020{width:169.878000px;}
._28_c00020{width:446.625000px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(128,128,128);}
.fc0_c00020{color:rgb(0,0,0);}
.fs3_c00020{font-size:48.000000px;}
.fs1_c00020{font-size:60.000000px;}
.fs0_c00020{font-size:69.000000px;}
.fs2_c00020{font-size:75.000000px;}
.y0_c00020{bottom:0.000000px;}
.y20_c00020{bottom:3.105000px;}
.y1f_c00020{bottom:7.228357px;}
.y1e_c00020{bottom:61.830000px;}
.y1d_c00020{bottom:85.680000px;}
.y1c_c00020{bottom:110.730000px;}
.y1b_c00020{bottom:135.630000px;}
.y1a_c00020{bottom:159.630000px;}
.y19_c00020{bottom:183.330000px;}
.y18_c00020{bottom:209.580000px;}
.y17_c00020{bottom:234.180000px;}
.y16_c00020{bottom:259.530000px;}
.y15_c00020{bottom:282.780000px;}
.y14_c00020{bottom:308.430000px;}
.y13_c00020{bottom:332.130000px;}
.y12_c00020{bottom:358.080000px;}
.y11_c00020{bottom:381.480000px;}
.y10_c00020{bottom:407.130000px;}
.yf_c00020{bottom:431.430000px;}
.ye_c00020{bottom:456.330000px;}
.yd_c00020{bottom:480.330000px;}
.yc_c00020{bottom:504.930000px;}
.yb_c00020{bottom:529.230000px;}
.ya_c00020{bottom:553.530000px;}
.y9_c00020{bottom:578.880000px;}
.y8_c00020{bottom:603.480000px;}
.y7_c00020{bottom:628.380000px;}
.y6_c00020{bottom:653.130000px;}
.y5_c00020{bottom:677.730000px;}
.y4_c00020{bottom:703.080000px;}
.y3_c00020{bottom:727.680000px;}
.y2_c00020{bottom:752.580000px;}
.y1_c00020{bottom:777.030000px;}
.h6_c00020{height:13.200074px;}
.h7_c00020{height:43.804688px;}
.h3_c00020{height:69.539062px;}
.h2_c00020{height:75.966797px;}
.h4_c00020{height:87.361816px;}
.h5_c00020{height:94.958496px;}
.h1_c00020{height:816.750000px;}
.h0_c00020{height:817.050000px;}
.w2_c00020{width:104.875500px;}
.w1_c00020{width:547.500000px;}
.w0_c00020{width:547.575000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:25.950000px;}
.x3_c00020{left:27.300000px;}
.x4_c00020{left:28.800000px;}
.x5_c00020{left:30.150000px;}
.x6_c00020{left:31.500000px;}
.x1_c00020{left:182.550000px;}
.x8_c00020{left:225.601730px;}
.x7_c00020{left:284.550000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls5_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:2.666667pt;}
.ls4_c00020{letter-spacing:3.864000pt;}
.ls6_c00020{letter-spacing:8.000000pt;}
.ls3_c00020{letter-spacing:13.176000pt;}
.ls2_c00020{letter-spacing:13.709333pt;}
.ls7_c00020{letter-spacing:26.666667pt;}
.ls0_c00020{letter-spacing:458.266667pt;}
.ws5_c00020{word-spacing:-20.914667pt;}
.ws1_c00020{word-spacing:-20.853333pt;}
.ws3_c00020{word-spacing:-18.000000pt;}
.ws0_c00020{word-spacing:-17.050667pt;}
.ws2_c00020{word-spacing:-5.029333pt;}
.ws6_c00020{word-spacing:0.000000pt;}
.ws4_c00020{word-spacing:34.912000pt;}
._1c_c00020{margin-left:-29.818667pt;}
._f_c00020{margin-left:-24.552000pt;}
._25_c00020{margin-left:-23.506667pt;}
._1e_c00020{margin-left:-22.077333pt;}
._21_c00020{margin-left:-18.218667pt;}
._24_c00020{margin-left:-17.082667pt;}
._23_c00020{margin-left:-15.200000pt;}
._27_c00020{margin-left:-11.872000pt;}
._1d_c00020{margin-left:-8.893333pt;}
._12_c00020{margin-left:-7.237333pt;}
._20_c00020{margin-left:-6.293333pt;}
._2_c00020{margin-left:-5.336000pt;}
._3_c00020{margin-left:-3.986667pt;}
._6_c00020{margin-left:-2.269333pt;}
._7_c00020{margin-left:-1.226667pt;}
._8_c00020{width:0.920000pt;}
._1_c00020{width:1.901333pt;}
._5_c00020{width:2.821333pt;}
._0_c00020{width:3.741333pt;}
._9_c00020{width:4.661333pt;}
._b_c00020{width:5.642667pt;}
._a_c00020{width:6.562667pt;}
._10_c00020{width:7.637333pt;}
._4_c00020{width:8.954667pt;}
._16_c00020{width:10.517333pt;}
._c_c00020{width:11.408000pt;}
._14_c00020{width:13.186667pt;}
._d_c00020{width:14.106667pt;}
._13_c00020{width:15.149333pt;}
._1b_c00020{width:16.560000pt;}
._11_c00020{width:18.890667pt;}
._18_c00020{width:20.578667pt;}
._15_c00020{width:21.773333pt;}
._17_c00020{width:23.184000pt;}
._1f_c00020{width:26.378667pt;}
._19_c00020{width:30.392000pt;}
._22_c00020{width:32.368000pt;}
._26_c00020{width:56.928000pt;}
._1a_c00020{width:135.976000pt;}
._e_c00020{width:151.002667pt;}
._28_c00020{width:397.000000pt;}
.fs3_c00020{font-size:42.666667pt;}
.fs1_c00020{font-size:53.333333pt;}
.fs0_c00020{font-size:61.333333pt;}
.fs2_c00020{font-size:66.666667pt;}
.y0_c00020{bottom:0.000000pt;}
.y20_c00020{bottom:2.760000pt;}
.y1f_c00020{bottom:6.425206pt;}
.y1e_c00020{bottom:54.960000pt;}
.y1d_c00020{bottom:76.160000pt;}
.y1c_c00020{bottom:98.426667pt;}
.y1b_c00020{bottom:120.560000pt;}
.y1a_c00020{bottom:141.893333pt;}
.y19_c00020{bottom:162.960000pt;}
.y18_c00020{bottom:186.293333pt;}
.y17_c00020{bottom:208.160000pt;}
.y16_c00020{bottom:230.693333pt;}
.y15_c00020{bottom:251.360000pt;}
.y14_c00020{bottom:274.160000pt;}
.y13_c00020{bottom:295.226667pt;}
.y12_c00020{bottom:318.293333pt;}
.y11_c00020{bottom:339.093333pt;}
.y10_c00020{bottom:361.893333pt;}
.yf_c00020{bottom:383.493333pt;}
.ye_c00020{bottom:405.626667pt;}
.yd_c00020{bottom:426.960000pt;}
.yc_c00020{bottom:448.826667pt;}
.yb_c00020{bottom:470.426667pt;}
.ya_c00020{bottom:492.026667pt;}
.y9_c00020{bottom:514.560000pt;}
.y8_c00020{bottom:536.426667pt;}
.y7_c00020{bottom:558.560000pt;}
.y6_c00020{bottom:580.560000pt;}
.y5_c00020{bottom:602.426667pt;}
.y4_c00020{bottom:624.960000pt;}
.y3_c00020{bottom:646.826667pt;}
.y2_c00020{bottom:668.960000pt;}
.y1_c00020{bottom:690.693333pt;}
.h6_c00020{height:11.733399pt;}
.h7_c00020{height:38.937500pt;}
.h3_c00020{height:61.812500pt;}
.h2_c00020{height:67.526042pt;}
.h4_c00020{height:77.654948pt;}
.h5_c00020{height:84.407552pt;}
.h1_c00020{height:726.000000pt;}
.h0_c00020{height:726.266667pt;}
.w2_c00020{width:93.222667pt;}
.w1_c00020{width:486.666667pt;}
.w0_c00020{width:486.733333pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:23.066667pt;}
.x3_c00020{left:24.266667pt;}
.x4_c00020{left:25.600000pt;}
.x5_c00020{left:26.800000pt;}
.x6_c00020{left:28.000000pt;}
.x1_c00020{left:162.266667pt;}
.x8_c00020{left:200.534871pt;}
.x7_c00020{left:252.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_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_3494f0a2de7088161b83b733.woff2')format("woff");}.ff1_c00021{font-family:ff1_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:ff2_c00021;src:url('chunks/assets/font_7c7bb0f374599015112c9419.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_8122e18f546df0aaf187ab03.woff2')format("woff");}.ff3_c00021{font-family:ff3_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:ff4_c00021;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.lsa_c00021{letter-spacing:0.000000px;}
.ls7_c00021{letter-spacing:0.102000px;}
.ls9_c00021{letter-spacing:3.000000px;}
.ls6_c00021{letter-spacing:7.800000px;}
.ls0_c00021{letter-spacing:8.400000px;}
.ls8_c00021{letter-spacing:11.901000px;}
.ls5_c00021{letter-spacing:12.291000px;}
.ls2_c00021{letter-spacing:14.400000px;}
.ls4_c00021{letter-spacing:15.489000px;}
.ls3_c00021{letter-spacing:18.600000px;}
.ls1_c00021{letter-spacing:19.800000px;}
.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:-18.612000px;}
.ws3_c00021{word-spacing:-16.629000px;}
.ws5_c00021{word-spacing:-1.242000px;}
.ws7_c00021{word-spacing:-0.414000px;}
.ws8_c00021{word-spacing:0.000000px;}
.ws4_c00021{word-spacing:1.932000px;}
.ws0_c00021{word-spacing:2.760000px;}
.ws1_c00021{word-spacing:3.795000px;}
.ws6_c00021{word-spacing:7.191000px;}
._16_c00021{margin-left:-16.905000px;}
._12_c00021{margin-left:-15.870000px;}
._13_c00021{margin-left:-14.697000px;}
._14_c00021{margin-left:-13.317000px;}
._11_c00021{margin-left:-10.212000px;}
._21_c00021{margin-left:-9.039000px;}
._e_c00021{margin-left:-7.521000px;}
._15_c00021{margin-left:-6.072000px;}
._0_c00021{margin-left:-5.037000px;}
._9_c00021{margin-left:-3.864000px;}
._4_c00021{margin-left:-2.484000px;}
._5_c00021{margin-left:-1.242000px;}
._2_c00021{width:1.173000px;}
._8_c00021{width:2.967000px;}
._7_c00021{width:4.140000px;}
._1_c00021{width:5.298000px;}
._6_c00021{width:6.693000px;}
._10_c00021{width:7.728000px;}
._18_c00021{width:8.970000px;}
._17_c00021{width:10.212000px;}
._23_c00021{width:11.487000px;}
._1c_c00021{width:12.768000px;}
._1d_c00021{width:14.229000px;}
._19_c00021{width:15.354000px;}
._1e_c00021{width:17.373000px;}
._1a_c00021{width:18.492000px;}
._b_c00021{width:20.664000px;}
._d_c00021{width:21.816000px;}
._26_c00021{width:22.971000px;}
._f_c00021{width:24.495000px;}
._a_c00021{width:25.944000px;}
._29_c00021{width:28.671000px;}
._22_c00021{width:29.883000px;}
._c_c00021{width:31.050000px;}
._24_c00021{width:37.653000px;}
._1b_c00021{width:41.172000px;}
._28_c00021{width:65.136000px;}
._1f_c00021{width:72.060000px;}
._27_c00021{width:138.636000px;}
._20_c00021{width:142.089000px;}
._25_c00021{width:224.388000px;}
._2a_c00021{width:273.921000px;}
._3_c00021{width:363.768000px;}
._2b_c00021{width:521.124000px;}
._2c_c00021{width:784.185000px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(128,128,128);}
.fc0_c00021{color:rgb(0,0,0);}
.fs3_c00021{font-size:48.000000px;}
.fs2_c00021{font-size:54.000000px;}
.fs1_c00021{font-size:66.000000px;}
.fs0_c00021{font-size:69.000000px;}
.y0_c00021{bottom:0.000000px;}
.y1e_c00021{bottom:3.105000px;}
.y1d_c00021{bottom:7.228363px;}
.y1b_c00021{bottom:58.050000px;}
.y1a_c00021{bottom:81.600000px;}
.y19_c00021{bottom:107.250000px;}
.y1c_c00021{bottom:114.450000px;}
.y18_c00021{bottom:133.200000px;}
.y17_c00021{bottom:157.650000px;}
.y16_c00021{bottom:182.550000px;}
.y15_c00021{bottom:207.600000px;}
.y14_c00021{bottom:232.800000px;}
.y13_c00021{bottom:257.550000px;}
.y12_c00021{bottom:281.850000px;}
.y11_c00021{bottom:307.500000px;}
.y10_c00021{bottom:331.350000px;}
.yf_c00021{bottom:355.950000px;}
.ye_c00021{bottom:380.400000px;}
.yd_c00021{bottom:405.900000px;}
.yc_c00021{bottom:430.200000px;}
.yb_c00021{bottom:454.650000px;}
.ya_c00021{bottom:479.850000px;}
.y9_c00021{bottom:504.600000px;}
.y8_c00021{bottom:554.550000px;}
.y7_c00021{bottom:578.850000px;}
.y6_c00021{bottom:603.750000px;}
.y5_c00021{bottom:628.650000px;}
.y4_c00021{bottom:678.300000px;}
.y3_c00021{bottom:727.200000px;}
.y2_c00021{bottom:752.850000px;}
.y1_c00021{bottom:778.500000px;}
.h5_c00021{height:13.200074px;}
.h6_c00021{height:43.804688px;}
.h4_c00021{height:69.539062px;}
.h3_c00021{height:80.758301px;}
.h2_c00021{height:87.361816px;}
.h1_c00021{height:815.250000px;}
.h0_c00021{height:815.400000px;}
.w2_c00021{width:104.875500px;}
.w0_c00021{width:572.925000px;}
.w1_c00021{width:573.000000px;}
.x0_c00021{left:0.000000px;}
.x10_c00021{left:64.500000px;}
.xc_c00021{left:65.550000px;}
.xd_c00021{left:73.350000px;}
.xb_c00021{left:75.300000px;}
.xe_c00021{left:111.150000px;}
.x9_c00021{left:112.350000px;}
.x4_c00021{left:114.150000px;}
.xa_c00021{left:115.500000px;}
.x2_c00021{left:118.800000px;}
.xf_c00021{left:126.900000px;}
.x1_c00021{left:129.600000px;}
.x5_c00021{left:137.700000px;}
.x8_c00021{left:138.750000px;}
.x3_c00021{left:167.100000px;}
.x6_c00021{left:179.250000px;}
.x11_c00021{left:238.276749px;}
.x7_c00021{left:277.950000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.lsa_c00021{letter-spacing:0.000000pt;}
.ls7_c00021{letter-spacing:0.090667pt;}
.ls9_c00021{letter-spacing:2.666667pt;}
.ls6_c00021{letter-spacing:6.933333pt;}
.ls0_c00021{letter-spacing:7.466667pt;}
.ls8_c00021{letter-spacing:10.578667pt;}
.ls5_c00021{letter-spacing:10.925333pt;}
.ls2_c00021{letter-spacing:12.800000pt;}
.ls4_c00021{letter-spacing:13.768000pt;}
.ls3_c00021{letter-spacing:16.533333pt;}
.ls1_c00021{letter-spacing:17.600000pt;}
.ws2_c00021{word-spacing:-16.544000pt;}
.ws3_c00021{word-spacing:-14.781333pt;}
.ws5_c00021{word-spacing:-1.104000pt;}
.ws7_c00021{word-spacing:-0.368000pt;}
.ws8_c00021{word-spacing:0.000000pt;}
.ws4_c00021{word-spacing:1.717333pt;}
.ws0_c00021{word-spacing:2.453333pt;}
.ws1_c00021{word-spacing:3.373333pt;}
.ws6_c00021{word-spacing:6.392000pt;}
._16_c00021{margin-left:-15.026667pt;}
._12_c00021{margin-left:-14.106667pt;}
._13_c00021{margin-left:-13.064000pt;}
._14_c00021{margin-left:-11.837333pt;}
._11_c00021{margin-left:-9.077333pt;}
._21_c00021{margin-left:-8.034667pt;}
._e_c00021{margin-left:-6.685333pt;}
._15_c00021{margin-left:-5.397333pt;}
._0_c00021{margin-left:-4.477333pt;}
._9_c00021{margin-left:-3.434667pt;}
._4_c00021{margin-left:-2.208000pt;}
._5_c00021{margin-left:-1.104000pt;}
._2_c00021{width:1.042667pt;}
._8_c00021{width:2.637333pt;}
._7_c00021{width:3.680000pt;}
._1_c00021{width:4.709333pt;}
._6_c00021{width:5.949333pt;}
._10_c00021{width:6.869333pt;}
._18_c00021{width:7.973333pt;}
._17_c00021{width:9.077333pt;}
._23_c00021{width:10.210667pt;}
._1c_c00021{width:11.349333pt;}
._1d_c00021{width:12.648000pt;}
._19_c00021{width:13.648000pt;}
._1e_c00021{width:15.442667pt;}
._1a_c00021{width:16.437333pt;}
._b_c00021{width:18.368000pt;}
._d_c00021{width:19.392000pt;}
._26_c00021{width:20.418667pt;}
._f_c00021{width:21.773333pt;}
._a_c00021{width:23.061333pt;}
._29_c00021{width:25.485333pt;}
._22_c00021{width:26.562667pt;}
._c_c00021{width:27.600000pt;}
._24_c00021{width:33.469333pt;}
._1b_c00021{width:36.597333pt;}
._28_c00021{width:57.898667pt;}
._1f_c00021{width:64.053333pt;}
._27_c00021{width:123.232000pt;}
._20_c00021{width:126.301333pt;}
._25_c00021{width:199.456000pt;}
._2a_c00021{width:243.485333pt;}
._3_c00021{width:323.349333pt;}
._2b_c00021{width:463.221333pt;}
._2c_c00021{width:697.053333pt;}
.fs3_c00021{font-size:42.666667pt;}
.fs2_c00021{font-size:48.000000pt;}
.fs1_c00021{font-size:58.666667pt;}
.fs0_c00021{font-size:61.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y1e_c00021{bottom:2.760000pt;}
.y1d_c00021{bottom:6.425212pt;}
.y1b_c00021{bottom:51.600000pt;}
.y1a_c00021{bottom:72.533333pt;}
.y19_c00021{bottom:95.333333pt;}
.y1c_c00021{bottom:101.733333pt;}
.y18_c00021{bottom:118.400000pt;}
.y17_c00021{bottom:140.133333pt;}
.y16_c00021{bottom:162.266667pt;}
.y15_c00021{bottom:184.533333pt;}
.y14_c00021{bottom:206.933333pt;}
.y13_c00021{bottom:228.933333pt;}
.y12_c00021{bottom:250.533333pt;}
.y11_c00021{bottom:273.333333pt;}
.y10_c00021{bottom:294.533333pt;}
.yf_c00021{bottom:316.400000pt;}
.ye_c00021{bottom:338.133333pt;}
.yd_c00021{bottom:360.800000pt;}
.yc_c00021{bottom:382.400000pt;}
.yb_c00021{bottom:404.133333pt;}
.ya_c00021{bottom:426.533333pt;}
.y9_c00021{bottom:448.533333pt;}
.y8_c00021{bottom:492.933333pt;}
.y7_c00021{bottom:514.533333pt;}
.y6_c00021{bottom:536.666667pt;}
.y5_c00021{bottom:558.800000pt;}
.y4_c00021{bottom:602.933333pt;}
.y3_c00021{bottom:646.400000pt;}
.y2_c00021{bottom:669.200000pt;}
.y1_c00021{bottom:692.000000pt;}
.h5_c00021{height:11.733399pt;}
.h6_c00021{height:38.937500pt;}
.h4_c00021{height:61.812500pt;}
.h3_c00021{height:71.785156pt;}
.h2_c00021{height:77.654948pt;}
.h1_c00021{height:724.666667pt;}
.h0_c00021{height:724.800000pt;}
.w2_c00021{width:93.222667pt;}
.w0_c00021{width:509.266667pt;}
.w1_c00021{width:509.333333pt;}
.x0_c00021{left:0.000000pt;}
.x10_c00021{left:57.333333pt;}
.xc_c00021{left:58.266667pt;}
.xd_c00021{left:65.200000pt;}
.xb_c00021{left:66.933333pt;}
.xe_c00021{left:98.800000pt;}
.x9_c00021{left:99.866667pt;}
.x4_c00021{left:101.466667pt;}
.xa_c00021{left:102.666667pt;}
.x2_c00021{left:105.600000pt;}
.xf_c00021{left:112.800000pt;}
.x1_c00021{left:115.200000pt;}
.x5_c00021{left:122.400000pt;}
.x8_c00021{left:123.333333pt;}
.x3_c00021{left:148.533333pt;}
.x6_c00021{left:159.333333pt;}
.x11_c00021{left:211.801554pt;}
.x7_c00021{left:247.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_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_04d948dd56e555b6a8edd51a.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_4421368a587956660b205023.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff3_c00022{font-family:ff3_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:ff4_c00022;src:url('chunks/assets/font_7ae00a1bb62a97b90716c796.woff2')format("woff");}.ff4_c00022{font-family:ff4_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:ff5_c00022;src:url('chunks/assets/font_b75419bef4591d02f51b722f.woff2')format("woff");}.ff5_c00022{font-family:ff5_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:ff6_c00022;src:url('chunks/assets/font_9974f2837d2e7ba41af1945a.woff2')format("woff");}.ff6_c00022{font-family:ff6_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:ff7_c00022;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00022{font-family:ff7_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:ff8_c00022;src:url('chunks/assets/font_e16c9a8cdf5926b58798b94f.woff2')format("woff");}.ff8_c00022{font-family:ff8_c00022;line-height:1.437000;font-style:normal;font-weight: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_c00022;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00022{font-family:ff9_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;}
.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;}
.ls4_c00022{letter-spacing:0.000000px;}
.ls3_c00022{letter-spacing:0.300000px;}
.ls6_c00022{letter-spacing:3.000000px;}
.ls1_c00022{letter-spacing:7.245000px;}
.ls5_c00022{letter-spacing:9.000000px;}
.ls2_c00022{letter-spacing:22.155000px;}
.ls0_c00022{letter-spacing:522.150000px;}
.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;}
}
.ws2_c00022{word-spacing:-29.172000px;}
.ws1_c00022{word-spacing:-23.460000px;}
.ws0_c00022{word-spacing:-19.182000px;}
.ws3_c00022{word-spacing:-1.350000px;}
.ws4_c00022{word-spacing:-0.045000px;}
.ws5_c00022{word-spacing:0.000000px;}
._b_c00022{margin-left:-14.076000px;}
._1e_c00022{margin-left:-12.696000px;}
._c_c00022{margin-left:-10.833000px;}
._22_c00022{margin-left:-9.597000px;}
._a_c00022{margin-left:-8.004000px;}
._14_c00022{margin-left:-6.210000px;}
._1_c00022{margin-left:-4.758000px;}
._1d_c00022{margin-left:-3.591000px;}
._e_c00022{margin-left:-2.139000px;}
._12_c00022{margin-left:-1.035000px;}
._0_c00022{width:1.518000px;}
._2_c00022{width:3.381000px;}
._5_c00022{width:4.899000px;}
._9_c00022{width:5.913000px;}
._10_c00022{width:6.933000px;}
._3_c00022{width:7.980000px;}
._4_c00022{width:9.420000px;}
._8_c00022{width:10.902000px;}
._1b_c00022{width:11.970000px;}
._1a_c00022{width:13.110000px;}
._16_c00022{width:14.490000px;}
._7_c00022{width:15.663000px;}
._d_c00022{width:16.830000px;}
._15_c00022{width:18.354000px;}
._17_c00022{width:21.012000px;}
._11_c00022{width:23.031000px;}
._20_c00022{width:24.831000px;}
._26_c00022{width:32.610000px;}
._f_c00022{width:34.362000px;}
._6_c00022{width:35.571000px;}
._1c_c00022{width:36.918000px;}
._23_c00022{width:40.461000px;}
._25_c00022{width:42.336000px;}
._21_c00022{width:51.771000px;}
._19_c00022{width:61.149000px;}
._27_c00022{width:70.668000px;}
._24_c00022{width:79.524000px;}
._1f_c00022{width:81.156000px;}
._18_c00022{width:157.872000px;}
._13_c00022{width:181.851000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(128,128,128);}
.fc0_c00022{color:rgb(0,0,0);}
.fs3_c00022{font-size:45.000000px;}
.fs4_c00022{font-size:48.000000px;}
.fs2_c00022{font-size:51.000000px;}
.fs1_c00022{font-size:60.000000px;}
.fs0_c00022{font-size:69.000000px;}
.y0_c00022{bottom:0.000000px;}
.y22_c00022{bottom:3.105000px;}
.y21_c00022{bottom:7.228371px;}
.y20_c00022{bottom:103.665000px;}
.y1f_c00022{bottom:120.915000px;}
.y1e_c00022{bottom:138.165000px;}
.y1d_c00022{bottom:155.715000px;}
.y1c_c00022{bottom:173.115000px;}
.y1b_c00022{bottom:190.665000px;}
.y1a_c00022{bottom:208.215000px;}
.y19_c00022{bottom:225.465000px;}
.y18_c00022{bottom:243.015000px;}
.y17_c00022{bottom:260.565000px;}
.y16_c00022{bottom:278.115000px;}
.y15_c00022{bottom:295.365000px;}
.y14_c00022{bottom:312.615000px;}
.y13_c00022{bottom:330.165000px;}
.y12_c00022{bottom:347.415000px;}
.y11_c00022{bottom:355.815000px;}
.y10_c00022{bottom:391.815000px;}
.yf_c00022{bottom:450.015000px;}
.ye_c00022{bottom:474.915000px;}
.yd_c00022{bottom:499.215000px;}
.yc_c00022{bottom:523.215000px;}
.yb_c00022{bottom:547.515000px;}
.ya_c00022{bottom:572.415000px;}
.y9_c00022{bottom:597.015000px;}
.y8_c00022{bottom:621.465000px;}
.y7_c00022{bottom:646.965000px;}
.y6_c00022{bottom:670.965000px;}
.y5_c00022{bottom:695.565000px;}
.y4_c00022{bottom:720.315000px;}
.y3_c00022{bottom:745.215000px;}
.y2_c00022{bottom:770.265000px;}
.y1_c00022{bottom:795.465000px;}
.h7_c00022{height:13.200074px;}
.h8_c00022{height:43.804688px;}
.h4_c00022{height:44.143066px;}
.h5_c00022{height:44.165039px;}
.h6_c00022{height:56.975098px;}
.h2_c00022{height:80.758301px;}
.h3_c00022{height:87.361816px;}
.h1_c00022{height:831.000000px;}
.h0_c00022{height:831.075000px;}
.w1_c00022{width:104.875500px;}
.w0_c00022{width:557.250000px;}
.x0_c00022{left:0.000000px;}
.x4_c00022{left:27.600000px;}
.x3_c00022{left:28.650000px;}
.x5_c00022{left:29.700000px;}
.x6_c00022{left:31.650000px;}
.x7_c00022{left:33.000000px;}
.xb_c00022{left:35.400000px;}
.xc_c00022{left:36.750000px;}
.xd_c00022{left:38.100000px;}
.xf_c00022{left:40.050000px;}
.xa_c00022{left:51.600000px;}
.xe_c00022{left:57.300000px;}
.x2_c00022{left:62.400000px;}
.x8_c00022{left:135.900000px;}
.x1_c00022{left:180.600000px;}
.x10_c00022{left:230.439240px;}
.x9_c00022{left:487.350000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls4_c00022{letter-spacing:0.000000pt;}
.ls3_c00022{letter-spacing:0.266667pt;}
.ls6_c00022{letter-spacing:2.666667pt;}
.ls1_c00022{letter-spacing:6.440000pt;}
.ls5_c00022{letter-spacing:8.000000pt;}
.ls2_c00022{letter-spacing:19.693333pt;}
.ls0_c00022{letter-spacing:464.133333pt;}
.ws2_c00022{word-spacing:-25.930667pt;}
.ws1_c00022{word-spacing:-20.853333pt;}
.ws0_c00022{word-spacing:-17.050667pt;}
.ws3_c00022{word-spacing:-1.200000pt;}
.ws4_c00022{word-spacing:-0.040000pt;}
.ws5_c00022{word-spacing:0.000000pt;}
._b_c00022{margin-left:-12.512000pt;}
._1e_c00022{margin-left:-11.285333pt;}
._c_c00022{margin-left:-9.629333pt;}
._22_c00022{margin-left:-8.530667pt;}
._a_c00022{margin-left:-7.114667pt;}
._14_c00022{margin-left:-5.520000pt;}
._1_c00022{margin-left:-4.229333pt;}
._1d_c00022{margin-left:-3.192000pt;}
._e_c00022{margin-left:-1.901333pt;}
._12_c00022{margin-left:-0.920000pt;}
._0_c00022{width:1.349333pt;}
._2_c00022{width:3.005333pt;}
._5_c00022{width:4.354667pt;}
._9_c00022{width:5.256000pt;}
._10_c00022{width:6.162667pt;}
._3_c00022{width:7.093333pt;}
._4_c00022{width:8.373333pt;}
._8_c00022{width:9.690667pt;}
._1b_c00022{width:10.640000pt;}
._1a_c00022{width:11.653333pt;}
._16_c00022{width:12.880000pt;}
._7_c00022{width:13.922667pt;}
._d_c00022{width:14.960000pt;}
._15_c00022{width:16.314667pt;}
._17_c00022{width:18.677333pt;}
._11_c00022{width:20.472000pt;}
._20_c00022{width:22.072000pt;}
._26_c00022{width:28.986667pt;}
._f_c00022{width:30.544000pt;}
._6_c00022{width:31.618667pt;}
._1c_c00022{width:32.816000pt;}
._23_c00022{width:35.965333pt;}
._25_c00022{width:37.632000pt;}
._21_c00022{width:46.018667pt;}
._19_c00022{width:54.354667pt;}
._27_c00022{width:62.816000pt;}
._24_c00022{width:70.688000pt;}
._1f_c00022{width:72.138667pt;}
._18_c00022{width:140.330667pt;}
._13_c00022{width:161.645333pt;}
.fs3_c00022{font-size:40.000000pt;}
.fs4_c00022{font-size:42.666667pt;}
.fs2_c00022{font-size:45.333333pt;}
.fs1_c00022{font-size:53.333333pt;}
.fs0_c00022{font-size:61.333333pt;}
.y0_c00022{bottom:0.000000pt;}
.y22_c00022{bottom:2.760000pt;}
.y21_c00022{bottom:6.425219pt;}
.y20_c00022{bottom:92.146667pt;}
.y1f_c00022{bottom:107.480000pt;}
.y1e_c00022{bottom:122.813333pt;}
.y1d_c00022{bottom:138.413333pt;}
.y1c_c00022{bottom:153.880000pt;}
.y1b_c00022{bottom:169.480000pt;}
.y1a_c00022{bottom:185.080000pt;}
.y19_c00022{bottom:200.413333pt;}
.y18_c00022{bottom:216.013333pt;}
.y17_c00022{bottom:231.613333pt;}
.y16_c00022{bottom:247.213333pt;}
.y15_c00022{bottom:262.546667pt;}
.y14_c00022{bottom:277.880000pt;}
.y13_c00022{bottom:293.480000pt;}
.y12_c00022{bottom:308.813333pt;}
.y11_c00022{bottom:316.280000pt;}
.y10_c00022{bottom:348.280000pt;}
.yf_c00022{bottom:400.013333pt;}
.ye_c00022{bottom:422.146667pt;}
.yd_c00022{bottom:443.746667pt;}
.yc_c00022{bottom:465.080000pt;}
.yb_c00022{bottom:486.680000pt;}
.ya_c00022{bottom:508.813333pt;}
.y9_c00022{bottom:530.680000pt;}
.y8_c00022{bottom:552.413333pt;}
.y7_c00022{bottom:575.080000pt;}
.y6_c00022{bottom:596.413333pt;}
.y5_c00022{bottom:618.280000pt;}
.y4_c00022{bottom:640.280000pt;}
.y3_c00022{bottom:662.413333pt;}
.y2_c00022{bottom:684.680000pt;}
.y1_c00022{bottom:707.080000pt;}
.h7_c00022{height:11.733399pt;}
.h8_c00022{height:38.937500pt;}
.h4_c00022{height:39.238281pt;}
.h5_c00022{height:39.257812pt;}
.h6_c00022{height:50.644531pt;}
.h2_c00022{height:71.785156pt;}
.h3_c00022{height:77.654948pt;}
.h1_c00022{height:738.666667pt;}
.h0_c00022{height:738.733333pt;}
.w1_c00022{width:93.222667pt;}
.w0_c00022{width:495.333333pt;}
.x0_c00022{left:0.000000pt;}
.x4_c00022{left:24.533333pt;}
.x3_c00022{left:25.466667pt;}
.x5_c00022{left:26.400000pt;}
.x6_c00022{left:28.133333pt;}
.x7_c00022{left:29.333333pt;}
.xb_c00022{left:31.466667pt;}
.xc_c00022{left:32.666667pt;}
.xd_c00022{left:33.866667pt;}
.xf_c00022{left:35.600000pt;}
.xa_c00022{left:45.866667pt;}
.xe_c00022{left:50.933333pt;}
.x2_c00022{left:55.466667pt;}
.x8_c00022{left:120.800000pt;}
.x1_c00022{left:160.533333pt;}
.x10_c00022{left:204.834880pt;}
.x9_c00022{left:433.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_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_7c4965c279dd12ddd369990b.woff2')format("woff");}.ff1_c00023{font-family:ff1_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:ff2_c00023;src:url('chunks/assets/font_a01a744d677b48ae1cbe04a3.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_869147ce081866cca0bb5792.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_9d6a4aae707665bfb97da065.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_7d54898601021e2ecd4a5e61.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00023{font-family:ff6_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:ff7_c00023;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff7_c00023{font-family:ff7_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:ff8_c00023;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00023{font-family:ff8_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;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls5_c00023{letter-spacing:3.000000px;}
.ls1_c00023{letter-spacing:4.500000px;}
.ls4_c00023{letter-spacing:6.000000px;}
.ls3_c00023{letter-spacing:30.000000px;}
.ls0_c00023{letter-spacing:456.330000px;}
.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;}
}
.ws2_c00023{word-spacing:-43.014000px;}
.ws3_c00023{word-spacing:-21.906000px;}
.ws9_c00023{word-spacing:-19.629000px;}
.ws7_c00023{word-spacing:-16.629000px;}
.ws0_c00023{word-spacing:-11.568000px;}
.ws1_c00023{word-spacing:-11.250000px;}
.ws6_c00023{word-spacing:-1.656000px;}
.wsa_c00023{word-spacing:0.000000px;}
.ws8_c00023{word-spacing:0.138000px;}
.ws4_c00023{word-spacing:0.690000px;}
.ws5_c00023{word-spacing:4.416000px;}
._20_c00023{margin-left:-28.542000px;}
._1a_c00023{margin-left:-27.522000px;}
._17_c00023{margin-left:-15.300000px;}
._c_c00023{margin-left:-10.740000px;}
._23_c00023{margin-left:-9.729000px;}
._13_c00023{margin-left:-8.415000px;}
._6_c00023{margin-left:-6.720000px;}
._12_c00023{margin-left:-5.214000px;}
._4_c00023{margin-left:-4.098000px;}
._0_c00023{margin-left:-2.208000px;}
._8_c00023{margin-left:-1.134000px;}
._2_c00023{width:1.242000px;}
._3_c00023{width:3.168000px;}
._1_c00023{width:4.692000px;}
._7_c00023{width:6.351000px;}
._b_c00023{width:7.803000px;}
._e_c00023{width:9.174000px;}
._9_c00023{width:10.347000px;}
._18_c00023{width:12.024000px;}
._a_c00023{width:13.329000px;}
._11_c00023{width:15.420000px;}
._15_c00023{width:17.898000px;}
._f_c00023{width:18.987000px;}
._1e_c00023{width:20.403000px;}
._5_c00023{width:22.032000px;}
._10_c00023{width:23.778000px;}
._1b_c00023{width:25.590000px;}
._22_c00023{width:27.228000px;}
._24_c00023{width:31.770000px;}
._21_c00023{width:34.431000px;}
._1d_c00023{width:38.511000px;}
._19_c00023{width:65.835000px;}
._1c_c00023{width:67.218000px;}
._16_c00023{width:111.144000px;}
._1f_c00023{width:124.206000px;}
._d_c00023{width:150.474000px;}
._14_c00023{width:325.221000px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(128,128,128);}
.fc0_c00023{color:rgb(0,0,0);}
.fs2_c00023{font-size:45.000000px;}
.fs1_c00023{font-size:48.000000px;}
.fs3_c00023{font-size:51.000000px;}
.fs4_c00023{font-size:54.000000px;}
.fs5_c00023{font-size:66.000000px;}
.fs0_c00023{font-size:69.000000px;}
.y0_c00023{bottom:0.000000px;}
.y1f_c00023{bottom:3.105000px;}
.y1e_c00023{bottom:7.228355px;}
.y1d_c00023{bottom:31.035000px;}
.y1c_c00023{bottom:58.935000px;}
.y1b_c00023{bottom:83.985000px;}
.y1a_c00023{bottom:107.235000px;}
.y19_c00023{bottom:133.635000px;}
.y18_c00023{bottom:158.535000px;}
.y17_c00023{bottom:182.835000px;}
.y16_c00023{bottom:207.435000px;}
.y15_c00023{bottom:232.485000px;}
.y14_c00023{bottom:257.085000px;}
.y13_c00023{bottom:308.685000px;}
.y12_c00023{bottom:331.035000px;}
.y11_c00023{bottom:355.335000px;}
.y10_c00023{bottom:403.935000px;}
.yf_c00023{bottom:469.035000px;}
.ye_c00023{bottom:486.585000px;}
.yd_c00023{bottom:504.435000px;}
.yc_c00023{bottom:521.685000px;}
.yb_c00023{bottom:538.935000px;}
.ya_c00023{bottom:555.885000px;}
.y9_c00023{bottom:591.285000px;}
.y8_c00023{bottom:626.985000px;}
.y7_c00023{bottom:644.235000px;}
.y6_c00023{bottom:662.085000px;}
.y5_c00023{bottom:679.635000px;}
.y4_c00023{bottom:697.935000px;}
.y3_c00023{bottom:714.735000px;}
.y2_c00023{bottom:732.285000px;}
.y1_c00023{bottom:752.835000px;}
.hb_c00023{height:13.200074px;}
.hc_c00023{height:43.804688px;}
.h5_c00023{height:56.179688px;}
.h4_c00023{height:60.773438px;}
.h6_c00023{height:63.202148px;}
.h3_c00023{height:64.571777px;}
.ha_c00023{height:67.686035px;}
.h9_c00023{height:67.719727px;}
.h8_c00023{height:69.539062px;}
.h7_c00023{height:83.563477px;}
.h2_c00023{height:87.361816px;}
.h0_c00023{height:783.525000px;}
.h1_c00023{height:783.750000px;}
.w2_c00023{width:104.875500px;}
.w0_c00023{width:550.275000px;}
.w1_c00023{width:550.500000px;}
.x0_c00023{left:0.000000px;}
.x10_c00023{left:28.350000px;}
.x8_c00023{left:30.750000px;}
.x4_c00023{left:32.100000px;}
.xf_c00023{left:34.650000px;}
.xa_c00023{left:36.900000px;}
.xe_c00023{left:74.550000px;}
.x6_c00023{left:76.050000px;}
.x9_c00023{left:77.250000px;}
.x5_c00023{left:79.050000px;}
.x2_c00023{left:81.000000px;}
.x3_c00023{left:82.650000px;}
.x1_c00023{left:97.200000px;}
.xc_c00023{left:117.000000px;}
.xb_c00023{left:121.200000px;}
.x7_c00023{left:222.150000px;}
.x12_c00023{left:226.951767px;}
.xd_c00023{left:259.200000px;}
.x11_c00023{left:483.300000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls5_c00023{letter-spacing:2.666667pt;}
.ls1_c00023{letter-spacing:4.000000pt;}
.ls4_c00023{letter-spacing:5.333333pt;}
.ls3_c00023{letter-spacing:26.666667pt;}
.ls0_c00023{letter-spacing:405.626667pt;}
.ws2_c00023{word-spacing:-38.234667pt;}
.ws3_c00023{word-spacing:-19.472000pt;}
.ws9_c00023{word-spacing:-17.448000pt;}
.ws7_c00023{word-spacing:-14.781333pt;}
.ws0_c00023{word-spacing:-10.282667pt;}
.ws1_c00023{word-spacing:-10.000000pt;}
.ws6_c00023{word-spacing:-1.472000pt;}
.wsa_c00023{word-spacing:0.000000pt;}
.ws8_c00023{word-spacing:0.122667pt;}
.ws4_c00023{word-spacing:0.613333pt;}
.ws5_c00023{word-spacing:3.925333pt;}
._20_c00023{margin-left:-25.370667pt;}
._1a_c00023{margin-left:-24.464000pt;}
._17_c00023{margin-left:-13.600000pt;}
._c_c00023{margin-left:-9.546667pt;}
._23_c00023{margin-left:-8.648000pt;}
._13_c00023{margin-left:-7.480000pt;}
._6_c00023{margin-left:-5.973333pt;}
._12_c00023{margin-left:-4.634667pt;}
._4_c00023{margin-left:-3.642667pt;}
._0_c00023{margin-left:-1.962667pt;}
._8_c00023{margin-left:-1.008000pt;}
._2_c00023{width:1.104000pt;}
._3_c00023{width:2.816000pt;}
._1_c00023{width:4.170667pt;}
._7_c00023{width:5.645333pt;}
._b_c00023{width:6.936000pt;}
._e_c00023{width:8.154667pt;}
._9_c00023{width:9.197333pt;}
._18_c00023{width:10.688000pt;}
._a_c00023{width:11.848000pt;}
._11_c00023{width:13.706667pt;}
._15_c00023{width:15.909333pt;}
._f_c00023{width:16.877333pt;}
._1e_c00023{width:18.136000pt;}
._5_c00023{width:19.584000pt;}
._10_c00023{width:21.136000pt;}
._1b_c00023{width:22.746667pt;}
._22_c00023{width:24.202667pt;}
._24_c00023{width:28.240000pt;}
._21_c00023{width:30.605333pt;}
._1d_c00023{width:34.232000pt;}
._19_c00023{width:58.520000pt;}
._1c_c00023{width:59.749333pt;}
._16_c00023{width:98.794667pt;}
._1f_c00023{width:110.405333pt;}
._d_c00023{width:133.754667pt;}
._14_c00023{width:289.085333pt;}
.fs2_c00023{font-size:40.000000pt;}
.fs1_c00023{font-size:42.666667pt;}
.fs3_c00023{font-size:45.333333pt;}
.fs4_c00023{font-size:48.000000pt;}
.fs5_c00023{font-size:58.666667pt;}
.fs0_c00023{font-size:61.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y1f_c00023{bottom:2.760000pt;}
.y1e_c00023{bottom:6.425204pt;}
.y1d_c00023{bottom:27.586667pt;}
.y1c_c00023{bottom:52.386667pt;}
.y1b_c00023{bottom:74.653333pt;}
.y1a_c00023{bottom:95.320000pt;}
.y19_c00023{bottom:118.786667pt;}
.y18_c00023{bottom:140.920000pt;}
.y17_c00023{bottom:162.520000pt;}
.y16_c00023{bottom:184.386667pt;}
.y15_c00023{bottom:206.653333pt;}
.y14_c00023{bottom:228.520000pt;}
.y13_c00023{bottom:274.386667pt;}
.y12_c00023{bottom:294.253333pt;}
.y11_c00023{bottom:315.853333pt;}
.y10_c00023{bottom:359.053333pt;}
.yf_c00023{bottom:416.920000pt;}
.ye_c00023{bottom:432.520000pt;}
.yd_c00023{bottom:448.386667pt;}
.yc_c00023{bottom:463.720000pt;}
.yb_c00023{bottom:479.053333pt;}
.ya_c00023{bottom:494.120000pt;}
.y9_c00023{bottom:525.586667pt;}
.y8_c00023{bottom:557.320000pt;}
.y7_c00023{bottom:572.653333pt;}
.y6_c00023{bottom:588.520000pt;}
.y5_c00023{bottom:604.120000pt;}
.y4_c00023{bottom:620.386667pt;}
.y3_c00023{bottom:635.320000pt;}
.y2_c00023{bottom:650.920000pt;}
.y1_c00023{bottom:669.186667pt;}
.hb_c00023{height:11.733399pt;}
.hc_c00023{height:38.937500pt;}
.h5_c00023{height:49.937500pt;}
.h4_c00023{height:54.020833pt;}
.h6_c00023{height:56.179688pt;}
.h3_c00023{height:57.397135pt;}
.ha_c00023{height:60.165365pt;}
.h9_c00023{height:60.195312pt;}
.h8_c00023{height:61.812500pt;}
.h7_c00023{height:74.278646pt;}
.h2_c00023{height:77.654948pt;}
.h0_c00023{height:696.466667pt;}
.h1_c00023{height:696.666667pt;}
.w2_c00023{width:93.222667pt;}
.w0_c00023{width:489.133333pt;}
.w1_c00023{width:489.333333pt;}
.x0_c00023{left:0.000000pt;}
.x10_c00023{left:25.200000pt;}
.x8_c00023{left:27.333333pt;}
.x4_c00023{left:28.533333pt;}
.xf_c00023{left:30.800000pt;}
.xa_c00023{left:32.800000pt;}
.xe_c00023{left:66.266667pt;}
.x6_c00023{left:67.600000pt;}
.x9_c00023{left:68.666667pt;}
.x5_c00023{left:70.266667pt;}
.x2_c00023{left:72.000000pt;}
.x3_c00023{left:73.466667pt;}
.x1_c00023{left:86.400000pt;}
.xc_c00023{left:104.000000pt;}
.xb_c00023{left:107.733333pt;}
.x7_c00023{left:197.466667pt;}
.x12_c00023{left:201.734904pt;}
.xd_c00023{left:230.400000pt;}
.x11_c00023{left:429.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_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_765be5fc269bb7bda72cedb8.woff2')format("woff");}.ff1_c00024{font-family:ff1_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:ff2_c00024;src:url('chunks/assets/font_6efe5ed13ec20c0cbe611a5f.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_ef199a289a5336dc038fdfb0.woff2')format("woff");}.ff3_c00024{font-family:ff3_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:ff4_c00024;src:url('chunks/assets/font_fd6ff51d1dd7e5bcce015e45.woff2')format("woff");}.ff4_c00024{font-family:ff4_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:ff5_c00024;src:url('chunks/assets/font_b132568f9ccbc41b5f815dd1.woff2')format("woff");}.ff5_c00024{font-family:ff5_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:ff6_c00024;src:url('chunks/assets/font_0885f2e92054da2b5007381e.woff2')format("woff");}.ff6_c00024{font-family:ff6_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:ff7_c00024;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff7_c00024{font-family:ff7_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:ff8_c00024;src:url('chunks/assets/font_f2a38d72a696d4434cb42528.woff2')format("woff");}.ff8_c00024{font-family:ff8_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:ff9_c00024;src:url('chunks/assets/font_ad750f9fd8b0bdcaae46d57b.woff2')format("woff");}.ff9_c00024{font-family:ff9_c00024;line-height:1.006336;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffa_c00024{font-family:ffa_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;}
.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;}
.ls2_c00024{letter-spacing:0.000000px;}
.ls3_c00024{letter-spacing:3.000000px;}
.ls0_c00024{letter-spacing:17.325000px;}
.ls1_c00024{letter-spacing:22.104000px;}
.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:-56.235000px;}
.ws0_c00024{word-spacing:-44.988000px;}
.ws4_c00024{word-spacing:-33.000000px;}
.ws5_c00024{word-spacing:-17.250000px;}
.ws3_c00024{word-spacing:-0.057000px;}
.ws2_c00024{word-spacing:-0.045600px;}
.ws6_c00024{word-spacing:0.000000px;}
._21_c00024{margin-left:-32.982000px;}
._14_c00024{margin-left:-20.055000px;}
._18_c00024{margin-left:-19.044000px;}
._16_c00024{margin-left:-16.068000px;}
._19_c00024{margin-left:-11.592000px;}
._17_c00024{margin-left:-10.350000px;}
._20_c00024{margin-left:-9.177000px;}
._2_c00024{margin-left:-8.073000px;}
._1b_c00024{margin-left:-6.345000px;}
._4_c00024{margin-left:-5.244000px;}
._3_c00024{margin-left:-3.312000px;}
._5_c00024{margin-left:-1.932000px;}
._0_c00024{width:1.794000px;}
._1_c00024{width:2.829000px;}
._7_c00024{width:4.692000px;}
._6_c00024{width:6.693000px;}
._e_c00024{width:8.349000px;}
._d_c00024{width:9.867000px;}
._c_c00024{width:11.316000px;}
._9_c00024{width:12.351000px;}
._15_c00024{width:13.365000px;}
._b_c00024{width:14.490000px;}
._a_c00024{width:16.284000px;}
._11_c00024{width:18.078000px;}
._1f_c00024{width:19.734000px;}
._8_c00024{width:20.838000px;}
._1d_c00024{width:23.046000px;}
._f_c00024{width:25.806000px;}
._10_c00024{width:28.221000px;}
._22_c00024{width:34.362000px;}
._1e_c00024{width:40.551000px;}
._13_c00024{width:45.678000px;}
._1a_c00024{width:50.124000px;}
._12_c00024{width:66.555000px;}
._1c_c00024{width:78.996000px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(128,128,128);}
.fc0_c00024{color:rgb(0,0,0);}
.fs3_c00024{font-size:45.600000px;}
.fs5_c00024{font-size:48.000000px;}
.fs1_c00024{font-size:55.200000px;}
.fs2_c00024{font-size:57.000000px;}
.fs4_c00024{font-size:66.000000px;}
.fs0_c00024{font-size:69.000000px;}
.fs6_c00024{font-size:75.000000px;}
.fs7_c00024{font-size:117.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1c_c00024{bottom:3.105000px;}
.y1b_c00024{bottom:7.228369px;}
.y1a_c00024{bottom:54.570000px;}
.y19_c00024{bottom:85.620000px;}
.y18_c00024{bottom:136.320000px;}
.y17_c00024{bottom:161.220000px;}
.y16_c00024{bottom:186.270000px;}
.y15_c00024{bottom:211.320000px;}
.y14_c00024{bottom:236.220000px;}
.y13_c00024{bottom:261.270000px;}
.y12_c00024{bottom:309.120000px;}
.y11_c00024{bottom:363.870000px;}
.y10_c00024{bottom:381.270000px;}
.yf_c00024{bottom:398.520000px;}
.ye_c00024{bottom:416.070000px;}
.yd_c00024{bottom:433.020000px;}
.yc_c00024{bottom:473.820000px;}
.yb_c00024{bottom:529.470000px;}
.ya_c00024{bottom:554.070000px;}
.y9_c00024{bottom:578.820000px;}
.y8_c00024{bottom:603.420000px;}
.y7_c00024{bottom:628.020000px;}
.y6_c00024{bottom:652.620000px;}
.y5_c00024{bottom:677.070000px;}
.y4_c00024{bottom:701.970000px;}
.y3_c00024{bottom:726.270000px;}
.y2_c00024{bottom:750.870000px;}
.y1_c00024{bottom:775.470000px;}
.h9_c00024{height:13.200073px;}
.ha_c00024{height:43.804688px;}
.h4_c00024{height:55.942383px;}
.h6_c00024{height:67.686035px;}
.h5_c00024{height:67.719727px;}
.h2_c00024{height:80.758301px;}
.h3_c00024{height:87.361816px;}
.h7_c00024{height:94.958496px;}
.h8_c00024{height:101.003906px;}
.h1_c00024{height:810.750000px;}
.h0_c00024{height:811.050000px;}
.w1_c00024{width:104.875500px;}
.w0_c00024{width:543.750000px;}
.x0_c00024{left:0.000000px;}
.x3_c00024{left:30.300000px;}
.x2_c00024{left:31.800000px;}
.x4_c00024{left:34.650000px;}
.x5_c00024{left:35.700000px;}
.x8_c00024{left:37.800000px;}
.xa_c00024{left:38.850000px;}
.xb_c00024{left:51.000000px;}
.x7_c00024{left:55.050000px;}
.xe_c00024{left:59.700000px;}
.x9_c00024{left:84.150000px;}
.xc_c00024{left:101.250000px;}
.x6_c00024{left:183.600000px;}
.x1_c00024{left:192.750000px;}
.xd_c00024{left:210.300000px;}
.x10_c00024{left:223.689240px;}
.xf_c00024{left:463.950000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls2_c00024{letter-spacing:0.000000pt;}
.ls3_c00024{letter-spacing:2.666667pt;}
.ls0_c00024{letter-spacing:15.400000pt;}
.ls1_c00024{letter-spacing:19.648000pt;}
.ws1_c00024{word-spacing:-49.986667pt;}
.ws0_c00024{word-spacing:-39.989333pt;}
.ws4_c00024{word-spacing:-29.333333pt;}
.ws5_c00024{word-spacing:-15.333333pt;}
.ws3_c00024{word-spacing:-0.050667pt;}
.ws2_c00024{word-spacing:-0.040533pt;}
.ws6_c00024{word-spacing:0.000000pt;}
._21_c00024{margin-left:-29.317333pt;}
._14_c00024{margin-left:-17.826667pt;}
._18_c00024{margin-left:-16.928000pt;}
._16_c00024{margin-left:-14.282667pt;}
._19_c00024{margin-left:-10.304000pt;}
._17_c00024{margin-left:-9.200000pt;}
._20_c00024{margin-left:-8.157333pt;}
._2_c00024{margin-left:-7.176000pt;}
._1b_c00024{margin-left:-5.640000pt;}
._4_c00024{margin-left:-4.661333pt;}
._3_c00024{margin-left:-2.944000pt;}
._5_c00024{margin-left:-1.717333pt;}
._0_c00024{width:1.594667pt;}
._1_c00024{width:2.514667pt;}
._7_c00024{width:4.170667pt;}
._6_c00024{width:5.949333pt;}
._e_c00024{width:7.421333pt;}
._d_c00024{width:8.770667pt;}
._c_c00024{width:10.058667pt;}
._9_c00024{width:10.978667pt;}
._15_c00024{width:11.880000pt;}
._b_c00024{width:12.880000pt;}
._a_c00024{width:14.474667pt;}
._11_c00024{width:16.069333pt;}
._1f_c00024{width:17.541333pt;}
._8_c00024{width:18.522667pt;}
._1d_c00024{width:20.485333pt;}
._f_c00024{width:22.938667pt;}
._10_c00024{width:25.085333pt;}
._22_c00024{width:30.544000pt;}
._1e_c00024{width:36.045333pt;}
._13_c00024{width:40.602667pt;}
._1a_c00024{width:44.554667pt;}
._12_c00024{width:59.160000pt;}
._1c_c00024{width:70.218667pt;}
.fs3_c00024{font-size:40.533333pt;}
.fs5_c00024{font-size:42.666667pt;}
.fs1_c00024{font-size:49.066667pt;}
.fs2_c00024{font-size:50.666667pt;}
.fs4_c00024{font-size:58.666667pt;}
.fs0_c00024{font-size:61.333333pt;}
.fs6_c00024{font-size:66.666667pt;}
.fs7_c00024{font-size:104.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1c_c00024{bottom:2.760000pt;}
.y1b_c00024{bottom:6.425217pt;}
.y1a_c00024{bottom:48.506667pt;}
.y19_c00024{bottom:76.106667pt;}
.y18_c00024{bottom:121.173333pt;}
.y17_c00024{bottom:143.306667pt;}
.y16_c00024{bottom:165.573333pt;}
.y15_c00024{bottom:187.840000pt;}
.y14_c00024{bottom:209.973333pt;}
.y13_c00024{bottom:232.240000pt;}
.y12_c00024{bottom:274.773333pt;}
.y11_c00024{bottom:323.440000pt;}
.y10_c00024{bottom:338.906667pt;}
.yf_c00024{bottom:354.240000pt;}
.ye_c00024{bottom:369.840000pt;}
.yd_c00024{bottom:384.906667pt;}
.yc_c00024{bottom:421.173333pt;}
.yb_c00024{bottom:470.640000pt;}
.ya_c00024{bottom:492.506667pt;}
.y9_c00024{bottom:514.506667pt;}
.y8_c00024{bottom:536.373333pt;}
.y7_c00024{bottom:558.240000pt;}
.y6_c00024{bottom:580.106667pt;}
.y5_c00024{bottom:601.840000pt;}
.y4_c00024{bottom:623.973333pt;}
.y3_c00024{bottom:645.573333pt;}
.y2_c00024{bottom:667.440000pt;}
.y1_c00024{bottom:689.306667pt;}
.h9_c00024{height:11.733399pt;}
.ha_c00024{height:38.937500pt;}
.h4_c00024{height:49.726562pt;}
.h6_c00024{height:60.165365pt;}
.h5_c00024{height:60.195312pt;}
.h2_c00024{height:71.785156pt;}
.h3_c00024{height:77.654948pt;}
.h7_c00024{height:84.407552pt;}
.h8_c00024{height:89.781250pt;}
.h1_c00024{height:720.666667pt;}
.h0_c00024{height:720.933333pt;}
.w1_c00024{width:93.222667pt;}
.w0_c00024{width:483.333333pt;}
.x0_c00024{left:0.000000pt;}
.x3_c00024{left:26.933333pt;}
.x2_c00024{left:28.266667pt;}
.x4_c00024{left:30.800000pt;}
.x5_c00024{left:31.733333pt;}
.x8_c00024{left:33.600000pt;}
.xa_c00024{left:34.533333pt;}
.xb_c00024{left:45.333333pt;}
.x7_c00024{left:48.933333pt;}
.xe_c00024{left:53.066667pt;}
.x9_c00024{left:74.800000pt;}
.xc_c00024{left:90.000000pt;}
.x6_c00024{left:163.200000pt;}
.x1_c00024{left:171.333333pt;}
.xd_c00024{left:186.933333pt;}
.x10_c00024{left:198.834880pt;}
.xf_c00024{left:412.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ba535b548b5152f2e10fcbc.woff2')format("woff");}.ff1_c00025{font-family:ff1_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:ff2_c00025;src:url('chunks/assets/font_93c039e411a8bfe134cc4a34.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_17fba0bfe629f4450e1fc506.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_776b43f85c328c83116aa30b.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_371c448224d7ccb17861e0d6.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00025{font-family:ff6_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:ff7_c00025;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00025{font-family:ff7_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;}
.ls6_c00025{letter-spacing:0.000000px;}
.ls4_c00025{letter-spacing:1.302000px;}
.ls5_c00025{letter-spacing:3.000000px;}
.ls3_c00025{letter-spacing:6.600000px;}
.ls0_c00025{letter-spacing:9.000000px;}
.ls2_c00025{letter-spacing:12.291000px;}
.ls7_c00025{letter-spacing:15.000000px;}
.ls1_c00025{letter-spacing:19.800000px;}
.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;}
}
.ws2_c00025{word-spacing:-31.500000px;}
.ws8_c00025{word-spacing:-19.629000px;}
.ws5_c00025{word-spacing:-19.206000px;}
.ws7_c00025{word-spacing:-17.250000px;}
.ws0_c00025{word-spacing:-16.629000px;}
.ws3_c00025{word-spacing:-0.759000px;}
.ws1_c00025{word-spacing:-0.732000px;}
.ws9_c00025{word-spacing:0.000000px;}
.ws6_c00025{word-spacing:0.897000px;}
.ws4_c00025{word-spacing:15.651000px;}
._21_c00025{margin-left:-25.026000px;}
._25_c00025{margin-left:-16.560000px;}
._12_c00025{margin-left:-8.205000px;}
._7_c00025{margin-left:-6.969000px;}
._1a_c00025{margin-left:-5.520000px;}
._10_c00025{margin-left:-3.795000px;}
._4_c00025{margin-left:-1.863000px;}
._9_c00025{width:1.035000px;}
._2_c00025{width:2.070000px;}
._8_c00025{width:3.381000px;}
._1_c00025{width:4.485000px;}
._5_c00025{width:6.072000px;}
._a_c00025{width:7.107000px;}
._c_c00025{width:8.142000px;}
._0_c00025{width:9.315000px;}
._16_c00025{width:10.488000px;}
._17_c00025{width:11.592000px;}
._f_c00025{width:12.903000px;}
._15_c00025{width:14.040000px;}
._19_c00025{width:15.285000px;}
._11_c00025{width:16.836000px;}
._b_c00025{width:18.009000px;}
._23_c00025{width:19.251000px;}
._d_c00025{width:20.631000px;}
._20_c00025{width:22.605000px;}
._13_c00025{width:24.219000px;}
._14_c00025{width:26.289000px;}
._e_c00025{width:32.430000px;}
._18_c00025{width:33.672000px;}
._1d_c00025{width:35.811000px;}
._24_c00025{width:37.635000px;}
._1e_c00025{width:39.399000px;}
._1c_c00025{width:51.543000px;}
._22_c00025{width:57.930000px;}
._1b_c00025{width:65.943000px;}
._6_c00025{width:103.845000px;}
._1f_c00025{width:180.504000px;}
._3_c00025{width:358.347000px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(128,128,128);}
.fc0_c00025{color:rgb(0,0,0);}
.fs2_c00025{font-size:48.000000px;}
.fs1_c00025{font-size:66.000000px;}
.fs0_c00025{font-size:69.000000px;}
.y0_c00025{bottom:0.000000px;}
.y1f_c00025{bottom:3.105000px;}
.y1e_c00025{bottom:7.228363px;}
.y1d_c00025{bottom:54.000000px;}
.y1c_c00025{bottom:82.650000px;}
.y1b_c00025{bottom:108.000000px;}
.y1a_c00025{bottom:132.900000px;}
.y19_c00025{bottom:158.250000px;}
.y18_c00025{bottom:182.850000px;}
.y17_c00025{bottom:232.800000px;}
.y16_c00025{bottom:257.550000px;}
.y15_c00025{bottom:282.150000px;}
.y14_c00025{bottom:306.150000px;}
.y13_c00025{bottom:331.650000px;}
.y12_c00025{bottom:355.350000px;}
.y11_c00025{bottom:380.400000px;}
.y10_c00025{bottom:405.300000px;}
.yf_c00025{bottom:429.600000px;}
.ye_c00025{bottom:453.600000px;}
.yd_c00025{bottom:478.950000px;}
.yc_c00025{bottom:504.000000px;}
.yb_c00025{bottom:528.450000px;}
.ya_c00025{bottom:553.050000px;}
.y9_c00025{bottom:577.500000px;}
.y8_c00025{bottom:603.000000px;}
.y7_c00025{bottom:627.000000px;}
.y6_c00025{bottom:651.750000px;}
.y5_c00025{bottom:676.650000px;}
.y4_c00025{bottom:701.250000px;}
.y3_c00025{bottom:725.850000px;}
.y2_c00025{bottom:750.900000px;}
.y1_c00025{bottom:775.950000px;}
.h6_c00025{height:13.200074px;}
.h7_c00025{height:43.804688px;}
.h5_c00025{height:67.686035px;}
.h4_c00025{height:67.719727px;}
.h3_c00025{height:69.539062px;}
.h2_c00025{height:87.361816px;}
.h1_c00025{height:815.250000px;}
.h0_c00025{height:815.400000px;}
.w2_c00025{width:104.875500px;}
.w0_c00025{width:572.925000px;}
.w1_c00025{width:573.000000px;}
.x0_c00025{left:0.000000px;}
.x4_c00025{left:78.300000px;}
.x2_c00025{left:116.850000px;}
.x3_c00025{left:118.800000px;}
.x1_c00025{left:131.250000px;}
.x6_c00025{left:140.700000px;}
.x7_c00025{left:156.600000px;}
.x5_c00025{left:163.800000px;}
.xa_c00025{left:238.276749px;}
.x8_c00025{left:269.850000px;}
.x9_c00025{left:508.650000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls6_c00025{letter-spacing:0.000000pt;}
.ls4_c00025{letter-spacing:1.157333pt;}
.ls5_c00025{letter-spacing:2.666667pt;}
.ls3_c00025{letter-spacing:5.866667pt;}
.ls0_c00025{letter-spacing:8.000000pt;}
.ls2_c00025{letter-spacing:10.925333pt;}
.ls7_c00025{letter-spacing:13.333333pt;}
.ls1_c00025{letter-spacing:17.600000pt;}
.ws2_c00025{word-spacing:-28.000000pt;}
.ws8_c00025{word-spacing:-17.448000pt;}
.ws5_c00025{word-spacing:-17.072000pt;}
.ws7_c00025{word-spacing:-15.333333pt;}
.ws0_c00025{word-spacing:-14.781333pt;}
.ws3_c00025{word-spacing:-0.674667pt;}
.ws1_c00025{word-spacing:-0.650667pt;}
.ws9_c00025{word-spacing:0.000000pt;}
.ws6_c00025{word-spacing:0.797333pt;}
.ws4_c00025{word-spacing:13.912000pt;}
._21_c00025{margin-left:-22.245333pt;}
._25_c00025{margin-left:-14.720000pt;}
._12_c00025{margin-left:-7.293333pt;}
._7_c00025{margin-left:-6.194667pt;}
._1a_c00025{margin-left:-4.906667pt;}
._10_c00025{margin-left:-3.373333pt;}
._4_c00025{margin-left:-1.656000pt;}
._9_c00025{width:0.920000pt;}
._2_c00025{width:1.840000pt;}
._8_c00025{width:3.005333pt;}
._1_c00025{width:3.986667pt;}
._5_c00025{width:5.397333pt;}
._a_c00025{width:6.317333pt;}
._c_c00025{width:7.237333pt;}
._0_c00025{width:8.280000pt;}
._16_c00025{width:9.322667pt;}
._17_c00025{width:10.304000pt;}
._f_c00025{width:11.469333pt;}
._15_c00025{width:12.480000pt;}
._19_c00025{width:13.586667pt;}
._11_c00025{width:14.965333pt;}
._b_c00025{width:16.008000pt;}
._23_c00025{width:17.112000pt;}
._d_c00025{width:18.338667pt;}
._20_c00025{width:20.093333pt;}
._13_c00025{width:21.528000pt;}
._14_c00025{width:23.368000pt;}
._e_c00025{width:28.826667pt;}
._18_c00025{width:29.930667pt;}
._1d_c00025{width:31.832000pt;}
._24_c00025{width:33.453333pt;}
._1e_c00025{width:35.021333pt;}
._1c_c00025{width:45.816000pt;}
._22_c00025{width:51.493333pt;}
._1b_c00025{width:58.616000pt;}
._6_c00025{width:92.306667pt;}
._1f_c00025{width:160.448000pt;}
._3_c00025{width:318.530667pt;}
.fs2_c00025{font-size:42.666667pt;}
.fs1_c00025{font-size:58.666667pt;}
.fs0_c00025{font-size:61.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y1f_c00025{bottom:2.760000pt;}
.y1e_c00025{bottom:6.425212pt;}
.y1d_c00025{bottom:48.000000pt;}
.y1c_c00025{bottom:73.466667pt;}
.y1b_c00025{bottom:96.000000pt;}
.y1a_c00025{bottom:118.133333pt;}
.y19_c00025{bottom:140.666667pt;}
.y18_c00025{bottom:162.533333pt;}
.y17_c00025{bottom:206.933333pt;}
.y16_c00025{bottom:228.933333pt;}
.y15_c00025{bottom:250.800000pt;}
.y14_c00025{bottom:272.133333pt;}
.y13_c00025{bottom:294.800000pt;}
.y12_c00025{bottom:315.866667pt;}
.y11_c00025{bottom:338.133333pt;}
.y10_c00025{bottom:360.266667pt;}
.yf_c00025{bottom:381.866667pt;}
.ye_c00025{bottom:403.200000pt;}
.yd_c00025{bottom:425.733333pt;}
.yc_c00025{bottom:448.000000pt;}
.yb_c00025{bottom:469.733333pt;}
.ya_c00025{bottom:491.600000pt;}
.y9_c00025{bottom:513.333333pt;}
.y8_c00025{bottom:536.000000pt;}
.y7_c00025{bottom:557.333333pt;}
.y6_c00025{bottom:579.333333pt;}
.y5_c00025{bottom:601.466667pt;}
.y4_c00025{bottom:623.333333pt;}
.y3_c00025{bottom:645.200000pt;}
.y2_c00025{bottom:667.466667pt;}
.y1_c00025{bottom:689.733333pt;}
.h6_c00025{height:11.733399pt;}
.h7_c00025{height:38.937500pt;}
.h5_c00025{height:60.165365pt;}
.h4_c00025{height:60.195312pt;}
.h3_c00025{height:61.812500pt;}
.h2_c00025{height:77.654948pt;}
.h1_c00025{height:724.666667pt;}
.h0_c00025{height:724.800000pt;}
.w2_c00025{width:93.222667pt;}
.w0_c00025{width:509.266667pt;}
.w1_c00025{width:509.333333pt;}
.x0_c00025{left:0.000000pt;}
.x4_c00025{left:69.600000pt;}
.x2_c00025{left:103.866667pt;}
.x3_c00025{left:105.600000pt;}
.x1_c00025{left:116.666667pt;}
.x6_c00025{left:125.066667pt;}
.x7_c00025{left:139.200000pt;}
.x5_c00025{left:145.600000pt;}
.xa_c00025{left:211.801554pt;}
.x8_c00025{left:239.866667pt;}
.x9_c00025{left:452.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_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_4834d50443937fbd625b2623.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_84b44b60801ce583aecf5e4c.woff2')format("woff");}.ff2_c00026{font-family:ff2_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:ff3_c00026;src:url('chunks/assets/font_a2cdce3ca477410c51c55c41.woff2')format("woff");}.ff3_c00026{font-family:ff3_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:ff4_c00026;src:url('chunks/assets/font_4df92c9f45f21b8ec43277d4.woff2')format("woff");}.ff4_c00026{font-family:ff4_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:ff5_c00026;src:url('chunks/assets/font_a2a5cb22b80ac1e9332709f2.woff2')format("woff");}.ff5_c00026{font-family:ff5_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:ff6_c00026;src:url('chunks/assets/font_d1543f29b06422fdf169ab16.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_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00026{letter-spacing:0.000000px;}
.ls1_c00026{letter-spacing:0.621000px;}
.ls4_c00026{letter-spacing:3.000000px;}
.ls2_c00026{letter-spacing:7.800000px;}
.ls5_c00026{letter-spacing:9.000000px;}
.ls0_c00026{letter-spacing:18.153000px;}
.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;}
}
.ws2_c00026{word-spacing:-20.568000px;}
.ws3_c00026{word-spacing:-11.568000px;}
.ws5_c00026{word-spacing:0.000000px;}
.ws0_c00026{word-spacing:1.587000px;}
.ws1_c00026{word-spacing:1.863000px;}
.ws4_c00026{word-spacing:1.932000px;}
._19_c00026{margin-left:-18.570000px;}
._25_c00026{margin-left:-17.040000px;}
._1c_c00026{margin-left:-15.801000px;}
._1b_c00026{margin-left:-12.903000px;}
._3_c00026{margin-left:-11.799000px;}
._18_c00026{margin-left:-10.419000px;}
._17_c00026{margin-left:-9.384000px;}
._4_c00026{margin-left:-7.521000px;}
._14_c00026{margin-left:-5.727000px;}
._10_c00026{margin-left:-4.209000px;}
._11_c00026{margin-left:-2.760000px;}
._c_c00026{margin-left:-1.242000px;}
._5_c00026{width:1.449000px;}
._8_c00026{width:2.898000px;}
._1_c00026{width:4.485000px;}
._2_c00026{width:5.520000px;}
._12_c00026{width:6.969000px;}
._16_c00026{width:8.004000px;}
._0_c00026{width:9.039000px;}
._e_c00026{width:10.212000px;}
._9_c00026{width:11.799000px;}
._7_c00026{width:12.903000px;}
._f_c00026{width:14.214000px;}
._a_c00026{width:15.525000px;}
._13_c00026{width:16.698000px;}
._b_c00026{width:17.802000px;}
._22_c00026{width:19.308000px;}
._21_c00026{width:20.721000px;}
._d_c00026{width:22.221000px;}
._23_c00026{width:26.187000px;}
._20_c00026{width:33.348000px;}
._26_c00026{width:39.270000px;}
._1d_c00026{width:41.106000px;}
._1a_c00026{width:88.869000px;}
._15_c00026{width:91.209000px;}
._24_c00026{width:100.059000px;}
._1e_c00026{width:106.179000px;}
._1f_c00026{width:110.271000px;}
._27_c00026{width:530.871000px;}
._6_c00026{width:541.443000px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(128,128,128);}
.fc0_c00026{color:rgb(0,0,0);}
.fs3_c00026{font-size:42.000000px;}
.fs1_c00026{font-size:48.000000px;}
.fs2_c00026{font-size:51.000000px;}
.fs0_c00026{font-size:69.000000px;}
.y0_c00026{bottom:0.000000px;}
.y20_c00026{bottom:3.105000px;}
.y1f_c00026{bottom:7.228369px;}
.y1e_c00026{bottom:60.420000px;}
.y1d_c00026{bottom:81.720000px;}
.y1c_c00026{bottom:99.270000px;}
.y1b_c00026{bottom:116.820000px;}
.y1a_c00026{bottom:133.920000px;}
.y19_c00026{bottom:151.470000px;}
.y18_c00026{bottom:169.020000px;}
.y17_c00026{bottom:186.270000px;}
.y16_c00026{bottom:204.120000px;}
.y15_c00026{bottom:255.870000px;}
.y14_c00026{bottom:305.820000px;}
.y13_c00026{bottom:331.020000px;}
.y12_c00026{bottom:355.770000px;}
.y11_c00026{bottom:379.920000px;}
.y10_c00026{bottom:404.970000px;}
.yf_c00026{bottom:429.870000px;}
.ye_c00026{bottom:454.320000px;}
.yd_c00026{bottom:478.620000px;}
.yc_c00026{bottom:502.770000px;}
.yb_c00026{bottom:527.220000px;}
.ya_c00026{bottom:552.420000px;}
.y9_c00026{bottom:576.720000px;}
.y8_c00026{bottom:601.470000px;}
.y7_c00026{bottom:626.070000px;}
.y6_c00026{bottom:650.970000px;}
.y5_c00026{bottom:676.020000px;}
.y4_c00026{bottom:700.320000px;}
.y3_c00026{bottom:724.920000px;}
.y2_c00026{bottom:750.570000px;}
.y1_c00026{bottom:774.570000px;}
.h7_c00026{height:13.200073px;}
.h8_c00026{height:43.804688px;}
.h6_c00026{height:56.179688px;}
.h5_c00026{height:60.773438px;}
.h4_c00026{height:64.571777px;}
.h2_c00026{height:67.686035px;}
.h3_c00026{height:87.361816px;}
.h1_c00026{height:810.750000px;}
.h0_c00026{height:811.050000px;}
.w1_c00026{width:104.875500px;}
.w0_c00026{width:543.750000px;}
.x0_c00026{left:0.000000px;}
.x4_c00026{left:26.250000px;}
.x3_c00026{left:27.300000px;}
.x5_c00026{left:29.100000px;}
.x8_c00026{left:31.500000px;}
.x7_c00026{left:47.250000px;}
.x2_c00026{left:49.650000px;}
.x6_c00026{left:86.700000px;}
.x1_c00026{left:177.600000px;}
.xa_c00026{left:223.689240px;}
.x9_c00026{left:269.100000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls3_c00026{letter-spacing:0.000000pt;}
.ls1_c00026{letter-spacing:0.552000pt;}
.ls4_c00026{letter-spacing:2.666667pt;}
.ls2_c00026{letter-spacing:6.933333pt;}
.ls5_c00026{letter-spacing:8.000000pt;}
.ls0_c00026{letter-spacing:16.136000pt;}
.ws2_c00026{word-spacing:-18.282667pt;}
.ws3_c00026{word-spacing:-10.282667pt;}
.ws5_c00026{word-spacing:0.000000pt;}
.ws0_c00026{word-spacing:1.410667pt;}
.ws1_c00026{word-spacing:1.656000pt;}
.ws4_c00026{word-spacing:1.717333pt;}
._19_c00026{margin-left:-16.506667pt;}
._25_c00026{margin-left:-15.146667pt;}
._1c_c00026{margin-left:-14.045333pt;}
._1b_c00026{margin-left:-11.469333pt;}
._3_c00026{margin-left:-10.488000pt;}
._18_c00026{margin-left:-9.261333pt;}
._17_c00026{margin-left:-8.341333pt;}
._4_c00026{margin-left:-6.685333pt;}
._14_c00026{margin-left:-5.090667pt;}
._10_c00026{margin-left:-3.741333pt;}
._11_c00026{margin-left:-2.453333pt;}
._c_c00026{margin-left:-1.104000pt;}
._5_c00026{width:1.288000pt;}
._8_c00026{width:2.576000pt;}
._1_c00026{width:3.986667pt;}
._2_c00026{width:4.906667pt;}
._12_c00026{width:6.194667pt;}
._16_c00026{width:7.114667pt;}
._0_c00026{width:8.034667pt;}
._e_c00026{width:9.077333pt;}
._9_c00026{width:10.488000pt;}
._7_c00026{width:11.469333pt;}
._f_c00026{width:12.634667pt;}
._a_c00026{width:13.800000pt;}
._13_c00026{width:14.842667pt;}
._b_c00026{width:15.824000pt;}
._22_c00026{width:17.162667pt;}
._21_c00026{width:18.418667pt;}
._d_c00026{width:19.752000pt;}
._23_c00026{width:23.277333pt;}
._20_c00026{width:29.642667pt;}
._26_c00026{width:34.906667pt;}
._1d_c00026{width:36.538667pt;}
._1a_c00026{width:78.994667pt;}
._15_c00026{width:81.074667pt;}
._24_c00026{width:88.941333pt;}
._1e_c00026{width:94.381333pt;}
._1f_c00026{width:98.018667pt;}
._27_c00026{width:471.885333pt;}
._6_c00026{width:481.282667pt;}
.fs3_c00026{font-size:37.333333pt;}
.fs1_c00026{font-size:42.666667pt;}
.fs2_c00026{font-size:45.333333pt;}
.fs0_c00026{font-size:61.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y20_c00026{bottom:2.760000pt;}
.y1f_c00026{bottom:6.425217pt;}
.y1e_c00026{bottom:53.706667pt;}
.y1d_c00026{bottom:72.640000pt;}
.y1c_c00026{bottom:88.240000pt;}
.y1b_c00026{bottom:103.840000pt;}
.y1a_c00026{bottom:119.040000pt;}
.y19_c00026{bottom:134.640000pt;}
.y18_c00026{bottom:150.240000pt;}
.y17_c00026{bottom:165.573333pt;}
.y16_c00026{bottom:181.440000pt;}
.y15_c00026{bottom:227.440000pt;}
.y14_c00026{bottom:271.840000pt;}
.y13_c00026{bottom:294.240000pt;}
.y12_c00026{bottom:316.240000pt;}
.y11_c00026{bottom:337.706667pt;}
.y10_c00026{bottom:359.973333pt;}
.yf_c00026{bottom:382.106667pt;}
.ye_c00026{bottom:403.840000pt;}
.yd_c00026{bottom:425.440000pt;}
.yc_c00026{bottom:446.906667pt;}
.yb_c00026{bottom:468.640000pt;}
.ya_c00026{bottom:491.040000pt;}
.y9_c00026{bottom:512.640000pt;}
.y8_c00026{bottom:534.640000pt;}
.y7_c00026{bottom:556.506667pt;}
.y6_c00026{bottom:578.640000pt;}
.y5_c00026{bottom:600.906667pt;}
.y4_c00026{bottom:622.506667pt;}
.y3_c00026{bottom:644.373333pt;}
.y2_c00026{bottom:667.173333pt;}
.y1_c00026{bottom:688.506667pt;}
.h7_c00026{height:11.733399pt;}
.h8_c00026{height:38.937500pt;}
.h6_c00026{height:49.937500pt;}
.h5_c00026{height:54.020833pt;}
.h4_c00026{height:57.397135pt;}
.h2_c00026{height:60.165365pt;}
.h3_c00026{height:77.654948pt;}
.h1_c00026{height:720.666667pt;}
.h0_c00026{height:720.933333pt;}
.w1_c00026{width:93.222667pt;}
.w0_c00026{width:483.333333pt;}
.x0_c00026{left:0.000000pt;}
.x4_c00026{left:23.333333pt;}
.x3_c00026{left:24.266667pt;}
.x5_c00026{left:25.866667pt;}
.x8_c00026{left:28.000000pt;}
.x7_c00026{left:42.000000pt;}
.x2_c00026{left:44.133333pt;}
.x6_c00026{left:77.066667pt;}
.x1_c00026{left:157.866667pt;}
.xa_c00026{left:198.834880pt;}
.x9_c00026{left:239.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_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_ebf06a4ad9f9b3e8e853e30a.woff2')format("woff");}.ff1_c00027{font-family:ff1_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:ff2_c00027;src:url('chunks/assets/font_e2f7dd2d524fa1adcd8d399f.woff2')format("woff");}.ff2_c00027{font-family:ff2_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:ff3_c00027;src:url('chunks/assets/font_0fc9e81a3528e8f8ede03046.woff2')format("woff");}.ff3_c00027{font-family:ff3_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:ff4_c00027;src:url('chunks/assets/font_05d2dd6c19233a6c76229567.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_606a0b0b56ebfd52f29400ab.woff2')format("woff");}.ff5_c00027{font-family:ff5_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:ff6_c00027;src:url('chunks/assets/font_b831dd1b32ab8c2599766a7b.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00027;src:url('chunks/assets/font_90c65102b86d74223103ccf4.woff2')format("woff");}.ff7_c00027{font-family:ff7_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:ff8_c00027;src:url('chunks/assets/font_c0aec3403c5f5d314a9d1a37.woff2')format("woff");}.ff8_c00027{font-family:ff8_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:ff9_c00027;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00027{font-family:ff9_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);}
.v1_c00027{vertical-align:-96.000000px;}
.v0_c00027{vertical-align:0.000000px;}
.ls4_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.186000px;}
.ls1_c00027{letter-spacing:1.386000px;}
.ls2_c00027{letter-spacing:3.000000px;}
.ls3_c00027{letter-spacing:3.171000px;}
.ls5_c00027{letter-spacing:6.000000px;}
.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;}
}
.ws6_c00027{word-spacing:-33.825000px;}
.ws8_c00027{word-spacing:-19.629000px;}
.wsa_c00027{word-spacing:-19.182000px;}
.ws0_c00027{word-spacing:-19.014000px;}
.ws9_c00027{word-spacing:-17.250000px;}
.ws1_c00027{word-spacing:-13.014000px;}
.ws4_c00027{word-spacing:-3.055200px;}
.ws2_c00027{word-spacing:-1.113000px;}
.ws3_c00027{word-spacing:-0.033000px;}
.wsb_c00027{word-spacing:0.000000px;}
.ws5_c00027{word-spacing:4.692000px;}
.ws7_c00027{word-spacing:1391.562000px;}
._1e_c00027{margin-left:-20.586000px;}
._26_c00027{margin-left:-17.877000px;}
._e_c00027{margin-left:-15.147000px;}
._6_c00027{margin-left:-12.798000px;}
._7_c00027{margin-left:-10.692000px;}
._f_c00027{margin-left:-9.690000px;}
._5_c00027{margin-left:-8.427000px;}
._b_c00027{margin-left:-6.639000px;}
._12_c00027{margin-left:-5.346000px;}
._8_c00027{margin-left:-3.708000px;}
._10_c00027{margin-left:-2.541000px;}
._3_c00027{margin-left:-1.518000px;}
._d_c00027{width:1.944000px;}
._a_c00027{width:3.039000px;}
._0_c00027{width:4.899000px;}
._9_c00027{width:6.861000px;}
._4_c00027{width:7.872000px;}
._1_c00027{width:8.970000px;}
._23_c00027{width:10.149000px;}
._1b_c00027{width:11.193000px;}
._15_c00027{width:13.113000px;}
._17_c00027{width:14.187000px;}
._1a_c00027{width:15.318000px;}
._14_c00027{width:17.271000px;}
._13_c00027{width:19.203000px;}
._18_c00027{width:21.051000px;}
._1f_c00027{width:22.818000px;}
._20_c00027{width:25.045800px;}
._22_c00027{width:61.011000px;}
._24_c00027{width:69.429000px;}
._19_c00027{width:82.269000px;}
._1d_c00027{width:87.174000px;}
._21_c00027{width:94.080000px;}
._25_c00027{width:124.236000px;}
._c_c00027{width:144.801000px;}
._11_c00027{width:182.670000px;}
._1c_c00027{width:208.974000px;}
._16_c00027{width:219.105000px;}
._2_c00027{width:366.915000px;}
.fc2_c00027{color:transparent;}
.fc1_c00027{color:rgb(128,128,128);}
.fc0_c00027{color:rgb(0,0,0);}
.fs1_c00027{font-size:48.000000px;}
.fs3_c00027{font-size:51.000000px;}
.fs2_c00027{font-size:54.000000px;}
.fs4_c00027{font-size:55.200000px;}
.fs5_c00027{font-size:63.000000px;}
.fs0_c00027{font-size:69.000000px;}
.fs6_c00027{font-size:75.000000px;}
.y0_c00027{bottom:0.000000px;}
.y21_c00027{bottom:3.105000px;}
.y20_c00027{bottom:7.228369px;}
.y1a_c00027{bottom:60.120000px;}
.y19_c00027{bottom:85.320000px;}
.y18_c00027{bottom:135.570000px;}
.y17_c00027{bottom:187.320000px;}
.y16_c00027{bottom:212.220000px;}
.y15_c00027{bottom:237.570000px;}
.y1f_c00027{bottom:239.970000px;}
.y14_c00027{bottom:262.620000px;}
.y13_c00027{bottom:287.520000px;}
.y12_c00027{bottom:313.170000px;}
.y11_c00027{bottom:336.720000px;}
.y10_c00027{bottom:361.170000px;}
.yf_c00027{bottom:386.370000px;}
.y1e_c00027{bottom:402.870000px;}
.ye_c00027{bottom:411.120000px;}
.y1d_c00027{bottom:416.820000px;}
.y1c_c00027{bottom:435.270000px;}
.yd_c00027{bottom:436.020000px;}
.y1b_c00027{bottom:451.920000px;}
.yc_c00027{bottom:461.070000px;}
.yb_c00027{bottom:485.970000px;}
.ya_c00027{bottom:510.870000px;}
.y9_c00027{bottom:534.570000px;}
.y8_c00027{bottom:560.820000px;}
.y7_c00027{bottom:585.870000px;}
.y6_c00027{bottom:636.420000px;}
.y5_c00027{bottom:684.420000px;}
.y4_c00027{bottom:701.970000px;}
.y3_c00027{bottom:720.120000px;}
.y2_c00027{bottom:737.670000px;}
.y1_c00027{bottom:757.320000px;}
.hc_c00027{height:13.200073px;}
.hd_c00027{height:43.804688px;}
.h6_c00027{height:56.179688px;}
.h5_c00027{height:60.773438px;}
.h4_c00027{height:64.571777px;}
.hb_c00027{height:67.719727px;}
.h3_c00027{height:68.370117px;}
.h8_c00027{height:69.539062px;}
.h9_c00027{height:79.765137px;}
.h7_c00027{height:80.758301px;}
.h2_c00027{height:87.361816px;}
.ha_c00027{height:94.958496px;}
.h0_c00027{height:802.950000px;}
.h1_c00027{height:803.250000px;}
.w2_c00027{width:104.875500px;}
.w0_c00027{width:563.775000px;}
.w1_c00027{width:564.000000px;}
.x0_c00027{left:0.000000px;}
.x11_c00027{left:40.200000px;}
.x13_c00027{left:41.250000px;}
.x5_c00027{left:43.500000px;}
.x12_c00027{left:55.050000px;}
.xd_c00027{left:57.750000px;}
.x3_c00027{left:59.700000px;}
.xe_c00027{left:64.500000px;}
.xb_c00027{left:104.700000px;}
.xc_c00027{left:105.750000px;}
.xa_c00027{left:106.950000px;}
.x7_c00027{left:109.350000px;}
.x4_c00027{left:111.600000px;}
.x2_c00027{left:119.400000px;}
.x8_c00027{left:123.300000px;}
.x1_c00027{left:125.550000px;}
.x10_c00027{left:129.900000px;}
.x9_c00027{left:135.300000px;}
.xf_c00027{left:147.900000px;}
.x6_c00027{left:148.950000px;}
.x14_c00027{left:233.701767px;}
@media print{
.v1_c00027{vertical-align:-85.333333pt;}
.v0_c00027{vertical-align:0.000000pt;}
.ls4_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.165333pt;}
.ls1_c00027{letter-spacing:1.232000pt;}
.ls2_c00027{letter-spacing:2.666667pt;}
.ls3_c00027{letter-spacing:2.818667pt;}
.ls5_c00027{letter-spacing:5.333333pt;}
.ws6_c00027{word-spacing:-30.066667pt;}
.ws8_c00027{word-spacing:-17.448000pt;}
.wsa_c00027{word-spacing:-17.050667pt;}
.ws0_c00027{word-spacing:-16.901333pt;}
.ws9_c00027{word-spacing:-15.333333pt;}
.ws1_c00027{word-spacing:-11.568000pt;}
.ws4_c00027{word-spacing:-2.715733pt;}
.ws2_c00027{word-spacing:-0.989333pt;}
.ws3_c00027{word-spacing:-0.029333pt;}
.wsb_c00027{word-spacing:0.000000pt;}
.ws5_c00027{word-spacing:4.170667pt;}
.ws7_c00027{word-spacing:1236.944000pt;}
._1e_c00027{margin-left:-18.298667pt;}
._26_c00027{margin-left:-15.890667pt;}
._e_c00027{margin-left:-13.464000pt;}
._6_c00027{margin-left:-11.376000pt;}
._7_c00027{margin-left:-9.504000pt;}
._f_c00027{margin-left:-8.613333pt;}
._5_c00027{margin-left:-7.490667pt;}
._b_c00027{margin-left:-5.901333pt;}
._12_c00027{margin-left:-4.752000pt;}
._8_c00027{margin-left:-3.296000pt;}
._10_c00027{margin-left:-2.258667pt;}
._3_c00027{margin-left:-1.349333pt;}
._d_c00027{width:1.728000pt;}
._a_c00027{width:2.701333pt;}
._0_c00027{width:4.354667pt;}
._9_c00027{width:6.098667pt;}
._4_c00027{width:6.997333pt;}
._1_c00027{width:7.973333pt;}
._23_c00027{width:9.021333pt;}
._1b_c00027{width:9.949333pt;}
._15_c00027{width:11.656000pt;}
._17_c00027{width:12.610667pt;}
._1a_c00027{width:13.616000pt;}
._14_c00027{width:15.352000pt;}
._13_c00027{width:17.069333pt;}
._18_c00027{width:18.712000pt;}
._1f_c00027{width:20.282667pt;}
._20_c00027{width:22.262933pt;}
._22_c00027{width:54.232000pt;}
._24_c00027{width:61.714667pt;}
._19_c00027{width:73.128000pt;}
._1d_c00027{width:77.488000pt;}
._21_c00027{width:83.626667pt;}
._25_c00027{width:110.432000pt;}
._c_c00027{width:128.712000pt;}
._11_c00027{width:162.373333pt;}
._1c_c00027{width:185.754667pt;}
._16_c00027{width:194.760000pt;}
._2_c00027{width:326.146667pt;}
.fs1_c00027{font-size:42.666667pt;}
.fs3_c00027{font-size:45.333333pt;}
.fs2_c00027{font-size:48.000000pt;}
.fs4_c00027{font-size:49.066667pt;}
.fs5_c00027{font-size:56.000000pt;}
.fs0_c00027{font-size:61.333333pt;}
.fs6_c00027{font-size:66.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y21_c00027{bottom:2.760000pt;}
.y20_c00027{bottom:6.425217pt;}
.y1a_c00027{bottom:53.440000pt;}
.y19_c00027{bottom:75.840000pt;}
.y18_c00027{bottom:120.506667pt;}
.y17_c00027{bottom:166.506667pt;}
.y16_c00027{bottom:188.640000pt;}
.y15_c00027{bottom:211.173333pt;}
.y1f_c00027{bottom:213.306667pt;}
.y14_c00027{bottom:233.440000pt;}
.y13_c00027{bottom:255.573333pt;}
.y12_c00027{bottom:278.373333pt;}
.y11_c00027{bottom:299.306667pt;}
.y10_c00027{bottom:321.040000pt;}
.yf_c00027{bottom:343.440000pt;}
.y1e_c00027{bottom:358.106667pt;}
.ye_c00027{bottom:365.440000pt;}
.y1d_c00027{bottom:370.506667pt;}
.y1c_c00027{bottom:386.906667pt;}
.yd_c00027{bottom:387.573333pt;}
.y1b_c00027{bottom:401.706667pt;}
.yc_c00027{bottom:409.840000pt;}
.yb_c00027{bottom:431.973333pt;}
.ya_c00027{bottom:454.106667pt;}
.y9_c00027{bottom:475.173333pt;}
.y8_c00027{bottom:498.506667pt;}
.y7_c00027{bottom:520.773333pt;}
.y6_c00027{bottom:565.706667pt;}
.y5_c00027{bottom:608.373333pt;}
.y4_c00027{bottom:623.973333pt;}
.y3_c00027{bottom:640.106667pt;}
.y2_c00027{bottom:655.706667pt;}
.y1_c00027{bottom:673.173333pt;}
.hc_c00027{height:11.733399pt;}
.hd_c00027{height:38.937500pt;}
.h6_c00027{height:49.937500pt;}
.h5_c00027{height:54.020833pt;}
.h4_c00027{height:57.397135pt;}
.hb_c00027{height:60.195312pt;}
.h3_c00027{height:60.773438pt;}
.h8_c00027{height:61.812500pt;}
.h9_c00027{height:70.902344pt;}
.h7_c00027{height:71.785156pt;}
.h2_c00027{height:77.654948pt;}
.ha_c00027{height:84.407552pt;}
.h0_c00027{height:713.733333pt;}
.h1_c00027{height:714.000000pt;}
.w2_c00027{width:93.222667pt;}
.w0_c00027{width:501.133333pt;}
.w1_c00027{width:501.333333pt;}
.x0_c00027{left:0.000000pt;}
.x11_c00027{left:35.733333pt;}
.x13_c00027{left:36.666667pt;}
.x5_c00027{left:38.666667pt;}
.x12_c00027{left:48.933333pt;}
.xd_c00027{left:51.333333pt;}
.x3_c00027{left:53.066667pt;}
.xe_c00027{left:57.333333pt;}
.xb_c00027{left:93.066667pt;}
.xc_c00027{left:94.000000pt;}
.xa_c00027{left:95.066667pt;}
.x7_c00027{left:97.200000pt;}
.x4_c00027{left:99.200000pt;}
.x2_c00027{left:106.133333pt;}
.x8_c00027{left:109.600000pt;}
.x1_c00027{left:111.600000pt;}
.x10_c00027{left:115.466667pt;}
.x9_c00027{left:120.266667pt;}
.xf_c00027{left:131.466667pt;}
.x6_c00027{left:132.400000pt;}
.x14_c00027{left:207.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_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_c6d58ef43f307fe9940c2abc.woff2')format("woff");}.ff1_c00028{font-family:ff1_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:ff2_c00028;src:url('chunks/assets/font_fe61bcced5d082341e5577be.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_8a2412c5253f307c936e7f54.woff2')format("woff");}.ff3_c00028{font-family:ff3_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:ff4_c00028;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00028{font-family:ff4_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:ff5_c00028;src:url('chunks/assets/font_3884d3848c8eca0e175226cf.woff2')format("woff");}.ff5_c00028{font-family:ff5_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:ff6_c00028;src:url('chunks/assets/font_90b3c413912e22f4942d46f1.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00028{font-family:ff7_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;}
.ls9_c00028{letter-spacing:0.000000px;}
.ls7_c00028{letter-spacing:2.550000px;}
.ls1_c00028{letter-spacing:3.000000px;}
.ls5_c00028{letter-spacing:6.218400px;}
.ls2_c00028{letter-spacing:6.282000px;}
.lsa_c00028{letter-spacing:9.000000px;}
.ls3_c00028{letter-spacing:13.072800px;}
.lsb_c00028{letter-spacing:15.000000px;}
.ls6_c00028{letter-spacing:17.223000px;}
.ls8_c00028{letter-spacing:20.553000px;}
.ls4_c00028{letter-spacing:28.218000px;}
.ls0_c00028{letter-spacing:514.350000px;}
.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;}
}
.ws5_c00028{word-spacing:-31.500000px;}
.ws0_c00028{word-spacing:-23.460000px;}
.ws3_c00028{word-spacing:-20.250000px;}
.ws6_c00028{word-spacing:-19.629000px;}
.ws1_c00028{word-spacing:-17.250000px;}
.ws4_c00028{word-spacing:-3.927000px;}
.ws2_c00028{word-spacing:-0.069000px;}
.ws7_c00028{word-spacing:0.000000px;}
._24_c00028{margin-left:-21.321000px;}
._23_c00028{margin-left:-18.000000px;}
._1f_c00028{margin-left:-15.387000px;}
._1d_c00028{margin-left:-12.903000px;}
._2_c00028{margin-left:-11.316000px;}
._13_c00028{margin-left:-10.143000px;}
._20_c00028{margin-left:-8.466000px;}
._f_c00028{margin-left:-7.383000px;}
._10_c00028{margin-left:-5.484000px;}
._e_c00028{margin-left:-3.933000px;}
._6_c00028{margin-left:-2.622000px;}
._11_c00028{margin-left:-1.557000px;}
._3_c00028{width:1.242000px;}
._1_c00028{width:2.415000px;}
._0_c00028{width:4.209000px;}
._5_c00028{width:5.451000px;}
._c_c00028{width:6.795000px;}
._4_c00028{width:8.040000px;}
._a_c00028{width:9.072000px;}
._14_c00028{width:11.211000px;}
._16_c00028{width:12.765000px;}
._b_c00028{width:13.974000px;}
._7_c00028{width:15.111000px;}
._15_c00028{width:16.767000px;}
._8_c00028{width:18.699000px;}
._1c_c00028{width:20.283000px;}
._12_c00028{width:21.840000px;}
._18_c00028{width:22.977000px;}
._19_c00028{width:25.185000px;}
._25_c00028{width:27.015000px;}
._17_c00028{width:28.338000px;}
._9_c00028{width:30.339000px;}
._1b_c00028{width:32.223000px;}
._1a_c00028{width:34.914000px;}
._22_c00028{width:36.738000px;}
._26_c00028{width:38.094000px;}
._1e_c00028{width:59.733000px;}
._d_c00028{width:93.702000px;}
._21_c00028{width:98.001000px;}
.fc2_c00028{color:transparent;}
.fc1_c00028{color:rgb(128,128,128);}
.fc0_c00028{color:rgb(0,0,0);}
.fs5_c00028{font-size:48.000000px;}
.fs2_c00028{font-size:55.200000px;}
.fs1_c00028{font-size:60.000000px;}
.fs3_c00028{font-size:66.000000px;}
.fs0_c00028{font-size:69.000000px;}
.fs4_c00028{font-size:75.000000px;}
.y0_c00028{bottom:0.000000px;}
.y1d_c00028{bottom:3.105000px;}
.y1c_c00028{bottom:7.228357px;}
.y1b_c00028{bottom:49.380000px;}
.y1a_c00028{bottom:73.230000px;}
.y19_c00028{bottom:100.230000px;}
.y18_c00028{bottom:124.530000px;}
.y17_c00028{bottom:148.830000px;}
.y16_c00028{bottom:173.430000px;}
.y15_c00028{bottom:197.880000px;}
.y14_c00028{bottom:224.130000px;}
.y13_c00028{bottom:247.830000px;}
.y12_c00028{bottom:273.480000px;}
.y11_c00028{bottom:298.380000px;}
.y10_c00028{bottom:321.030000px;}
.yf_c00028{bottom:375.030000px;}
.ye_c00028{bottom:398.880000px;}
.yd_c00028{bottom:447.930000px;}
.yc_c00028{bottom:497.580000px;}
.yb_c00028{bottom:521.880000px;}
.ya_c00028{bottom:547.530000px;}
.y9_c00028{bottom:571.830000px;}
.y8_c00028{bottom:597.030000px;}
.y7_c00028{bottom:622.080000px;}
.y6_c00028{bottom:647.280000px;}
.y5_c00028{bottom:671.580000px;}
.y4_c00028{bottom:696.330000px;}
.y3_c00028{bottom:721.530000px;}
.y2_c00028{bottom:747.180000px;}
.y1_c00028{bottom:771.630000px;}
.h8_c00028{height:13.200074px;}
.h9_c00028{height:43.804688px;}
.h4_c00028{height:67.686035px;}
.h3_c00028{height:69.539062px;}
.h2_c00028{height:75.966797px;}
.h5_c00028{height:80.758301px;}
.h6_c00028{height:87.361816px;}
.h7_c00028{height:94.958496px;}
.h0_c00028{height:808.950000px;}
.h1_c00028{height:809.250000px;}
.w2_c00028{width:104.875500px;}
.w0_c00028{width:542.175000px;}
.w1_c00028{width:542.250000px;}
.x0_c00028{left:0.000000px;}
.xa_c00028{left:22.200000px;}
.x8_c00028{left:23.550000px;}
.x6_c00028{left:24.900000px;}
.x3_c00028{left:26.100000px;}
.x4_c00028{left:27.300000px;}
.x5_c00028{left:28.650000px;}
.x9_c00028{left:48.150000px;}
.x2_c00028{left:49.950000px;}
.x7_c00028{left:70.200000px;}
.x1_c00028{left:184.200000px;}
.xc_c00028{left:222.901749px;}
.xb_c00028{left:436.800000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls9_c00028{letter-spacing:0.000000pt;}
.ls7_c00028{letter-spacing:2.266667pt;}
.ls1_c00028{letter-spacing:2.666667pt;}
.ls5_c00028{letter-spacing:5.527467pt;}
.ls2_c00028{letter-spacing:5.584000pt;}
.lsa_c00028{letter-spacing:8.000000pt;}
.ls3_c00028{letter-spacing:11.620267pt;}
.lsb_c00028{letter-spacing:13.333333pt;}
.ls6_c00028{letter-spacing:15.309333pt;}
.ls8_c00028{letter-spacing:18.269333pt;}
.ls4_c00028{letter-spacing:25.082667pt;}
.ls0_c00028{letter-spacing:457.200000pt;}
.ws5_c00028{word-spacing:-28.000000pt;}
.ws0_c00028{word-spacing:-20.853333pt;}
.ws3_c00028{word-spacing:-18.000000pt;}
.ws6_c00028{word-spacing:-17.448000pt;}
.ws1_c00028{word-spacing:-15.333333pt;}
.ws4_c00028{word-spacing:-3.490667pt;}
.ws2_c00028{word-spacing:-0.061333pt;}
.ws7_c00028{word-spacing:0.000000pt;}
._24_c00028{margin-left:-18.952000pt;}
._23_c00028{margin-left:-16.000000pt;}
._1f_c00028{margin-left:-13.677333pt;}
._1d_c00028{margin-left:-11.469333pt;}
._2_c00028{margin-left:-10.058667pt;}
._13_c00028{margin-left:-9.016000pt;}
._20_c00028{margin-left:-7.525333pt;}
._f_c00028{margin-left:-6.562667pt;}
._10_c00028{margin-left:-4.874667pt;}
._e_c00028{margin-left:-3.496000pt;}
._6_c00028{margin-left:-2.330667pt;}
._11_c00028{margin-left:-1.384000pt;}
._3_c00028{width:1.104000pt;}
._1_c00028{width:2.146667pt;}
._0_c00028{width:3.741333pt;}
._5_c00028{width:4.845333pt;}
._c_c00028{width:6.040000pt;}
._4_c00028{width:7.146667pt;}
._a_c00028{width:8.064000pt;}
._14_c00028{width:9.965333pt;}
._16_c00028{width:11.346667pt;}
._b_c00028{width:12.421333pt;}
._7_c00028{width:13.432000pt;}
._15_c00028{width:14.904000pt;}
._8_c00028{width:16.621333pt;}
._1c_c00028{width:18.029333pt;}
._12_c00028{width:19.413333pt;}
._18_c00028{width:20.424000pt;}
._19_c00028{width:22.386667pt;}
._25_c00028{width:24.013333pt;}
._17_c00028{width:25.189333pt;}
._9_c00028{width:26.968000pt;}
._1b_c00028{width:28.642667pt;}
._1a_c00028{width:31.034667pt;}
._22_c00028{width:32.656000pt;}
._26_c00028{width:33.861333pt;}
._1e_c00028{width:53.096000pt;}
._d_c00028{width:83.290667pt;}
._21_c00028{width:87.112000pt;}
.fs5_c00028{font-size:42.666667pt;}
.fs2_c00028{font-size:49.066667pt;}
.fs1_c00028{font-size:53.333333pt;}
.fs3_c00028{font-size:58.666667pt;}
.fs0_c00028{font-size:61.333333pt;}
.fs4_c00028{font-size:66.666667pt;}
.y0_c00028{bottom:0.000000pt;}
.y1d_c00028{bottom:2.760000pt;}
.y1c_c00028{bottom:6.425206pt;}
.y1b_c00028{bottom:43.893333pt;}
.y1a_c00028{bottom:65.093333pt;}
.y19_c00028{bottom:89.093333pt;}
.y18_c00028{bottom:110.693333pt;}
.y17_c00028{bottom:132.293333pt;}
.y16_c00028{bottom:154.160000pt;}
.y15_c00028{bottom:175.893333pt;}
.y14_c00028{bottom:199.226667pt;}
.y13_c00028{bottom:220.293333pt;}
.y12_c00028{bottom:243.093333pt;}
.y11_c00028{bottom:265.226667pt;}
.y10_c00028{bottom:285.360000pt;}
.yf_c00028{bottom:333.360000pt;}
.ye_c00028{bottom:354.560000pt;}
.yd_c00028{bottom:398.160000pt;}
.yc_c00028{bottom:442.293333pt;}
.yb_c00028{bottom:463.893333pt;}
.ya_c00028{bottom:486.693333pt;}
.y9_c00028{bottom:508.293333pt;}
.y8_c00028{bottom:530.693333pt;}
.y7_c00028{bottom:552.960000pt;}
.y6_c00028{bottom:575.360000pt;}
.y5_c00028{bottom:596.960000pt;}
.y4_c00028{bottom:618.960000pt;}
.y3_c00028{bottom:641.360000pt;}
.y2_c00028{bottom:664.160000pt;}
.y1_c00028{bottom:685.893333pt;}
.h8_c00028{height:11.733399pt;}
.h9_c00028{height:38.937500pt;}
.h4_c00028{height:60.165365pt;}
.h3_c00028{height:61.812500pt;}
.h2_c00028{height:67.526042pt;}
.h5_c00028{height:71.785156pt;}
.h6_c00028{height:77.654948pt;}
.h7_c00028{height:84.407552pt;}
.h0_c00028{height:719.066667pt;}
.h1_c00028{height:719.333333pt;}
.w2_c00028{width:93.222667pt;}
.w0_c00028{width:481.933333pt;}
.w1_c00028{width:482.000000pt;}
.x0_c00028{left:0.000000pt;}
.xa_c00028{left:19.733333pt;}
.x8_c00028{left:20.933333pt;}
.x6_c00028{left:22.133333pt;}
.x3_c00028{left:23.200000pt;}
.x4_c00028{left:24.266667pt;}
.x5_c00028{left:25.466667pt;}
.x9_c00028{left:42.800000pt;}
.x2_c00028{left:44.400000pt;}
.x7_c00028{left:62.400000pt;}
.x1_c00028{left:163.733333pt;}
.xc_c00028{left:198.134888pt;}
.xb_c00028{left:388.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_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_7321cdd2ab2153b096c16b0b.woff2')format("woff");}.ff1_c00029{font-family:ff1_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:ff2_c00029;src:url('chunks/assets/font_406f1c2587eafb0d2854dd9c.woff2')format("woff");}.ff2_c00029{font-family:ff2_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:ff3_c00029;src:url('chunks/assets/font_c44bdfd5fa25e72816ac0739.woff2')format("woff");}.ff3_c00029{font-family:ff3_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:ff4_c00029;src:url('chunks/assets/font_75d502e2afbc1217f75b18f4.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.311035;font-style:normal;font-weight:normal;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_8c9b6ea302682fb654edd0e3.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;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_c00029;src:url('chunks/assets/font_72039e62b647c3cfcca6f535.woff2')format("woff");}.ff6_c00029{font-family:ff6_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:ff7_c00029;src:url('chunks/assets/font_efd7637e814e821ab430fc04.woff2')format("woff");}.ff7_c00029{font-family:ff7_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:ff8_c00029;src:url('chunks/assets/font_55f11e1762099815fc0a6a26.woff2')format("woff");}.ff8_c00029{font-family:ff8_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:ff9_c00029;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00029{font-family:ff9_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;}
.ls6_c00029{letter-spacing:-3.000000px;}
.ls5_c00029{letter-spacing:0.000000px;}
.ls3_c00029{letter-spacing:0.675000px;}
.ls1_c00029{letter-spacing:1.800000px;}
.ls4_c00029{letter-spacing:3.000000px;}
.ls0_c00029{letter-spacing:8.472000px;}
.ls7_c00029{letter-spacing:9.000000px;}
.ls2_c00029{letter-spacing:21.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;}
}
.ws0_c00029{word-spacing:-56.235000px;}
.ws8_c00029{word-spacing:-51.900000px;}
.wsc_c00029{word-spacing:-33.825000px;}
.wsa_c00029{word-spacing:-33.000000px;}
.ws3_c00029{word-spacing:-19.629000px;}
.wsd_c00029{word-spacing:-18.075000px;}
.ws2_c00029{word-spacing:-16.629000px;}
.ws7_c00029{word-spacing:-1.122000px;}
.ws1_c00029{word-spacing:-1.035000px;}
.wsb_c00029{word-spacing:-0.864000px;}
.wse_c00029{word-spacing:0.000000px;}
.ws9_c00029{word-spacing:2.310000px;}
.ws4_c00029{word-spacing:2.454000px;}
.ws6_c00029{word-spacing:2.868000px;}
.ws5_c00029{word-spacing:6.534000px;}
._2e_c00029{margin-left:-25.488000px;}
._19_c00029{margin-left:-23.856000px;}
._2c_c00029{margin-left:-22.182000px;}
._2d_c00029{margin-left:-20.211000px;}
._18_c00029{margin-left:-18.528000px;}
._21_c00029{margin-left:-17.268000px;}
._17_c00029{margin-left:-15.282000px;}
._2b_c00029{margin-left:-13.818000px;}
._12_c00029{margin-left:-12.144000px;}
._14_c00029{margin-left:-10.764000px;}
._0_c00029{margin-left:-9.177000px;}
._16_c00029{margin-left:-7.071000px;}
._13_c00029{margin-left:-5.796000px;}
._1_c00029{margin-left:-4.623000px;}
._15_c00029{margin-left:-3.621000px;}
._7_c00029{margin-left:-2.418000px;}
._5_c00029{margin-left:-1.242000px;}
._6_c00029{width:1.560000px;}
._3_c00029{width:2.808000px;}
._20_c00029{width:3.813000px;}
._a_c00029{width:4.899000px;}
._9_c00029{width:6.012000px;}
._2_c00029{width:7.236000px;}
._10_c00029{width:8.979000px;}
._8_c00029{width:10.665000px;}
._b_c00029{width:12.309000px;}
._e_c00029{width:13.773000px;}
._c_c00029{width:14.802000px;}
._1c_c00029{width:16.446000px;}
._11_c00029{width:18.363000px;}
._f_c00029{width:20.313000px;}
._27_c00029{width:21.645000px;}
._23_c00029{width:22.944000px;}
._1e_c00029{width:24.375000px;}
._22_c00029{width:26.157000px;}
._2a_c00029{width:28.143000px;}
._29_c00029{width:29.634000px;}
._28_c00029{width:31.206000px;}
._d_c00029{width:32.280000px;}
._24_c00029{width:38.640000px;}
._25_c00029{width:46.239000px;}
._1d_c00029{width:64.206000px;}
._1f_c00029{width:97.914000px;}
._1a_c00029{width:134.574000px;}
._26_c00029{width:156.903000px;}
._1b_c00029{width:171.870000px;}
._4_c00029{width:367.386000px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(128,128,128);}
.fc0_c00029{color:rgb(0,0,0);}
.fs7_c00029{font-size:48.000000px;}
.fs1_c00029{font-size:54.000000px;}
.fs2_c00029{font-size:55.200000px;}
.fs3_c00029{font-size:66.000000px;}
.fs0_c00029{font-size:69.000000px;}
.fs6_c00029{font-size:75.000000px;}
.fs5_c00029{font-size:96.000000px;}
.fs4_c00029{font-size:132.000000px;}
.y0_c00029{bottom:0.000000px;}
.y1a_c00029{bottom:3.105000px;}
.y19_c00029{bottom:7.228355px;}
.y18_c00029{bottom:55.335000px;}
.y17_c00029{bottom:80.235000px;}
.y16_c00029{bottom:105.885000px;}
.y15_c00029{bottom:156.585000px;}
.y14_c00029{bottom:182.235000px;}
.y13_c00029{bottom:207.435000px;}
.y12_c00029{bottom:257.535000px;}
.y11_c00029{bottom:306.735000px;}
.y10_c00029{bottom:332.085000px;}
.yf_c00029{bottom:356.385000px;}
.ye_c00029{bottom:380.235000px;}
.yd_c00029{bottom:405.885000px;}
.yc_c00029{bottom:430.635000px;}
.yb_c00029{bottom:455.535000px;}
.ya_c00029{bottom:480.885000px;}
.y9_c00029{bottom:505.785000px;}
.y8_c00029{bottom:530.085000px;}
.y7_c00029{bottom:554.085000px;}
.y6_c00029{bottom:579.735000px;}
.y5_c00029{bottom:629.985000px;}
.y4_c00029{bottom:654.735000px;}
.y3_c00029{bottom:704.385000px;}
.y2_c00029{bottom:754.635000px;}
.y1_c00029{bottom:779.985000px;}
.h7_c00029{height:13.200074px;}
.h8_c00029{height:43.804688px;}
.h3_c00029{height:80.758301px;}
.h2_c00029{height:87.361816px;}
.h6_c00029{height:94.958496px;}
.h5_c00029{height:121.546875px;}
.h4_c00029{height:143.088000px;}
.h0_c00029{height:810.525000px;}
.h1_c00029{height:810.750000px;}
.w2_c00029{width:104.875500px;}
.w0_c00029{width:569.175000px;}
.w1_c00029{width:569.250000px;}
.x0_c00029{left:0.000000px;}
.xa_c00029{left:55.050000px;}
.x6_c00029{left:59.100000px;}
.xb_c00029{left:70.950000px;}
.x7_c00029{left:72.600000px;}
.x5_c00029{left:88.050000px;}
.x9_c00029{left:120.150000px;}
.x8_c00029{left:121.500000px;}
.x2_c00029{left:124.200000px;}
.x1_c00029{left:138.900000px;}
.xf_c00029{left:142.800000px;}
.xc_c00029{left:161.700000px;}
.x3_c00029{left:169.350000px;}
.xd_c00029{left:179.850000px;}
.x4_c00029{left:186.000000px;}
.x11_c00029{left:236.401749px;}
.xe_c00029{left:292.950000px;}
.x10_c00029{left:481.350000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls6_c00029{letter-spacing:-2.666667pt;}
.ls5_c00029{letter-spacing:0.000000pt;}
.ls3_c00029{letter-spacing:0.600000pt;}
.ls1_c00029{letter-spacing:1.600000pt;}
.ls4_c00029{letter-spacing:2.666667pt;}
.ls0_c00029{letter-spacing:7.530667pt;}
.ls7_c00029{letter-spacing:8.000000pt;}
.ls2_c00029{letter-spacing:18.666667pt;}
.ws0_c00029{word-spacing:-49.986667pt;}
.ws8_c00029{word-spacing:-46.133333pt;}
.wsc_c00029{word-spacing:-30.066667pt;}
.wsa_c00029{word-spacing:-29.333333pt;}
.ws3_c00029{word-spacing:-17.448000pt;}
.wsd_c00029{word-spacing:-16.066667pt;}
.ws2_c00029{word-spacing:-14.781333pt;}
.ws7_c00029{word-spacing:-0.997333pt;}
.ws1_c00029{word-spacing:-0.920000pt;}
.wsb_c00029{word-spacing:-0.768000pt;}
.wse_c00029{word-spacing:0.000000pt;}
.ws9_c00029{word-spacing:2.053333pt;}
.ws4_c00029{word-spacing:2.181333pt;}
.ws6_c00029{word-spacing:2.549333pt;}
.ws5_c00029{word-spacing:5.808000pt;}
._2e_c00029{margin-left:-22.656000pt;}
._19_c00029{margin-left:-21.205333pt;}
._2c_c00029{margin-left:-19.717333pt;}
._2d_c00029{margin-left:-17.965333pt;}
._18_c00029{margin-left:-16.469333pt;}
._21_c00029{margin-left:-15.349333pt;}
._17_c00029{margin-left:-13.584000pt;}
._2b_c00029{margin-left:-12.282667pt;}
._12_c00029{margin-left:-10.794667pt;}
._14_c00029{margin-left:-9.568000pt;}
._0_c00029{margin-left:-8.157333pt;}
._16_c00029{margin-left:-6.285333pt;}
._13_c00029{margin-left:-5.152000pt;}
._1_c00029{margin-left:-4.109333pt;}
._15_c00029{margin-left:-3.218667pt;}
._7_c00029{margin-left:-2.149333pt;}
._5_c00029{margin-left:-1.104000pt;}
._6_c00029{width:1.386667pt;}
._3_c00029{width:2.496000pt;}
._20_c00029{width:3.389333pt;}
._a_c00029{width:4.354667pt;}
._9_c00029{width:5.344000pt;}
._2_c00029{width:6.432000pt;}
._10_c00029{width:7.981333pt;}
._8_c00029{width:9.480000pt;}
._b_c00029{width:10.941333pt;}
._e_c00029{width:12.242667pt;}
._c_c00029{width:13.157333pt;}
._1c_c00029{width:14.618667pt;}
._11_c00029{width:16.322667pt;}
._f_c00029{width:18.056000pt;}
._27_c00029{width:19.240000pt;}
._23_c00029{width:20.394667pt;}
._1e_c00029{width:21.666667pt;}
._22_c00029{width:23.250667pt;}
._2a_c00029{width:25.016000pt;}
._29_c00029{width:26.341333pt;}
._28_c00029{width:27.738667pt;}
._d_c00029{width:28.693333pt;}
._24_c00029{width:34.346667pt;}
._25_c00029{width:41.101333pt;}
._1d_c00029{width:57.072000pt;}
._1f_c00029{width:87.034667pt;}
._1a_c00029{width:119.621333pt;}
._26_c00029{width:139.469333pt;}
._1b_c00029{width:152.773333pt;}
._4_c00029{width:326.565333pt;}
.fs7_c00029{font-size:42.666667pt;}
.fs1_c00029{font-size:48.000000pt;}
.fs2_c00029{font-size:49.066667pt;}
.fs3_c00029{font-size:58.666667pt;}
.fs0_c00029{font-size:61.333333pt;}
.fs6_c00029{font-size:66.666667pt;}
.fs5_c00029{font-size:85.333333pt;}
.fs4_c00029{font-size:117.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y1a_c00029{bottom:2.760000pt;}
.y19_c00029{bottom:6.425204pt;}
.y18_c00029{bottom:49.186667pt;}
.y17_c00029{bottom:71.320000pt;}
.y16_c00029{bottom:94.120000pt;}
.y15_c00029{bottom:139.186667pt;}
.y14_c00029{bottom:161.986667pt;}
.y13_c00029{bottom:184.386667pt;}
.y12_c00029{bottom:228.920000pt;}
.y11_c00029{bottom:272.653333pt;}
.y10_c00029{bottom:295.186667pt;}
.yf_c00029{bottom:316.786667pt;}
.ye_c00029{bottom:337.986667pt;}
.yd_c00029{bottom:360.786667pt;}
.yc_c00029{bottom:382.786667pt;}
.yb_c00029{bottom:404.920000pt;}
.ya_c00029{bottom:427.453333pt;}
.y9_c00029{bottom:449.586667pt;}
.y8_c00029{bottom:471.186667pt;}
.y7_c00029{bottom:492.520000pt;}
.y6_c00029{bottom:515.320000pt;}
.y5_c00029{bottom:559.986667pt;}
.y4_c00029{bottom:581.986667pt;}
.y3_c00029{bottom:626.120000pt;}
.y2_c00029{bottom:670.786667pt;}
.y1_c00029{bottom:693.320000pt;}
.h7_c00029{height:11.733399pt;}
.h8_c00029{height:38.937500pt;}
.h3_c00029{height:71.785156pt;}
.h2_c00029{height:77.654948pt;}
.h6_c00029{height:84.407552pt;}
.h5_c00029{height:108.041667pt;}
.h4_c00029{height:127.189333pt;}
.h0_c00029{height:720.466667pt;}
.h1_c00029{height:720.666667pt;}
.w2_c00029{width:93.222667pt;}
.w0_c00029{width:505.933333pt;}
.w1_c00029{width:506.000000pt;}
.x0_c00029{left:0.000000pt;}
.xa_c00029{left:48.933333pt;}
.x6_c00029{left:52.533333pt;}
.xb_c00029{left:63.066667pt;}
.x7_c00029{left:64.533333pt;}
.x5_c00029{left:78.266667pt;}
.x9_c00029{left:106.800000pt;}
.x8_c00029{left:108.000000pt;}
.x2_c00029{left:110.400000pt;}
.x1_c00029{left:123.466667pt;}
.xf_c00029{left:126.933333pt;}
.xc_c00029{left:143.733333pt;}
.x3_c00029{left:150.533333pt;}
.xd_c00029{left:159.866667pt;}
.x4_c00029{left:165.333333pt;}
.x11_c00029{left:210.134888pt;}
.xe_c00029{left:260.400000pt;}
.x10_c00029{left:427.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_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_cd1c6386b96bd3850822ed99.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_c73c069d3861b71dfbcb6edc.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00030{font-family:ff3_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:ff4_c00030;src:url('chunks/assets/font_76daae53a9ef17eb2e61eb10.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_1e6d6ea02ac0d79348e736b6.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00030;src:url('chunks/assets/font_62145dc7af734f4848eff329.woff2')format("woff");}.ff6_c00030{font-family:ff6_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00030;src:url('chunks/assets/font_35969ed6e0630f64ecf2342a.woff2')format("woff");}.ff7_c00030{font-family:ff7_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:ff8_c00030;src:url('chunks/assets/font_543cde16c3283876c48015e7.woff2')format("woff");}.ff8_c00030{font-family:ff8_c00030;line-height:1.311035;font-style:normal;font-weight: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_c00030;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00030{font-family:ff9_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;}
.ls9_c00030{letter-spacing:0.000000px;}
.ls1_c00030{letter-spacing:0.060000px;}
.ls0_c00030{letter-spacing:3.000000px;}
.ls4_c00030{letter-spacing:8.272800px;}
.ls5_c00030{letter-spacing:16.023000px;}
.ls2_c00030{letter-spacing:18.423000px;}
.ls6_c00030{letter-spacing:18.771000px;}
.ls3_c00030{letter-spacing:20.223000px;}
.ls8_c00030{letter-spacing:21.206400px;}
.ls7_c00030{letter-spacing:21.423000px;}
.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;}
}
.ws6_c00030{word-spacing:-20.250000px;}
.ws1_c00030{word-spacing:-17.250000px;}
.ws5_c00030{word-spacing:-16.800000px;}
.ws0_c00030{word-spacing:-16.629000px;}
.ws3_c00030{word-spacing:-3.864000px;}
.ws7_c00030{word-spacing:0.000000px;}
.ws2_c00030{word-spacing:1.656000px;}
.ws4_c00030{word-spacing:9.039000px;}
._24_c00030{margin-left:-19.905000px;}
._20_c00030{margin-left:-17.043000px;}
._1f_c00030{margin-left:-15.501000px;}
._15_c00030{margin-left:-12.510000px;}
._5_c00030{margin-left:-10.341000px;}
._22_c00030{margin-left:-9.225000px;}
._13_c00030{margin-left:-7.509000px;}
._21_c00030{margin-left:-6.222000px;}
._3_c00030{margin-left:-5.130000px;}
._6_c00030{margin-left:-3.864000px;}
._8_c00030{margin-left:-2.598000px;}
._7_c00030{margin-left:-1.035000px;}
._4_c00030{width:1.242000px;}
._1_c00030{width:2.790000px;}
._c_c00030{width:4.455000px;}
._0_c00030{width:6.300000px;}
._e_c00030{width:7.707000px;}
._2_c00030{width:9.495000px;}
._d_c00030{width:10.959000px;}
._16_c00030{width:12.960000px;}
._10_c00030{width:14.433000px;}
._b_c00030{width:15.525000px;}
._17_c00030{width:16.995000px;}
._a_c00030{width:18.354000px;}
._1e_c00030{width:19.389000px;}
._1d_c00030{width:20.631000px;}
._19_c00030{width:22.356000px;}
._18_c00030{width:23.634000px;}
._23_c00030{width:26.492400px;}
._1a_c00030{width:27.744000px;}
._1b_c00030{width:30.630000px;}
._12_c00030{width:33.879000px;}
._14_c00030{width:34.953000px;}
._1c_c00030{width:37.944000px;}
._26_c00030{width:78.258000px;}
._11_c00030{width:98.862000px;}
._25_c00030{width:101.160000px;}
._f_c00030{width:170.382000px;}
._9_c00030{width:506.736000px;}
.fc2_c00030{color:transparent;}
.fc1_c00030{color:rgb(128,128,128);}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:45.000000px;}
.fs5_c00030{font-size:48.000000px;}
.fs3_c00030{font-size:55.200000px;}
.fs2_c00030{font-size:60.000000px;}
.fs1_c00030{font-size:69.000000px;}
.fs4_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y1f_c00030{bottom:3.105000px;}
.y1e_c00030{bottom:7.228369px;}
.y1d_c00030{bottom:62.370000px;}
.y1c_c00030{bottom:88.020000px;}
.y1b_c00030{bottom:115.020000px;}
.y1a_c00030{bottom:139.020000px;}
.y19_c00030{bottom:163.920000px;}
.y18_c00030{bottom:188.670000px;}
.y17_c00030{bottom:213.270000px;}
.y16_c00030{bottom:238.620000px;}
.y15_c00030{bottom:264.270000px;}
.y14_c00030{bottom:289.470000px;}
.y13_c00030{bottom:314.220000px;}
.y12_c00030{bottom:339.420000px;}
.y11_c00030{bottom:388.170000px;}
.y10_c00030{bottom:438.720000px;}
.yf_c00030{bottom:463.770000px;}
.ye_c00030{bottom:488.370000px;}
.y1_c00030{bottom:505.170000px;}
.yd_c00030{bottom:512.670000px;}
.yc_c00030{bottom:536.970000px;}
.yb_c00030{bottom:561.570000px;}
.ya_c00030{bottom:586.920000px;}
.y9_c00030{bottom:611.520000px;}
.y8_c00030{bottom:636.570000px;}
.y7_c00030{bottom:661.770000px;}
.y6_c00030{bottom:686.370000px;}
.y5_c00030{bottom:711.420000px;}
.y4_c00030{bottom:736.320000px;}
.y3_c00030{bottom:761.370000px;}
.y2_c00030{bottom:786.270000px;}
.h8_c00030{height:13.200073px;}
.h9_c00030{height:43.804688px;}
.h2_c00030{height:52.668457px;}
.h4_c00030{height:69.539062px;}
.h6_c00030{height:75.966797px;}
.h3_c00030{height:80.758301px;}
.h5_c00030{height:87.361816px;}
.h7_c00030{height:91.160156px;}
.h1_c00030{height:819.000000px;}
.h0_c00030{height:819.150000px;}
.w2_c00030{width:104.875500px;}
.w1_c00030{width:549.000000px;}
.w0_c00030{width:549.150000px;}
.x0_c00030{left:0.000000px;}
.x3_c00030{left:20.250000px;}
.x4_c00030{left:21.600000px;}
.x5_c00030{left:23.250000px;}
.x6_c00030{left:24.300000px;}
.x7_c00030{left:25.350000px;}
.x9_c00030{left:28.650000px;}
.xe_c00030{left:31.500000px;}
.xf_c00030{left:32.700000px;}
.x10_c00030{left:33.750000px;}
.xa_c00030{left:55.800000px;}
.x8_c00030{left:68.850000px;}
.xb_c00030{left:79.950000px;}
.xc_c00030{left:165.150000px;}
.x2_c00030{left:177.450000px;}
.x12_c00030{left:226.389267px;}
.xd_c00030{left:229.200000px;}
.x11_c00030{left:435.000000px;}
.x1_c00030{left:477.600000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls9_c00030{letter-spacing:0.000000pt;}
.ls1_c00030{letter-spacing:0.053333pt;}
.ls0_c00030{letter-spacing:2.666667pt;}
.ls4_c00030{letter-spacing:7.353600pt;}
.ls5_c00030{letter-spacing:14.242667pt;}
.ls2_c00030{letter-spacing:16.376000pt;}
.ls6_c00030{letter-spacing:16.685333pt;}
.ls3_c00030{letter-spacing:17.976000pt;}
.ls8_c00030{letter-spacing:18.850133pt;}
.ls7_c00030{letter-spacing:19.042667pt;}
.ws6_c00030{word-spacing:-18.000000pt;}
.ws1_c00030{word-spacing:-15.333333pt;}
.ws5_c00030{word-spacing:-14.933333pt;}
.ws0_c00030{word-spacing:-14.781333pt;}
.ws3_c00030{word-spacing:-3.434667pt;}
.ws7_c00030{word-spacing:0.000000pt;}
.ws2_c00030{word-spacing:1.472000pt;}
.ws4_c00030{word-spacing:8.034667pt;}
._24_c00030{margin-left:-17.693333pt;}
._20_c00030{margin-left:-15.149333pt;}
._1f_c00030{margin-left:-13.778667pt;}
._15_c00030{margin-left:-11.120000pt;}
._5_c00030{margin-left:-9.192000pt;}
._22_c00030{margin-left:-8.200000pt;}
._13_c00030{margin-left:-6.674667pt;}
._21_c00030{margin-left:-5.530667pt;}
._3_c00030{margin-left:-4.560000pt;}
._6_c00030{margin-left:-3.434667pt;}
._8_c00030{margin-left:-2.309333pt;}
._7_c00030{margin-left:-0.920000pt;}
._4_c00030{width:1.104000pt;}
._1_c00030{width:2.480000pt;}
._c_c00030{width:3.960000pt;}
._0_c00030{width:5.600000pt;}
._e_c00030{width:6.850667pt;}
._2_c00030{width:8.440000pt;}
._d_c00030{width:9.741333pt;}
._16_c00030{width:11.520000pt;}
._10_c00030{width:12.829333pt;}
._b_c00030{width:13.800000pt;}
._17_c00030{width:15.106667pt;}
._a_c00030{width:16.314667pt;}
._1e_c00030{width:17.234667pt;}
._1d_c00030{width:18.338667pt;}
._19_c00030{width:19.872000pt;}
._18_c00030{width:21.008000pt;}
._23_c00030{width:23.548800pt;}
._1a_c00030{width:24.661333pt;}
._1b_c00030{width:27.226667pt;}
._12_c00030{width:30.114667pt;}
._14_c00030{width:31.069333pt;}
._1c_c00030{width:33.728000pt;}
._26_c00030{width:69.562667pt;}
._11_c00030{width:87.877333pt;}
._25_c00030{width:89.920000pt;}
._f_c00030{width:151.450667pt;}
._9_c00030{width:450.432000pt;}
.fs0_c00030{font-size:40.000000pt;}
.fs5_c00030{font-size:42.666667pt;}
.fs3_c00030{font-size:49.066667pt;}
.fs2_c00030{font-size:53.333333pt;}
.fs1_c00030{font-size:61.333333pt;}
.fs4_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y1f_c00030{bottom:2.760000pt;}
.y1e_c00030{bottom:6.425217pt;}
.y1d_c00030{bottom:55.440000pt;}
.y1c_c00030{bottom:78.240000pt;}
.y1b_c00030{bottom:102.240000pt;}
.y1a_c00030{bottom:123.573333pt;}
.y19_c00030{bottom:145.706667pt;}
.y18_c00030{bottom:167.706667pt;}
.y17_c00030{bottom:189.573333pt;}
.y16_c00030{bottom:212.106667pt;}
.y15_c00030{bottom:234.906667pt;}
.y14_c00030{bottom:257.306667pt;}
.y13_c00030{bottom:279.306667pt;}
.y12_c00030{bottom:301.706667pt;}
.y11_c00030{bottom:345.040000pt;}
.y10_c00030{bottom:389.973333pt;}
.yf_c00030{bottom:412.240000pt;}
.ye_c00030{bottom:434.106667pt;}
.y1_c00030{bottom:449.040000pt;}
.yd_c00030{bottom:455.706667pt;}
.yc_c00030{bottom:477.306667pt;}
.yb_c00030{bottom:499.173333pt;}
.ya_c00030{bottom:521.706667pt;}
.y9_c00030{bottom:543.573333pt;}
.y8_c00030{bottom:565.840000pt;}
.y7_c00030{bottom:588.240000pt;}
.y6_c00030{bottom:610.106667pt;}
.y5_c00030{bottom:632.373333pt;}
.y4_c00030{bottom:654.506667pt;}
.y3_c00030{bottom:676.773333pt;}
.y2_c00030{bottom:698.906667pt;}
.h8_c00030{height:11.733399pt;}
.h9_c00030{height:38.937500pt;}
.h2_c00030{height:46.816406pt;}
.h4_c00030{height:61.812500pt;}
.h6_c00030{height:67.526042pt;}
.h3_c00030{height:71.785156pt;}
.h5_c00030{height:77.654948pt;}
.h7_c00030{height:81.031250pt;}
.h1_c00030{height:728.000000pt;}
.h0_c00030{height:728.133333pt;}
.w2_c00030{width:93.222667pt;}
.w1_c00030{width:488.000000pt;}
.w0_c00030{width:488.133333pt;}
.x0_c00030{left:0.000000pt;}
.x3_c00030{left:18.000000pt;}
.x4_c00030{left:19.200000pt;}
.x5_c00030{left:20.666667pt;}
.x6_c00030{left:21.600000pt;}
.x7_c00030{left:22.533333pt;}
.x9_c00030{left:25.466667pt;}
.xe_c00030{left:28.000000pt;}
.xf_c00030{left:29.066667pt;}
.x10_c00030{left:30.000000pt;}
.xa_c00030{left:49.600000pt;}
.x8_c00030{left:61.200000pt;}
.xb_c00030{left:71.066667pt;}
.xc_c00030{left:146.800000pt;}
.x2_c00030{left:157.733333pt;}
.x12_c00030{left:201.234904pt;}
.xd_c00030{left:203.733333pt;}
.x11_c00030{left:386.666667pt;}
.x1_c00030{left:424.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_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_14823fb356df2a5a7ee727ab.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_1a8a41dd0988e847a7e70aff.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_45b576c3dfdeab092940f5c5.woff2')format("woff");}.ff3_c00031{font-family:ff3_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:ff4_c00031;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00031{font-family:ff4_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:ff5_c00031;src:url('chunks/assets/font_fdb1840732378b2fe4f90d49.woff2')format("woff");}.ff5_c00031{font-family:ff5_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:ff6_c00031;src:url('chunks/assets/font_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff6_c00031{font-family:ff6_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00031;src:url('chunks/assets/font_07dd6c754ff151b2006cdf05.woff2')format("woff");}.ff7_c00031{font-family:ff7_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00031;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00031{font-family:ff8_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:-101.400000px;}
.v0_c00031{vertical-align:0.000000px;}
.ls7_c00031{letter-spacing:0.000000px;}
.ls4_c00031{letter-spacing:1.800000px;}
.ls1_c00031{letter-spacing:3.000000px;}
.ls8_c00031{letter-spacing:9.000000px;}
.ls5_c00031{letter-spacing:15.750000px;}
.ls0_c00031{letter-spacing:22.530000px;}
.ls9_c00031{letter-spacing:27.000000px;}
.ls2_c00031{letter-spacing:36.771000px;}
.ls3_c00031{letter-spacing:40.371000px;}
.ls6_c00031{letter-spacing:45.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00031{word-spacing:-23.460000px;}
.ws5_c00031{word-spacing:-17.250000px;}
.ws2_c00031{word-spacing:-16.629000px;}
.ws6_c00031{word-spacing:-15.954000px;}
.ws4_c00031{word-spacing:-13.014000px;}
.ws3_c00031{word-spacing:-4.209000px;}
.ws7_c00031{word-spacing:0.000000px;}
.ws0_c00031{word-spacing:293.100000px;}
._3_c00031{margin-left:-59.754000px;}
._0_c00031{margin-left:-51.060000px;}
._4_c00031{margin-left:-48.576000px;}
._6_c00031{margin-left:-46.644000px;}
._2_c00031{margin-left:-44.229000px;}
._7_c00031{margin-left:-42.324000px;}
._5_c00031{margin-left:-39.261000px;}
._1_c00031{margin-left:-36.777000px;}
._27_c00031{margin-left:-18.360000px;}
._25_c00031{margin-left:-13.575000px;}
._29_c00031{margin-left:-11.694000px;}
._13_c00031{margin-left:-10.626000px;}
._12_c00031{margin-left:-8.661000px;}
._f_c00031{margin-left:-7.659000px;}
._15_c00031{margin-left:-6.417000px;}
._14_c00031{margin-left:-5.382000px;}
._11_c00031{margin-left:-3.519000px;}
._1c_c00031{margin-left:-2.493000px;}
._d_c00031{margin-left:-1.380000px;}
._8_c00031{width:1.587000px;}
._a_c00031{width:3.450000px;}
._9_c00031{width:5.244000px;}
._b_c00031{width:6.279000px;}
._28_c00031{width:7.347000px;}
._17_c00031{width:8.418000px;}
._19_c00031{width:9.729000px;}
._10_c00031{width:11.523000px;}
._1a_c00031{width:12.558000px;}
._c_c00031{width:14.559000px;}
._18_c00031{width:15.870000px;}
._e_c00031{width:17.457000px;}
._1b_c00031{width:18.768000px;}
._24_c00031{width:20.010000px;}
._1e_c00031{width:21.324000px;}
._20_c00031{width:22.872000px;}
._23_c00031{width:24.558000px;}
._2d_c00031{width:29.790000px;}
._2c_c00031{width:31.533000px;}
._26_c00031{width:32.811000px;}
._2a_c00031{width:34.224000px;}
._16_c00031{width:38.640000px;}
._1f_c00031{width:50.505000px;}
._21_c00031{width:94.902000px;}
._2f_c00031{width:98.199000px;}
._1d_c00031{width:123.786000px;}
._22_c00031{width:175.932000px;}
._2b_c00031{width:456.297000px;}
._2e_c00031{width:521.820000px;}
.fc2_c00031{color:transparent;}
.fc1_c00031{color:rgb(128,128,128);}
.fc0_c00031{color:rgb(0,0,0);}
.fs5_c00031{font-size:48.000000px;}
.fs3_c00031{font-size:51.000000px;}
.fs2_c00031{font-size:54.000000px;}
.fs1_c00031{font-size:60.000000px;}
.fs4_c00031{font-size:66.000000px;}
.fs0_c00031{font-size:69.000000px;}
.y0_c00031{bottom:0.000000px;}
.y21_c00031{bottom:3.105000px;}
.y20_c00031{bottom:7.228355px;}
.y1f_c00031{bottom:29.385000px;}
.y1e_c00031{bottom:46.185000px;}
.y1d_c00031{bottom:76.635000px;}
.y1c_c00031{bottom:108.585000px;}
.y1b_c00031{bottom:134.535000px;}
.y1a_c00031{bottom:158.985000px;}
.y19_c00031{bottom:183.585000px;}
.y18_c00031{bottom:209.835000px;}
.y17_c00031{bottom:234.135000px;}
.y16_c00031{bottom:259.185000px;}
.y15_c00031{bottom:285.435000px;}
.y14_c00031{bottom:309.135000px;}
.y13_c00031{bottom:333.735000px;}
.y12_c00031{bottom:352.635000px;}
.y11_c00031{bottom:358.785000px;}
.y10_c00031{bottom:383.385000px;}
.yf_c00031{bottom:433.635000px;}
.ye_c00031{bottom:458.985000px;}
.yd_c00031{bottom:485.685000px;}
.yc_c00031{bottom:509.235000px;}
.yb_c00031{bottom:533.535000px;}
.ya_c00031{bottom:558.585000px;}
.y9_c00031{bottom:583.185000px;}
.y8_c00031{bottom:608.085000px;}
.y7_c00031{bottom:632.085000px;}
.y6_c00031{bottom:657.435000px;}
.y5_c00031{bottom:683.085000px;}
.y4_c00031{bottom:708.285000px;}
.y3_c00031{bottom:733.635000px;}
.y2_c00031{bottom:758.385000px;}
.y1_c00031{bottom:783.885000px;}
.h9_c00031{height:13.200074px;}
.ha_c00031{height:43.804688px;}
.h8_c00031{height:64.571777px;}
.h7_c00031{height:67.686035px;}
.h6_c00031{height:68.370117px;}
.h3_c00031{height:69.539062px;}
.h4_c00031{height:75.966797px;}
.h5_c00031{height:80.758301px;}
.h2_c00031{height:87.361816px;}
.h0_c00031{height:818.625000px;}
.h1_c00031{height:819.000000px;}
.w2_c00031{width:104.875500px;}
.w0_c00031{width:562.125000px;}
.w1_c00031{width:562.500000px;}
.x0_c00031{left:0.000000px;}
.x11_c00031{left:24.600000px;}
.xf_c00031{left:25.950000px;}
.x8_c00031{left:27.450000px;}
.x5_c00031{left:29.250000px;}
.x3_c00031{left:32.100000px;}
.x7_c00031{left:44.550000px;}
.x4_c00031{left:54.600000px;}
.xd_c00031{left:59.400000px;}
.x10_c00031{left:90.450000px;}
.xe_c00031{left:91.800000px;}
.xc_c00031{left:92.850000px;}
.x9_c00031{left:94.200000px;}
.x6_c00031{left:95.550000px;}
.x2_c00031{left:96.750000px;}
.x1_c00031{left:109.050000px;}
.xa_c00031{left:117.900000px;}
.xb_c00031{left:171.750000px;}
.x14_c00031{left:232.876740px;}
.x12_c00031{left:235.950000px;}
.x13_c00031{left:513.000000px;}
@media print{
.v1_c00031{vertical-align:-90.133333pt;}
.v0_c00031{vertical-align:0.000000pt;}
.ls7_c00031{letter-spacing:0.000000pt;}
.ls4_c00031{letter-spacing:1.600000pt;}
.ls1_c00031{letter-spacing:2.666667pt;}
.ls8_c00031{letter-spacing:8.000000pt;}
.ls5_c00031{letter-spacing:14.000000pt;}
.ls0_c00031{letter-spacing:20.026667pt;}
.ls9_c00031{letter-spacing:24.000000pt;}
.ls2_c00031{letter-spacing:32.685333pt;}
.ls3_c00031{letter-spacing:35.885333pt;}
.ls6_c00031{letter-spacing:40.000000pt;}
.ws1_c00031{word-spacing:-20.853333pt;}
.ws5_c00031{word-spacing:-15.333333pt;}
.ws2_c00031{word-spacing:-14.781333pt;}
.ws6_c00031{word-spacing:-14.181333pt;}
.ws4_c00031{word-spacing:-11.568000pt;}
.ws3_c00031{word-spacing:-3.741333pt;}
.ws7_c00031{word-spacing:0.000000pt;}
.ws0_c00031{word-spacing:260.533333pt;}
._3_c00031{margin-left:-53.114667pt;}
._0_c00031{margin-left:-45.386667pt;}
._4_c00031{margin-left:-43.178667pt;}
._6_c00031{margin-left:-41.461333pt;}
._2_c00031{margin-left:-39.314667pt;}
._7_c00031{margin-left:-37.621333pt;}
._5_c00031{margin-left:-34.898667pt;}
._1_c00031{margin-left:-32.690667pt;}
._27_c00031{margin-left:-16.320000pt;}
._25_c00031{margin-left:-12.066667pt;}
._29_c00031{margin-left:-10.394667pt;}
._13_c00031{margin-left:-9.445333pt;}
._12_c00031{margin-left:-7.698667pt;}
._f_c00031{margin-left:-6.808000pt;}
._15_c00031{margin-left:-5.704000pt;}
._14_c00031{margin-left:-4.784000pt;}
._11_c00031{margin-left:-3.128000pt;}
._1c_c00031{margin-left:-2.216000pt;}
._d_c00031{margin-left:-1.226667pt;}
._8_c00031{width:1.410667pt;}
._a_c00031{width:3.066667pt;}
._9_c00031{width:4.661333pt;}
._b_c00031{width:5.581333pt;}
._28_c00031{width:6.530667pt;}
._17_c00031{width:7.482667pt;}
._19_c00031{width:8.648000pt;}
._10_c00031{width:10.242667pt;}
._1a_c00031{width:11.162667pt;}
._c_c00031{width:12.941333pt;}
._18_c00031{width:14.106667pt;}
._e_c00031{width:15.517333pt;}
._1b_c00031{width:16.682667pt;}
._24_c00031{width:17.786667pt;}
._1e_c00031{width:18.954667pt;}
._20_c00031{width:20.330667pt;}
._23_c00031{width:21.829333pt;}
._2d_c00031{width:26.480000pt;}
._2c_c00031{width:28.029333pt;}
._26_c00031{width:29.165333pt;}
._2a_c00031{width:30.421333pt;}
._16_c00031{width:34.346667pt;}
._1f_c00031{width:44.893333pt;}
._21_c00031{width:84.357333pt;}
._2f_c00031{width:87.288000pt;}
._1d_c00031{width:110.032000pt;}
._22_c00031{width:156.384000pt;}
._2b_c00031{width:405.597333pt;}
._2e_c00031{width:463.840000pt;}
.fs5_c00031{font-size:42.666667pt;}
.fs3_c00031{font-size:45.333333pt;}
.fs2_c00031{font-size:48.000000pt;}
.fs1_c00031{font-size:53.333333pt;}
.fs4_c00031{font-size:58.666667pt;}
.fs0_c00031{font-size:61.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y21_c00031{bottom:2.760000pt;}
.y20_c00031{bottom:6.425204pt;}
.y1f_c00031{bottom:26.120000pt;}
.y1e_c00031{bottom:41.053333pt;}
.y1d_c00031{bottom:68.120000pt;}
.y1c_c00031{bottom:96.520000pt;}
.y1b_c00031{bottom:119.586667pt;}
.y1a_c00031{bottom:141.320000pt;}
.y19_c00031{bottom:163.186667pt;}
.y18_c00031{bottom:186.520000pt;}
.y17_c00031{bottom:208.120000pt;}
.y16_c00031{bottom:230.386667pt;}
.y15_c00031{bottom:253.720000pt;}
.y14_c00031{bottom:274.786667pt;}
.y13_c00031{bottom:296.653333pt;}
.y12_c00031{bottom:313.453333pt;}
.y11_c00031{bottom:318.920000pt;}
.y10_c00031{bottom:340.786667pt;}
.yf_c00031{bottom:385.453333pt;}
.ye_c00031{bottom:407.986667pt;}
.yd_c00031{bottom:431.720000pt;}
.yc_c00031{bottom:452.653333pt;}
.yb_c00031{bottom:474.253333pt;}
.ya_c00031{bottom:496.520000pt;}
.y9_c00031{bottom:518.386667pt;}
.y8_c00031{bottom:540.520000pt;}
.y7_c00031{bottom:561.853333pt;}
.y6_c00031{bottom:584.386667pt;}
.y5_c00031{bottom:607.186667pt;}
.y4_c00031{bottom:629.586667pt;}
.y3_c00031{bottom:652.120000pt;}
.y2_c00031{bottom:674.120000pt;}
.y1_c00031{bottom:696.786667pt;}
.h9_c00031{height:11.733399pt;}
.ha_c00031{height:38.937500pt;}
.h8_c00031{height:57.397135pt;}
.h7_c00031{height:60.165365pt;}
.h6_c00031{height:60.773438pt;}
.h3_c00031{height:61.812500pt;}
.h4_c00031{height:67.526042pt;}
.h5_c00031{height:71.785156pt;}
.h2_c00031{height:77.654948pt;}
.h0_c00031{height:727.666667pt;}
.h1_c00031{height:728.000000pt;}
.w2_c00031{width:93.222667pt;}
.w0_c00031{width:499.666667pt;}
.w1_c00031{width:500.000000pt;}
.x0_c00031{left:0.000000pt;}
.x11_c00031{left:21.866667pt;}
.xf_c00031{left:23.066667pt;}
.x8_c00031{left:24.400000pt;}
.x5_c00031{left:26.000000pt;}
.x3_c00031{left:28.533333pt;}
.x7_c00031{left:39.600000pt;}
.x4_c00031{left:48.533333pt;}
.xd_c00031{left:52.800000pt;}
.x10_c00031{left:80.400000pt;}
.xe_c00031{left:81.600000pt;}
.xc_c00031{left:82.533333pt;}
.x9_c00031{left:83.733333pt;}
.x6_c00031{left:84.933333pt;}
.x2_c00031{left:86.000000pt;}
.x1_c00031{left:96.933333pt;}
.xa_c00031{left:104.800000pt;}
.xb_c00031{left:152.666667pt;}
.x14_c00031{left:207.001546pt;}
.x12_c00031{left:209.733333pt;}
.x13_c00031{left:456.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_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_6549bc2d63f245ebfed3d44e.woff2')format("woff");}.ff1_c00032{font-family:ff1_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:ff2_c00032;src:url('chunks/assets/font_c12046162b498f1a2bac9449.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.311035;font-style:normal;font-weight:normal;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_860433c66000f6b59de24cef.woff2')format("woff");}.ff3_c00032{font-family:ff3_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:ff4_c00032;src:url('chunks/assets/font_2881771885a5c46fc2b1e828.woff2')format("woff");}.ff4_c00032{font-family:ff4_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:ff5_c00032;src:url('chunks/assets/font_ec282214a9e3f0fbfef21ab7.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_42ca2047a2a70c37a7472e79.woff2')format("woff");}.ff6_c00032{font-family:ff6_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:ff7_c00032;src:url('chunks/assets/font_efd7637e814e821ab430fc04.woff2')format("woff");}.ff7_c00032{font-family:ff7_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:ff8_c00032;src:url('chunks/assets/font_3123fca0bbdc95b153ad77f6.woff2')format("woff");}.ff8_c00032{font-family:ff8_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:ff9_c00032;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00032{font-family:ff9_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;}
.v1_c00032{vertical-align:18.000000px;}
.ls8_c00032{letter-spacing:0.000000px;}
.ls5_c00032{letter-spacing:1.770000px;}
.ls2_c00032{letter-spacing:3.000000px;}
.ls3_c00032{letter-spacing:4.350000px;}
.ls4_c00032{letter-spacing:9.000000px;}
.ls7_c00032{letter-spacing:13.125000px;}
.ls6_c00032{letter-spacing:15.525000px;}
.ls1_c00032{letter-spacing:17.400000px;}
.ls0_c00032{letter-spacing:514.950000px;}
.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;}
}
.ws4_c00032{word-spacing:-39.100800px;}
.ws0_c00032{word-spacing:-23.460000px;}
.ws2_c00032{word-spacing:-20.568000px;}
.ws6_c00032{word-spacing:-18.075000px;}
.ws1_c00032{word-spacing:-17.250000px;}
.ws5_c00032{word-spacing:-16.629000px;}
.ws3_c00032{word-spacing:-0.207000px;}
.ws7_c00032{word-spacing:0.000000px;}
._19_c00032{margin-left:-29.886000px;}
._2b_c00032{margin-left:-19.410000px;}
._17_c00032{margin-left:-16.677000px;}
._2_c00032{margin-left:-13.800000px;}
._21_c00032{margin-left:-12.627000px;}
._14_c00032{margin-left:-10.374000px;}
._1b_c00032{margin-left:-8.772000px;}
._c_c00032{margin-left:-6.750000px;}
._20_c00032{margin-left:-5.184000px;}
._a_c00032{margin-left:-3.960000px;}
._f_c00032{margin-left:-2.544000px;}
._5_c00032{margin-left:-1.215000px;}
._3_c00032{width:1.311000px;}
._1_c00032{width:3.312000px;}
._6_c00032{width:4.359000px;}
._4_c00032{width:5.490000px;}
._0_c00032{width:6.624000px;}
._2d_c00032{width:8.019000px;}
._e_c00032{width:9.180000px;}
._d_c00032{width:10.530000px;}
._2c_c00032{width:11.820000px;}
._27_c00032{width:13.257000px;}
._8_c00032{width:14.955000px;}
._7_c00032{width:16.260000px;}
._24_c00032{width:17.664000px;}
._25_c00032{width:18.738000px;}
._9_c00032{width:19.833000px;}
._28_c00032{width:20.877000px;}
._23_c00032{width:22.011000px;}
._16_c00032{width:23.898000px;}
._26_c00032{width:25.116000px;}
._30_c00032{width:28.170000px;}
._2e_c00032{width:29.751000px;}
._1d_c00032{width:31.254000px;}
._2a_c00032{width:33.189000px;}
._31_c00032{width:38.181000px;}
._33_c00032{width:39.663000px;}
._1a_c00032{width:46.767000px;}
._15_c00032{width:49.725000px;}
._2f_c00032{width:58.119000px;}
._11_c00032{width:61.290000px;}
._10_c00032{width:70.941000px;}
._12_c00032{width:75.714000px;}
._29_c00032{width:89.658000px;}
._18_c00032{width:95.064000px;}
._34_c00032{width:98.940000px;}
._32_c00032{width:104.530200px;}
._13_c00032{width:117.942000px;}
._22_c00032{width:137.001000px;}
._1e_c00032{width:197.499000px;}
._b_c00032{width:207.648000px;}
._1f_c00032{width:236.685000px;}
._35_c00032{width:686.448000px;}
._1c_c00032{width:785.751000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(128,128,128);}
.fc0_c00032{color:rgb(0,0,0);}
.fs3_c00032{font-size:45.000000px;}
.fs5_c00032{font-size:48.000000px;}
.fs4_c00032{font-size:51.000000px;}
.fs2_c00032{font-size:54.000000px;}
.fs8_c00032{font-size:55.200000px;}
.fs1_c00032{font-size:60.000000px;}
.fs7_c00032{font-size:63.000000px;}
.fs6_c00032{font-size:66.000000px;}
.fs0_c00032{font-size:69.000000px;}
.fs9_c00032{font-size:75.000000px;}
.y0_c00032{bottom:0.000000px;}
.y22_c00032{bottom:3.105000px;}
.y21_c00032{bottom:7.228371px;}
.y20_c00032{bottom:45.315000px;}
.y1f_c00032{bottom:71.265000px;}
.y1e_c00032{bottom:95.565000px;}
.y1d_c00032{bottom:120.465000px;}
.y1c_c00032{bottom:145.215000px;}
.y1b_c00032{bottom:169.215000px;}
.y1a_c00032{bottom:193.815000px;}
.y19_c00032{bottom:220.065000px;}
.y18_c00032{bottom:245.115000px;}
.y17_c00032{bottom:269.715000px;}
.y16_c00032{bottom:295.065000px;}
.y15_c00032{bottom:319.365000px;}
.y14_c00032{bottom:345.315000px;}
.y13_c00032{bottom:369.915000px;}
.y12_c00032{bottom:394.965000px;}
.y11_c00032{bottom:419.565000px;}
.y10_c00032{bottom:444.915000px;}
.yf_c00032{bottom:469.515000px;}
.ye_c00032{bottom:494.415000px;}
.yd_c00032{bottom:518.115000px;}
.yc_c00032{bottom:542.715000px;}
.yb_c00032{bottom:568.065000px;}
.ya_c00032{bottom:593.115000px;}
.y9_c00032{bottom:642.615000px;}
.y8_c00032{bottom:682.065000px;}
.y7_c00032{bottom:696.015000px;}
.y6_c00032{bottom:700.665000px;}
.y5_c00032{bottom:719.565000px;}
.y4_c00032{bottom:736.065000px;}
.y3_c00032{bottom:753.315000px;}
.y2_c00032{bottom:770.865000px;}
.y1_c00032{bottom:790.815000px;}
.ha_c00032{height:13.200074px;}
.hb_c00032{height:43.804688px;}
.h5_c00032{height:64.571777px;}
.h8_c00032{height:67.686035px;}
.h3_c00032{height:68.370117px;}
.h7_c00032{height:69.539062px;}
.h2_c00032{height:75.966797px;}
.h4_c00032{height:85.719727px;}
.h6_c00032{height:87.361816px;}
.h9_c00032{height:94.958496px;}
.h1_c00032{height:831.000000px;}
.h0_c00032{height:831.075000px;}
.w1_c00032{width:104.875500px;}
.w0_c00032{width:557.250000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:29.250000px;}
.x3_c00032{left:30.600000px;}
.x4_c00032{left:31.650000px;}
.x6_c00032{left:33.000000px;}
.x8_c00032{left:34.350000px;}
.x9_c00032{left:35.850000px;}
.xa_c00032{left:37.350000px;}
.xb_c00032{left:38.700000px;}
.xd_c00032{left:40.500000px;}
.x5_c00032{left:56.400000px;}
.x7_c00032{left:58.500000px;}
.xc_c00032{left:62.100000px;}
.x1_c00032{left:180.450000px;}
.xf_c00032{left:230.439240px;}
.xe_c00032{left:444.750000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:16.000000pt;}
.ls8_c00032{letter-spacing:0.000000pt;}
.ls5_c00032{letter-spacing:1.573333pt;}
.ls2_c00032{letter-spacing:2.666667pt;}
.ls3_c00032{letter-spacing:3.866667pt;}
.ls4_c00032{letter-spacing:8.000000pt;}
.ls7_c00032{letter-spacing:11.666667pt;}
.ls6_c00032{letter-spacing:13.800000pt;}
.ls1_c00032{letter-spacing:15.466667pt;}
.ls0_c00032{letter-spacing:457.733333pt;}
.ws4_c00032{word-spacing:-34.756267pt;}
.ws0_c00032{word-spacing:-20.853333pt;}
.ws2_c00032{word-spacing:-18.282667pt;}
.ws6_c00032{word-spacing:-16.066667pt;}
.ws1_c00032{word-spacing:-15.333333pt;}
.ws5_c00032{word-spacing:-14.781333pt;}
.ws3_c00032{word-spacing:-0.184000pt;}
.ws7_c00032{word-spacing:0.000000pt;}
._19_c00032{margin-left:-26.565333pt;}
._2b_c00032{margin-left:-17.253333pt;}
._17_c00032{margin-left:-14.824000pt;}
._2_c00032{margin-left:-12.266667pt;}
._21_c00032{margin-left:-11.224000pt;}
._14_c00032{margin-left:-9.221333pt;}
._1b_c00032{margin-left:-7.797333pt;}
._c_c00032{margin-left:-6.000000pt;}
._20_c00032{margin-left:-4.608000pt;}
._a_c00032{margin-left:-3.520000pt;}
._f_c00032{margin-left:-2.261333pt;}
._5_c00032{margin-left:-1.080000pt;}
._3_c00032{width:1.165333pt;}
._1_c00032{width:2.944000pt;}
._6_c00032{width:3.874667pt;}
._4_c00032{width:4.880000pt;}
._0_c00032{width:5.888000pt;}
._2d_c00032{width:7.128000pt;}
._e_c00032{width:8.160000pt;}
._d_c00032{width:9.360000pt;}
._2c_c00032{width:10.506667pt;}
._27_c00032{width:11.784000pt;}
._8_c00032{width:13.293333pt;}
._7_c00032{width:14.453333pt;}
._24_c00032{width:15.701333pt;}
._25_c00032{width:16.656000pt;}
._9_c00032{width:17.629333pt;}
._28_c00032{width:18.557333pt;}
._23_c00032{width:19.565333pt;}
._16_c00032{width:21.242667pt;}
._26_c00032{width:22.325333pt;}
._30_c00032{width:25.040000pt;}
._2e_c00032{width:26.445333pt;}
._1d_c00032{width:27.781333pt;}
._2a_c00032{width:29.501333pt;}
._31_c00032{width:33.938667pt;}
._33_c00032{width:35.256000pt;}
._1a_c00032{width:41.570667pt;}
._15_c00032{width:44.200000pt;}
._2f_c00032{width:51.661333pt;}
._11_c00032{width:54.480000pt;}
._10_c00032{width:63.058667pt;}
._12_c00032{width:67.301333pt;}
._29_c00032{width:79.696000pt;}
._18_c00032{width:84.501333pt;}
._34_c00032{width:87.946667pt;}
._32_c00032{width:92.915733pt;}
._13_c00032{width:104.837333pt;}
._22_c00032{width:121.778667pt;}
._1e_c00032{width:175.554667pt;}
._b_c00032{width:184.576000pt;}
._1f_c00032{width:210.386667pt;}
._35_c00032{width:610.176000pt;}
._1c_c00032{width:698.445333pt;}
.fs3_c00032{font-size:40.000000pt;}
.fs5_c00032{font-size:42.666667pt;}
.fs4_c00032{font-size:45.333333pt;}
.fs2_c00032{font-size:48.000000pt;}
.fs8_c00032{font-size:49.066667pt;}
.fs1_c00032{font-size:53.333333pt;}
.fs7_c00032{font-size:56.000000pt;}
.fs6_c00032{font-size:58.666667pt;}
.fs0_c00032{font-size:61.333333pt;}
.fs9_c00032{font-size:66.666667pt;}
.y0_c00032{bottom:0.000000pt;}
.y22_c00032{bottom:2.760000pt;}
.y21_c00032{bottom:6.425219pt;}
.y20_c00032{bottom:40.280000pt;}
.y1f_c00032{bottom:63.346667pt;}
.y1e_c00032{bottom:84.946667pt;}
.y1d_c00032{bottom:107.080000pt;}
.y1c_c00032{bottom:129.080000pt;}
.y1b_c00032{bottom:150.413333pt;}
.y1a_c00032{bottom:172.280000pt;}
.y19_c00032{bottom:195.613333pt;}
.y18_c00032{bottom:217.880000pt;}
.y17_c00032{bottom:239.746667pt;}
.y16_c00032{bottom:262.280000pt;}
.y15_c00032{bottom:283.880000pt;}
.y14_c00032{bottom:306.946667pt;}
.y13_c00032{bottom:328.813333pt;}
.y12_c00032{bottom:351.080000pt;}
.y11_c00032{bottom:372.946667pt;}
.y10_c00032{bottom:395.480000pt;}
.yf_c00032{bottom:417.346667pt;}
.ye_c00032{bottom:439.480000pt;}
.yd_c00032{bottom:460.546667pt;}
.yc_c00032{bottom:482.413333pt;}
.yb_c00032{bottom:504.946667pt;}
.ya_c00032{bottom:527.213333pt;}
.y9_c00032{bottom:571.213333pt;}
.y8_c00032{bottom:606.280000pt;}
.y7_c00032{bottom:618.680000pt;}
.y6_c00032{bottom:622.813333pt;}
.y5_c00032{bottom:639.613333pt;}
.y4_c00032{bottom:654.280000pt;}
.y3_c00032{bottom:669.613333pt;}
.y2_c00032{bottom:685.213333pt;}
.y1_c00032{bottom:702.946667pt;}
.ha_c00032{height:11.733399pt;}
.hb_c00032{height:38.937500pt;}
.h5_c00032{height:57.397135pt;}
.h8_c00032{height:60.165365pt;}
.h3_c00032{height:60.773438pt;}
.h7_c00032{height:61.812500pt;}
.h2_c00032{height:67.526042pt;}
.h4_c00032{height:76.195312pt;}
.h6_c00032{height:77.654948pt;}
.h9_c00032{height:84.407552pt;}
.h1_c00032{height:738.666667pt;}
.h0_c00032{height:738.733333pt;}
.w1_c00032{width:93.222667pt;}
.w0_c00032{width:495.333333pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:26.000000pt;}
.x3_c00032{left:27.200000pt;}
.x4_c00032{left:28.133333pt;}
.x6_c00032{left:29.333333pt;}
.x8_c00032{left:30.533333pt;}
.x9_c00032{left:31.866667pt;}
.xa_c00032{left:33.200000pt;}
.xb_c00032{left:34.400000pt;}
.xd_c00032{left:36.000000pt;}
.x5_c00032{left:50.133333pt;}
.x7_c00032{left:52.000000pt;}
.xc_c00032{left:55.200000pt;}
.x1_c00032{left:160.400000pt;}
.xf_c00032{left:204.834880pt;}
.xe_c00032{left:395.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_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_15e4a819be62ba777b954061.woff2')format("woff");}.ff1_c00033{font-family:ff1_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:ff2_c00033;src:url('chunks/assets/font_8b8771bda843955265523a77.woff2')format("woff");}.ff2_c00033{font-family:ff2_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:ff3_c00033;src:url('chunks/assets/font_a5d7a79627f5c923b8c1dc7f.woff2')format("woff");}.ff3_c00033{font-family:ff3_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:ff4_c00033;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff4_c00033{font-family:ff4_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:ff5_c00033;src:url('chunks/assets/font_af3dee5e69dc27483d04175e.woff2')format("woff");}.ff5_c00033{font-family:ff5_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:ff6_c00033;src:url('chunks/assets/font_a65e8888891507caf1b0777c.woff2')format("woff");}.ff6_c00033{font-family:ff6_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:ff7_c00033;src:url('chunks/assets/font_bd3f061c8426d8f008b5abab.woff2')format("woff");}.ff7_c00033{font-family:ff7_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:ff8_c00033;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00033{font-family:ff8_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);}
.v1_c00033{vertical-align:-73.200000px;}
.v0_c00033{vertical-align:0.000000px;}
.ls3_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:3.000000px;}
.ls4_c00033{letter-spacing:9.000000px;}
.ls1_c00033{letter-spacing:19.725000px;}
.ls2_c00033{letter-spacing:23.400000px;}
.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;}
}
.ws4_c00033{word-spacing:-33.825000px;}
.ws8_c00033{word-spacing:-23.460000px;}
.ws9_c00033{word-spacing:-20.250000px;}
.ws6_c00033{word-spacing:-19.182000px;}
.ws3_c00033{word-spacing:-18.318000px;}
.ws1_c00033{word-spacing:-16.629000px;}
.ws5_c00033{word-spacing:-11.568000px;}
.ws2_c00033{word-spacing:-1.173000px;}
.ws0_c00033{word-spacing:-0.069000px;}
.wsa_c00033{word-spacing:0.000000px;}
.ws7_c00033{word-spacing:5.586000px;}
._25_c00033{margin-left:-27.288000px;}
._20_c00033{margin-left:-21.228000px;}
._19_c00033{margin-left:-19.734000px;}
._24_c00033{margin-left:-17.769000px;}
._18_c00033{margin-left:-16.353000px;}
._17_c00033{margin-left:-13.455000px;}
._1c_c00033{margin-left:-11.730000px;}
._1b_c00033{margin-left:-9.936000px;}
._6_c00033{margin-left:-8.694000px;}
._14_c00033{margin-left:-7.338000px;}
._e_c00033{margin-left:-6.279000px;}
._1d_c00033{margin-left:-4.899000px;}
._f_c00033{margin-left:-3.588000px;}
._1_c00033{margin-left:-1.587000px;}
._4_c00033{width:1.035000px;}
._2_c00033{width:2.415000px;}
._7_c00033{width:3.450000px;}
._3_c00033{width:4.554000px;}
._d_c00033{width:5.658000px;}
._8_c00033{width:7.176000px;}
._a_c00033{width:8.868000px;}
._5_c00033{width:10.281000px;}
._c_c00033{width:12.168000px;}
._b_c00033{width:13.638000px;}
._16_c00033{width:14.940000px;}
._11_c00033{width:16.008000px;}
._15_c00033{width:17.076000px;}
._9_c00033{width:18.492000px;}
._13_c00033{width:21.666000px;}
._12_c00033{width:22.977000px;}
._10_c00033{width:24.840000px;}
._23_c00033{width:26.682000px;}
._21_c00033{width:34.833000px;}
._22_c00033{width:36.051000px;}
._1a_c00033{width:57.234000px;}
._26_c00033{width:60.720000px;}
._1e_c00033{width:102.972000px;}
._1f_c00033{width:257.205000px;}
._0_c00033{width:357.948000px;}
._27_c00033{width:1671.327000px;}
.fc2_c00033{color:transparent;}
.fc1_c00033{color:rgb(128,128,128);}
.fc0_c00033{color:rgb(0,0,0);}
.fs4_c00033{font-size:48.000000px;}
.fs5_c00033{font-size:51.000000px;}
.fs1_c00033{font-size:57.000000px;}
.fs6_c00033{font-size:60.000000px;}
.fs3_c00033{font-size:66.000000px;}
.fs0_c00033{font-size:69.000000px;}
.fs2_c00033{font-size:75.000000px;}
.y0_c00033{bottom:0.000000px;}
.y1f_c00033{bottom:3.105000px;}
.y1e_c00033{bottom:7.228371px;}
.y1d_c00033{bottom:85.815000px;}
.y1c_c00033{bottom:98.565000px;}
.y1b_c00033{bottom:124.215000px;}
.y1a_c00033{bottom:148.965000px;}
.y19_c00033{bottom:174.165000px;}
.y18_c00033{bottom:199.815000px;}
.y17_c00033{bottom:223.515000px;}
.y13_c00033{bottom:233.865000px;}
.y16_c00033{bottom:249.465000px;}
.y15_c00033{bottom:274.365000px;}
.y12_c00033{bottom:288.615000px;}
.y14_c00033{bottom:299.115000px;}
.y11_c00033{bottom:349.665000px;}
.y10_c00033{bottom:373.965000px;}
.yf_c00033{bottom:423.315000px;}
.ye_c00033{bottom:474.165000px;}
.yd_c00033{bottom:498.615000px;}
.yc_c00033{bottom:522.915000px;}
.yb_c00033{bottom:547.065000px;}
.ya_c00033{bottom:572.715000px;}
.y9_c00033{bottom:595.815000px;}
.y8_c00033{bottom:622.665000px;}
.y7_c00033{bottom:647.115000px;}
.y6_c00033{bottom:672.015000px;}
.y5_c00033{bottom:697.065000px;}
.y4_c00033{bottom:722.265000px;}
.y3_c00033{bottom:747.015000px;}
.y2_c00033{bottom:772.215000px;}
.y1_c00033{bottom:796.815000px;}
.h8_c00033{height:13.200074px;}
.h9_c00033{height:43.804688px;}
.h5_c00033{height:64.571777px;}
.h6_c00033{height:67.686035px;}
.h7_c00033{height:75.966797px;}
.h4_c00033{height:80.758301px;}
.h2_c00033{height:87.361816px;}
.h3_c00033{height:94.958496px;}
.h0_c00033{height:833.775000px;}
.h1_c00033{height:834.000000px;}
.w2_c00033{width:104.875500px;}
.w0_c00033{width:572.925000px;}
.w1_c00033{width:573.000000px;}
.x0_c00033{left:0.000000px;}
.x7_c00033{left:48.000000px;}
.xb_c00033{left:50.400000px;}
.x8_c00033{left:51.600000px;}
.x5_c00033{left:52.950000px;}
.x6_c00033{left:65.250000px;}
.xd_c00033{left:111.750000px;}
.x4_c00033{left:113.850000px;}
.x3_c00033{left:115.800000px;}
.x1_c00033{left:128.700000px;}
.xc_c00033{left:138.750000px;}
.x9_c00033{left:143.100000px;}
.x2_c00033{left:182.250000px;}
.xa_c00033{left:206.850000px;}
.xe_c00033{left:238.276749px;}
@media print{
.v1_c00033{vertical-align:-65.066667pt;}
.v0_c00033{vertical-align:0.000000pt;}
.ls3_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:2.666667pt;}
.ls4_c00033{letter-spacing:8.000000pt;}
.ls1_c00033{letter-spacing:17.533333pt;}
.ls2_c00033{letter-spacing:20.800000pt;}
.ws4_c00033{word-spacing:-30.066667pt;}
.ws8_c00033{word-spacing:-20.853333pt;}
.ws9_c00033{word-spacing:-18.000000pt;}
.ws6_c00033{word-spacing:-17.050667pt;}
.ws3_c00033{word-spacing:-16.282667pt;}
.ws1_c00033{word-spacing:-14.781333pt;}
.ws5_c00033{word-spacing:-10.282667pt;}
.ws2_c00033{word-spacing:-1.042667pt;}
.ws0_c00033{word-spacing:-0.061333pt;}
.wsa_c00033{word-spacing:0.000000pt;}
.ws7_c00033{word-spacing:4.965333pt;}
._25_c00033{margin-left:-24.256000pt;}
._20_c00033{margin-left:-18.869333pt;}
._19_c00033{margin-left:-17.541333pt;}
._24_c00033{margin-left:-15.794667pt;}
._18_c00033{margin-left:-14.536000pt;}
._17_c00033{margin-left:-11.960000pt;}
._1c_c00033{margin-left:-10.426667pt;}
._1b_c00033{margin-left:-8.832000pt;}
._6_c00033{margin-left:-7.728000pt;}
._14_c00033{margin-left:-6.522667pt;}
._e_c00033{margin-left:-5.581333pt;}
._1d_c00033{margin-left:-4.354667pt;}
._f_c00033{margin-left:-3.189333pt;}
._1_c00033{margin-left:-1.410667pt;}
._4_c00033{width:0.920000pt;}
._2_c00033{width:2.146667pt;}
._7_c00033{width:3.066667pt;}
._3_c00033{width:4.048000pt;}
._d_c00033{width:5.029333pt;}
._8_c00033{width:6.378667pt;}
._a_c00033{width:7.882667pt;}
._5_c00033{width:9.138667pt;}
._c_c00033{width:10.816000pt;}
._b_c00033{width:12.122667pt;}
._16_c00033{width:13.280000pt;}
._11_c00033{width:14.229333pt;}
._15_c00033{width:15.178667pt;}
._9_c00033{width:16.437333pt;}
._13_c00033{width:19.258667pt;}
._12_c00033{width:20.424000pt;}
._10_c00033{width:22.080000pt;}
._23_c00033{width:23.717333pt;}
._21_c00033{width:30.962667pt;}
._22_c00033{width:32.045333pt;}
._1a_c00033{width:50.874667pt;}
._26_c00033{width:53.973333pt;}
._1e_c00033{width:91.530667pt;}
._1f_c00033{width:228.626667pt;}
._0_c00033{width:318.176000pt;}
._27_c00033{width:1485.624000pt;}
.fs4_c00033{font-size:42.666667pt;}
.fs5_c00033{font-size:45.333333pt;}
.fs1_c00033{font-size:50.666667pt;}
.fs6_c00033{font-size:53.333333pt;}
.fs3_c00033{font-size:58.666667pt;}
.fs0_c00033{font-size:61.333333pt;}
.fs2_c00033{font-size:66.666667pt;}
.y0_c00033{bottom:0.000000pt;}
.y1f_c00033{bottom:2.760000pt;}
.y1e_c00033{bottom:6.425219pt;}
.y1d_c00033{bottom:76.280000pt;}
.y1c_c00033{bottom:87.613333pt;}
.y1b_c00033{bottom:110.413333pt;}
.y1a_c00033{bottom:132.413333pt;}
.y19_c00033{bottom:154.813333pt;}
.y18_c00033{bottom:177.613333pt;}
.y17_c00033{bottom:198.680000pt;}
.y13_c00033{bottom:207.880000pt;}
.y16_c00033{bottom:221.746667pt;}
.y15_c00033{bottom:243.880000pt;}
.y12_c00033{bottom:256.546667pt;}
.y14_c00033{bottom:265.880000pt;}
.y11_c00033{bottom:310.813333pt;}
.y10_c00033{bottom:332.413333pt;}
.yf_c00033{bottom:376.280000pt;}
.ye_c00033{bottom:421.480000pt;}
.yd_c00033{bottom:443.213333pt;}
.yc_c00033{bottom:464.813333pt;}
.yb_c00033{bottom:486.280000pt;}
.ya_c00033{bottom:509.080000pt;}
.y9_c00033{bottom:529.613333pt;}
.y8_c00033{bottom:553.480000pt;}
.y7_c00033{bottom:575.213333pt;}
.y6_c00033{bottom:597.346667pt;}
.y5_c00033{bottom:619.613333pt;}
.y4_c00033{bottom:642.013333pt;}
.y3_c00033{bottom:664.013333pt;}
.y2_c00033{bottom:686.413333pt;}
.y1_c00033{bottom:708.280000pt;}
.h8_c00033{height:11.733399pt;}
.h9_c00033{height:38.937500pt;}
.h5_c00033{height:57.397135pt;}
.h6_c00033{height:60.165365pt;}
.h7_c00033{height:67.526042pt;}
.h4_c00033{height:71.785156pt;}
.h2_c00033{height:77.654948pt;}
.h3_c00033{height:84.407552pt;}
.h0_c00033{height:741.133333pt;}
.h1_c00033{height:741.333333pt;}
.w2_c00033{width:93.222667pt;}
.w0_c00033{width:509.266667pt;}
.w1_c00033{width:509.333333pt;}
.x0_c00033{left:0.000000pt;}
.x7_c00033{left:42.666667pt;}
.xb_c00033{left:44.800000pt;}
.x8_c00033{left:45.866667pt;}
.x5_c00033{left:47.066667pt;}
.x6_c00033{left:58.000000pt;}
.xd_c00033{left:99.333333pt;}
.x4_c00033{left:101.200000pt;}
.x3_c00033{left:102.933333pt;}
.x1_c00033{left:114.400000pt;}
.xc_c00033{left:123.333333pt;}
.x9_c00033{left:127.200000pt;}
.x2_c00033{left:162.000000pt;}
.xa_c00033{left:183.866667pt;}
.xe_c00033{left:211.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_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_ccab9cc3742649eda96ec729.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_c335debb97a45b21c59fe5fa.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_83210272ff1a53731c55c786.woff2')format("woff");}.ff3_c00034{font-family:ff3_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:ff4_c00034;src:url('chunks/assets/font_7770232e553aa503a36b300a.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.311035;font-style:normal;font-weight:normal;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_927e1ccd141dd46dcd2909a6.woff2')format("woff");}.ff6_c00034{font-family:ff6_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:ff7_c00034;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00034{font-family:ff7_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:0.000000px;}
.ls0_c00034{letter-spacing:0.600000px;}
.ls1_c00034{letter-spacing:2.400000px;}
.ls2_c00034{letter-spacing:3.000000px;}
.ls3_c00034{letter-spacing:9.798000px;}
.ls7_c00034{letter-spacing:27.000000px;}
.ls5_c00034{letter-spacing:33.000000px;}
.ls6_c00034{letter-spacing:39.000000px;}
.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;}
}
.wsb_c00034{word-spacing:-56.235000px;}
.wsc_c00034{word-spacing:-55.629000px;}
.wsd_c00034{word-spacing:-46.182000px;}
.wsa_c00034{word-spacing:-44.988000px;}
.ws1_c00034{word-spacing:-43.122000px;}
.ws4_c00034{word-spacing:-33.000000px;}
.ws6_c00034{word-spacing:-26.427000px;}
.ws5_c00034{word-spacing:-19.182000px;}
.ws0_c00034{word-spacing:-16.629000px;}
.ws2_c00034{word-spacing:-13.014000px;}
.ws8_c00034{word-spacing:-1.242000px;}
.ws7_c00034{word-spacing:-1.080000px;}
.wse_c00034{word-spacing:0.000000px;}
.ws9_c00034{word-spacing:2.760000px;}
.ws3_c00034{word-spacing:5.175000px;}
._2e_c00034{margin-left:-27.462000px;}
._27_c00034{margin-left:-20.424000px;}
._6_c00034{margin-left:-15.414000px;}
._24_c00034{margin-left:-12.765000px;}
._2a_c00034{margin-left:-11.427000px;}
._2_c00034{margin-left:-10.005000px;}
._1c_c00034{margin-left:-8.487000px;}
._1e_c00034{margin-left:-7.314000px;}
._1d_c00034{margin-left:-6.279000px;}
._4_c00034{margin-left:-4.692000px;}
._3_c00034{margin-left:-2.967000px;}
._5_c00034{margin-left:-1.725000px;}
._0_c00034{width:1.242000px;}
._1_c00034{width:2.484000px;}
._c_c00034{width:3.519000px;}
._e_c00034{width:4.692000px;}
._d_c00034{width:6.279000px;}
._18_c00034{width:7.374000px;}
._8_c00034{width:8.418000px;}
._9_c00034{width:9.453000px;}
._7_c00034{width:11.454000px;}
._a_c00034{width:12.627000px;}
._21_c00034{width:13.977000px;}
._12_c00034{width:15.288000px;}
._14_c00034{width:16.755000px;}
._11_c00034{width:17.967000px;}
._15_c00034{width:18.999000px;}
._13_c00034{width:20.574000px;}
._16_c00034{width:21.666000px;}
._1a_c00034{width:24.612000px;}
._10_c00034{width:25.758000px;}
._f_c00034{width:28.233000px;}
._17_c00034{width:29.256000px;}
._26_c00034{width:31.674000px;}
._28_c00034{width:36.183000px;}
._1b_c00034{width:39.123000px;}
._19_c00034{width:42.711000px;}
._29_c00034{width:86.793000px;}
._23_c00034{width:94.086000px;}
._1f_c00034{width:154.908000px;}
._22_c00034{width:170.085000px;}
._20_c00034{width:174.363000px;}
._b_c00034{width:187.569000px;}
._2b_c00034{width:193.005000px;}
._25_c00034{width:237.222000px;}
._2d_c00034{width:414.702000px;}
._2c_c00034{width:724.431000px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(128,128,128);}
.fc0_c00034{color:rgb(0,0,0);}
.fs2_c00034{font-size:42.000000px;}
.fs5_c00034{font-size:48.000000px;}
.fs3_c00034{font-size:54.000000px;}
.fs4_c00034{font-size:55.200000px;}
.fs1_c00034{font-size:66.000000px;}
.fs0_c00034{font-size:69.000000px;}
.y0_c00034{bottom:0.000000px;}
.y21_c00034{bottom:3.105000px;}
.y20_c00034{bottom:7.228355px;}
.y1e_c00034{bottom:53.685000px;}
.y1d_c00034{bottom:77.535000px;}
.y1c_c00034{bottom:102.585000px;}
.y1b_c00034{bottom:127.185000px;}
.y1a_c00034{bottom:151.185000px;}
.y19_c00034{bottom:177.435000px;}
.y18_c00034{bottom:201.435000px;}
.y1f_c00034{bottom:216.585000px;}
.y17_c00034{bottom:226.485000px;}
.y16_c00034{bottom:251.685000px;}
.y15_c00034{bottom:276.285000px;}
.y14_c00034{bottom:301.035000px;}
.y13_c00034{bottom:326.235000px;}
.y12_c00034{bottom:350.985000px;}
.y11_c00034{bottom:375.585000px;}
.y10_c00034{bottom:401.235000px;}
.yf_c00034{bottom:425.835000px;}
.ye_c00034{bottom:475.185000px;}
.yd_c00034{bottom:509.835000px;}
.yc_c00034{bottom:527.385000px;}
.yb_c00034{bottom:544.935000px;}
.ya_c00034{bottom:562.485000px;}
.y9_c00034{bottom:580.185000px;}
.y8_c00034{bottom:597.285000px;}
.y7_c00034{bottom:615.135000px;}
.y6_c00034{bottom:632.385000px;}
.y5_c00034{bottom:649.935000px;}
.y4_c00034{bottom:685.485000px;}
.y3_c00034{bottom:722.235000px;}
.y2_c00034{bottom:747.585000px;}
.y1_c00034{bottom:772.485000px;}
.h7_c00034{height:13.200074px;}
.h8_c00034{height:43.804688px;}
.h4_c00034{height:49.157227px;}
.h6_c00034{height:67.686035px;}
.h5_c00034{height:68.370117px;}
.h2_c00034{height:80.758301px;}
.h3_c00034{height:87.361816px;}
.h1_c00034{height:813.000000px;}
.h0_c00034{height:813.225000px;}
.w2_c00034{width:104.875500px;}
.w1_c00034{width:545.250000px;}
.w0_c00034{width:545.400000px;}
.x0_c00034{left:0.000000px;}
.x3_c00034{left:34.500000px;}
.x2_c00034{left:35.700000px;}
.xa_c00034{left:37.050000px;}
.xb_c00034{left:38.400000px;}
.x6_c00034{left:50.400000px;}
.x5_c00034{left:52.650000px;}
.x8_c00034{left:58.500000px;}
.x9_c00034{left:60.000000px;}
.x7_c00034{left:64.800000px;}
.x4_c00034{left:179.250000px;}
.x1_c00034{left:192.600000px;}
.xd_c00034{left:224.514267px;}
.xc_c00034{left:524.400000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls4_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.533333pt;}
.ls1_c00034{letter-spacing:2.133333pt;}
.ls2_c00034{letter-spacing:2.666667pt;}
.ls3_c00034{letter-spacing:8.709333pt;}
.ls7_c00034{letter-spacing:24.000000pt;}
.ls5_c00034{letter-spacing:29.333333pt;}
.ls6_c00034{letter-spacing:34.666667pt;}
.wsb_c00034{word-spacing:-49.986667pt;}
.wsc_c00034{word-spacing:-49.448000pt;}
.wsd_c00034{word-spacing:-41.050667pt;}
.wsa_c00034{word-spacing:-39.989333pt;}
.ws1_c00034{word-spacing:-38.330667pt;}
.ws4_c00034{word-spacing:-29.333333pt;}
.ws6_c00034{word-spacing:-23.490667pt;}
.ws5_c00034{word-spacing:-17.050667pt;}
.ws0_c00034{word-spacing:-14.781333pt;}
.ws2_c00034{word-spacing:-11.568000pt;}
.ws8_c00034{word-spacing:-1.104000pt;}
.ws7_c00034{word-spacing:-0.960000pt;}
.wse_c00034{word-spacing:0.000000pt;}
.ws9_c00034{word-spacing:2.453333pt;}
.ws3_c00034{word-spacing:4.600000pt;}
._2e_c00034{margin-left:-24.410667pt;}
._27_c00034{margin-left:-18.154667pt;}
._6_c00034{margin-left:-13.701333pt;}
._24_c00034{margin-left:-11.346667pt;}
._2a_c00034{margin-left:-10.157333pt;}
._2_c00034{margin-left:-8.893333pt;}
._1c_c00034{margin-left:-7.544000pt;}
._1e_c00034{margin-left:-6.501333pt;}
._1d_c00034{margin-left:-5.581333pt;}
._4_c00034{margin-left:-4.170667pt;}
._3_c00034{margin-left:-2.637333pt;}
._5_c00034{margin-left:-1.533333pt;}
._0_c00034{width:1.104000pt;}
._1_c00034{width:2.208000pt;}
._c_c00034{width:3.128000pt;}
._e_c00034{width:4.170667pt;}
._d_c00034{width:5.581333pt;}
._18_c00034{width:6.554667pt;}
._8_c00034{width:7.482667pt;}
._9_c00034{width:8.402667pt;}
._7_c00034{width:10.181333pt;}
._a_c00034{width:11.224000pt;}
._21_c00034{width:12.424000pt;}
._12_c00034{width:13.589333pt;}
._14_c00034{width:14.893333pt;}
._11_c00034{width:15.970667pt;}
._15_c00034{width:16.888000pt;}
._13_c00034{width:18.288000pt;}
._16_c00034{width:19.258667pt;}
._1a_c00034{width:21.877333pt;}
._10_c00034{width:22.896000pt;}
._f_c00034{width:25.096000pt;}
._17_c00034{width:26.005333pt;}
._26_c00034{width:28.154667pt;}
._28_c00034{width:32.162667pt;}
._1b_c00034{width:34.776000pt;}
._19_c00034{width:37.965333pt;}
._29_c00034{width:77.149333pt;}
._23_c00034{width:83.632000pt;}
._1f_c00034{width:137.696000pt;}
._22_c00034{width:151.186667pt;}
._20_c00034{width:154.989333pt;}
._b_c00034{width:166.728000pt;}
._2b_c00034{width:171.560000pt;}
._25_c00034{width:210.864000pt;}
._2d_c00034{width:368.624000pt;}
._2c_c00034{width:643.938667pt;}
.fs2_c00034{font-size:37.333333pt;}
.fs5_c00034{font-size:42.666667pt;}
.fs3_c00034{font-size:48.000000pt;}
.fs4_c00034{font-size:49.066667pt;}
.fs1_c00034{font-size:58.666667pt;}
.fs0_c00034{font-size:61.333333pt;}
.y0_c00034{bottom:0.000000pt;}
.y21_c00034{bottom:2.760000pt;}
.y20_c00034{bottom:6.425204pt;}
.y1e_c00034{bottom:47.720000pt;}
.y1d_c00034{bottom:68.920000pt;}
.y1c_c00034{bottom:91.186667pt;}
.y1b_c00034{bottom:113.053333pt;}
.y1a_c00034{bottom:134.386667pt;}
.y19_c00034{bottom:157.720000pt;}
.y18_c00034{bottom:179.053333pt;}
.y1f_c00034{bottom:192.520000pt;}
.y17_c00034{bottom:201.320000pt;}
.y16_c00034{bottom:223.720000pt;}
.y15_c00034{bottom:245.586667pt;}
.y14_c00034{bottom:267.586667pt;}
.y13_c00034{bottom:289.986667pt;}
.y12_c00034{bottom:311.986667pt;}
.y11_c00034{bottom:333.853333pt;}
.y10_c00034{bottom:356.653333pt;}
.yf_c00034{bottom:378.520000pt;}
.ye_c00034{bottom:422.386667pt;}
.yd_c00034{bottom:453.186667pt;}
.yc_c00034{bottom:468.786667pt;}
.yb_c00034{bottom:484.386667pt;}
.ya_c00034{bottom:499.986667pt;}
.y9_c00034{bottom:515.720000pt;}
.y8_c00034{bottom:530.920000pt;}
.y7_c00034{bottom:546.786667pt;}
.y6_c00034{bottom:562.120000pt;}
.y5_c00034{bottom:577.720000pt;}
.y4_c00034{bottom:609.320000pt;}
.y3_c00034{bottom:641.986667pt;}
.y2_c00034{bottom:664.520000pt;}
.y1_c00034{bottom:686.653333pt;}
.h7_c00034{height:11.733399pt;}
.h8_c00034{height:38.937500pt;}
.h4_c00034{height:43.695312pt;}
.h6_c00034{height:60.165365pt;}
.h5_c00034{height:60.773438pt;}
.h2_c00034{height:71.785156pt;}
.h3_c00034{height:77.654948pt;}
.h1_c00034{height:722.666667pt;}
.h0_c00034{height:722.866667pt;}
.w2_c00034{width:93.222667pt;}
.w1_c00034{width:484.666667pt;}
.w0_c00034{width:484.800000pt;}
.x0_c00034{left:0.000000pt;}
.x3_c00034{left:30.666667pt;}
.x2_c00034{left:31.733333pt;}
.xa_c00034{left:32.933333pt;}
.xb_c00034{left:34.133333pt;}
.x6_c00034{left:44.800000pt;}
.x5_c00034{left:46.800000pt;}
.x8_c00034{left:52.000000pt;}
.x9_c00034{left:53.333333pt;}
.x7_c00034{left:57.600000pt;}
.x4_c00034{left:159.333333pt;}
.x1_c00034{left:171.200000pt;}
.xd_c00034{left:199.568237pt;}
.xc_c00034{left:466.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_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_e21883b0f76cb8c86ab60084.woff2')format("woff");}.ff1_c00035{font-family:ff1_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:ff2_c00035;src:url('chunks/assets/font_ae76b190fd7e8ec631adb983.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_66f599b90251652a0a1fce71.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_ce51444b5ee08439ff72f370.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00035{font-family:ff5_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:ff6_c00035;src:url('chunks/assets/font_8a78fe91db63d39dc6131535.woff2')format("woff");}.ff6_c00035{font-family:ff6_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:ff7_c00035;src:url('chunks/assets/font_1c309053980bc84356bf1d86.woff2')format("woff");}.ff7_c00035{font-family:ff7_c00035;line-height:1.006336;font-style:normal;font-weight: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_c00035;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00035{font-family:ff8_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);}
.v1_c00035{vertical-align:-70.200000px;}
.v0_c00035{vertical-align:0.000000px;}
.ls3_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:3.000000px;}
.ls2_c00035{letter-spacing:13.200000px;}
.ls0_c00035{letter-spacing:15.600000px;}
.ls4_c00035{letter-spacing:30.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.250000px;}
.ws4_c00035{word-spacing:-45.846000px;}
.ws2_c00035{word-spacing:-33.000000px;}
.ws5_c00035{word-spacing:-19.182000px;}
.ws3_c00035{word-spacing:-16.629000px;}
.ws6_c00035{word-spacing:0.000000px;}
.ws1_c00035{word-spacing:3.036000px;}
._22_c00035{margin-left:-26.244000px;}
._12_c00035{margin-left:-19.389000px;}
._23_c00035{margin-left:-18.147000px;}
._7_c00035{margin-left:-15.249000px;}
._6_c00035{margin-left:-14.145000px;}
._8_c00035{margin-left:-12.696000px;}
._1_c00035{margin-left:-11.592000px;}
._9_c00035{margin-left:-10.557000px;}
._11_c00035{margin-left:-9.453000px;}
._0_c00035{margin-left:-8.211000px;}
._2_c00035{margin-left:-6.714000px;}
._b_c00035{margin-left:-5.244000px;}
._d_c00035{margin-left:-4.119000px;}
._a_c00035{margin-left:-2.946000px;}
._4_c00035{margin-left:-1.656000px;}
._1c_c00035{width:1.002000px;}
._20_c00035{width:2.250000px;}
._5_c00035{width:3.657000px;}
._1b_c00035{width:4.704000px;}
._e_c00035{width:5.769000px;}
._1a_c00035{width:7.476000px;}
._1f_c00035{width:8.625000px;}
._10_c00035{width:9.840000px;}
._19_c00035{width:11.661000px;}
._15_c00035{width:13.455000px;}
._c_c00035{width:14.952000px;}
._25_c00035{width:16.368000px;}
._21_c00035{width:17.469000px;}
._17_c00035{width:18.492000px;}
._1d_c00035{width:20.508000px;}
._18_c00035{width:22.356000px;}
._f_c00035{width:23.385000px;}
._14_c00035{width:24.924000px;}
._13_c00035{width:26.289000px;}
._16_c00035{width:40.134000px;}
._2a_c00035{width:65.259000px;}
._28_c00035{width:72.171000px;}
._27_c00035{width:97.614000px;}
._1e_c00035{width:143.532000px;}
._24_c00035{width:157.320000px;}
._29_c00035{width:162.108000px;}
._26_c00035{width:253.980000px;}
._3_c00035{width:363.333000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(128,128,128);}
.fc0_c00035{color:rgb(0,0,0);}
.fs5_c00035{font-size:24.000000px;}
.fs6_c00035{font-size:48.000000px;}
.fs4_c00035{font-size:54.000000px;}
.fs3_c00035{font-size:57.000000px;}
.fs2_c00035{font-size:60.000000px;}
.fs1_c00035{font-size:66.000000px;}
.fs0_c00035{font-size:69.000000px;}
.y0_c00035{bottom:0.000000px;}
.y1c_c00035{bottom:3.105000px;}
.y1b_c00035{bottom:7.228369px;}
.y1a_c00035{bottom:61.470000px;}
.y19_c00035{bottom:96.570000px;}
.y18_c00035{bottom:135.270000px;}
.y17_c00035{bottom:153.870000px;}
.y16_c00035{bottom:169.470000px;}
.y15_c00035{bottom:206.820000px;}
.y14_c00035{bottom:244.920000px;}
.y13_c00035{bottom:270.570000px;}
.y12_c00035{bottom:294.870000px;}
.y11_c00035{bottom:319.920000px;}
.y10_c00035{bottom:344.520000px;}
.yf_c00035{bottom:369.120000px;}
.ye_c00035{bottom:394.170000px;}
.yd_c00035{bottom:418.770000px;}
.yc_c00035{bottom:443.520000px;}
.yb_c00035{bottom:468.720000px;}
.ya_c00035{bottom:493.320000px;}
.y9_c00035{bottom:518.370000px;}
.y8_c00035{bottom:543.270000px;}
.y7_c00035{bottom:568.320000px;}
.y6_c00035{bottom:593.220000px;}
.y5_c00035{bottom:650.670000px;}
.y4_c00035{bottom:697.920000px;}
.y3_c00035{bottom:716.070000px;}
.y2_c00035{bottom:752.220000px;}
.y1_c00035{bottom:789.420000px;}
.h9_c00035{height:13.200073px;}
.ha_c00035{height:43.804688px;}
.h5_c00035{height:55.914551px;}
.h8_c00035{height:67.686035px;}
.h7_c00035{height:68.370117px;}
.h3_c00035{height:69.539062px;}
.h6_c00035{height:72.168457px;}
.h4_c00035{height:80.758301px;}
.h2_c00035{height:87.361816px;}
.h1_c00035{height:824.250000px;}
.h0_c00035{height:824.550000px;}
.w2_c00035{width:104.875500px;}
.w1_c00035{width:566.250000px;}
.w0_c00035{width:566.475000px;}
.x0_c00035{left:0.000000px;}
.x8_c00035{left:56.100000px;}
.x9_c00035{left:71.550000px;}
.xc_c00035{left:87.450000px;}
.xb_c00035{left:103.050000px;}
.x7_c00035{left:116.400000px;}
.xd_c00035{left:119.100000px;}
.x4_c00035{left:120.450000px;}
.x1_c00035{left:129.600000px;}
.x3_c00035{left:137.400000px;}
.x6_c00035{left:146.250000px;}
.x5_c00035{left:154.200000px;}
.x10_c00035{left:235.051758px;}
.xa_c00035{left:263.550000px;}
.x2_c00035{left:267.300000px;}
.xf_c00035{left:461.400000px;}
.xe_c00035{left:504.900000px;}
@media print{
.v1_c00035{vertical-align:-62.400000pt;}
.v0_c00035{vertical-align:0.000000pt;}
.ls3_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:2.666667pt;}
.ls2_c00035{letter-spacing:11.733333pt;}
.ls0_c00035{letter-spacing:13.866667pt;}
.ls4_c00035{letter-spacing:26.666667pt;}
.ws0_c00035{word-spacing:-42.000000pt;}
.ws4_c00035{word-spacing:-40.752000pt;}
.ws2_c00035{word-spacing:-29.333333pt;}
.ws5_c00035{word-spacing:-17.050667pt;}
.ws3_c00035{word-spacing:-14.781333pt;}
.ws6_c00035{word-spacing:0.000000pt;}
.ws1_c00035{word-spacing:2.698667pt;}
._22_c00035{margin-left:-23.328000pt;}
._12_c00035{margin-left:-17.234667pt;}
._23_c00035{margin-left:-16.130667pt;}
._7_c00035{margin-left:-13.554667pt;}
._6_c00035{margin-left:-12.573333pt;}
._8_c00035{margin-left:-11.285333pt;}
._1_c00035{margin-left:-10.304000pt;}
._9_c00035{margin-left:-9.384000pt;}
._11_c00035{margin-left:-8.402667pt;}
._0_c00035{margin-left:-7.298667pt;}
._2_c00035{margin-left:-5.968000pt;}
._b_c00035{margin-left:-4.661333pt;}
._d_c00035{margin-left:-3.661333pt;}
._a_c00035{margin-left:-2.618667pt;}
._4_c00035{margin-left:-1.472000pt;}
._1c_c00035{width:0.890667pt;}
._20_c00035{width:2.000000pt;}
._5_c00035{width:3.250667pt;}
._1b_c00035{width:4.181333pt;}
._e_c00035{width:5.128000pt;}
._1a_c00035{width:6.645333pt;}
._1f_c00035{width:7.666667pt;}
._10_c00035{width:8.746667pt;}
._19_c00035{width:10.365333pt;}
._15_c00035{width:11.960000pt;}
._c_c00035{width:13.290667pt;}
._25_c00035{width:14.549333pt;}
._21_c00035{width:15.528000pt;}
._17_c00035{width:16.437333pt;}
._1d_c00035{width:18.229333pt;}
._18_c00035{width:19.872000pt;}
._f_c00035{width:20.786667pt;}
._14_c00035{width:22.154667pt;}
._13_c00035{width:23.368000pt;}
._16_c00035{width:35.674667pt;}
._2a_c00035{width:58.008000pt;}
._28_c00035{width:64.152000pt;}
._27_c00035{width:86.768000pt;}
._1e_c00035{width:127.584000pt;}
._24_c00035{width:139.840000pt;}
._29_c00035{width:144.096000pt;}
._26_c00035{width:225.760000pt;}
._3_c00035{width:322.962667pt;}
.fs5_c00035{font-size:21.333333pt;}
.fs6_c00035{font-size:42.666667pt;}
.fs4_c00035{font-size:48.000000pt;}
.fs3_c00035{font-size:50.666667pt;}
.fs2_c00035{font-size:53.333333pt;}
.fs1_c00035{font-size:58.666667pt;}
.fs0_c00035{font-size:61.333333pt;}
.y0_c00035{bottom:0.000000pt;}
.y1c_c00035{bottom:2.760000pt;}
.y1b_c00035{bottom:6.425217pt;}
.y1a_c00035{bottom:54.640000pt;}
.y19_c00035{bottom:85.840000pt;}
.y18_c00035{bottom:120.240000pt;}
.y17_c00035{bottom:136.773333pt;}
.y16_c00035{bottom:150.640000pt;}
.y15_c00035{bottom:183.840000pt;}
.y14_c00035{bottom:217.706667pt;}
.y13_c00035{bottom:240.506667pt;}
.y12_c00035{bottom:262.106667pt;}
.y11_c00035{bottom:284.373333pt;}
.y10_c00035{bottom:306.240000pt;}
.yf_c00035{bottom:328.106667pt;}
.ye_c00035{bottom:350.373333pt;}
.yd_c00035{bottom:372.240000pt;}
.yc_c00035{bottom:394.240000pt;}
.yb_c00035{bottom:416.640000pt;}
.ya_c00035{bottom:438.506667pt;}
.y9_c00035{bottom:460.773333pt;}
.y8_c00035{bottom:482.906667pt;}
.y7_c00035{bottom:505.173333pt;}
.y6_c00035{bottom:527.306667pt;}
.y5_c00035{bottom:578.373333pt;}
.y4_c00035{bottom:620.373333pt;}
.y3_c00035{bottom:636.506667pt;}
.y2_c00035{bottom:668.640000pt;}
.y1_c00035{bottom:701.706667pt;}
.h9_c00035{height:11.733399pt;}
.ha_c00035{height:38.937500pt;}
.h5_c00035{height:49.701823pt;}
.h8_c00035{height:60.165365pt;}
.h7_c00035{height:60.773438pt;}
.h3_c00035{height:61.812500pt;}
.h6_c00035{height:64.149740pt;}
.h4_c00035{height:71.785156pt;}
.h2_c00035{height:77.654948pt;}
.h1_c00035{height:732.666667pt;}
.h0_c00035{height:732.933333pt;}
.w2_c00035{width:93.222667pt;}
.w1_c00035{width:503.333333pt;}
.w0_c00035{width:503.533333pt;}
.x0_c00035{left:0.000000pt;}
.x8_c00035{left:49.866667pt;}
.x9_c00035{left:63.600000pt;}
.xc_c00035{left:77.733333pt;}
.xb_c00035{left:91.600000pt;}
.x7_c00035{left:103.466667pt;}
.xd_c00035{left:105.866667pt;}
.x4_c00035{left:107.066667pt;}
.x1_c00035{left:115.200000pt;}
.x3_c00035{left:122.133333pt;}
.x6_c00035{left:130.000000pt;}
.x5_c00035{left:137.066667pt;}
.x10_c00035{left:208.934896pt;}
.xa_c00035{left:234.266667pt;}
.x2_c00035{left:237.600000pt;}
.xf_c00035{left:410.133333pt;}
.xe_c00035{left:448.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_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_2102c094667e8562e89b2c4b.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_a486116768286937f51129b7.woff2')format("woff");}.ff2_c00036{font-family:ff2_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:ff3_c00036;src:url('chunks/assets/font_3560c33abc41cf4c308ec4ca.woff2')format("woff");}.ff3_c00036{font-family:ff3_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:ff4_c00036;src:url('chunks/assets/font_40aa66ec8e83d00955d13c72.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_d10992340c981affa7e47255.woff2')format("woff");}.ff5_c00036{font-family:ff5_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:ff6_c00036;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.lsc_c00036{letter-spacing:0.000000px;}
.lsb_c00036{letter-spacing:3.000000px;}
.ls5_c00036{letter-spacing:3.702000px;}
.ls4_c00036{letter-spacing:6.600000px;}
.ls9_c00036{letter-spacing:9.672000px;}
.ls7_c00036{letter-spacing:12.000000px;}
.ls0_c00036{letter-spacing:14.400000px;}
.ls8_c00036{letter-spacing:14.925000px;}
.lsd_c00036{letter-spacing:15.000000px;}
.ls3_c00036{letter-spacing:21.000000px;}
.ls1_c00036{letter-spacing:25.200000px;}
.ls2_c00036{letter-spacing:28.839000px;}
.lsa_c00036{letter-spacing:48.519000px;}
.ls6_c00036{letter-spacing:54.714000px;}
.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;}
}
.ws7_c00036{word-spacing:-56.235000px;}
.ws8_c00036{word-spacing:-38.019000px;}
.ws5_c00036{word-spacing:-31.500000px;}
.ws0_c00036{word-spacing:-20.250000px;}
.ws4_c00036{word-spacing:-19.806000px;}
.ws2_c00036{word-spacing:-16.629000px;}
.ws1_c00036{word-spacing:-13.014000px;}
.wsa_c00036{word-spacing:0.000000px;}
.ws6_c00036{word-spacing:2.829000px;}
.ws3_c00036{word-spacing:3.432000px;}
.ws9_c00036{word-spacing:7.107000px;}
._1d_c00036{margin-left:-25.371000px;}
._28_c00036{margin-left:-22.770000px;}
._4_c00036{margin-left:-15.663000px;}
._0_c00036{margin-left:-13.800000px;}
._3_c00036{margin-left:-12.627000px;}
._1_c00036{margin-left:-9.453000px;}
._18_c00036{margin-left:-7.866000px;}
._8_c00036{margin-left:-5.934000px;}
._9_c00036{margin-left:-4.761000px;}
._a_c00036{margin-left:-3.105000px;}
._16_c00036{margin-left:-1.689000px;}
._7_c00036{width:1.242000px;}
._6_c00036{width:2.484000px;}
._19_c00036{width:3.660000px;}
._12_c00036{width:4.761000px;}
._14_c00036{width:6.450000px;}
._5_c00036{width:7.794000px;}
._15_c00036{width:9.246000px;}
._25_c00036{width:10.419000px;}
._1a_c00036{width:11.505000px;}
._c_c00036{width:13.524000px;}
._d_c00036{width:14.559000px;}
._1b_c00036{width:16.131000px;}
._f_c00036{width:17.802000px;}
._e_c00036{width:19.389000px;}
._11_c00036{width:20.937000px;}
._10_c00036{width:22.563000px;}
._24_c00036{width:23.568000px;}
._23_c00036{width:26.148000px;}
._17_c00036{width:27.384000px;}
._13_c00036{width:33.762000px;}
._21_c00036{width:35.541000px;}
._26_c00036{width:38.277000px;}
._20_c00036{width:53.901000px;}
._1f_c00036{width:101.565000px;}
._2_c00036{width:102.741000px;}
._22_c00036{width:106.635000px;}
._1e_c00036{width:144.195000px;}
._1c_c00036{width:149.649000px;}
._27_c00036{width:232.668000px;}
._29_c00036{width:259.992000px;}
._b_c00036{width:522.438000px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(128,128,128);}
.fc0_c00036{color:rgb(0,0,0);}
.fs5_c00036{font-size:48.000000px;}
.fs1_c00036{font-size:54.000000px;}
.fs4_c00036{font-size:55.200000px;}
.fs2_c00036{font-size:66.000000px;}
.fs0_c00036{font-size:69.000000px;}
.fs3_c00036{font-size:84.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1c_c00036{bottom:3.105000px;}
.y1b_c00036{bottom:7.228371px;}
.y1a_c00036{bottom:73.215000px;}
.y19_c00036{bottom:97.665000px;}
.y18_c00036{bottom:157.665000px;}
.y17_c00036{bottom:214.965000px;}
.y16_c00036{bottom:237.015000px;}
.y15_c00036{bottom:262.965000px;}
.y14_c00036{bottom:288.315000px;}
.y13_c00036{bottom:313.515000px;}
.y12_c00036{bottom:337.965000px;}
.y11_c00036{bottom:362.565000px;}
.y10_c00036{bottom:385.215000px;}
.yf_c00036{bottom:411.765000px;}
.ye_c00036{bottom:436.515000px;}
.yd_c00036{bottom:460.365000px;}
.y3_c00036{bottom:484.965000px;}
.yc_c00036{bottom:485.715000px;}
.y2_c00036{bottom:500.865000px;}
.yb_c00036{bottom:509.415000px;}
.y1_c00036{bottom:518.415000px;}
.ya_c00036{bottom:533.715000px;}
.y9_c00036{bottom:558.615000px;}
.y8_c00036{bottom:583.215000px;}
.y7_c00036{bottom:633.615000px;}
.y6_c00036{bottom:658.215000px;}
.y5_c00036{bottom:720.315000px;}
.y4_c00036{bottom:785.115000px;}
.h7_c00036{height:13.200074px;}
.h8_c00036{height:43.804688px;}
.h3_c00036{height:68.370117px;}
.h2_c00036{height:69.539062px;}
.h4_c00036{height:80.758301px;}
.h5_c00036{height:87.361816px;}
.h6_c00036{height:106.353516px;}
.h1_c00036{height:831.000000px;}
.h0_c00036{height:831.075000px;}
.w1_c00036{width:104.875500px;}
.w0_c00036{width:557.250000px;}
.x0_c00036{left:0.000000px;}
.x7_c00036{left:24.300000px;}
.x8_c00036{left:27.600000px;}
.x6_c00036{left:51.600000px;}
.x9_c00036{left:58.650000px;}
.x5_c00036{left:70.200000px;}
.x4_c00036{left:182.850000px;}
.xb_c00036{left:230.439240px;}
.xa_c00036{left:264.900000px;}
.x1_c00036{left:478.950000px;}
.x2_c00036{left:493.650000px;}
.x3_c00036{left:499.050000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.lsc_c00036{letter-spacing:0.000000pt;}
.lsb_c00036{letter-spacing:2.666667pt;}
.ls5_c00036{letter-spacing:3.290667pt;}
.ls4_c00036{letter-spacing:5.866667pt;}
.ls9_c00036{letter-spacing:8.597333pt;}
.ls7_c00036{letter-spacing:10.666667pt;}
.ls0_c00036{letter-spacing:12.800000pt;}
.ls8_c00036{letter-spacing:13.266667pt;}
.lsd_c00036{letter-spacing:13.333333pt;}
.ls3_c00036{letter-spacing:18.666667pt;}
.ls1_c00036{letter-spacing:22.400000pt;}
.ls2_c00036{letter-spacing:25.634667pt;}
.lsa_c00036{letter-spacing:43.128000pt;}
.ls6_c00036{letter-spacing:48.634667pt;}
.ws7_c00036{word-spacing:-49.986667pt;}
.ws8_c00036{word-spacing:-33.794667pt;}
.ws5_c00036{word-spacing:-28.000000pt;}
.ws0_c00036{word-spacing:-18.000000pt;}
.ws4_c00036{word-spacing:-17.605333pt;}
.ws2_c00036{word-spacing:-14.781333pt;}
.ws1_c00036{word-spacing:-11.568000pt;}
.wsa_c00036{word-spacing:0.000000pt;}
.ws6_c00036{word-spacing:2.514667pt;}
.ws3_c00036{word-spacing:3.050667pt;}
.ws9_c00036{word-spacing:6.317333pt;}
._1d_c00036{margin-left:-22.552000pt;}
._28_c00036{margin-left:-20.240000pt;}
._4_c00036{margin-left:-13.922667pt;}
._0_c00036{margin-left:-12.266667pt;}
._3_c00036{margin-left:-11.224000pt;}
._1_c00036{margin-left:-8.402667pt;}
._18_c00036{margin-left:-6.992000pt;}
._8_c00036{margin-left:-5.274667pt;}
._9_c00036{margin-left:-4.232000pt;}
._a_c00036{margin-left:-2.760000pt;}
._16_c00036{margin-left:-1.501333pt;}
._7_c00036{width:1.104000pt;}
._6_c00036{width:2.208000pt;}
._19_c00036{width:3.253333pt;}
._12_c00036{width:4.232000pt;}
._14_c00036{width:5.733333pt;}
._5_c00036{width:6.928000pt;}
._15_c00036{width:8.218667pt;}
._25_c00036{width:9.261333pt;}
._1a_c00036{width:10.226667pt;}
._c_c00036{width:12.021333pt;}
._d_c00036{width:12.941333pt;}
._1b_c00036{width:14.338667pt;}
._f_c00036{width:15.824000pt;}
._e_c00036{width:17.234667pt;}
._11_c00036{width:18.610667pt;}
._10_c00036{width:20.056000pt;}
._24_c00036{width:20.949333pt;}
._23_c00036{width:23.242667pt;}
._17_c00036{width:24.341333pt;}
._13_c00036{width:30.010667pt;}
._21_c00036{width:31.592000pt;}
._26_c00036{width:34.024000pt;}
._20_c00036{width:47.912000pt;}
._1f_c00036{width:90.280000pt;}
._2_c00036{width:91.325333pt;}
._22_c00036{width:94.786667pt;}
._1e_c00036{width:128.173333pt;}
._1c_c00036{width:133.021333pt;}
._27_c00036{width:206.816000pt;}
._29_c00036{width:231.104000pt;}
._b_c00036{width:464.389333pt;}
.fs5_c00036{font-size:42.666667pt;}
.fs1_c00036{font-size:48.000000pt;}
.fs4_c00036{font-size:49.066667pt;}
.fs2_c00036{font-size:58.666667pt;}
.fs0_c00036{font-size:61.333333pt;}
.fs3_c00036{font-size:74.666667pt;}
.y0_c00036{bottom:0.000000pt;}
.y1c_c00036{bottom:2.760000pt;}
.y1b_c00036{bottom:6.425219pt;}
.y1a_c00036{bottom:65.080000pt;}
.y19_c00036{bottom:86.813333pt;}
.y18_c00036{bottom:140.146667pt;}
.y17_c00036{bottom:191.080000pt;}
.y16_c00036{bottom:210.680000pt;}
.y15_c00036{bottom:233.746667pt;}
.y14_c00036{bottom:256.280000pt;}
.y13_c00036{bottom:278.680000pt;}
.y12_c00036{bottom:300.413333pt;}
.y11_c00036{bottom:322.280000pt;}
.y10_c00036{bottom:342.413333pt;}
.yf_c00036{bottom:366.013333pt;}
.ye_c00036{bottom:388.013333pt;}
.yd_c00036{bottom:409.213333pt;}
.y3_c00036{bottom:431.080000pt;}
.yc_c00036{bottom:431.746667pt;}
.y2_c00036{bottom:445.213333pt;}
.yb_c00036{bottom:452.813333pt;}
.y1_c00036{bottom:460.813333pt;}
.ya_c00036{bottom:474.413333pt;}
.y9_c00036{bottom:496.546667pt;}
.y8_c00036{bottom:518.413333pt;}
.y7_c00036{bottom:563.213333pt;}
.y6_c00036{bottom:585.080000pt;}
.y5_c00036{bottom:640.280000pt;}
.y4_c00036{bottom:697.880000pt;}
.h7_c00036{height:11.733399pt;}
.h8_c00036{height:38.937500pt;}
.h3_c00036{height:60.773438pt;}
.h2_c00036{height:61.812500pt;}
.h4_c00036{height:71.785156pt;}
.h5_c00036{height:77.654948pt;}
.h6_c00036{height:94.536458pt;}
.h1_c00036{height:738.666667pt;}
.h0_c00036{height:738.733333pt;}
.w1_c00036{width:93.222667pt;}
.w0_c00036{width:495.333333pt;}
.x0_c00036{left:0.000000pt;}
.x7_c00036{left:21.600000pt;}
.x8_c00036{left:24.533333pt;}
.x6_c00036{left:45.866667pt;}
.x9_c00036{left:52.133333pt;}
.x5_c00036{left:62.400000pt;}
.x4_c00036{left:162.533333pt;}
.xb_c00036{left:204.834880pt;}
.xa_c00036{left:235.466667pt;}
.x1_c00036{left:425.733333pt;}
.x2_c00036{left:438.800000pt;}
.x3_c00036{left:443.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_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_38452775fe744e09819c1d35.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;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_c00037;src:url('chunks/assets/font_6deb4daf78c458b5730befd0.woff2')format("woff");}.ff2_c00037{font-family:ff2_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:ff3_c00037;src:url('chunks/assets/font_ebebc110005e30f41546e1cf.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_6c92b11419881a07c82ca0ee.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;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_c00037;src:url('chunks/assets/font_a02715e76b7afe316ae17ec2.woff2')format("woff");}.ff5_c00037{font-family:ff5_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:ff6_c00037;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00037{font-family:ff6_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:ff7_c00037;src:url('chunks/assets/font_82b613f0c11c7da846baa2d4.woff2')format("woff");}.ff7_c00037{font-family:ff7_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:ff8_c00037;src:url('chunks/assets/font_b75cebe580c5ca7c7d3a3db6.woff2')format("woff");}.ff8_c00037{font-family:ff8_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:ff9_c00037;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00037{font-family:ff9_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;}
.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;}
.ls3_c00037{letter-spacing:-6.000000px;}
.ls2_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:3.000000px;}
.ls0_c00037{letter-spacing:13.800000px;}
.ls4_c00037{letter-spacing:15.000000px;}
.ls5_c00037{letter-spacing:27.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:-59.022000px;}
.ws4_c00037{word-spacing:-44.250000px;}
.ws0_c00037{word-spacing:-36.120000px;}
.ws3_c00037{word-spacing:-33.825000px;}
.ws1_c00037{word-spacing:-16.629000px;}
.ws5_c00037{word-spacing:-3.900000px;}
.ws6_c00037{word-spacing:0.000000px;}
._21_c00037{margin-left:-21.405000px;}
._23_c00037{margin-left:-20.148000px;}
._8_c00037{margin-left:-14.007000px;}
._1c_c00037{margin-left:-12.090000px;}
._16_c00037{margin-left:-10.350000px;}
._13_c00037{margin-left:-9.108000px;}
._10_c00037{margin-left:-6.885000px;}
._d_c00037{margin-left:-5.814000px;}
._24_c00037{margin-left:-4.686000px;}
._b_c00037{margin-left:-3.603000px;}
._0_c00037{margin-left:-2.400000px;}
._9_c00037{margin-left:-1.104000px;}
._5_c00037{width:1.794000px;}
._4_c00037{width:3.450000px;}
._6_c00037{width:4.761000px;}
._1b_c00037{width:5.943000px;}
._e_c00037{width:7.092000px;}
._2_c00037{width:8.832000px;}
._1e_c00037{width:9.957000px;}
._f_c00037{width:11.031000px;}
._7_c00037{width:12.765000px;}
._1_c00037{width:13.938000px;}
._1f_c00037{width:15.606000px;}
._18_c00037{width:16.614000px;}
._17_c00037{width:18.093000px;}
._11_c00037{width:21.198000px;}
._14_c00037{width:22.287000px;}
._15_c00037{width:25.017000px;}
._12_c00037{width:26.508000px;}
._c_c00037{width:27.924000px;}
._19_c00037{width:28.929000px;}
._a_c00037{width:30.972000px;}
._1a_c00037{width:32.637000px;}
._22_c00037{width:46.098000px;}
._25_c00037{width:90.714000px;}
._20_c00037{width:91.716000px;}
._3_c00037{width:364.044000px;}
._1d_c00037{width:410.331000px;}
.fc2_c00037{color:transparent;}
.fc1_c00037{color:rgb(128,128,128);}
.fc0_c00037{color:rgb(0,0,0);}
.fs5_c00037{font-size:48.000000px;}
.fs0_c00037{font-size:60.000000px;}
.fs1_c00037{font-size:63.000000px;}
.fs3_c00037{font-size:66.000000px;}
.fs2_c00037{font-size:69.000000px;}
.fs4_c00037{font-size:75.000000px;}
.y0_c00037{bottom:0.000000px;}
.y22_c00037{bottom:3.105000px;}
.y21_c00037{bottom:7.228371px;}
.y20_c00037{bottom:59.115000px;}
.y1f_c00037{bottom:61.515000px;}
.y1e_c00037{bottom:92.115000px;}
.y1d_c00037{bottom:116.565000px;}
.y1c_c00037{bottom:141.165000px;}
.y1b_c00037{bottom:166.365000px;}
.y1a_c00037{bottom:191.715000px;}
.y19_c00037{bottom:216.315000px;}
.y18_c00037{bottom:241.065000px;}
.y17_c00037{bottom:266.265000px;}
.y16_c00037{bottom:291.615000px;}
.y15_c00037{bottom:316.365000px;}
.y14_c00037{bottom:340.515000px;}
.y13_c00037{bottom:364.815000px;}
.y12_c00037{bottom:388.515000px;}
.y11_c00037{bottom:414.165000px;}
.y10_c00037{bottom:437.865000px;}
.yf_c00037{bottom:464.115000px;}
.ye_c00037{bottom:489.015000px;}
.yd_c00037{bottom:513.465000px;}
.yc_c00037{bottom:538.665000px;}
.yb_c00037{bottom:563.265000px;}
.ya_c00037{bottom:588.015000px;}
.y9_c00037{bottom:612.615000px;}
.y8_c00037{bottom:637.515000px;}
.y1_c00037{bottom:647.115000px;}
.y7_c00037{bottom:662.565000px;}
.y6_c00037{bottom:687.915000px;}
.y5_c00037{bottom:713.115000px;}
.y4_c00037{bottom:738.165000px;}
.y3_c00037{bottom:763.815000px;}
.y2_c00037{bottom:788.715000px;}
.h9_c00037{height:13.200074px;}
.ha_c00037{height:43.804688px;}
.h8_c00037{height:65.040000px;}
.h3_c00037{height:67.686035px;}
.h5_c00037{height:67.719727px;}
.h2_c00037{height:79.765137px;}
.h4_c00037{height:80.758301px;}
.h6_c00037{height:87.361816px;}
.h7_c00037{height:94.958496px;}
.h0_c00037{height:833.775000px;}
.h1_c00037{height:834.000000px;}
.w2_c00037{width:104.875500px;}
.w0_c00037{width:572.925000px;}
.w1_c00037{width:573.000000px;}
.x0_c00037{left:0.000000px;}
.x6_c00037{left:56.400000px;}
.xb_c00037{left:59.700000px;}
.x7_c00037{left:71.850000px;}
.xa_c00037{left:74.850000px;}
.x1_c00037{left:90.450000px;}
.x8_c00037{left:116.400000px;}
.x5_c00037{left:121.050000px;}
.x3_c00037{left:122.850000px;}
.x2_c00037{left:133.650000px;}
.x9_c00037{left:146.100000px;}
.x4_c00037{left:147.750000px;}
.xe_c00037{left:238.276749px;}
.xc_c00037{left:526.500000px;}
.xd_c00037{left:552.150000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls3_c00037{letter-spacing:-5.333333pt;}
.ls2_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:2.666667pt;}
.ls0_c00037{letter-spacing:12.266667pt;}
.ls4_c00037{letter-spacing:13.333333pt;}
.ls5_c00037{letter-spacing:24.000000pt;}
.ws2_c00037{word-spacing:-52.464000pt;}
.ws4_c00037{word-spacing:-39.333333pt;}
.ws0_c00037{word-spacing:-32.106667pt;}
.ws3_c00037{word-spacing:-30.066667pt;}
.ws1_c00037{word-spacing:-14.781333pt;}
.ws5_c00037{word-spacing:-3.466667pt;}
.ws6_c00037{word-spacing:0.000000pt;}
._21_c00037{margin-left:-19.026667pt;}
._23_c00037{margin-left:-17.909333pt;}
._8_c00037{margin-left:-12.450667pt;}
._1c_c00037{margin-left:-10.746667pt;}
._16_c00037{margin-left:-9.200000pt;}
._13_c00037{margin-left:-8.096000pt;}
._10_c00037{margin-left:-6.120000pt;}
._d_c00037{margin-left:-5.168000pt;}
._24_c00037{margin-left:-4.165333pt;}
._b_c00037{margin-left:-3.202667pt;}
._0_c00037{margin-left:-2.133333pt;}
._9_c00037{margin-left:-0.981333pt;}
._5_c00037{width:1.594667pt;}
._4_c00037{width:3.066667pt;}
._6_c00037{width:4.232000pt;}
._1b_c00037{width:5.282667pt;}
._e_c00037{width:6.304000pt;}
._2_c00037{width:7.850667pt;}
._1e_c00037{width:8.850667pt;}
._f_c00037{width:9.805333pt;}
._7_c00037{width:11.346667pt;}
._1_c00037{width:12.389333pt;}
._1f_c00037{width:13.872000pt;}
._18_c00037{width:14.768000pt;}
._17_c00037{width:16.082667pt;}
._11_c00037{width:18.842667pt;}
._14_c00037{width:19.810667pt;}
._15_c00037{width:22.237333pt;}
._12_c00037{width:23.562667pt;}
._c_c00037{width:24.821333pt;}
._19_c00037{width:25.714667pt;}
._a_c00037{width:27.530667pt;}
._1a_c00037{width:29.010667pt;}
._22_c00037{width:40.976000pt;}
._25_c00037{width:80.634667pt;}
._20_c00037{width:81.525333pt;}
._3_c00037{width:323.594667pt;}
._1d_c00037{width:364.738667pt;}
.fs5_c00037{font-size:42.666667pt;}
.fs0_c00037{font-size:53.333333pt;}
.fs1_c00037{font-size:56.000000pt;}
.fs3_c00037{font-size:58.666667pt;}
.fs2_c00037{font-size:61.333333pt;}
.fs4_c00037{font-size:66.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y22_c00037{bottom:2.760000pt;}
.y21_c00037{bottom:6.425219pt;}
.y20_c00037{bottom:52.546667pt;}
.y1f_c00037{bottom:54.680000pt;}
.y1e_c00037{bottom:81.880000pt;}
.y1d_c00037{bottom:103.613333pt;}
.y1c_c00037{bottom:125.480000pt;}
.y1b_c00037{bottom:147.880000pt;}
.y1a_c00037{bottom:170.413333pt;}
.y19_c00037{bottom:192.280000pt;}
.y18_c00037{bottom:214.280000pt;}
.y17_c00037{bottom:236.680000pt;}
.y16_c00037{bottom:259.213333pt;}
.y15_c00037{bottom:281.213333pt;}
.y14_c00037{bottom:302.680000pt;}
.y13_c00037{bottom:324.280000pt;}
.y12_c00037{bottom:345.346667pt;}
.y11_c00037{bottom:368.146667pt;}
.y10_c00037{bottom:389.213333pt;}
.yf_c00037{bottom:412.546667pt;}
.ye_c00037{bottom:434.680000pt;}
.yd_c00037{bottom:456.413333pt;}
.yc_c00037{bottom:478.813333pt;}
.yb_c00037{bottom:500.680000pt;}
.ya_c00037{bottom:522.680000pt;}
.y9_c00037{bottom:544.546667pt;}
.y8_c00037{bottom:566.680000pt;}
.y1_c00037{bottom:575.213333pt;}
.y7_c00037{bottom:588.946667pt;}
.y6_c00037{bottom:611.480000pt;}
.y5_c00037{bottom:633.880000pt;}
.y4_c00037{bottom:656.146667pt;}
.y3_c00037{bottom:678.946667pt;}
.y2_c00037{bottom:701.080000pt;}
.h9_c00037{height:11.733399pt;}
.ha_c00037{height:38.937500pt;}
.h8_c00037{height:57.813333pt;}
.h3_c00037{height:60.165365pt;}
.h5_c00037{height:60.195312pt;}
.h2_c00037{height:70.902344pt;}
.h4_c00037{height:71.785156pt;}
.h6_c00037{height:77.654948pt;}
.h7_c00037{height:84.407552pt;}
.h0_c00037{height:741.133333pt;}
.h1_c00037{height:741.333333pt;}
.w2_c00037{width:93.222667pt;}
.w0_c00037{width:509.266667pt;}
.w1_c00037{width:509.333333pt;}
.x0_c00037{left:0.000000pt;}
.x6_c00037{left:50.133333pt;}
.xb_c00037{left:53.066667pt;}
.x7_c00037{left:63.866667pt;}
.xa_c00037{left:66.533333pt;}
.x1_c00037{left:80.400000pt;}
.x8_c00037{left:103.466667pt;}
.x5_c00037{left:107.600000pt;}
.x3_c00037{left:109.200000pt;}
.x2_c00037{left:118.800000pt;}
.x9_c00037{left:129.866667pt;}
.x4_c00037{left:131.333333pt;}
.xe_c00037{left:211.801554pt;}
.xc_c00037{left:468.000000pt;}
.xd_c00037{left:490.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_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_ef43f77a4b207abc043a1651.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_698608d82d0dc730da20299e.woff2')format("woff");}.ff2_c00038{font-family:ff2_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:ff3_c00038;src:url('chunks/assets/font_dbf9151b4cdbe674eb6abb3e.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_3d2f3fa070c5fa80c25af63e.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00038{font-family:ff5_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:ff6_c00038;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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:0.000000px;}
.ls3_c00038{letter-spacing:3.000000px;}
.ls1_c00038{letter-spacing:15.474000px;}
.ls0_c00038{letter-spacing:16.101000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00038{word-spacing:-17.250000px;}
.ws2_c00038{word-spacing:-16.629000px;}
.ws0_c00038{word-spacing:-1.242000px;}
.ws4_c00038{word-spacing:0.000000px;}
.ws3_c00038{word-spacing:0.693000px;}
._1c_c00038{margin-left:-22.494000px;}
._13_c00038{margin-left:-14.490000px;}
._17_c00038{margin-left:-12.282000px;}
._e_c00038{margin-left:-10.557000px;}
._2_c00038{margin-left:-9.315000px;}
._8_c00038{margin-left:-7.659000px;}
._4_c00038{margin-left:-6.141000px;}
._1e_c00038{margin-left:-4.830000px;}
._3_c00038{margin-left:-3.588000px;}
._5_c00038{margin-left:-2.001000px;}
._0_c00038{width:1.794000px;}
._1_c00038{width:2.829000px;}
._a_c00038{width:4.140000px;}
._9_c00038{width:5.244000px;}
._c_c00038{width:6.279000px;}
._12_c00038{width:7.590000px;}
._14_c00038{width:8.694000px;}
._10_c00038{width:10.074000px;}
._19_c00038{width:11.904000px;}
._b_c00038{width:12.972000px;}
._7_c00038{width:14.628000px;}
._d_c00038{width:16.353000px;}
._1a_c00038{width:17.625000px;}
._20_c00038{width:21.390000px;}
._f_c00038{width:23.046000px;}
._1f_c00038{width:28.047000px;}
._1d_c00038{width:33.912000px;}
._16_c00038{width:38.271000px;}
._1b_c00038{width:42.126000px;}
._18_c00038{width:99.882000px;}
._21_c00038{width:105.570000px;}
._6_c00038{width:544.959000px;}
._11_c00038{width:925.536000px;}
._15_c00038{width:1107.597000px;}
.fc2_c00038{color:transparent;}
.fc1_c00038{color:rgb(128,128,128);}
.fc0_c00038{color:rgb(0,0,0);}
.fs3_c00038{font-size:48.000000px;}
.fs1_c00038{font-size:54.000000px;}
.fs0_c00038{font-size:69.000000px;}
.fs2_c00038{font-size:81.000000px;}
.y0_c00038{bottom:0.000000px;}
.y1f_c00038{bottom:3.105000px;}
.y1e_c00038{bottom:7.228369px;}
.y1d_c00038{bottom:56.070000px;}
.y1c_c00038{bottom:80.670000px;}
.y1b_c00038{bottom:106.020000px;}
.y1a_c00038{bottom:130.620000px;}
.y19_c00038{bottom:154.920000px;}
.y18_c00038{bottom:180.120000px;}
.y17_c00038{bottom:205.170000px;}
.y16_c00038{bottom:230.070000px;}
.y15_c00038{bottom:255.120000px;}
.y14_c00038{bottom:279.720000px;}
.y13_c00038{bottom:304.470000px;}
.y12_c00038{bottom:329.370000px;}
.y11_c00038{bottom:354.270000px;}
.y10_c00038{bottom:378.720000px;}
.yf_c00038{bottom:403.320000px;}
.ye_c00038{bottom:428.220000px;}
.yd_c00038{bottom:452.970000px;}
.yc_c00038{bottom:477.570000px;}
.yb_c00038{bottom:502.170000px;}
.ya_c00038{bottom:527.070000px;}
.y9_c00038{bottom:551.520000px;}
.y8_c00038{bottom:577.020000px;}
.y7_c00038{bottom:594.720000px;}
.y6_c00038{bottom:601.470000px;}
.y5_c00038{bottom:650.370000px;}
.y4_c00038{bottom:699.420000px;}
.y3_c00038{bottom:724.620000px;}
.y2_c00038{bottom:749.820000px;}
.y1_c00038{bottom:774.870000px;}
.h7_c00038{height:13.200073px;}
.h8_c00038{height:43.804688px;}
.h3_c00038{height:67.686035px;}
.h5_c00038{height:67.719727px;}
.h4_c00038{height:69.539062px;}
.h2_c00038{height:87.361816px;}
.h6_c00038{height:102.555176px;}
.h0_c00038{height:821.850000px;}
.h1_c00038{height:822.000000px;}
.w2_c00038{width:104.875500px;}
.w1_c00038{width:550.500000px;}
.w0_c00038{width:550.800000px;}
.x0_c00038{left:0.000000px;}
.x6_c00038{left:29.400000px;}
.x2_c00038{left:30.750000px;}
.x7_c00038{left:33.450000px;}
.x9_c00038{left:34.800000px;}
.xa_c00038{left:36.150000px;}
.xb_c00038{left:37.350000px;}
.xc_c00038{left:38.700000px;}
.xd_c00038{left:40.200000px;}
.xe_c00038{left:41.850000px;}
.x8_c00038{left:59.400000px;}
.x4_c00038{left:85.350000px;}
.x1_c00038{left:178.200000px;}
.x5_c00038{left:212.400000px;}
.xf_c00038{left:227.214249px;}
.x3_c00038{left:243.000000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls2_c00038{letter-spacing:0.000000pt;}
.ls3_c00038{letter-spacing:2.666667pt;}
.ls1_c00038{letter-spacing:13.754667pt;}
.ls0_c00038{letter-spacing:14.312000pt;}
.ws1_c00038{word-spacing:-15.333333pt;}
.ws2_c00038{word-spacing:-14.781333pt;}
.ws0_c00038{word-spacing:-1.104000pt;}
.ws4_c00038{word-spacing:0.000000pt;}
.ws3_c00038{word-spacing:0.616000pt;}
._1c_c00038{margin-left:-19.994667pt;}
._13_c00038{margin-left:-12.880000pt;}
._17_c00038{margin-left:-10.917333pt;}
._e_c00038{margin-left:-9.384000pt;}
._2_c00038{margin-left:-8.280000pt;}
._8_c00038{margin-left:-6.808000pt;}
._4_c00038{margin-left:-5.458667pt;}
._1e_c00038{margin-left:-4.293333pt;}
._3_c00038{margin-left:-3.189333pt;}
._5_c00038{margin-left:-1.778667pt;}
._0_c00038{width:1.594667pt;}
._1_c00038{width:2.514667pt;}
._a_c00038{width:3.680000pt;}
._9_c00038{width:4.661333pt;}
._c_c00038{width:5.581333pt;}
._12_c00038{width:6.746667pt;}
._14_c00038{width:7.728000pt;}
._10_c00038{width:8.954667pt;}
._19_c00038{width:10.581333pt;}
._b_c00038{width:11.530667pt;}
._7_c00038{width:13.002667pt;}
._d_c00038{width:14.536000pt;}
._1a_c00038{width:15.666667pt;}
._20_c00038{width:19.013333pt;}
._f_c00038{width:20.485333pt;}
._1f_c00038{width:24.930667pt;}
._1d_c00038{width:30.144000pt;}
._16_c00038{width:34.018667pt;}
._1b_c00038{width:37.445333pt;}
._18_c00038{width:88.784000pt;}
._21_c00038{width:93.840000pt;}
._6_c00038{width:484.408000pt;}
._11_c00038{width:822.698667pt;}
._15_c00038{width:984.530667pt;}
.fs3_c00038{font-size:42.666667pt;}
.fs1_c00038{font-size:48.000000pt;}
.fs0_c00038{font-size:61.333333pt;}
.fs2_c00038{font-size:72.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y1f_c00038{bottom:2.760000pt;}
.y1e_c00038{bottom:6.425217pt;}
.y1d_c00038{bottom:49.840000pt;}
.y1c_c00038{bottom:71.706667pt;}
.y1b_c00038{bottom:94.240000pt;}
.y1a_c00038{bottom:116.106667pt;}
.y19_c00038{bottom:137.706667pt;}
.y18_c00038{bottom:160.106667pt;}
.y17_c00038{bottom:182.373333pt;}
.y16_c00038{bottom:204.506667pt;}
.y15_c00038{bottom:226.773333pt;}
.y14_c00038{bottom:248.640000pt;}
.y13_c00038{bottom:270.640000pt;}
.y12_c00038{bottom:292.773333pt;}
.y11_c00038{bottom:314.906667pt;}
.y10_c00038{bottom:336.640000pt;}
.yf_c00038{bottom:358.506667pt;}
.ye_c00038{bottom:380.640000pt;}
.yd_c00038{bottom:402.640000pt;}
.yc_c00038{bottom:424.506667pt;}
.yb_c00038{bottom:446.373333pt;}
.ya_c00038{bottom:468.506667pt;}
.y9_c00038{bottom:490.240000pt;}
.y8_c00038{bottom:512.906667pt;}
.y7_c00038{bottom:528.640000pt;}
.y6_c00038{bottom:534.640000pt;}
.y5_c00038{bottom:578.106667pt;}
.y4_c00038{bottom:621.706667pt;}
.y3_c00038{bottom:644.106667pt;}
.y2_c00038{bottom:666.506667pt;}
.y1_c00038{bottom:688.773333pt;}
.h7_c00038{height:11.733399pt;}
.h8_c00038{height:38.937500pt;}
.h3_c00038{height:60.165365pt;}
.h5_c00038{height:60.195312pt;}
.h4_c00038{height:61.812500pt;}
.h2_c00038{height:77.654948pt;}
.h6_c00038{height:91.160156pt;}
.h0_c00038{height:730.533333pt;}
.h1_c00038{height:730.666667pt;}
.w2_c00038{width:93.222667pt;}
.w1_c00038{width:489.333333pt;}
.w0_c00038{width:489.600000pt;}
.x0_c00038{left:0.000000pt;}
.x6_c00038{left:26.133333pt;}
.x2_c00038{left:27.333333pt;}
.x7_c00038{left:29.733333pt;}
.x9_c00038{left:30.933333pt;}
.xa_c00038{left:32.133333pt;}
.xb_c00038{left:33.200000pt;}
.xc_c00038{left:34.400000pt;}
.xd_c00038{left:35.733333pt;}
.xe_c00038{left:37.200000pt;}
.x8_c00038{left:52.800000pt;}
.x4_c00038{left:75.866667pt;}
.x1_c00038{left:158.400000pt;}
.x5_c00038{left:188.800000pt;}
.xf_c00038{left:201.968221pt;}
.x3_c00038{left:216.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_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_1486af6e080b6e76496213ad.woff2')format("woff");}.ff1_c00039{font-family:ff1_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:ff2_c00039;src:url('chunks/assets/font_9cdba8f5d601061b9c67e63d.woff2')format("woff");}.ff2_c00039{font-family:ff2_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:ff3_c00039;src:url('chunks/assets/font_db2c2ae67e4d2da5100e0394.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;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_c00039;src:url('chunks/assets/font_12f48098c826bab441e987e7.woff2')format("woff");}.ff4_c00039{font-family:ff4_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:ff5_c00039;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.v0_c00039{vertical-align:0.000000px;}
.lsa_c00039{letter-spacing:-3.000000px;}
.ls9_c00039{letter-spacing:0.000000px;}
.ls6_c00039{letter-spacing:0.264000px;}
.ls2_c00039{letter-spacing:2.028000px;}
.ls8_c00039{letter-spacing:3.000000px;}
.ls5_c00039{letter-spacing:4.464000px;}
.lsb_c00039{letter-spacing:9.000000px;}
.ls0_c00039{letter-spacing:9.240000px;}
.ls1_c00039{letter-spacing:12.774000px;}
.ls4_c00039{letter-spacing:17.664000px;}
.ls7_c00039{letter-spacing:22.725000px;}
.ls3_c00039{letter-spacing:27.378000px;}
.lsc_c00039{letter-spacing:36.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00039{word-spacing:-51.900000px;}
.ws3_c00039{word-spacing:-20.244000px;}
.ws6_c00039{word-spacing:-19.629000px;}
.ws4_c00039{word-spacing:-16.629000px;}
.ws0_c00039{word-spacing:-15.906000px;}
.ws8_c00039{word-spacing:-0.858000px;}
.ws5_c00039{word-spacing:-0.552000px;}
.ws7_c00039{word-spacing:-0.198000px;}
.ws9_c00039{word-spacing:0.000000px;}
.ws1_c00039{word-spacing:2.868000px;}
._2c_c00039{margin-left:-18.699000px;}
._13_c00039{margin-left:-15.315000px;}
._17_c00039{margin-left:-14.145000px;}
._2b_c00039{margin-left:-12.735000px;}
._0_c00039{margin-left:-11.661000px;}
._11_c00039{margin-left:-9.891000px;}
._2_c00039{margin-left:-8.847000px;}
._2d_c00039{margin-left:-7.821000px;}
._22_c00039{margin-left:-6.750000px;}
._28_c00039{margin-left:-5.475000px;}
._10_c00039{margin-left:-4.236000px;}
._12_c00039{margin-left:-2.865000px;}
._f_c00039{margin-left:-1.695000px;}
._4_c00039{width:1.143000px;}
._1_c00039{width:2.553000px;}
._7_c00039{width:3.564000px;}
._8_c00039{width:5.478000px;}
._1c_c00039{width:6.492000px;}
._9_c00039{width:7.545000px;}
._5_c00039{width:8.691000px;}
._a_c00039{width:10.032000px;}
._19_c00039{width:11.322000px;}
._6_c00039{width:12.672000px;}
._c_c00039{width:14.124000px;}
._1a_c00039{width:15.573000px;}
._b_c00039{width:17.556000px;}
._25_c00039{width:19.602000px;}
._d_c00039{width:21.120000px;}
._1d_c00039{width:22.647000px;}
._1e_c00039{width:23.982000px;}
._26_c00039{width:25.542000px;}
._27_c00039{width:26.748000px;}
._16_c00039{width:29.133000px;}
._2e_c00039{width:32.292000px;}
._15_c00039{width:35.337000px;}
._14_c00039{width:36.795000px;}
._1b_c00039{width:38.667000px;}
._2a_c00039{width:43.182000px;}
._18_c00039{width:45.195000px;}
._29_c00039{width:54.498000px;}
._1f_c00039{width:96.435000px;}
._e_c00039{width:126.984000px;}
._2f_c00039{width:137.004000px;}
._20_c00039{width:180.222000px;}
._24_c00039{width:211.371000px;}
._23_c00039{width:259.359000px;}
._21_c00039{width:272.562000px;}
._3_c00039{width:355.878000px;}
.fc2_c00039{color:transparent;}
.fc1_c00039{color:rgb(128,128,128);}
.fc0_c00039{color:rgb(0,0,0);}
.fs8_c00039{font-size:48.000000px;}
.fs6_c00039{font-size:54.000000px;}
.fs1_c00039{font-size:66.000000px;}
.fs0_c00039{font-size:69.000000px;}
.fs4_c00039{font-size:75.000000px;}
.fs5_c00039{font-size:84.000000px;}
.fs3_c00039{font-size:96.000000px;}
.fs2_c00039{font-size:132.000000px;}
.fs7_c00039{font-size:153.000000px;}
.y0_c00039{bottom:0.000000px;}
.y1d_c00039{bottom:3.105000px;}
.y1c_c00039{bottom:7.228371px;}
.y1b_c00039{bottom:70.965000px;}
.y1a_c00039{bottom:98.265000px;}
.y19_c00039{bottom:123.165000px;}
.y18_c00039{bottom:147.465000px;}
.y17_c00039{bottom:172.815000px;}
.y16_c00039{bottom:197.565000px;}
.y15_c00039{bottom:221.865000px;}
.y14_c00039{bottom:247.515000px;}
.y13_c00039{bottom:273.165000px;}
.y12_c00039{bottom:297.765000px;}
.y11_c00039{bottom:346.065000px;}
.y10_c00039{bottom:370.965000px;}
.yf_c00039{bottom:396.015000px;}
.ye_c00039{bottom:421.215000px;}
.yd_c00039{bottom:445.515000px;}
.yc_c00039{bottom:472.215000px;}
.yb_c00039{bottom:495.165000px;}
.ya_c00039{bottom:520.215000px;}
.y9_c00039{bottom:544.515000px;}
.y8_c00039{bottom:569.265000px;}
.y7_c00039{bottom:594.015000px;}
.y6_c00039{bottom:618.765000px;}
.y5_c00039{bottom:642.315000px;}
.y4_c00039{bottom:668.265000px;}
.y3_c00039{bottom:693.615000px;}
.y2_c00039{bottom:742.965000px;}
.y1_c00039{bottom:793.215000px;}
.ha_c00039{height:13.200074px;}
.hb_c00039{height:43.804688px;}
.h5_c00039{height:77.247070px;}
.h8_c00039{height:80.758301px;}
.h4_c00039{height:83.563477px;}
.h2_c00039{height:87.361816px;}
.h6_c00039{height:106.353516px;}
.h7_c00039{height:121.546875px;}
.h3_c00039{height:143.088000px;}
.h9_c00039{height:193.715332px;}
.h0_c00039{height:833.775000px;}
.h1_c00039{height:834.000000px;}
.w2_c00039{width:104.875500px;}
.w0_c00039{width:572.925000px;}
.w1_c00039{width:573.000000px;}
.x0_c00039{left:0.000000px;}
.x8_c00039{left:45.600000px;}
.x9_c00039{left:46.950000px;}
.xe_c00039{left:48.600000px;}
.x7_c00039{left:62.550000px;}
.xd_c00039{left:80.550000px;}
.x4_c00039{left:111.000000px;}
.x6_c00039{left:112.050000px;}
.xa_c00039{left:113.100000px;}
.x5_c00039{left:117.450000px;}
.x1_c00039{left:122.850000px;}
.xc_c00039{left:136.950000px;}
.x3_c00039{left:138.000000px;}
.x2_c00039{left:150.900000px;}
.xb_c00039{left:154.350000px;}
.x10_c00039{left:238.276749px;}
.xf_c00039{left:535.650000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.lsa_c00039{letter-spacing:-2.666667pt;}
.ls9_c00039{letter-spacing:0.000000pt;}
.ls6_c00039{letter-spacing:0.234667pt;}
.ls2_c00039{letter-spacing:1.802667pt;}
.ls8_c00039{letter-spacing:2.666667pt;}
.ls5_c00039{letter-spacing:3.968000pt;}
.lsb_c00039{letter-spacing:8.000000pt;}
.ls0_c00039{letter-spacing:8.213333pt;}
.ls1_c00039{letter-spacing:11.354667pt;}
.ls4_c00039{letter-spacing:15.701333pt;}
.ls7_c00039{letter-spacing:20.200000pt;}
.ls3_c00039{letter-spacing:24.336000pt;}
.lsc_c00039{letter-spacing:32.000000pt;}
.ws2_c00039{word-spacing:-46.133333pt;}
.ws3_c00039{word-spacing:-17.994667pt;}
.ws6_c00039{word-spacing:-17.448000pt;}
.ws4_c00039{word-spacing:-14.781333pt;}
.ws0_c00039{word-spacing:-14.138667pt;}
.ws8_c00039{word-spacing:-0.762667pt;}
.ws5_c00039{word-spacing:-0.490667pt;}
.ws7_c00039{word-spacing:-0.176000pt;}
.ws9_c00039{word-spacing:0.000000pt;}
.ws1_c00039{word-spacing:2.549333pt;}
._2c_c00039{margin-left:-16.621333pt;}
._13_c00039{margin-left:-13.613333pt;}
._17_c00039{margin-left:-12.573333pt;}
._2b_c00039{margin-left:-11.320000pt;}
._0_c00039{margin-left:-10.365333pt;}
._11_c00039{margin-left:-8.792000pt;}
._2_c00039{margin-left:-7.864000pt;}
._2d_c00039{margin-left:-6.952000pt;}
._22_c00039{margin-left:-6.000000pt;}
._28_c00039{margin-left:-4.866667pt;}
._10_c00039{margin-left:-3.765333pt;}
._12_c00039{margin-left:-2.546667pt;}
._f_c00039{margin-left:-1.506667pt;}
._4_c00039{width:1.016000pt;}
._1_c00039{width:2.269333pt;}
._7_c00039{width:3.168000pt;}
._8_c00039{width:4.869333pt;}
._1c_c00039{width:5.770667pt;}
._9_c00039{width:6.706667pt;}
._5_c00039{width:7.725333pt;}
._a_c00039{width:8.917333pt;}
._19_c00039{width:10.064000pt;}
._6_c00039{width:11.264000pt;}
._c_c00039{width:12.554667pt;}
._1a_c00039{width:13.842667pt;}
._b_c00039{width:15.605333pt;}
._25_c00039{width:17.424000pt;}
._d_c00039{width:18.773333pt;}
._1d_c00039{width:20.130667pt;}
._1e_c00039{width:21.317333pt;}
._26_c00039{width:22.704000pt;}
._27_c00039{width:23.776000pt;}
._16_c00039{width:25.896000pt;}
._2e_c00039{width:28.704000pt;}
._15_c00039{width:31.410667pt;}
._14_c00039{width:32.706667pt;}
._1b_c00039{width:34.370667pt;}
._2a_c00039{width:38.384000pt;}
._18_c00039{width:40.173333pt;}
._29_c00039{width:48.442667pt;}
._1f_c00039{width:85.720000pt;}
._e_c00039{width:112.874667pt;}
._2f_c00039{width:121.781333pt;}
._20_c00039{width:160.197333pt;}
._24_c00039{width:187.885333pt;}
._23_c00039{width:230.541333pt;}
._21_c00039{width:242.277333pt;}
._3_c00039{width:316.336000pt;}
.fs8_c00039{font-size:42.666667pt;}
.fs6_c00039{font-size:48.000000pt;}
.fs1_c00039{font-size:58.666667pt;}
.fs0_c00039{font-size:61.333333pt;}
.fs4_c00039{font-size:66.666667pt;}
.fs5_c00039{font-size:74.666667pt;}
.fs3_c00039{font-size:85.333333pt;}
.fs2_c00039{font-size:117.333333pt;}
.fs7_c00039{font-size:136.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y1d_c00039{bottom:2.760000pt;}
.y1c_c00039{bottom:6.425219pt;}
.y1b_c00039{bottom:63.080000pt;}
.y1a_c00039{bottom:87.346667pt;}
.y19_c00039{bottom:109.480000pt;}
.y18_c00039{bottom:131.080000pt;}
.y17_c00039{bottom:153.613333pt;}
.y16_c00039{bottom:175.613333pt;}
.y15_c00039{bottom:197.213333pt;}
.y14_c00039{bottom:220.013333pt;}
.y13_c00039{bottom:242.813333pt;}
.y12_c00039{bottom:264.680000pt;}
.y11_c00039{bottom:307.613333pt;}
.y10_c00039{bottom:329.746667pt;}
.yf_c00039{bottom:352.013333pt;}
.ye_c00039{bottom:374.413333pt;}
.yd_c00039{bottom:396.013333pt;}
.yc_c00039{bottom:419.746667pt;}
.yb_c00039{bottom:440.146667pt;}
.ya_c00039{bottom:462.413333pt;}
.y9_c00039{bottom:484.013333pt;}
.y8_c00039{bottom:506.013333pt;}
.y7_c00039{bottom:528.013333pt;}
.y6_c00039{bottom:550.013333pt;}
.y5_c00039{bottom:570.946667pt;}
.y4_c00039{bottom:594.013333pt;}
.y3_c00039{bottom:616.546667pt;}
.y2_c00039{bottom:660.413333pt;}
.y1_c00039{bottom:705.080000pt;}
.ha_c00039{height:11.733399pt;}
.hb_c00039{height:38.937500pt;}
.h5_c00039{height:68.664062pt;}
.h8_c00039{height:71.785156pt;}
.h4_c00039{height:74.278646pt;}
.h2_c00039{height:77.654948pt;}
.h6_c00039{height:94.536458pt;}
.h7_c00039{height:108.041667pt;}
.h3_c00039{height:127.189333pt;}
.h9_c00039{height:172.191406pt;}
.h0_c00039{height:741.133333pt;}
.h1_c00039{height:741.333333pt;}
.w2_c00039{width:93.222667pt;}
.w0_c00039{width:509.266667pt;}
.w1_c00039{width:509.333333pt;}
.x0_c00039{left:0.000000pt;}
.x8_c00039{left:40.533333pt;}
.x9_c00039{left:41.733333pt;}
.xe_c00039{left:43.200000pt;}
.x7_c00039{left:55.600000pt;}
.xd_c00039{left:71.600000pt;}
.x4_c00039{left:98.666667pt;}
.x6_c00039{left:99.600000pt;}
.xa_c00039{left:100.533333pt;}
.x5_c00039{left:104.400000pt;}
.x1_c00039{left:109.200000pt;}
.xc_c00039{left:121.733333pt;}
.x3_c00039{left:122.666667pt;}
.x2_c00039{left:134.133333pt;}
.xb_c00039{left:137.200000pt;}
.x10_c00039{left:211.801554pt;}
.xf_c00039{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_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_a23254cd1b76b56f902be109.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_b49054dd7f7a33c05329dcfd.woff2')format("woff");}.ff2_c00040{font-family:ff2_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:ff3_c00040;src:url('chunks/assets/font_1b65da7aff9efcd143b0ae3c.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.311035;font-style:normal;font-weight:normal;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_516e1e7cebbe7904b9087dcc.woff2')format("woff");}.ff4_c00040{font-family:ff4_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:ff5_c00040;src:url('chunks/assets/font_27b5602cc567dde3c54503a4.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00040;src:url('chunks/assets/font_1c18b64da74985618ceee97f.woff2')format("woff");}.ff6_c00040{font-family:ff6_c00040;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_c00040;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00040{font-family:ff7_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;}
.ls9_c00040{letter-spacing:0.000000px;}
.ls7_c00040{letter-spacing:1.200000px;}
.lsa_c00040{letter-spacing:3.000000px;}
.ls4_c00040{letter-spacing:6.000000px;}
.ls3_c00040{letter-spacing:6.960000px;}
.ls8_c00040{letter-spacing:11.901000px;}
.lsb_c00040{letter-spacing:15.000000px;}
.ls2_c00040{letter-spacing:16.800000px;}
.ls5_c00040{letter-spacing:19.800000px;}
.ls1_c00040{letter-spacing:25.360800px;}
.ls6_c00040{letter-spacing:29.526000px;}
.ls0_c00040{letter-spacing:508.371000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00040{word-spacing:-56.235000px;}
.ws1_c00040{word-spacing:-31.500000px;}
.ws0_c00040{word-spacing:-16.629000px;}
.ws4_c00040{word-spacing:0.000000px;}
.ws3_c00040{word-spacing:5.451000px;}
._a_c00040{margin-left:-26.151000px;}
._18_c00040{margin-left:-25.083000px;}
._1d_c00040{margin-left:-20.400000px;}
._9_c00040{margin-left:-17.199000px;}
._6_c00040{margin-left:-14.076000px;}
._24_c00040{margin-left:-12.852000px;}
._2_c00040{margin-left:-10.764000px;}
._0_c00040{margin-left:-9.384000px;}
._3_c00040{margin-left:-8.004000px;}
._1_c00040{margin-left:-6.417000px;}
._26_c00040{margin-left:-5.037000px;}
._7_c00040{margin-left:-3.726000px;}
._4_c00040{margin-left:-2.691000px;}
._8_c00040{margin-left:-1.293000px;}
._c_c00040{width:1.242000px;}
._5_c00040{width:2.415000px;}
._f_c00040{width:3.588000px;}
._d_c00040{width:5.340000px;}
._1b_c00040{width:6.486000px;}
._12_c00040{width:7.701000px;}
._16_c00040{width:9.213000px;}
._e_c00040{width:10.695000px;}
._14_c00040{width:12.351000px;}
._19_c00040{width:14.034000px;}
._13_c00040{width:15.828000px;}
._10_c00040{width:17.871000px;}
._11_c00040{width:20.172000px;}
._15_c00040{width:21.240000px;}
._25_c00040{width:22.947000px;}
._1f_c00040{width:24.132000px;}
._22_c00040{width:26.898000px;}
._27_c00040{width:28.779000px;}
._b_c00040{width:30.429000px;}
._1e_c00040{width:36.165000px;}
._1c_c00040{width:39.447000px;}
._23_c00040{width:43.269000px;}
._1a_c00040{width:59.754000px;}
._28_c00040{width:87.291000px;}
._17_c00040{width:94.557000px;}
._21_c00040{width:106.899000px;}
._29_c00040{width:151.902000px;}
._20_c00040{width:197.694000px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(128,128,128);}
.fc0_c00040{color:rgb(0,0,0);}
.fs3_c00040{font-size:42.000000px;}
.fs6_c00040{font-size:48.000000px;}
.fs2_c00040{font-size:55.200000px;}
.fs1_c00040{font-size:66.000000px;}
.fs0_c00040{font-size:69.000000px;}
.fs4_c00040{font-size:81.000000px;}
.fs5_c00040{font-size:105.000000px;}
.y0_c00040{bottom:0.000000px;}
.y20_c00040{bottom:3.105000px;}
.y1f_c00040{bottom:7.228357px;}
.y1e_c00040{bottom:73.980000px;}
.y1d_c00040{bottom:92.430000px;}
.y1c_c00040{bottom:118.530000px;}
.y1b_c00040{bottom:143.430000px;}
.y1a_c00040{bottom:167.730000px;}
.y19_c00040{bottom:192.480000px;}
.y18_c00040{bottom:217.380000px;}
.y17_c00040{bottom:242.430000px;}
.y16_c00040{bottom:267.330000px;}
.y15_c00040{bottom:292.380000px;}
.y14_c00040{bottom:317.880000px;}
.y13_c00040{bottom:342.630000px;}
.y12_c00040{bottom:367.530000px;}
.y11_c00040{bottom:403.680000px;}
.y10_c00040{bottom:442.080000px;}
.y1_c00040{bottom:460.680000px;}
.yf_c00040{bottom:466.380000px;}
.ye_c00040{bottom:490.830000px;}
.yd_c00040{bottom:514.980000px;}
.yc_c00040{bottom:539.430000px;}
.yb_c00040{bottom:564.330000px;}
.ya_c00040{bottom:588.930000px;}
.y9_c00040{bottom:613.980000px;}
.y8_c00040{bottom:638.280000px;}
.y7_c00040{bottom:663.180000px;}
.y6_c00040{bottom:688.230000px;}
.y5_c00040{bottom:712.830000px;}
.y4_c00040{bottom:737.730000px;}
.y3_c00040{bottom:762.180000px;}
.y2_c00040{bottom:784.980000px;}
.h6_c00040{height:13.200074px;}
.h7_c00040{height:43.804688px;}
.h2_c00040{height:80.758301px;}
.h3_c00040{height:87.361816px;}
.h4_c00040{height:87.804000px;}
.h5_c00040{height:113.820000px;}
.h1_c00040{height:816.750000px;}
.h0_c00040{height:817.050000px;}
.w2_c00040{width:104.875500px;}
.w1_c00040{width:547.500000px;}
.w0_c00040{width:547.575000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:21.600000px;}
.x4_c00040{left:23.400000px;}
.x5_c00040{left:24.750000px;}
.x6_c00040{left:26.550000px;}
.x7_c00040{left:28.050000px;}
.xa_c00040{left:30.450000px;}
.xb_c00040{left:32.100000px;}
.xc_c00040{left:33.300000px;}
.xe_c00040{left:34.650000px;}
.xd_c00040{left:36.000000px;}
.x9_c00040{left:54.300000px;}
.x8_c00040{left:61.650000px;}
.x2_c00040{left:178.200000px;}
.x10_c00040{left:225.601730px;}
.xf_c00040{left:462.000000px;}
.x1_c00040{left:485.250000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls9_c00040{letter-spacing:0.000000pt;}
.ls7_c00040{letter-spacing:1.066667pt;}
.lsa_c00040{letter-spacing:2.666667pt;}
.ls4_c00040{letter-spacing:5.333333pt;}
.ls3_c00040{letter-spacing:6.186667pt;}
.ls8_c00040{letter-spacing:10.578667pt;}
.lsb_c00040{letter-spacing:13.333333pt;}
.ls2_c00040{letter-spacing:14.933333pt;}
.ls5_c00040{letter-spacing:17.600000pt;}
.ls1_c00040{letter-spacing:22.542933pt;}
.ls6_c00040{letter-spacing:26.245333pt;}
.ls0_c00040{letter-spacing:451.885333pt;}
.ws2_c00040{word-spacing:-49.986667pt;}
.ws1_c00040{word-spacing:-28.000000pt;}
.ws0_c00040{word-spacing:-14.781333pt;}
.ws4_c00040{word-spacing:0.000000pt;}
.ws3_c00040{word-spacing:4.845333pt;}
._a_c00040{margin-left:-23.245333pt;}
._18_c00040{margin-left:-22.296000pt;}
._1d_c00040{margin-left:-18.133333pt;}
._9_c00040{margin-left:-15.288000pt;}
._6_c00040{margin-left:-12.512000pt;}
._24_c00040{margin-left:-11.424000pt;}
._2_c00040{margin-left:-9.568000pt;}
._0_c00040{margin-left:-8.341333pt;}
._3_c00040{margin-left:-7.114667pt;}
._1_c00040{margin-left:-5.704000pt;}
._26_c00040{margin-left:-4.477333pt;}
._7_c00040{margin-left:-3.312000pt;}
._4_c00040{margin-left:-2.392000pt;}
._8_c00040{margin-left:-1.149333pt;}
._c_c00040{width:1.104000pt;}
._5_c00040{width:2.146667pt;}
._f_c00040{width:3.189333pt;}
._d_c00040{width:4.746667pt;}
._1b_c00040{width:5.765333pt;}
._12_c00040{width:6.845333pt;}
._16_c00040{width:8.189333pt;}
._e_c00040{width:9.506667pt;}
._14_c00040{width:10.978667pt;}
._19_c00040{width:12.474667pt;}
._13_c00040{width:14.069333pt;}
._10_c00040{width:15.885333pt;}
._11_c00040{width:17.930667pt;}
._15_c00040{width:18.880000pt;}
._25_c00040{width:20.397333pt;}
._1f_c00040{width:21.450667pt;}
._22_c00040{width:23.909333pt;}
._27_c00040{width:25.581333pt;}
._b_c00040{width:27.048000pt;}
._1e_c00040{width:32.146667pt;}
._1c_c00040{width:35.064000pt;}
._23_c00040{width:38.461333pt;}
._1a_c00040{width:53.114667pt;}
._28_c00040{width:77.592000pt;}
._17_c00040{width:84.050667pt;}
._21_c00040{width:95.021333pt;}
._29_c00040{width:135.024000pt;}
._20_c00040{width:175.728000pt;}
.fs3_c00040{font-size:37.333333pt;}
.fs6_c00040{font-size:42.666667pt;}
.fs2_c00040{font-size:49.066667pt;}
.fs1_c00040{font-size:58.666667pt;}
.fs0_c00040{font-size:61.333333pt;}
.fs4_c00040{font-size:72.000000pt;}
.fs5_c00040{font-size:93.333333pt;}
.y0_c00040{bottom:0.000000pt;}
.y20_c00040{bottom:2.760000pt;}
.y1f_c00040{bottom:6.425206pt;}
.y1e_c00040{bottom:65.760000pt;}
.y1d_c00040{bottom:82.160000pt;}
.y1c_c00040{bottom:105.360000pt;}
.y1b_c00040{bottom:127.493333pt;}
.y1a_c00040{bottom:149.093333pt;}
.y19_c00040{bottom:171.093333pt;}
.y18_c00040{bottom:193.226667pt;}
.y17_c00040{bottom:215.493333pt;}
.y16_c00040{bottom:237.626667pt;}
.y15_c00040{bottom:259.893333pt;}
.y14_c00040{bottom:282.560000pt;}
.y13_c00040{bottom:304.560000pt;}
.y12_c00040{bottom:326.693333pt;}
.y11_c00040{bottom:358.826667pt;}
.y10_c00040{bottom:392.960000pt;}
.y1_c00040{bottom:409.493333pt;}
.yf_c00040{bottom:414.560000pt;}
.ye_c00040{bottom:436.293333pt;}
.yd_c00040{bottom:457.760000pt;}
.yc_c00040{bottom:479.493333pt;}
.yb_c00040{bottom:501.626667pt;}
.ya_c00040{bottom:523.493333pt;}
.y9_c00040{bottom:545.760000pt;}
.y8_c00040{bottom:567.360000pt;}
.y7_c00040{bottom:589.493333pt;}
.y6_c00040{bottom:611.760000pt;}
.y5_c00040{bottom:633.626667pt;}
.y4_c00040{bottom:655.760000pt;}
.y3_c00040{bottom:677.493333pt;}
.y2_c00040{bottom:697.760000pt;}
.h6_c00040{height:11.733399pt;}
.h7_c00040{height:38.937500pt;}
.h2_c00040{height:71.785156pt;}
.h3_c00040{height:77.654948pt;}
.h4_c00040{height:78.048000pt;}
.h5_c00040{height:101.173333pt;}
.h1_c00040{height:726.000000pt;}
.h0_c00040{height:726.266667pt;}
.w2_c00040{width:93.222667pt;}
.w1_c00040{width:486.666667pt;}
.w0_c00040{width:486.733333pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:19.200000pt;}
.x4_c00040{left:20.800000pt;}
.x5_c00040{left:22.000000pt;}
.x6_c00040{left:23.600000pt;}
.x7_c00040{left:24.933333pt;}
.xa_c00040{left:27.066667pt;}
.xb_c00040{left:28.533333pt;}
.xc_c00040{left:29.600000pt;}
.xe_c00040{left:30.800000pt;}
.xd_c00040{left:32.000000pt;}
.x9_c00040{left:48.266667pt;}
.x8_c00040{left:54.800000pt;}
.x2_c00040{left:158.400000pt;}
.x10_c00040{left:200.534871pt;}
.xf_c00040{left:410.666667pt;}
.x1_c00040{left:431.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_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_38f466c5b07fd852e0ac22d8.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_35099963d407b84e11c8a8f1.woff2')format("woff");}.ff2_c00041{font-family:ff2_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:ff3_c00041;src:url('chunks/assets/font_ae76b190fd7e8ec631adb983.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_70cae1980fb437c2a9fe2fbe.woff2')format("woff");}.ff4_c00041{font-family:ff4_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:ff5_c00041;src:url('chunks/assets/font_2a55d417fc223d50b1756663.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00041;src:url('chunks/assets/font_05aaf51922ae01ee770abc5c.woff2')format("woff");}.ff6_c00041{font-family:ff6_c00041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00041;src:url('chunks/assets/font_3a7857c2c3c364535882c168.woff2')format("woff");}.ff7_c00041{font-family:ff7_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:ff8_c00041;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00041{font-family:ff8_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;}
.lse_c00041{letter-spacing:0.000000px;}
.ls8_c00041{letter-spacing:3.000000px;}
.lsb_c00041{letter-spacing:3.771000px;}
.ls4_c00041{letter-spacing:4.800000px;}
.ls7_c00041{letter-spacing:6.150000px;}
.lsc_c00041{letter-spacing:9.171000px;}
.ls3_c00041{letter-spacing:12.891000px;}
.ls1_c00041{letter-spacing:13.089000px;}
.ls9_c00041{letter-spacing:14.550000px;}
.lsa_c00041{letter-spacing:16.800000px;}
.ls2_c00041{letter-spacing:19.200000px;}
.ls5_c00041{letter-spacing:19.800000px;}
.ls0_c00041{letter-spacing:22.200000px;}
.lsd_c00041{letter-spacing:40.371000px;}
.ls6_c00041{letter-spacing:54.714000px;}
.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;}
.ws3_c00041{word-spacing:-18.312000px;}
.ws5_c00041{word-spacing:-16.800000px;}
.ws0_c00041{word-spacing:-16.629000px;}
.ws7_c00041{word-spacing:0.000000px;}
.ws6_c00041{word-spacing:1.518000px;}
.ws2_c00041{word-spacing:2.037000px;}
.ws1_c00041{word-spacing:6.693000px;}
._1b_c00041{margin-left:-65.412000px;}
._26_c00041{margin-left:-29.946000px;}
._1d_c00041{margin-left:-14.697000px;}
._1a_c00041{margin-left:-12.426000px;}
._1e_c00041{margin-left:-11.241000px;}
._0_c00041{margin-left:-8.967000px;}
._3_c00041{margin-left:-7.521000px;}
._1_c00041{margin-left:-5.520000px;}
._7_c00041{margin-left:-3.519000px;}
._5_c00041{margin-left:-1.863000px;}
._9_c00041{width:1.173000px;}
._8_c00041{width:2.829000px;}
._6_c00041{width:4.209000px;}
._11_c00041{width:5.658000px;}
._a_c00041{width:7.452000px;}
._c_c00041{width:8.631000px;}
._28_c00041{width:9.849000px;}
._14_c00041{width:10.902000px;}
._d_c00041{width:11.955000px;}
._12_c00041{width:14.277000px;}
._15_c00041{width:16.347000px;}
._22_c00041{width:17.355000px;}
._19_c00041{width:19.044000px;}
._13_c00041{width:20.835000px;}
._16_c00041{width:22.011000px;}
._2_c00041{width:25.392000px;}
._f_c00041{width:26.979000px;}
._10_c00041{width:29.325000px;}
._17_c00041{width:31.050000px;}
._23_c00041{width:34.608000px;}
._18_c00041{width:35.811000px;}
._b_c00041{width:48.435000px;}
._1c_c00041{width:61.983000px;}
._2a_c00041{width:69.387000px;}
._25_c00041{width:91.563000px;}
._29_c00041{width:100.122000px;}
._24_c00041{width:118.080000px;}
._e_c00041{width:145.935000px;}
._27_c00041{width:153.150000px;}
._21_c00041{width:260.817000px;}
._4_c00041{width:358.344000px;}
._1f_c00041{width:378.627000px;}
._20_c00041{width:427.377000px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(128,128,128);}
.fc0_c00041{color:rgb(0,0,0);}
.fs3_c00041{font-size:48.000000px;}
.fs4_c00041{font-size:51.000000px;}
.fs5_c00041{font-size:55.200000px;}
.fs1_c00041{font-size:63.000000px;}
.fs2_c00041{font-size:66.000000px;}
.fs0_c00041{font-size:69.000000px;}
.fs6_c00041{font-size:75.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1f_c00041{bottom:3.105000px;}
.y1e_c00041{bottom:7.228371px;}
.y1d_c00041{bottom:62.115000px;}
.y1c_c00041{bottom:88.515000px;}
.y1b_c00041{bottom:112.065000px;}
.y1a_c00041{bottom:136.815000px;}
.y19_c00041{bottom:163.665000px;}
.y18_c00041{bottom:187.665000px;}
.y17_c00041{bottom:212.415000px;}
.y16_c00041{bottom:237.915000px;}
.y15_c00041{bottom:262.665000px;}
.y14_c00041{bottom:287.865000px;}
.y13_c00041{bottom:312.615000px;}
.y12_c00041{bottom:338.565000px;}
.y11_c00041{bottom:361.815000px;}
.y10_c00041{bottom:387.165000px;}
.yf_c00041{bottom:411.465000px;}
.ye_c00041{bottom:426.015000px;}
.yd_c00041{bottom:436.065000px;}
.yc_c00041{bottom:461.715000px;}
.yb_c00041{bottom:486.765000px;}
.ya_c00041{bottom:511.365000px;}
.y9_c00041{bottom:536.415000px;}
.y8_c00041{bottom:585.615000px;}
.y7_c00041{bottom:635.865000px;}
.y6_c00041{bottom:660.915000px;}
.y5_c00041{bottom:686.865000px;}
.y4_c00041{bottom:711.465000px;}
.y3_c00041{bottom:734.415000px;}
.y2_c00041{bottom:760.365000px;}
.y1_c00041{bottom:786.015000px;}
.h7_c00041{height:13.200074px;}
.h8_c00041{height:43.804688px;}
.h4_c00041{height:64.571777px;}
.h5_c00041{height:69.539062px;}
.h3_c00041{height:80.758301px;}
.h2_c00041{height:87.361816px;}
.h6_c00041{height:94.958496px;}
.h0_c00041{height:833.775000px;}
.h1_c00041{height:834.000000px;}
.w2_c00041{width:104.875500px;}
.w0_c00041{width:572.925000px;}
.w1_c00041{width:573.000000px;}
.x0_c00041{left:0.000000px;}
.x8_c00041{left:51.600000px;}
.xe_c00041{left:53.250000px;}
.x9_c00041{left:54.900000px;}
.x3_c00041{left:56.700000px;}
.xb_c00041{left:63.000000px;}
.xd_c00041{left:69.150000px;}
.xc_c00041{left:71.100000px;}
.x7_c00041{left:94.200000px;}
.x4_c00041{left:116.400000px;}
.x2_c00041{left:117.450000px;}
.xa_c00041{left:118.500000px;}
.x1_c00041{left:131.250000px;}
.x6_c00041{left:141.150000px;}
.x5_c00041{left:159.000000px;}
.x10_c00041{left:238.276749px;}
.xf_c00041{left:530.250000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.lse_c00041{letter-spacing:0.000000pt;}
.ls8_c00041{letter-spacing:2.666667pt;}
.lsb_c00041{letter-spacing:3.352000pt;}
.ls4_c00041{letter-spacing:4.266667pt;}
.ls7_c00041{letter-spacing:5.466667pt;}
.lsc_c00041{letter-spacing:8.152000pt;}
.ls3_c00041{letter-spacing:11.458667pt;}
.ls1_c00041{letter-spacing:11.634667pt;}
.ls9_c00041{letter-spacing:12.933333pt;}
.lsa_c00041{letter-spacing:14.933333pt;}
.ls2_c00041{letter-spacing:17.066667pt;}
.ls5_c00041{letter-spacing:17.600000pt;}
.ls0_c00041{letter-spacing:19.733333pt;}
.lsd_c00041{letter-spacing:35.885333pt;}
.ls6_c00041{letter-spacing:48.634667pt;}
.ws4_c00041{word-spacing:-18.000000pt;}
.ws3_c00041{word-spacing:-16.277333pt;}
.ws5_c00041{word-spacing:-14.933333pt;}
.ws0_c00041{word-spacing:-14.781333pt;}
.ws7_c00041{word-spacing:0.000000pt;}
.ws6_c00041{word-spacing:1.349333pt;}
.ws2_c00041{word-spacing:1.810667pt;}
.ws1_c00041{word-spacing:5.949333pt;}
._1b_c00041{margin-left:-58.144000pt;}
._26_c00041{margin-left:-26.618667pt;}
._1d_c00041{margin-left:-13.064000pt;}
._1a_c00041{margin-left:-11.045333pt;}
._1e_c00041{margin-left:-9.992000pt;}
._0_c00041{margin-left:-7.970667pt;}
._3_c00041{margin-left:-6.685333pt;}
._1_c00041{margin-left:-4.906667pt;}
._7_c00041{margin-left:-3.128000pt;}
._5_c00041{margin-left:-1.656000pt;}
._9_c00041{width:1.042667pt;}
._8_c00041{width:2.514667pt;}
._6_c00041{width:3.741333pt;}
._11_c00041{width:5.029333pt;}
._a_c00041{width:6.624000pt;}
._c_c00041{width:7.672000pt;}
._28_c00041{width:8.754667pt;}
._14_c00041{width:9.690667pt;}
._d_c00041{width:10.626667pt;}
._12_c00041{width:12.690667pt;}
._15_c00041{width:14.530667pt;}
._22_c00041{width:15.426667pt;}
._19_c00041{width:16.928000pt;}
._13_c00041{width:18.520000pt;}
._16_c00041{width:19.565333pt;}
._2_c00041{width:22.570667pt;}
._f_c00041{width:23.981333pt;}
._10_c00041{width:26.066667pt;}
._17_c00041{width:27.600000pt;}
._23_c00041{width:30.762667pt;}
._18_c00041{width:31.832000pt;}
._b_c00041{width:43.053333pt;}
._1c_c00041{width:55.096000pt;}
._2a_c00041{width:61.677333pt;}
._25_c00041{width:81.389333pt;}
._29_c00041{width:88.997333pt;}
._24_c00041{width:104.960000pt;}
._e_c00041{width:129.720000pt;}
._27_c00041{width:136.133333pt;}
._21_c00041{width:231.837333pt;}
._4_c00041{width:318.528000pt;}
._1f_c00041{width:336.557333pt;}
._20_c00041{width:379.890667pt;}
.fs3_c00041{font-size:42.666667pt;}
.fs4_c00041{font-size:45.333333pt;}
.fs5_c00041{font-size:49.066667pt;}
.fs1_c00041{font-size:56.000000pt;}
.fs2_c00041{font-size:58.666667pt;}
.fs0_c00041{font-size:61.333333pt;}
.fs6_c00041{font-size:66.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y1f_c00041{bottom:2.760000pt;}
.y1e_c00041{bottom:6.425219pt;}
.y1d_c00041{bottom:55.213333pt;}
.y1c_c00041{bottom:78.680000pt;}
.y1b_c00041{bottom:99.613333pt;}
.y1a_c00041{bottom:121.613333pt;}
.y19_c00041{bottom:145.480000pt;}
.y18_c00041{bottom:166.813333pt;}
.y17_c00041{bottom:188.813333pt;}
.y16_c00041{bottom:211.480000pt;}
.y15_c00041{bottom:233.480000pt;}
.y14_c00041{bottom:255.880000pt;}
.y13_c00041{bottom:277.880000pt;}
.y12_c00041{bottom:300.946667pt;}
.y11_c00041{bottom:321.613333pt;}
.y10_c00041{bottom:344.146667pt;}
.yf_c00041{bottom:365.746667pt;}
.ye_c00041{bottom:378.680000pt;}
.yd_c00041{bottom:387.613333pt;}
.yc_c00041{bottom:410.413333pt;}
.yb_c00041{bottom:432.680000pt;}
.ya_c00041{bottom:454.546667pt;}
.y9_c00041{bottom:476.813333pt;}
.y8_c00041{bottom:520.546667pt;}
.y7_c00041{bottom:565.213333pt;}
.y6_c00041{bottom:587.480000pt;}
.y5_c00041{bottom:610.546667pt;}
.y4_c00041{bottom:632.413333pt;}
.y3_c00041{bottom:652.813333pt;}
.y2_c00041{bottom:675.880000pt;}
.y1_c00041{bottom:698.680000pt;}
.h7_c00041{height:11.733399pt;}
.h8_c00041{height:38.937500pt;}
.h4_c00041{height:57.397135pt;}
.h5_c00041{height:61.812500pt;}
.h3_c00041{height:71.785156pt;}
.h2_c00041{height:77.654948pt;}
.h6_c00041{height:84.407552pt;}
.h0_c00041{height:741.133333pt;}
.h1_c00041{height:741.333333pt;}
.w2_c00041{width:93.222667pt;}
.w0_c00041{width:509.266667pt;}
.w1_c00041{width:509.333333pt;}
.x0_c00041{left:0.000000pt;}
.x8_c00041{left:45.866667pt;}
.xe_c00041{left:47.333333pt;}
.x9_c00041{left:48.800000pt;}
.x3_c00041{left:50.400000pt;}
.xb_c00041{left:56.000000pt;}
.xd_c00041{left:61.466667pt;}
.xc_c00041{left:63.200000pt;}
.x7_c00041{left:83.733333pt;}
.x4_c00041{left:103.466667pt;}
.x2_c00041{left:104.400000pt;}
.xa_c00041{left:105.333333pt;}
.x1_c00041{left:116.666667pt;}
.x6_c00041{left:125.466667pt;}
.x5_c00041{left:141.333333pt;}
.x10_c00041{left:211.801554pt;}
.xf_c00041{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_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_c0759563340e6cdd59aa5a5e.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_4413ece021133c3b6e67a778.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.568848;font-style:normal;font-weight:normal;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_eb8c34cd34989b8131852271.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.311035;font-style:normal;font-weight:normal;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_3016f75164eb3b3edf6394e4.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00042{font-family:ff5_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:ff6_c00042;src:url('chunks/assets/font_48736aba1fa8c8e396484b50.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;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_c00042;src:url('chunks/assets/font_c5078c5150861e3c01f075f9.woff2')format("woff");}.ff7_c00042{font-family:ff7_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00042;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00042{font-family:ff8_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;}
.m1_c00042{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_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;}
.ls6_c00042{letter-spacing:0.000000px;}
.ls3_c00042{letter-spacing:2.400000px;}
.ls7_c00042{letter-spacing:3.000000px;}
.ls2_c00042{letter-spacing:6.000000px;}
.ls4_c00042{letter-spacing:10.107000px;}
.ls1_c00042{letter-spacing:10.200000px;}
.ls5_c00042{letter-spacing:11.925000px;}
.ls8_c00042{letter-spacing:15.000000px;}
.ls0_c00042{letter-spacing:17.325000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00042{word-spacing:-59.022000px;}
.ws6_c00042{word-spacing:-33.000000px;}
.ws7_c00042{word-spacing:-19.629000px;}
.wsa_c00042{word-spacing:-17.250000px;}
.ws2_c00042{word-spacing:-16.629000px;}
.ws1_c00042{word-spacing:-1.227000px;}
.ws8_c00042{word-spacing:-1.104000px;}
.wsb_c00042{word-spacing:0.000000px;}
.ws9_c00042{word-spacing:0.069000px;}
.ws0_c00042{word-spacing:0.138000px;}
.ws5_c00042{word-spacing:0.708000px;}
.ws4_c00042{word-spacing:2.484000px;}
._28_c00042{margin-left:-23.256000px;}
._1a_c00042{margin-left:-19.800000px;}
._2a_c00042{margin-left:-16.629000px;}
._29_c00042{margin-left:-14.922000px;}
._a_c00042{margin-left:-13.179000px;}
._20_c00042{margin-left:-11.868000px;}
._1b_c00042{margin-left:-10.485000px;}
._13_c00042{margin-left:-9.177000px;}
._9_c00042{margin-left:-8.004000px;}
._1_c00042{margin-left:-5.865000px;}
._4_c00042{margin-left:-4.830000px;}
._2_c00042{margin-left:-2.967000px;}
._3_c00042{margin-left:-1.656000px;}
._0_c00042{width:1.794000px;}
._6_c00042{width:3.105000px;}
._b_c00042{width:4.416000px;}
._7_c00042{width:5.865000px;}
._14_c00042{width:7.104000px;}
._22_c00042{width:8.283000px;}
._c_c00042{width:9.522000px;}
._8_c00042{width:11.040000px;}
._10_c00042{width:13.080000px;}
._f_c00042{width:14.628000px;}
._e_c00042{width:15.732000px;}
._17_c00042{width:17.253000px;}
._25_c00042{width:18.843000px;}
._26_c00042{width:20.010000px;}
._d_c00042{width:21.831000px;}
._27_c00042{width:23.037000px;}
._1c_c00042{width:24.837000px;}
._1f_c00042{width:29.574000px;}
._24_c00042{width:43.209000px;}
._19_c00042{width:46.005000px;}
._1d_c00042{width:81.270000px;}
._16_c00042{width:88.044000px;}
._18_c00042{width:91.647000px;}
._21_c00042{width:101.730000px;}
._1e_c00042{width:120.684000px;}
._15_c00042{width:129.453000px;}
._23_c00042{width:139.725000px;}
._11_c00042{width:186.024000px;}
._2c_c00042{width:404.340000px;}
._5_c00042{width:503.571000px;}
._12_c00042{width:511.596000px;}
._2b_c00042{width:695.685000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(128,128,128);}
.fc0_c00042{color:rgb(0,0,0);}
.fs3_c00042{font-size:48.000000px;}
.fs2_c00042{font-size:54.000000px;}
.fs1_c00042{font-size:66.000000px;}
.fs0_c00042{font-size:69.000000px;}
.y0_c00042{bottom:0.000000px;}
.y22_c00042{bottom:3.105000px;}
.y21_c00042{bottom:7.228371px;}
.y1d_c00042{bottom:65.865000px;}
.y1c_c00042{bottom:89.565000px;}
.y1b_c00042{bottom:115.215000px;}
.y1a_c00042{bottom:164.415000px;}
.y19_c00042{bottom:191.415000px;}
.y18_c00042{bottom:214.665000px;}
.y17_c00042{bottom:240.315000px;}
.y16_c00042{bottom:265.365000px;}
.y15_c00042{bottom:290.715000px;}
.y20_c00042{bottom:310.515000px;}
.y14_c00042{bottom:314.265000px;}
.y1f_c00042{bottom:324.015000px;}
.y13_c00042{bottom:340.515000px;}
.y1e_c00042{bottom:346.065000px;}
.y12_c00042{bottom:364.815000px;}
.y11_c00042{bottom:389.565000px;}
.y10_c00042{bottom:414.765000px;}
.yf_c00042{bottom:438.765000px;}
.ye_c00042{bottom:464.415000px;}
.yd_c00042{bottom:489.015000px;}
.yc_c00042{bottom:513.315000px;}
.yb_c00042{bottom:537.615000px;}
.ya_c00042{bottom:562.365000px;}
.y9_c00042{bottom:587.265000px;}
.y8_c00042{bottom:611.865000px;}
.y7_c00042{bottom:636.615000px;}
.y6_c00042{bottom:661.515000px;}
.y5_c00042{bottom:686.115000px;}
.y4_c00042{bottom:711.165000px;}
.y3_c00042{bottom:736.065000px;}
.y2_c00042{bottom:761.415000px;}
.y1_c00042{bottom:786.015000px;}
.h6_c00042{height:13.200074px;}
.h7_c00042{height:43.804688px;}
.h3_c00042{height:57.618000px;}
.h5_c00042{height:67.686035px;}
.h4_c00042{height:67.719727px;}
.h2_c00042{height:87.361816px;}
.h1_c00042{height:831.000000px;}
.h0_c00042{height:831.075000px;}
.w1_c00042{width:104.875500px;}
.w0_c00042{width:557.250000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:28.050000px;}
.x3_c00042{left:29.400000px;}
.x8_c00042{left:30.750000px;}
.x4_c00042{left:52.350000px;}
.x7_c00042{left:54.450000px;}
.x6_c00042{left:70.650000px;}
.x5_c00042{left:81.300000px;}
.x1_c00042{left:182.700000px;}
.xb_c00042{left:230.439240px;}
.xa_c00042{left:493.200000px;}
.x9_c00042{left:518.100000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls6_c00042{letter-spacing:0.000000pt;}
.ls3_c00042{letter-spacing:2.133333pt;}
.ls7_c00042{letter-spacing:2.666667pt;}
.ls2_c00042{letter-spacing:5.333333pt;}
.ls4_c00042{letter-spacing:8.984000pt;}
.ls1_c00042{letter-spacing:9.066667pt;}
.ls5_c00042{letter-spacing:10.600000pt;}
.ls8_c00042{letter-spacing:13.333333pt;}
.ls0_c00042{letter-spacing:15.400000pt;}
.ws3_c00042{word-spacing:-52.464000pt;}
.ws6_c00042{word-spacing:-29.333333pt;}
.ws7_c00042{word-spacing:-17.448000pt;}
.wsa_c00042{word-spacing:-15.333333pt;}
.ws2_c00042{word-spacing:-14.781333pt;}
.ws1_c00042{word-spacing:-1.090667pt;}
.ws8_c00042{word-spacing:-0.981333pt;}
.wsb_c00042{word-spacing:0.000000pt;}
.ws9_c00042{word-spacing:0.061333pt;}
.ws0_c00042{word-spacing:0.122667pt;}
.ws5_c00042{word-spacing:0.629333pt;}
.ws4_c00042{word-spacing:2.208000pt;}
._28_c00042{margin-left:-20.672000pt;}
._1a_c00042{margin-left:-17.600000pt;}
._2a_c00042{margin-left:-14.781333pt;}
._29_c00042{margin-left:-13.264000pt;}
._a_c00042{margin-left:-11.714667pt;}
._20_c00042{margin-left:-10.549333pt;}
._1b_c00042{margin-left:-9.320000pt;}
._13_c00042{margin-left:-8.157333pt;}
._9_c00042{margin-left:-7.114667pt;}
._1_c00042{margin-left:-5.213333pt;}
._4_c00042{margin-left:-4.293333pt;}
._2_c00042{margin-left:-2.637333pt;}
._3_c00042{margin-left:-1.472000pt;}
._0_c00042{width:1.594667pt;}
._6_c00042{width:2.760000pt;}
._b_c00042{width:3.925333pt;}
._7_c00042{width:5.213333pt;}
._14_c00042{width:6.314667pt;}
._22_c00042{width:7.362667pt;}
._c_c00042{width:8.464000pt;}
._8_c00042{width:9.813333pt;}
._10_c00042{width:11.626667pt;}
._f_c00042{width:13.002667pt;}
._e_c00042{width:13.984000pt;}
._17_c00042{width:15.336000pt;}
._25_c00042{width:16.749333pt;}
._26_c00042{width:17.786667pt;}
._d_c00042{width:19.405333pt;}
._27_c00042{width:20.477333pt;}
._1c_c00042{width:22.077333pt;}
._1f_c00042{width:26.288000pt;}
._24_c00042{width:38.408000pt;}
._19_c00042{width:40.893333pt;}
._1d_c00042{width:72.240000pt;}
._16_c00042{width:78.261333pt;}
._18_c00042{width:81.464000pt;}
._21_c00042{width:90.426667pt;}
._1e_c00042{width:107.274667pt;}
._15_c00042{width:115.069333pt;}
._23_c00042{width:124.200000pt;}
._11_c00042{width:165.354667pt;}
._2c_c00042{width:359.413333pt;}
._5_c00042{width:447.618667pt;}
._12_c00042{width:454.752000pt;}
._2b_c00042{width:618.386667pt;}
.fs3_c00042{font-size:42.666667pt;}
.fs2_c00042{font-size:48.000000pt;}
.fs1_c00042{font-size:58.666667pt;}
.fs0_c00042{font-size:61.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.y22_c00042{bottom:2.760000pt;}
.y21_c00042{bottom:6.425219pt;}
.y1d_c00042{bottom:58.546667pt;}
.y1c_c00042{bottom:79.613333pt;}
.y1b_c00042{bottom:102.413333pt;}
.y1a_c00042{bottom:146.146667pt;}
.y19_c00042{bottom:170.146667pt;}
.y18_c00042{bottom:190.813333pt;}
.y17_c00042{bottom:213.613333pt;}
.y16_c00042{bottom:235.880000pt;}
.y15_c00042{bottom:258.413333pt;}
.y20_c00042{bottom:276.013333pt;}
.y14_c00042{bottom:279.346667pt;}
.y1f_c00042{bottom:288.013333pt;}
.y13_c00042{bottom:302.680000pt;}
.y1e_c00042{bottom:307.613333pt;}
.y12_c00042{bottom:324.280000pt;}
.y11_c00042{bottom:346.280000pt;}
.y10_c00042{bottom:368.680000pt;}
.yf_c00042{bottom:390.013333pt;}
.ye_c00042{bottom:412.813333pt;}
.yd_c00042{bottom:434.680000pt;}
.yc_c00042{bottom:456.280000pt;}
.yb_c00042{bottom:477.880000pt;}
.ya_c00042{bottom:499.880000pt;}
.y9_c00042{bottom:522.013333pt;}
.y8_c00042{bottom:543.880000pt;}
.y7_c00042{bottom:565.880000pt;}
.y6_c00042{bottom:588.013333pt;}
.y5_c00042{bottom:609.880000pt;}
.y4_c00042{bottom:632.146667pt;}
.y3_c00042{bottom:654.280000pt;}
.y2_c00042{bottom:676.813333pt;}
.y1_c00042{bottom:698.680000pt;}
.h6_c00042{height:11.733399pt;}
.h7_c00042{height:38.937500pt;}
.h3_c00042{height:51.216000pt;}
.h5_c00042{height:60.165365pt;}
.h4_c00042{height:60.195312pt;}
.h2_c00042{height:77.654948pt;}
.h1_c00042{height:738.666667pt;}
.h0_c00042{height:738.733333pt;}
.w1_c00042{width:93.222667pt;}
.w0_c00042{width:495.333333pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:24.933333pt;}
.x3_c00042{left:26.133333pt;}
.x8_c00042{left:27.333333pt;}
.x4_c00042{left:46.533333pt;}
.x7_c00042{left:48.400000pt;}
.x6_c00042{left:62.800000pt;}
.x5_c00042{left:72.266667pt;}
.x1_c00042{left:162.400000pt;}
.xb_c00042{left:204.834880pt;}
.xa_c00042{left:438.400000pt;}
.x9_c00042{left:460.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_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_febc91bcf5571763c4b67782.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_d773292b783eb6cb81e6ac43.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_ac7326cf925719f726f15a1a.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.311035;font-style:normal;font-weight:normal;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_3f531197bc4e88e6ea518d0f.woff2')format("woff");}.ff4_c00043{font-family:ff4_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:ff5_c00043;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls7_c00043{letter-spacing:-3.000000px;}
.ls4_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:3.000000px;}
.ls5_c00043{letter-spacing:9.000000px;}
.ls1_c00043{letter-spacing:11.925000px;}
.ls6_c00043{letter-spacing:15.000000px;}
.ls3_c00043{letter-spacing:15.771000px;}
.ls2_c00043{letter-spacing:16.125000px;}
.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;}
}
.ws4_c00043{word-spacing:-31.500000px;}
.ws0_c00043{word-spacing:-23.460000px;}
.ws1_c00043{word-spacing:-20.250000px;}
.ws3_c00043{word-spacing:-19.629000px;}
.ws6_c00043{word-spacing:-17.250000px;}
.ws2_c00043{word-spacing:-16.629000px;}
.ws5_c00043{word-spacing:-0.345000px;}
.ws7_c00043{word-spacing:0.000000px;}
._2e_c00043{margin-left:-26.634000px;}
._26_c00043{margin-left:-23.673000px;}
._28_c00043{margin-left:-19.716000px;}
._27_c00043{margin-left:-16.881000px;}
._2_c00043{margin-left:-14.628000px;}
._1_c00043{margin-left:-13.041000px;}
._b_c00043{margin-left:-11.661000px;}
._21_c00043{margin-left:-10.527000px;}
._14_c00043{margin-left:-9.126000px;}
._0_c00043{margin-left:-7.797000px;}
._1c_c00043{margin-left:-6.417000px;}
._c_c00043{margin-left:-5.244000px;}
._6_c00043{margin-left:-3.420000px;}
._4_c00043{margin-left:-1.587000px;}
._9_c00043{width:1.794000px;}
._10_c00043{width:2.967000px;}
._a_c00043{width:4.077000px;}
._d_c00043{width:5.133000px;}
._5_c00043{width:6.417000px;}
._12_c00043{width:7.521000px;}
._15_c00043{width:9.171000px;}
._16_c00043{width:10.188000px;}
._19_c00043{width:11.808000px;}
._e_c00043{width:13.464000px;}
._17_c00043{width:14.829000px;}
._f_c00043{width:16.008000px;}
._13_c00043{width:18.327000px;}
._25_c00043{width:19.875000px;}
._1a_c00043{width:20.931000px;}
._29_c00043{width:22.905000px;}
._18_c00043{width:24.324000px;}
._22_c00043{width:26.007000px;}
._24_c00043{width:27.051000px;}
._2d_c00043{width:33.285000px;}
._1d_c00043{width:35.856000px;}
._23_c00043{width:40.608000px;}
._1f_c00043{width:44.403000px;}
._2f_c00043{width:53.820000px;}
._7_c00043{width:84.474000px;}
._2c_c00043{width:89.055000px;}
._20_c00043{width:95.268000px;}
._1b_c00043{width:97.083000px;}
._8_c00043{width:121.095000px;}
._31_c00043{width:124.875000px;}
._11_c00043{width:134.412000px;}
._2a_c00043{width:167.490000px;}
._30_c00043{width:188.433000px;}
._2b_c00043{width:208.173000px;}
._1e_c00043{width:233.466000px;}
._3_c00043{width:363.165000px;}
._32_c00043{width:1405.044000px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs5_c00043{font-size:48.000000px;}
.fs1_c00043{font-size:60.000000px;}
.fs2_c00043{font-size:66.000000px;}
.fs0_c00043{font-size:69.000000px;}
.fs3_c00043{font-size:75.000000px;}
.fs4_c00043{font-size:81.000000px;}
.y0_c00043{bottom:0.000000px;}
.y1f_c00043{bottom:3.105000px;}
.y1e_c00043{bottom:7.228371px;}
.y1d_c00043{bottom:66.915000px;}
.y1c_c00043{bottom:85.815000px;}
.y1b_c00043{bottom:108.465000px;}
.y1a_c00043{bottom:135.015000px;}
.y19_c00043{bottom:160.965000px;}
.y18_c00043{bottom:185.265000px;}
.y17_c00043{bottom:209.715000px;}
.y16_c00043{bottom:235.215000px;}
.y15_c00043{bottom:260.865000px;}
.y14_c00043{bottom:285.165000px;}
.y13_c00043{bottom:309.915000px;}
.y12_c00043{bottom:335.115000px;}
.y11_c00043{bottom:359.565000px;}
.y10_c00043{bottom:384.765000px;}
.yf_c00043{bottom:409.365000px;}
.ye_c00043{bottom:445.815000px;}
.yd_c00043{bottom:485.715000px;}
.yc_c00043{bottom:508.965000px;}
.yb_c00043{bottom:533.715000px;}
.ya_c00043{bottom:558.615000px;}
.y9_c00043{bottom:584.265000px;}
.y8_c00043{bottom:607.815000px;}
.y7_c00043{bottom:632.565000px;}
.y6_c00043{bottom:657.765000px;}
.y5_c00043{bottom:682.515000px;}
.y4_c00043{bottom:707.715000px;}
.y3_c00043{bottom:732.465000px;}
.y2_c00043{bottom:757.365000px;}
.y1_c00043{bottom:782.715000px;}
.h5_c00043{height:13.200074px;}
.h6_c00043{height:43.804688px;}
.h3_c00043{height:80.758301px;}
.h2_c00043{height:87.361816px;}
.h4_c00043{height:94.958496px;}
.h0_c00043{height:833.775000px;}
.h1_c00043{height:834.000000px;}
.w2_c00043{width:104.875500px;}
.w0_c00043{width:572.925000px;}
.w1_c00043{width:573.000000px;}
.x0_c00043{left:0.000000px;}
.x9_c00043{left:51.600000px;}
.x8_c00043{left:52.950000px;}
.xf_c00043{left:56.250000px;}
.x7_c00043{left:67.050000px;}
.x10_c00043{left:72.600000px;}
.x3_c00043{left:74.250000px;}
.x2_c00043{left:80.100000px;}
.xe_c00043{left:96.900000px;}
.x5_c00043{left:115.800000px;}
.x6_c00043{left:117.000000px;}
.xc_c00043{left:118.050000px;}
.xd_c00043{left:119.100000px;}
.x1_c00043{left:131.250000px;}
.xb_c00043{left:142.800000px;}
.xa_c00043{left:146.400000px;}
.x4_c00043{left:170.100000px;}
.x11_c00043{left:238.276749px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls7_c00043{letter-spacing:-2.666667pt;}
.ls4_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:2.666667pt;}
.ls5_c00043{letter-spacing:8.000000pt;}
.ls1_c00043{letter-spacing:10.600000pt;}
.ls6_c00043{letter-spacing:13.333333pt;}
.ls3_c00043{letter-spacing:14.018667pt;}
.ls2_c00043{letter-spacing:14.333333pt;}
.ws4_c00043{word-spacing:-28.000000pt;}
.ws0_c00043{word-spacing:-20.853333pt;}
.ws1_c00043{word-spacing:-18.000000pt;}
.ws3_c00043{word-spacing:-17.448000pt;}
.ws6_c00043{word-spacing:-15.333333pt;}
.ws2_c00043{word-spacing:-14.781333pt;}
.ws5_c00043{word-spacing:-0.306667pt;}
.ws7_c00043{word-spacing:0.000000pt;}
._2e_c00043{margin-left:-23.674667pt;}
._26_c00043{margin-left:-21.042667pt;}
._28_c00043{margin-left:-17.525333pt;}
._27_c00043{margin-left:-15.005333pt;}
._2_c00043{margin-left:-13.002667pt;}
._1_c00043{margin-left:-11.592000pt;}
._b_c00043{margin-left:-10.365333pt;}
._21_c00043{margin-left:-9.357333pt;}
._14_c00043{margin-left:-8.112000pt;}
._0_c00043{margin-left:-6.930667pt;}
._1c_c00043{margin-left:-5.704000pt;}
._c_c00043{margin-left:-4.661333pt;}
._6_c00043{margin-left:-3.040000pt;}
._4_c00043{margin-left:-1.410667pt;}
._9_c00043{width:1.594667pt;}
._10_c00043{width:2.637333pt;}
._a_c00043{width:3.624000pt;}
._d_c00043{width:4.562667pt;}
._5_c00043{width:5.704000pt;}
._12_c00043{width:6.685333pt;}
._15_c00043{width:8.152000pt;}
._16_c00043{width:9.056000pt;}
._19_c00043{width:10.496000pt;}
._e_c00043{width:11.968000pt;}
._17_c00043{width:13.181333pt;}
._f_c00043{width:14.229333pt;}
._13_c00043{width:16.290667pt;}
._25_c00043{width:17.666667pt;}
._1a_c00043{width:18.605333pt;}
._29_c00043{width:20.360000pt;}
._18_c00043{width:21.621333pt;}
._22_c00043{width:23.117333pt;}
._24_c00043{width:24.045333pt;}
._2d_c00043{width:29.586667pt;}
._1d_c00043{width:31.872000pt;}
._23_c00043{width:36.096000pt;}
._1f_c00043{width:39.469333pt;}
._2f_c00043{width:47.840000pt;}
._7_c00043{width:75.088000pt;}
._2c_c00043{width:79.160000pt;}
._20_c00043{width:84.682667pt;}
._1b_c00043{width:86.296000pt;}
._8_c00043{width:107.640000pt;}
._31_c00043{width:111.000000pt;}
._11_c00043{width:119.477333pt;}
._2a_c00043{width:148.880000pt;}
._30_c00043{width:167.496000pt;}
._2b_c00043{width:185.042667pt;}
._1e_c00043{width:207.525333pt;}
._3_c00043{width:322.813333pt;}
._32_c00043{width:1248.928000pt;}
.fs5_c00043{font-size:42.666667pt;}
.fs1_c00043{font-size:53.333333pt;}
.fs2_c00043{font-size:58.666667pt;}
.fs0_c00043{font-size:61.333333pt;}
.fs3_c00043{font-size:66.666667pt;}
.fs4_c00043{font-size:72.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y1f_c00043{bottom:2.760000pt;}
.y1e_c00043{bottom:6.425219pt;}
.y1d_c00043{bottom:59.480000pt;}
.y1c_c00043{bottom:76.280000pt;}
.y1b_c00043{bottom:96.413333pt;}
.y1a_c00043{bottom:120.013333pt;}
.y19_c00043{bottom:143.080000pt;}
.y18_c00043{bottom:164.680000pt;}
.y17_c00043{bottom:186.413333pt;}
.y16_c00043{bottom:209.080000pt;}
.y15_c00043{bottom:231.880000pt;}
.y14_c00043{bottom:253.480000pt;}
.y13_c00043{bottom:275.480000pt;}
.y12_c00043{bottom:297.880000pt;}
.y11_c00043{bottom:319.613333pt;}
.y10_c00043{bottom:342.013333pt;}
.yf_c00043{bottom:363.880000pt;}
.ye_c00043{bottom:396.280000pt;}
.yd_c00043{bottom:431.746667pt;}
.yc_c00043{bottom:452.413333pt;}
.yb_c00043{bottom:474.413333pt;}
.ya_c00043{bottom:496.546667pt;}
.y9_c00043{bottom:519.346667pt;}
.y8_c00043{bottom:540.280000pt;}
.y7_c00043{bottom:562.280000pt;}
.y6_c00043{bottom:584.680000pt;}
.y5_c00043{bottom:606.680000pt;}
.y4_c00043{bottom:629.080000pt;}
.y3_c00043{bottom:651.080000pt;}
.y2_c00043{bottom:673.213333pt;}
.y1_c00043{bottom:695.746667pt;}
.h5_c00043{height:11.733399pt;}
.h6_c00043{height:38.937500pt;}
.h3_c00043{height:71.785156pt;}
.h2_c00043{height:77.654948pt;}
.h4_c00043{height:84.407552pt;}
.h0_c00043{height:741.133333pt;}
.h1_c00043{height:741.333333pt;}
.w2_c00043{width:93.222667pt;}
.w0_c00043{width:509.266667pt;}
.w1_c00043{width:509.333333pt;}
.x0_c00043{left:0.000000pt;}
.x9_c00043{left:45.866667pt;}
.x8_c00043{left:47.066667pt;}
.xf_c00043{left:50.000000pt;}
.x7_c00043{left:59.600000pt;}
.x10_c00043{left:64.533333pt;}
.x3_c00043{left:66.000000pt;}
.x2_c00043{left:71.200000pt;}
.xe_c00043{left:86.133333pt;}
.x5_c00043{left:102.933333pt;}
.x6_c00043{left:104.000000pt;}
.xc_c00043{left:104.933333pt;}
.xd_c00043{left:105.866667pt;}
.x1_c00043{left:116.666667pt;}
.xb_c00043{left:126.933333pt;}
.xa_c00043{left:130.133333pt;}
.x4_c00043{left:151.200000pt;}
.x11_c00043{left:211.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_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_f2658451bb66a5ffeea4ed6e.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_fa7a1991b93605d1df09a042.woff2')format("woff");}.ff2_c00044{font-family:ff2_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:ff3_c00044;src:url('chunks/assets/font_e33370483e7b3f92cf72d2ec.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_b170d1f64a2372b9faf40b64.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.311035;font-style:normal;font-weight:normal;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_886f590094a4ef95ac2c538d.woff2')format("woff");}.ff5_c00044{font-family:ff5_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:ff6_c00044;src:url('chunks/assets/font_32cc1e6151264acb452991c6.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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;}
.ls9_c00044{letter-spacing:0.000000px;}
.ls6_c00044{letter-spacing:3.000000px;}
.ls3_c00044{letter-spacing:5.550000px;}
.lsa_c00044{letter-spacing:6.000000px;}
.ls1_c00044{letter-spacing:6.750000px;}
.ls2_c00044{letter-spacing:11.760000px;}
.ls5_c00044{letter-spacing:13.440000px;}
.ls0_c00044{letter-spacing:13.641000px;}
.ls7_c00044{letter-spacing:13.725000px;}
.ls8_c00044{letter-spacing:14.745600px;}
.ls4_c00044{letter-spacing:15.039000px;}
.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;}
}
.ws4_c00044{word-spacing:-32.361000px;}
.ws2_c00044{word-spacing:-20.460000px;}
.ws5_c00044{word-spacing:-20.250000px;}
.ws0_c00044{word-spacing:-17.250000px;}
.ws6_c00044{word-spacing:-16.800000px;}
.ws1_c00044{word-spacing:-1.656000px;}
.ws7_c00044{word-spacing:0.000000px;}
.ws3_c00044{word-spacing:4.968000px;}
._27_c00044{margin-left:-28.152000px;}
._2a_c00044{margin-left:-21.918000px;}
._21_c00044{margin-left:-17.112000px;}
._20_c00044{margin-left:-16.008000px;}
._3_c00044{margin-left:-12.075000px;}
._2c_c00044{margin-left:-11.040000px;}
._5_c00044{margin-left:-9.315000px;}
._29_c00044{margin-left:-7.659000px;}
._4_c00044{margin-left:-6.624000px;}
._9_c00044{margin-left:-4.899000px;}
._d_c00044{margin-left:-3.828000px;}
._18_c00044{margin-left:-2.796000px;}
._a_c00044{margin-left:-1.725000px;}
._0_c00044{width:1.035000px;}
._2_c00044{width:2.967000px;}
._6_c00044{width:4.830000px;}
._1_c00044{width:6.072000px;}
._e_c00044{width:7.968000px;}
._b_c00044{width:9.453000px;}
._8_c00044{width:10.695000px;}
._7_c00044{width:11.799000px;}
._23_c00044{width:12.912000px;}
._10_c00044{width:14.076000px;}
._11_c00044{width:15.264000px;}
._c_c00044{width:16.284000px;}
._f_c00044{width:17.577000px;}
._25_c00044{width:18.600000px;}
._19_c00044{width:20.424000px;}
._1b_c00044{width:21.732000px;}
._15_c00044{width:22.842000px;}
._1a_c00044{width:26.427000px;}
._1f_c00044{width:29.286000px;}
._1c_c00044{width:31.041000px;}
._1e_c00044{width:32.646000px;}
._1d_c00044{width:36.069000px;}
._26_c00044{width:37.083000px;}
._14_c00044{width:96.534000px;}
._13_c00044{width:98.049000px;}
._17_c00044{width:100.878000px;}
._24_c00044{width:102.141000px;}
._28_c00044{width:111.183000px;}
._12_c00044{width:132.831000px;}
._2b_c00044{width:136.462200px;}
._22_c00044{width:152.949000px;}
._16_c00044{width:165.738000px;}
._2d_c00044{width:448.653000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(128,128,128);}
.fc0_c00044{color:rgb(0,0,0);}
.fs4_c00044{font-size:48.000000px;}
.fs2_c00044{font-size:55.200000px;}
.fs1_c00044{font-size:60.000000px;}
.fs0_c00044{font-size:69.000000px;}
.fs3_c00044{font-size:75.000000px;}
.y0_c00044{bottom:0.000000px;}
.y21_c00044{bottom:3.105000px;}
.y20_c00044{bottom:7.228371px;}
.y1f_c00044{bottom:72.315000px;}
.y1e_c00044{bottom:97.515000px;}
.y1d_c00044{bottom:122.565000px;}
.y1c_c00044{bottom:146.865000px;}
.y1b_c00044{bottom:170.865000px;}
.y1a_c00044{bottom:196.065000px;}
.y19_c00044{bottom:219.765000px;}
.y18_c00044{bottom:246.165000px;}
.y17_c00044{bottom:271.365000px;}
.y16_c00044{bottom:295.965000px;}
.y15_c00044{bottom:320.715000px;}
.y14_c00044{bottom:343.965000px;}
.y13_c00044{bottom:371.265000px;}
.y12_c00044{bottom:394.665000px;}
.y11_c00044{bottom:419.865000px;}
.y10_c00044{bottom:444.615000px;}
.yf_c00044{bottom:481.665000px;}
.ye_c00044{bottom:518.415000px;}
.yd_c00044{bottom:541.815000px;}
.yc_c00044{bottom:567.015000px;}
.yb_c00044{bottom:592.365000px;}
.ya_c00044{bottom:616.965000px;}
.y9_c00044{bottom:642.015000px;}
.y8_c00044{bottom:666.915000px;}
.y2_c00044{bottom:683.865000px;}
.y7_c00044{bottom:691.215000px;}
.y1_c00044{bottom:700.365000px;}
.y6_c00044{bottom:715.965000px;}
.y5_c00044{bottom:740.865000px;}
.y4_c00044{bottom:765.765000px;}
.y3_c00044{bottom:790.515000px;}
.h7_c00044{height:13.200074px;}
.h8_c00044{height:43.804688px;}
.h4_c00044{height:67.686035px;}
.h2_c00044{height:67.719727px;}
.h5_c00044{height:75.966797px;}
.h3_c00044{height:87.361816px;}
.h6_c00044{height:94.958496px;}
.h1_c00044{height:831.000000px;}
.h0_c00044{height:831.075000px;}
.w1_c00044{width:104.875500px;}
.w0_c00044{width:557.250000px;}
.x0_c00044{left:0.000000px;}
.x4_c00044{left:28.050000px;}
.x7_c00044{left:29.250000px;}
.x8_c00044{left:30.300000px;}
.x6_c00044{left:52.650000px;}
.x5_c00044{left:70.200000px;}
.x3_c00044{left:182.250000px;}
.xa_c00044{left:230.439240px;}
.x9_c00044{left:277.800000px;}
.x2_c00044{left:477.900000px;}
.x1_c00044{left:491.700000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls9_c00044{letter-spacing:0.000000pt;}
.ls6_c00044{letter-spacing:2.666667pt;}
.ls3_c00044{letter-spacing:4.933333pt;}
.lsa_c00044{letter-spacing:5.333333pt;}
.ls1_c00044{letter-spacing:6.000000pt;}
.ls2_c00044{letter-spacing:10.453333pt;}
.ls5_c00044{letter-spacing:11.946667pt;}
.ls0_c00044{letter-spacing:12.125333pt;}
.ls7_c00044{letter-spacing:12.200000pt;}
.ls8_c00044{letter-spacing:13.107200pt;}
.ls4_c00044{letter-spacing:13.368000pt;}
.ws4_c00044{word-spacing:-28.765333pt;}
.ws2_c00044{word-spacing:-18.186667pt;}
.ws5_c00044{word-spacing:-18.000000pt;}
.ws0_c00044{word-spacing:-15.333333pt;}
.ws6_c00044{word-spacing:-14.933333pt;}
.ws1_c00044{word-spacing:-1.472000pt;}
.ws7_c00044{word-spacing:0.000000pt;}
.ws3_c00044{word-spacing:4.416000pt;}
._27_c00044{margin-left:-25.024000pt;}
._2a_c00044{margin-left:-19.482667pt;}
._21_c00044{margin-left:-15.210667pt;}
._20_c00044{margin-left:-14.229333pt;}
._3_c00044{margin-left:-10.733333pt;}
._2c_c00044{margin-left:-9.813333pt;}
._5_c00044{margin-left:-8.280000pt;}
._29_c00044{margin-left:-6.808000pt;}
._4_c00044{margin-left:-5.888000pt;}
._9_c00044{margin-left:-4.354667pt;}
._d_c00044{margin-left:-3.402667pt;}
._18_c00044{margin-left:-2.485333pt;}
._a_c00044{margin-left:-1.533333pt;}
._0_c00044{width:0.920000pt;}
._2_c00044{width:2.637333pt;}
._6_c00044{width:4.293333pt;}
._1_c00044{width:5.397333pt;}
._e_c00044{width:7.082667pt;}
._b_c00044{width:8.402667pt;}
._8_c00044{width:9.506667pt;}
._7_c00044{width:10.488000pt;}
._23_c00044{width:11.477333pt;}
._10_c00044{width:12.512000pt;}
._11_c00044{width:13.568000pt;}
._c_c00044{width:14.474667pt;}
._f_c00044{width:15.624000pt;}
._25_c00044{width:16.533333pt;}
._19_c00044{width:18.154667pt;}
._1b_c00044{width:19.317333pt;}
._15_c00044{width:20.304000pt;}
._1a_c00044{width:23.490667pt;}
._1f_c00044{width:26.032000pt;}
._1c_c00044{width:27.592000pt;}
._1e_c00044{width:29.018667pt;}
._1d_c00044{width:32.061333pt;}
._26_c00044{width:32.962667pt;}
._14_c00044{width:85.808000pt;}
._13_c00044{width:87.154667pt;}
._17_c00044{width:89.669333pt;}
._24_c00044{width:90.792000pt;}
._28_c00044{width:98.829333pt;}
._12_c00044{width:118.072000pt;}
._2b_c00044{width:121.299733pt;}
._22_c00044{width:135.954667pt;}
._16_c00044{width:147.322667pt;}
._2d_c00044{width:398.802667pt;}
.fs4_c00044{font-size:42.666667pt;}
.fs2_c00044{font-size:49.066667pt;}
.fs1_c00044{font-size:53.333333pt;}
.fs0_c00044{font-size:61.333333pt;}
.fs3_c00044{font-size:66.666667pt;}
.y0_c00044{bottom:0.000000pt;}
.y21_c00044{bottom:2.760000pt;}
.y20_c00044{bottom:6.425219pt;}
.y1f_c00044{bottom:64.280000pt;}
.y1e_c00044{bottom:86.680000pt;}
.y1d_c00044{bottom:108.946667pt;}
.y1c_c00044{bottom:130.546667pt;}
.y1b_c00044{bottom:151.880000pt;}
.y1a_c00044{bottom:174.280000pt;}
.y19_c00044{bottom:195.346667pt;}
.y18_c00044{bottom:218.813333pt;}
.y17_c00044{bottom:241.213333pt;}
.y16_c00044{bottom:263.080000pt;}
.y15_c00044{bottom:285.080000pt;}
.y14_c00044{bottom:305.746667pt;}
.y13_c00044{bottom:330.013333pt;}
.y12_c00044{bottom:350.813333pt;}
.y11_c00044{bottom:373.213333pt;}
.y10_c00044{bottom:395.213333pt;}
.yf_c00044{bottom:428.146667pt;}
.ye_c00044{bottom:460.813333pt;}
.yd_c00044{bottom:481.613333pt;}
.yc_c00044{bottom:504.013333pt;}
.yb_c00044{bottom:526.546667pt;}
.ya_c00044{bottom:548.413333pt;}
.y9_c00044{bottom:570.680000pt;}
.y8_c00044{bottom:592.813333pt;}
.y2_c00044{bottom:607.880000pt;}
.y7_c00044{bottom:614.413333pt;}
.y1_c00044{bottom:622.546667pt;}
.y6_c00044{bottom:636.413333pt;}
.y5_c00044{bottom:658.546667pt;}
.y4_c00044{bottom:680.680000pt;}
.y3_c00044{bottom:702.680000pt;}
.h7_c00044{height:11.733399pt;}
.h8_c00044{height:38.937500pt;}
.h4_c00044{height:60.165365pt;}
.h2_c00044{height:60.195312pt;}
.h5_c00044{height:67.526042pt;}
.h3_c00044{height:77.654948pt;}
.h6_c00044{height:84.407552pt;}
.h1_c00044{height:738.666667pt;}
.h0_c00044{height:738.733333pt;}
.w1_c00044{width:93.222667pt;}
.w0_c00044{width:495.333333pt;}
.x0_c00044{left:0.000000pt;}
.x4_c00044{left:24.933333pt;}
.x7_c00044{left:26.000000pt;}
.x8_c00044{left:26.933333pt;}
.x6_c00044{left:46.800000pt;}
.x5_c00044{left:62.400000pt;}
.x3_c00044{left:162.000000pt;}
.xa_c00044{left:204.834880pt;}
.x9_c00044{left:246.933333pt;}
.x2_c00044{left:424.800000pt;}
.x1_c00044{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_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_55d346ff2b54ebb8eb662c04.woff2')format("woff");}.ff1_c00045{font-family:ff1_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:ff2_c00045;src:url('chunks/assets/font_15edd282a98fd85fac9e3a1a.woff2')format("woff");}.ff2_c00045{font-family:ff2_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:ff3_c00045;src:url('chunks/assets/font_91f3127089b3f285665cda04.woff2')format("woff");}.ff3_c00045{font-family:ff3_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:ff4_c00045;src:url('chunks/assets/font_005990691e0dbe1377bab6a6.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;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_c00045;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00045{font-family:ff5_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;}
.ls3_c00045{letter-spacing:0.000000px;}
.ls2_c00045{letter-spacing:3.000000px;}
.ls0_c00045{letter-spacing:21.000000px;}
.ls1_c00045{letter-spacing:40.890000px;}
.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;}
}
.ws5_c00045{word-spacing:-60.900000px;}
.ws1_c00045{word-spacing:-33.000000px;}
.ws4_c00045{word-spacing:-19.800000px;}
.ws0_c00045{word-spacing:-16.629000px;}
.ws3_c00045{word-spacing:-0.138000px;}
.ws6_c00045{word-spacing:0.000000px;}
.ws2_c00045{word-spacing:1.410000px;}
._c_c00045{margin-left:-27.324000px;}
._23_c00045{margin-left:-17.250000px;}
._15_c00045{margin-left:-15.870000px;}
._12_c00045{margin-left:-12.942000px;}
._19_c00045{margin-left:-11.523000px;}
._13_c00045{margin-left:-10.488000px;}
._16_c00045{margin-left:-9.315000px;}
._0_c00045{margin-left:-7.314000px;}
._10_c00045{margin-left:-5.796000px;}
._1b_c00045{margin-left:-4.209000px;}
._1_c00045{margin-left:-2.208000px;}
._e_c00045{margin-left:-1.104000px;}
._6_c00045{width:1.311000px;}
._5_c00045{width:2.346000px;}
._4_c00045{width:3.519000px;}
._7_c00045{width:5.175000px;}
._3_c00045{width:7.176000px;}
._18_c00045{width:8.349000px;}
._9_c00045{width:9.453000px;}
._f_c00045{width:11.109000px;}
._b_c00045{width:13.110000px;}
._a_c00045{width:14.490000px;}
._21_c00045{width:15.663000px;}
._d_c00045{width:16.734000px;}
._8_c00045{width:18.495000px;}
._1f_c00045{width:20.664000px;}
._1c_c00045{width:21.942000px;}
._20_c00045{width:23.286000px;}
._17_c00045{width:24.702000px;}
._25_c00045{width:26.013000px;}
._22_c00045{width:27.324000px;}
._26_c00045{width:29.118000px;}
._24_c00045{width:32.982000px;}
._27_c00045{width:36.639000px;}
._1d_c00045{width:41.883000px;}
._14_c00045{width:43.953000px;}
._11_c00045{width:93.288000px;}
._1e_c00045{width:189.288000px;}
._2_c00045{width:362.070000px;}
._1a_c00045{width:370.110000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(128,128,128);}
.fc0_c00045{color:rgb(0,0,0);}
.fs3_c00045{font-size:48.000000px;}
.fs1_c00045{font-size:66.000000px;}
.fs0_c00045{font-size:69.000000px;}
.fs2_c00045{font-size:75.000000px;}
.y0_c00045{bottom:0.000000px;}
.y1e_c00045{bottom:3.105000px;}
.y1d_c00045{bottom:7.228371px;}
.y1c_c00045{bottom:60.465000px;}
.y1b_c00045{bottom:84.015000px;}
.y1a_c00045{bottom:109.665000px;}
.y19_c00045{bottom:135.015000px;}
.y18_c00045{bottom:159.765000px;}
.y17_c00045{bottom:185.715000px;}
.y16_c00045{bottom:236.265000px;}
.y15_c00045{bottom:285.915000px;}
.y14_c00045{bottom:312.315000px;}
.y13_c00045{bottom:335.115000px;}
.y12_c00045{bottom:360.165000px;}
.y11_c00045{bottom:385.065000px;}
.y10_c00045{bottom:408.465000px;}
.yf_c00045{bottom:434.415000px;}
.ye_c00045{bottom:459.465000px;}
.yd_c00045{bottom:484.665000px;}
.yc_c00045{bottom:509.415000px;}
.yb_c00045{bottom:537.765000px;}
.ya_c00045{bottom:558.615000px;}
.y9_c00045{bottom:583.515000px;}
.y8_c00045{bottom:608.265000px;}
.y7_c00045{bottom:632.865000px;}
.y6_c00045{bottom:658.515000px;}
.y5_c00045{bottom:683.115000px;}
.y4_c00045{bottom:708.465000px;}
.y3_c00045{bottom:733.365000px;}
.y2_c00045{bottom:758.415000px;}
.y1_c00045{bottom:783.315000px;}
.h5_c00045{height:13.200074px;}
.h6_c00045{height:43.804688px;}
.h4_c00045{height:80.025000px;}
.h3_c00045{height:80.758301px;}
.h2_c00045{height:87.361816px;}
.h0_c00045{height:833.775000px;}
.h1_c00045{height:834.000000px;}
.w2_c00045{width:104.875500px;}
.w0_c00045{width:572.925000px;}
.w1_c00045{width:573.000000px;}
.x0_c00045{left:0.000000px;}
.x9_c00045{left:54.000000px;}
.x6_c00045{left:55.350000px;}
.xa_c00045{left:57.300000px;}
.x4_c00045{left:70.500000px;}
.x2_c00045{left:118.800000px;}
.x5_c00045{left:119.850000px;}
.x8_c00045{left:121.200000px;}
.x1_c00045{left:134.550000px;}
.x3_c00045{left:142.800000px;}
.x7_c00045{left:144.450000px;}
.xb_c00045{left:162.300000px;}
.xc_c00045{left:216.900000px;}
.xe_c00045{left:238.276749px;}
.xd_c00045{left:536.550000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls3_c00045{letter-spacing:0.000000pt;}
.ls2_c00045{letter-spacing:2.666667pt;}
.ls0_c00045{letter-spacing:18.666667pt;}
.ls1_c00045{letter-spacing:36.346667pt;}
.ws5_c00045{word-spacing:-54.133333pt;}
.ws1_c00045{word-spacing:-29.333333pt;}
.ws4_c00045{word-spacing:-17.600000pt;}
.ws0_c00045{word-spacing:-14.781333pt;}
.ws3_c00045{word-spacing:-0.122667pt;}
.ws6_c00045{word-spacing:0.000000pt;}
.ws2_c00045{word-spacing:1.253333pt;}
._c_c00045{margin-left:-24.288000pt;}
._23_c00045{margin-left:-15.333333pt;}
._15_c00045{margin-left:-14.106667pt;}
._12_c00045{margin-left:-11.504000pt;}
._19_c00045{margin-left:-10.242667pt;}
._13_c00045{margin-left:-9.322667pt;}
._16_c00045{margin-left:-8.280000pt;}
._0_c00045{margin-left:-6.501333pt;}
._10_c00045{margin-left:-5.152000pt;}
._1b_c00045{margin-left:-3.741333pt;}
._1_c00045{margin-left:-1.962667pt;}
._e_c00045{margin-left:-0.981333pt;}
._6_c00045{width:1.165333pt;}
._5_c00045{width:2.085333pt;}
._4_c00045{width:3.128000pt;}
._7_c00045{width:4.600000pt;}
._3_c00045{width:6.378667pt;}
._18_c00045{width:7.421333pt;}
._9_c00045{width:8.402667pt;}
._f_c00045{width:9.874667pt;}
._b_c00045{width:11.653333pt;}
._a_c00045{width:12.880000pt;}
._21_c00045{width:13.922667pt;}
._d_c00045{width:14.874667pt;}
._8_c00045{width:16.440000pt;}
._1f_c00045{width:18.368000pt;}
._1c_c00045{width:19.504000pt;}
._20_c00045{width:20.698667pt;}
._17_c00045{width:21.957333pt;}
._25_c00045{width:23.122667pt;}
._22_c00045{width:24.288000pt;}
._26_c00045{width:25.882667pt;}
._24_c00045{width:29.317333pt;}
._27_c00045{width:32.568000pt;}
._1d_c00045{width:37.229333pt;}
._14_c00045{width:39.069333pt;}
._11_c00045{width:82.922667pt;}
._1e_c00045{width:168.256000pt;}
._2_c00045{width:321.840000pt;}
._1a_c00045{width:328.986667pt;}
.fs3_c00045{font-size:42.666667pt;}
.fs1_c00045{font-size:58.666667pt;}
.fs0_c00045{font-size:61.333333pt;}
.fs2_c00045{font-size:66.666667pt;}
.y0_c00045{bottom:0.000000pt;}
.y1e_c00045{bottom:2.760000pt;}
.y1d_c00045{bottom:6.425219pt;}
.y1c_c00045{bottom:53.746667pt;}
.y1b_c00045{bottom:74.680000pt;}
.y1a_c00045{bottom:97.480000pt;}
.y19_c00045{bottom:120.013333pt;}
.y18_c00045{bottom:142.013333pt;}
.y17_c00045{bottom:165.080000pt;}
.y16_c00045{bottom:210.013333pt;}
.y15_c00045{bottom:254.146667pt;}
.y14_c00045{bottom:277.613333pt;}
.y13_c00045{bottom:297.880000pt;}
.y12_c00045{bottom:320.146667pt;}
.y11_c00045{bottom:342.280000pt;}
.y10_c00045{bottom:363.080000pt;}
.yf_c00045{bottom:386.146667pt;}
.ye_c00045{bottom:408.413333pt;}
.yd_c00045{bottom:430.813333pt;}
.yc_c00045{bottom:452.813333pt;}
.yb_c00045{bottom:478.013333pt;}
.ya_c00045{bottom:496.546667pt;}
.y9_c00045{bottom:518.680000pt;}
.y8_c00045{bottom:540.680000pt;}
.y7_c00045{bottom:562.546667pt;}
.y6_c00045{bottom:585.346667pt;}
.y5_c00045{bottom:607.213333pt;}
.y4_c00045{bottom:629.746667pt;}
.y3_c00045{bottom:651.880000pt;}
.y2_c00045{bottom:674.146667pt;}
.y1_c00045{bottom:696.280000pt;}
.h5_c00045{height:11.733399pt;}
.h6_c00045{height:38.937500pt;}
.h4_c00045{height:71.133333pt;}
.h3_c00045{height:71.785156pt;}
.h2_c00045{height:77.654948pt;}
.h0_c00045{height:741.133333pt;}
.h1_c00045{height:741.333333pt;}
.w2_c00045{width:93.222667pt;}
.w0_c00045{width:509.266667pt;}
.w1_c00045{width:509.333333pt;}
.x0_c00045{left:0.000000pt;}
.x9_c00045{left:48.000000pt;}
.x6_c00045{left:49.200000pt;}
.xa_c00045{left:50.933333pt;}
.x4_c00045{left:62.666667pt;}
.x2_c00045{left:105.600000pt;}
.x5_c00045{left:106.533333pt;}
.x8_c00045{left:107.733333pt;}
.x1_c00045{left:119.600000pt;}
.x3_c00045{left:126.933333pt;}
.x7_c00045{left:128.400000pt;}
.xb_c00045{left:144.266667pt;}
.xc_c00045{left:192.800000pt;}
.xe_c00045{left:211.801554pt;}
.xd_c00045{left:476.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_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_21b0d0a9ce7ecb323b615d16.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_86e5c7cf24662dbdb57457df.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_d8e3b7f84a8533e6db617742.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00046{font-family:ff4_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:ff5_c00046;src:url('chunks/assets/font_7c7bb0f374599015112c9419.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00046;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00046{font-family:ff7_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;}
.ls4_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:3.000000px;}
.ls0_c00046{letter-spacing:10.725000px;}
.ls2_c00046{letter-spacing:12.600000px;}
.ls3_c00046{letter-spacing:16.764000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00046{word-spacing:-20.130000px;}
.ws2_c00046{word-spacing:-17.250000px;}
.ws3_c00046{word-spacing:-16.629000px;}
.ws5_c00046{word-spacing:0.000000px;}
.ws1_c00046{word-spacing:0.207000px;}
.ws0_c00046{word-spacing:1.311000px;}
._22_c00046{margin-left:-17.637000px;}
._1f_c00046{margin-left:-15.126000px;}
._11_c00046{margin-left:-13.041000px;}
._14_c00046{margin-left:-11.661000px;}
._1_c00046{margin-left:-9.591000px;}
._13_c00046{margin-left:-8.076000px;}
._1e_c00046{margin-left:-7.038000px;}
._4_c00046{margin-left:-6.003000px;}
._2_c00046{margin-left:-3.864000px;}
._12_c00046{margin-left:-2.730000px;}
._3_c00046{margin-left:-1.656000px;}
._0_c00046{width:1.518000px;}
._6_c00046{width:3.174000px;}
._e_c00046{width:5.004000px;}
._b_c00046{width:6.072000px;}
._9_c00046{width:7.452000px;}
._c_c00046{width:8.556000px;}
._a_c00046{width:10.212000px;}
._8_c00046{width:12.075000px;}
._7_c00046{width:13.800000px;}
._16_c00046{width:15.420000px;}
._15_c00046{width:16.584000px;}
._d_c00046{width:18.423000px;}
._20_c00046{width:19.740000px;}
._17_c00046{width:20.901000px;}
._1a_c00046{width:23.184000px;}
._19_c00046{width:30.435000px;}
._f_c00046{width:34.359000px;}
._10_c00046{width:35.565000px;}
._1d_c00046{width:37.119000px;}
._1b_c00046{width:38.394000px;}
._21_c00046{width:42.570000px;}
._18_c00046{width:97.464000px;}
._1c_c00046{width:106.554000px;}
._5_c00046{width:510.330000px;}
._23_c00046{width:1319.655000px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(128,128,128);}
.fc0_c00046{color:rgb(0,0,0);}
.fs2_c00046{font-size:48.000000px;}
.fs1_c00046{font-size:66.000000px;}
.fs0_c00046{font-size:69.000000px;}
.y0_c00046{bottom:0.000000px;}
.y1c_c00046{bottom:3.105000px;}
.y1b_c00046{bottom:7.228357px;}
.y1a_c00046{bottom:67.230000px;}
.y19_c00046{bottom:91.530000px;}
.y18_c00046{bottom:116.430000px;}
.y17_c00046{bottom:141.030000px;}
.y16_c00046{bottom:190.080000px;}
.y15_c00046{bottom:240.030000px;}
.y14_c00046{bottom:264.930000px;}
.y13_c00046{bottom:289.530000px;}
.y12_c00046{bottom:314.280000px;}
.y11_c00046{bottom:339.180000px;}
.y10_c00046{bottom:362.880000px;}
.yf_c00046{bottom:388.530000px;}
.ye_c00046{bottom:412.530000px;}
.yd_c00046{bottom:438.030000px;}
.yc_c00046{bottom:462.480000px;}
.yb_c00046{bottom:487.080000px;}
.ya_c00046{bottom:511.080000px;}
.y9_c00046{bottom:559.980000px;}
.y8_c00046{bottom:609.630000px;}
.y7_c00046{bottom:634.530000px;}
.y6_c00046{bottom:659.430000px;}
.y5_c00046{bottom:684.180000px;}
.y4_c00046{bottom:708.480000px;}
.y3_c00046{bottom:733.680000px;}
.y2_c00046{bottom:758.130000px;}
.y1_c00046{bottom:783.030000px;}
.h7_c00046{height:13.200074px;}
.h8_c00046{height:43.804688px;}
.h4_c00046{height:67.686035px;}
.h3_c00046{height:67.719727px;}
.h6_c00046{height:69.539062px;}
.h5_c00046{height:80.758301px;}
.h2_c00046{height:87.361816px;}
.h0_c00046{height:808.950000px;}
.h1_c00046{height:809.250000px;}
.w2_c00046{width:104.875500px;}
.w0_c00046{width:542.175000px;}
.w1_c00046{width:542.250000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:24.900000px;}
.x3_c00046{left:25.950000px;}
.x6_c00046{left:27.450000px;}
.x8_c00046{left:29.700000px;}
.x7_c00046{left:30.750000px;}
.x9_c00046{left:33.750000px;}
.x5_c00046{left:53.400000px;}
.xb_c00046{left:55.650000px;}
.xa_c00046{left:61.500000px;}
.x4_c00046{left:69.300000px;}
.x1_c00046{left:179.850000px;}
.xc_c00046{left:222.901749px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls4_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:2.666667pt;}
.ls0_c00046{letter-spacing:9.533333pt;}
.ls2_c00046{letter-spacing:11.200000pt;}
.ls3_c00046{letter-spacing:14.901333pt;}
.ws4_c00046{word-spacing:-17.893333pt;}
.ws2_c00046{word-spacing:-15.333333pt;}
.ws3_c00046{word-spacing:-14.781333pt;}
.ws5_c00046{word-spacing:0.000000pt;}
.ws1_c00046{word-spacing:0.184000pt;}
.ws0_c00046{word-spacing:1.165333pt;}
._22_c00046{margin-left:-15.677333pt;}
._1f_c00046{margin-left:-13.445333pt;}
._11_c00046{margin-left:-11.592000pt;}
._14_c00046{margin-left:-10.365333pt;}
._1_c00046{margin-left:-8.525333pt;}
._13_c00046{margin-left:-7.178667pt;}
._1e_c00046{margin-left:-6.256000pt;}
._4_c00046{margin-left:-5.336000pt;}
._2_c00046{margin-left:-3.434667pt;}
._12_c00046{margin-left:-2.426667pt;}
._3_c00046{margin-left:-1.472000pt;}
._0_c00046{width:1.349333pt;}
._6_c00046{width:2.821333pt;}
._e_c00046{width:4.448000pt;}
._b_c00046{width:5.397333pt;}
._9_c00046{width:6.624000pt;}
._c_c00046{width:7.605333pt;}
._a_c00046{width:9.077333pt;}
._8_c00046{width:10.733333pt;}
._7_c00046{width:12.266667pt;}
._16_c00046{width:13.706667pt;}
._15_c00046{width:14.741333pt;}
._d_c00046{width:16.376000pt;}
._20_c00046{width:17.546667pt;}
._17_c00046{width:18.578667pt;}
._1a_c00046{width:20.608000pt;}
._19_c00046{width:27.053333pt;}
._f_c00046{width:30.541333pt;}
._10_c00046{width:31.613333pt;}
._1d_c00046{width:32.994667pt;}
._1b_c00046{width:34.128000pt;}
._21_c00046{width:37.840000pt;}
._18_c00046{width:86.634667pt;}
._1c_c00046{width:94.714667pt;}
._5_c00046{width:453.626667pt;}
._23_c00046{width:1173.026667pt;}
.fs2_c00046{font-size:42.666667pt;}
.fs1_c00046{font-size:58.666667pt;}
.fs0_c00046{font-size:61.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y1c_c00046{bottom:2.760000pt;}
.y1b_c00046{bottom:6.425206pt;}
.y1a_c00046{bottom:59.760000pt;}
.y19_c00046{bottom:81.360000pt;}
.y18_c00046{bottom:103.493333pt;}
.y17_c00046{bottom:125.360000pt;}
.y16_c00046{bottom:168.960000pt;}
.y15_c00046{bottom:213.360000pt;}
.y14_c00046{bottom:235.493333pt;}
.y13_c00046{bottom:257.360000pt;}
.y12_c00046{bottom:279.360000pt;}
.y11_c00046{bottom:301.493333pt;}
.y10_c00046{bottom:322.560000pt;}
.yf_c00046{bottom:345.360000pt;}
.ye_c00046{bottom:366.693333pt;}
.yd_c00046{bottom:389.360000pt;}
.yc_c00046{bottom:411.093333pt;}
.yb_c00046{bottom:432.960000pt;}
.ya_c00046{bottom:454.293333pt;}
.y9_c00046{bottom:497.760000pt;}
.y8_c00046{bottom:541.893333pt;}
.y7_c00046{bottom:564.026667pt;}
.y6_c00046{bottom:586.160000pt;}
.y5_c00046{bottom:608.160000pt;}
.y4_c00046{bottom:629.760000pt;}
.y3_c00046{bottom:652.160000pt;}
.y2_c00046{bottom:673.893333pt;}
.y1_c00046{bottom:696.026667pt;}
.h7_c00046{height:11.733399pt;}
.h8_c00046{height:38.937500pt;}
.h4_c00046{height:60.165365pt;}
.h3_c00046{height:60.195312pt;}
.h6_c00046{height:61.812500pt;}
.h5_c00046{height:71.785156pt;}
.h2_c00046{height:77.654948pt;}
.h0_c00046{height:719.066667pt;}
.h1_c00046{height:719.333333pt;}
.w2_c00046{width:93.222667pt;}
.w0_c00046{width:481.933333pt;}
.w1_c00046{width:482.000000pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:22.133333pt;}
.x3_c00046{left:23.066667pt;}
.x6_c00046{left:24.400000pt;}
.x8_c00046{left:26.400000pt;}
.x7_c00046{left:27.333333pt;}
.x9_c00046{left:30.000000pt;}
.x5_c00046{left:47.466667pt;}
.xb_c00046{left:49.466667pt;}
.xa_c00046{left:54.666667pt;}
.x4_c00046{left:61.600000pt;}
.x1_c00046{left:159.866667pt;}
.xc_c00046{left:198.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2806163f2d081df08fda53dd.woff2')format("woff");}.ff1_c00047{font-family:ff1_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:ff2_c00047;src:url('chunks/assets/font_d04f62ec9a8ba914ca9650cd.woff2')format("woff");}.ff2_c00047{font-family:ff2_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:ff3_c00047;src:url('chunks/assets/font_b04cdcc99d8c969c1311aafa.woff2')format("woff");}.ff3_c00047{font-family:ff3_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:ff4_c00047;src:url('chunks/assets/font_aef5f3a87fb17095c6d09128.woff2')format("woff");}.ff4_c00047{font-family:ff4_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:ff5_c00047;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00047{font-family:ff5_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;}
.ls1_c00047{letter-spacing:0.000000px;}
.ls2_c00047{letter-spacing:3.000000px;}
.ls0_c00047{letter-spacing:3.750000px;}
.ls3_c00047{letter-spacing:30.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00047{word-spacing:-45.846000px;}
.ws6_c00047{word-spacing:-20.250000px;}
.ws2_c00047{word-spacing:-19.182000px;}
.ws0_c00047{word-spacing:-16.629000px;}
.ws5_c00047{word-spacing:-13.737000px;}
.ws4_c00047{word-spacing:-13.014000px;}
.ws7_c00047{word-spacing:-11.568000px;}
.ws8_c00047{word-spacing:0.000000px;}
.ws1_c00047{word-spacing:1.587000px;}
._1a_c00047{margin-left:-20.700000px;}
._16_c00047{margin-left:-19.044000px;}
._18_c00047{margin-left:-12.567000px;}
._19_c00047{margin-left:-10.833000px;}
._3_c00047{margin-left:-9.246000px;}
._2_c00047{margin-left:-8.211000px;}
._d_c00047{margin-left:-7.038000px;}
._4_c00047{margin-left:-5.727000px;}
._c_c00047{margin-left:-4.347000px;}
._6_c00047{margin-left:-3.312000px;}
._29_c00047{margin-left:-2.277000px;}
._0_c00047{margin-left:-1.242000px;}
._9_c00047{width:1.035000px;}
._1_c00047{width:2.415000px;}
._5_c00047{width:4.071000px;}
._10_c00047{width:5.106000px;}
._f_c00047{width:7.074000px;}
._b_c00047{width:8.556000px;}
._a_c00047{width:10.281000px;}
._8_c00047{width:12.213000px;}
._14_c00047{width:14.109000px;}
._12_c00047{width:15.699000px;}
._e_c00047{width:17.493000px;}
._27_c00047{width:19.551000px;}
._20_c00047{width:20.631000px;}
._25_c00047{width:22.563000px;}
._1e_c00047{width:24.669000px;}
._28_c00047{width:26.358000px;}
._24_c00047{width:28.842000px;}
._26_c00047{width:30.429000px;}
._23_c00047{width:36.432000px;}
._21_c00047{width:39.261000px;}
._11_c00047{width:40.572000px;}
._13_c00047{width:45.885000px;}
._1f_c00047{width:49.128000px;}
._15_c00047{width:74.313000px;}
._1c_c00047{width:104.466000px;}
._22_c00047{width:110.262000px;}
._1b_c00047{width:178.986000px;}
._1d_c00047{width:257.682000px;}
._7_c00047{width:335.754000px;}
._17_c00047{width:366.735000px;}
.fc2_c00047{color:transparent;}
.fc1_c00047{color:rgb(128,128,128);}
.fc0_c00047{color:rgb(0,0,0);}
.fs3_c00047{font-size:48.000000px;}
.fs2_c00047{font-size:54.000000px;}
.fs1_c00047{font-size:57.000000px;}
.fs0_c00047{font-size:69.000000px;}
.y0_c00047{bottom:0.000000px;}
.y22_c00047{bottom:3.105000px;}
.y21_c00047{bottom:7.228371px;}
.y1f_c00047{bottom:70.515000px;}
.y1e_c00047{bottom:90.165000px;}
.y1d_c00047{bottom:109.665000px;}
.y1c_c00047{bottom:125.865000px;}
.y1b_c00047{bottom:144.765000px;}
.y1a_c00047{bottom:160.965000px;}
.y19_c00047{bottom:179.265000px;}
.y18_c00047{bottom:196.215000px;}
.y17_c00047{bottom:213.765000px;}
.y16_c00047{bottom:248.865000px;}
.y15_c00047{bottom:292.965000px;}
.y14_c00047{bottom:317.565000px;}
.y20_c00047{bottom:322.965000px;}
.y13_c00047{bottom:342.015000px;}
.y12_c00047{bottom:366.315000px;}
.y11_c00047{bottom:390.915000px;}
.y10_c00047{bottom:415.215000px;}
.yf_c00047{bottom:440.415000px;}
.ye_c00047{bottom:465.465000px;}
.yd_c00047{bottom:490.365000px;}
.yc_c00047{bottom:515.415000px;}
.yb_c00047{bottom:539.715000px;}
.ya_c00047{bottom:567.315000px;}
.y9_c00047{bottom:589.065000px;}
.y8_c00047{bottom:613.665000px;}
.y7_c00047{bottom:637.515000px;}
.y6_c00047{bottom:663.615000px;}
.y5_c00047{bottom:688.515000px;}
.y4_c00047{bottom:713.115000px;}
.y3_c00047{bottom:737.865000px;}
.y2_c00047{bottom:762.165000px;}
.y1_c00047{bottom:788.115000px;}
.h8_c00047{height:13.200074px;}
.h9_c00047{height:43.804688px;}
.h3_c00047{height:55.914551px;}
.h7_c00047{height:56.179688px;}
.h4_c00047{height:68.370117px;}
.h6_c00047{height:69.539062px;}
.h5_c00047{height:72.168457px;}
.h2_c00047{height:87.361816px;}
.h0_c00047{height:833.775000px;}
.h1_c00047{height:834.000000px;}
.w2_c00047{width:104.875500px;}
.w0_c00047{width:572.925000px;}
.w1_c00047{width:573.000000px;}
.x0_c00047{left:0.000000px;}
.x7_c00047{left:49.950000px;}
.x2_c00047{left:51.750000px;}
.x5_c00047{left:60.300000px;}
.x9_c00047{left:64.500000px;}
.x6_c00047{left:68.850000px;}
.xd_c00047{left:114.450000px;}
.x3_c00047{left:116.100000px;}
.x4_c00047{left:117.150000px;}
.xc_c00047{left:131.250000px;}
.xb_c00047{left:132.600000px;}
.x8_c00047{left:142.050000px;}
.xf_c00047{left:238.276749px;}
.x1_c00047{left:252.450000px;}
.xa_c00047{left:261.600000px;}
.xe_c00047{left:520.350000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls1_c00047{letter-spacing:0.000000pt;}
.ls2_c00047{letter-spacing:2.666667pt;}
.ls0_c00047{letter-spacing:3.333333pt;}
.ls3_c00047{letter-spacing:26.666667pt;}
.ws3_c00047{word-spacing:-40.752000pt;}
.ws6_c00047{word-spacing:-18.000000pt;}
.ws2_c00047{word-spacing:-17.050667pt;}
.ws0_c00047{word-spacing:-14.781333pt;}
.ws5_c00047{word-spacing:-12.210667pt;}
.ws4_c00047{word-spacing:-11.568000pt;}
.ws7_c00047{word-spacing:-10.282667pt;}
.ws8_c00047{word-spacing:0.000000pt;}
.ws1_c00047{word-spacing:1.410667pt;}
._1a_c00047{margin-left:-18.400000pt;}
._16_c00047{margin-left:-16.928000pt;}
._18_c00047{margin-left:-11.170667pt;}
._19_c00047{margin-left:-9.629333pt;}
._3_c00047{margin-left:-8.218667pt;}
._2_c00047{margin-left:-7.298667pt;}
._d_c00047{margin-left:-6.256000pt;}
._4_c00047{margin-left:-5.090667pt;}
._c_c00047{margin-left:-3.864000pt;}
._6_c00047{margin-left:-2.944000pt;}
._29_c00047{margin-left:-2.024000pt;}
._0_c00047{margin-left:-1.104000pt;}
._9_c00047{width:0.920000pt;}
._1_c00047{width:2.146667pt;}
._5_c00047{width:3.618667pt;}
._10_c00047{width:4.538667pt;}
._f_c00047{width:6.288000pt;}
._b_c00047{width:7.605333pt;}
._a_c00047{width:9.138667pt;}
._8_c00047{width:10.856000pt;}
._14_c00047{width:12.541333pt;}
._12_c00047{width:13.954667pt;}
._e_c00047{width:15.549333pt;}
._27_c00047{width:17.378667pt;}
._20_c00047{width:18.338667pt;}
._25_c00047{width:20.056000pt;}
._1e_c00047{width:21.928000pt;}
._28_c00047{width:23.429333pt;}
._24_c00047{width:25.637333pt;}
._26_c00047{width:27.048000pt;}
._23_c00047{width:32.384000pt;}
._21_c00047{width:34.898667pt;}
._11_c00047{width:36.064000pt;}
._13_c00047{width:40.786667pt;}
._1f_c00047{width:43.669333pt;}
._15_c00047{width:66.056000pt;}
._1c_c00047{width:92.858667pt;}
._22_c00047{width:98.010667pt;}
._1b_c00047{width:159.098667pt;}
._1d_c00047{width:229.050667pt;}
._7_c00047{width:298.448000pt;}
._17_c00047{width:325.986667pt;}
.fs3_c00047{font-size:42.666667pt;}
.fs2_c00047{font-size:48.000000pt;}
.fs1_c00047{font-size:50.666667pt;}
.fs0_c00047{font-size:61.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y22_c00047{bottom:2.760000pt;}
.y21_c00047{bottom:6.425219pt;}
.y1f_c00047{bottom:62.680000pt;}
.y1e_c00047{bottom:80.146667pt;}
.y1d_c00047{bottom:97.480000pt;}
.y1c_c00047{bottom:111.880000pt;}
.y1b_c00047{bottom:128.680000pt;}
.y1a_c00047{bottom:143.080000pt;}
.y19_c00047{bottom:159.346667pt;}
.y18_c00047{bottom:174.413333pt;}
.y17_c00047{bottom:190.013333pt;}
.y16_c00047{bottom:221.213333pt;}
.y15_c00047{bottom:260.413333pt;}
.y14_c00047{bottom:282.280000pt;}
.y20_c00047{bottom:287.080000pt;}
.y13_c00047{bottom:304.013333pt;}
.y12_c00047{bottom:325.613333pt;}
.y11_c00047{bottom:347.480000pt;}
.y10_c00047{bottom:369.080000pt;}
.yf_c00047{bottom:391.480000pt;}
.ye_c00047{bottom:413.746667pt;}
.yd_c00047{bottom:435.880000pt;}
.yc_c00047{bottom:458.146667pt;}
.yb_c00047{bottom:479.746667pt;}
.ya_c00047{bottom:504.280000pt;}
.y9_c00047{bottom:523.613333pt;}
.y8_c00047{bottom:545.480000pt;}
.y7_c00047{bottom:566.680000pt;}
.y6_c00047{bottom:589.880000pt;}
.y5_c00047{bottom:612.013333pt;}
.y4_c00047{bottom:633.880000pt;}
.y3_c00047{bottom:655.880000pt;}
.y2_c00047{bottom:677.480000pt;}
.y1_c00047{bottom:700.546667pt;}
.h8_c00047{height:11.733399pt;}
.h9_c00047{height:38.937500pt;}
.h3_c00047{height:49.701823pt;}
.h7_c00047{height:49.937500pt;}
.h4_c00047{height:60.773438pt;}
.h6_c00047{height:61.812500pt;}
.h5_c00047{height:64.149740pt;}
.h2_c00047{height:77.654948pt;}
.h0_c00047{height:741.133333pt;}
.h1_c00047{height:741.333333pt;}
.w2_c00047{width:93.222667pt;}
.w0_c00047{width:509.266667pt;}
.w1_c00047{width:509.333333pt;}
.x0_c00047{left:0.000000pt;}
.x7_c00047{left:44.400000pt;}
.x2_c00047{left:46.000000pt;}
.x5_c00047{left:53.600000pt;}
.x9_c00047{left:57.333333pt;}
.x6_c00047{left:61.200000pt;}
.xd_c00047{left:101.733333pt;}
.x3_c00047{left:103.200000pt;}
.x4_c00047{left:104.133333pt;}
.xc_c00047{left:116.666667pt;}
.xb_c00047{left:117.866667pt;}
.x8_c00047{left:126.266667pt;}
.xf_c00047{left:211.801554pt;}
.x1_c00047{left:224.400000pt;}
.xa_c00047{left:232.533333pt;}
.xe_c00047{left:462.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_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_ce696c84de7a3643ae735a24.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_f3ea49ecc00aba3690c605e4.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_b504f256eace415ec401d002.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.437000;font-style:normal;font-weight:normal;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_67c18a2cf83077ff742d59d5.woff2')format("woff");}.ff4_c00048{font-family:ff4_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:ff5_c00048;src:url('chunks/assets/font_67b579511ac88897d0e39299.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00048;src:url('chunks/assets/font_083ac7a9381a11599dafef36.woff2')format("woff");}.ff6_c00048{font-family:ff6_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00048;src:url('chunks/assets/font_f2ffa54e11cf2f3e8ab185f1.woff2')format("woff");}.ff7_c00048{font-family:ff7_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:ff8_c00048;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00048{font-family:ff8_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;}
.ls6_c00048{letter-spacing:0.000000px;}
.ls3_c00048{letter-spacing:1.302000px;}
.ls4_c00048{letter-spacing:3.000000px;}
.ls5_c00048{letter-spacing:5.967000px;}
.ls2_c00048{letter-spacing:6.000000px;}
.ls7_c00048{letter-spacing:9.000000px;}
.ls0_c00048{letter-spacing:11.634000px;}
.ls1_c00048{letter-spacing:24.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;}
}
.wsa_c00048{word-spacing:-26.250000px;}
.wsb_c00048{word-spacing:-23.217000px;}
.ws9_c00048{word-spacing:-19.629000px;}
.ws0_c00048{word-spacing:-18.018000px;}
.ws6_c00048{word-spacing:-17.688000px;}
.ws8_c00048{word-spacing:-16.629000px;}
.ws2_c00048{word-spacing:-16.500000px;}
.ws1_c00048{word-spacing:-13.014000px;}
.ws3_c00048{word-spacing:-0.690000px;}
.ws7_c00048{word-spacing:-0.414000px;}
.wsc_c00048{word-spacing:0.000000px;}
.ws5_c00048{word-spacing:1.971000px;}
.ws4_c00048{word-spacing:3.183000px;}
._14_c00048{margin-left:-22.734000px;}
._23_c00048{margin-left:-16.329000px;}
._18_c00048{margin-left:-13.926000px;}
._19_c00048{margin-left:-11.934000px;}
._1_c00048{margin-left:-10.074000px;}
._20_c00048{margin-left:-8.988000px;}
._16_c00048{margin-left:-7.572000px;}
._4_c00048{margin-left:-6.072000px;}
._21_c00048{margin-left:-4.869000px;}
._2_c00048{margin-left:-3.864000px;}
._1e_c00048{margin-left:-2.658000px;}
._3_c00048{margin-left:-1.656000px;}
._0_c00048{width:1.794000px;}
._6_c00048{width:3.624000px;}
._8_c00048{width:5.616000px;}
._e_c00048{width:6.912000px;}
._9_c00048{width:8.532000px;}
._7_c00048{width:9.918000px;}
._c_c00048{width:11.796000px;}
._1a_c00048{width:13.110000px;}
._12_c00048{width:14.850000px;}
._a_c00048{width:16.068000px;}
._10_c00048{width:17.754000px;}
._11_c00048{width:18.762000px;}
._f_c00048{width:19.902000px;}
._1b_c00048{width:21.099000px;}
._1f_c00048{width:22.353000px;}
._1c_c00048{width:25.737000px;}
._d_c00048{width:26.892000px;}
._1d_c00048{width:31.947000px;}
._15_c00048{width:33.480000px;}
._b_c00048{width:37.248000px;}
._13_c00048{width:98.406000px;}
._17_c00048{width:159.708000px;}
._22_c00048{width:168.912000px;}
._5_c00048{width:502.119000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(128,128,128);}
.fc0_c00048{color:rgb(0,0,0);}
.fs3_c00048{font-size:48.000000px;}
.fs2_c00048{font-size:54.000000px;}
.fs1_c00048{font-size:66.000000px;}
.fs0_c00048{font-size:69.000000px;}
.y0_c00048{bottom:0.000000px;}
.y22_c00048{bottom:3.105000px;}
.y21_c00048{bottom:7.228369px;}
.y20_c00048{bottom:65.520000px;}
.y1f_c00048{bottom:90.720000px;}
.y1e_c00048{bottom:115.470000px;}
.y1d_c00048{bottom:139.320000px;}
.y1c_c00048{bottom:165.270000px;}
.y1b_c00048{bottom:189.720000px;}
.y1a_c00048{bottom:214.920000px;}
.y19_c00048{bottom:239.670000px;}
.y18_c00048{bottom:265.170000px;}
.y17_c00048{bottom:288.870000px;}
.y16_c00048{bottom:313.920000px;}
.y15_c00048{bottom:338.520000px;}
.y14_c00048{bottom:363.420000px;}
.y13_c00048{bottom:387.720000px;}
.y12_c00048{bottom:412.470000px;}
.y11_c00048{bottom:436.620000px;}
.y10_c00048{bottom:463.020000px;}
.yf_c00048{bottom:486.720000px;}
.ye_c00048{bottom:510.870000px;}
.yd_c00048{bottom:540.270000px;}
.yc_c00048{bottom:587.220000px;}
.yb_c00048{bottom:605.070000px;}
.ya_c00048{bottom:622.620000px;}
.y9_c00048{bottom:639.270000px;}
.y8_c00048{bottom:657.120000px;}
.y7_c00048{bottom:674.370000px;}
.y6_c00048{bottom:691.770000px;}
.y5_c00048{bottom:709.320000px;}
.y4_c00048{bottom:726.870000px;}
.y3_c00048{bottom:744.120000px;}
.y2_c00048{bottom:761.670000px;}
.y1_c00048{bottom:780.570000px;}
.h6_c00048{height:13.200073px;}
.h7_c00048{height:43.804688px;}
.h3_c00048{height:68.370117px;}
.h5_c00048{height:69.539062px;}
.h2_c00048{height:80.758301px;}
.h4_c00048{height:87.361816px;}
.h0_c00048{height:821.850000px;}
.h1_c00048{height:822.000000px;}
.w2_c00048{width:104.875500px;}
.w1_c00048{width:550.500000px;}
.w0_c00048{width:550.800000px;}
.x0_c00048{left:0.000000px;}
.x3_c00048{left:24.300000px;}
.x8_c00048{left:27.600000px;}
.xa_c00048{left:28.650000px;}
.xb_c00048{left:30.000000px;}
.xd_c00048{left:31.350000px;}
.x2_c00048{left:40.500000px;}
.x4_c00048{left:41.850000px;}
.x5_c00048{left:42.900000px;}
.x7_c00048{left:52.200000px;}
.x9_c00048{left:54.000000px;}
.x6_c00048{left:68.100000px;}
.xc_c00048{left:70.800000px;}
.x1_c00048{left:181.350000px;}
.xf_c00048{left:227.214249px;}
.xe_c00048{left:397.500000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls6_c00048{letter-spacing:0.000000pt;}
.ls3_c00048{letter-spacing:1.157333pt;}
.ls4_c00048{letter-spacing:2.666667pt;}
.ls5_c00048{letter-spacing:5.304000pt;}
.ls2_c00048{letter-spacing:5.333333pt;}
.ls7_c00048{letter-spacing:8.000000pt;}
.ls0_c00048{letter-spacing:10.341333pt;}
.ls1_c00048{letter-spacing:21.333333pt;}
.wsa_c00048{word-spacing:-23.333333pt;}
.wsb_c00048{word-spacing:-20.637333pt;}
.ws9_c00048{word-spacing:-17.448000pt;}
.ws0_c00048{word-spacing:-16.016000pt;}
.ws6_c00048{word-spacing:-15.722667pt;}
.ws8_c00048{word-spacing:-14.781333pt;}
.ws2_c00048{word-spacing:-14.666667pt;}
.ws1_c00048{word-spacing:-11.568000pt;}
.ws3_c00048{word-spacing:-0.613333pt;}
.ws7_c00048{word-spacing:-0.368000pt;}
.wsc_c00048{word-spacing:0.000000pt;}
.ws5_c00048{word-spacing:1.752000pt;}
.ws4_c00048{word-spacing:2.829333pt;}
._14_c00048{margin-left:-20.208000pt;}
._23_c00048{margin-left:-14.514667pt;}
._18_c00048{margin-left:-12.378667pt;}
._19_c00048{margin-left:-10.608000pt;}
._1_c00048{margin-left:-8.954667pt;}
._20_c00048{margin-left:-7.989333pt;}
._16_c00048{margin-left:-6.730667pt;}
._4_c00048{margin-left:-5.397333pt;}
._21_c00048{margin-left:-4.328000pt;}
._2_c00048{margin-left:-3.434667pt;}
._1e_c00048{margin-left:-2.362667pt;}
._3_c00048{margin-left:-1.472000pt;}
._0_c00048{width:1.594667pt;}
._6_c00048{width:3.221333pt;}
._8_c00048{width:4.992000pt;}
._e_c00048{width:6.144000pt;}
._9_c00048{width:7.584000pt;}
._7_c00048{width:8.816000pt;}
._c_c00048{width:10.485333pt;}
._1a_c00048{width:11.653333pt;}
._12_c00048{width:13.200000pt;}
._a_c00048{width:14.282667pt;}
._10_c00048{width:15.781333pt;}
._11_c00048{width:16.677333pt;}
._f_c00048{width:17.690667pt;}
._1b_c00048{width:18.754667pt;}
._1f_c00048{width:19.869333pt;}
._1c_c00048{width:22.877333pt;}
._d_c00048{width:23.904000pt;}
._1d_c00048{width:28.397333pt;}
._15_c00048{width:29.760000pt;}
._b_c00048{width:33.109333pt;}
._13_c00048{width:87.472000pt;}
._17_c00048{width:141.962667pt;}
._22_c00048{width:150.144000pt;}
._5_c00048{width:446.328000pt;}
.fs3_c00048{font-size:42.666667pt;}
.fs2_c00048{font-size:48.000000pt;}
.fs1_c00048{font-size:58.666667pt;}
.fs0_c00048{font-size:61.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y22_c00048{bottom:2.760000pt;}
.y21_c00048{bottom:6.425217pt;}
.y20_c00048{bottom:58.240000pt;}
.y1f_c00048{bottom:80.640000pt;}
.y1e_c00048{bottom:102.640000pt;}
.y1d_c00048{bottom:123.840000pt;}
.y1c_c00048{bottom:146.906667pt;}
.y1b_c00048{bottom:168.640000pt;}
.y1a_c00048{bottom:191.040000pt;}
.y19_c00048{bottom:213.040000pt;}
.y18_c00048{bottom:235.706667pt;}
.y17_c00048{bottom:256.773333pt;}
.y16_c00048{bottom:279.040000pt;}
.y15_c00048{bottom:300.906667pt;}
.y14_c00048{bottom:323.040000pt;}
.y13_c00048{bottom:344.640000pt;}
.y12_c00048{bottom:366.640000pt;}
.y11_c00048{bottom:388.106667pt;}
.y10_c00048{bottom:411.573333pt;}
.yf_c00048{bottom:432.640000pt;}
.ye_c00048{bottom:454.106667pt;}
.yd_c00048{bottom:480.240000pt;}
.yc_c00048{bottom:521.973333pt;}
.yb_c00048{bottom:537.840000pt;}
.ya_c00048{bottom:553.440000pt;}
.y9_c00048{bottom:568.240000pt;}
.y8_c00048{bottom:584.106667pt;}
.y7_c00048{bottom:599.440000pt;}
.y6_c00048{bottom:614.906667pt;}
.y5_c00048{bottom:630.506667pt;}
.y4_c00048{bottom:646.106667pt;}
.y3_c00048{bottom:661.440000pt;}
.y2_c00048{bottom:677.040000pt;}
.y1_c00048{bottom:693.840000pt;}
.h6_c00048{height:11.733399pt;}
.h7_c00048{height:38.937500pt;}
.h3_c00048{height:60.773438pt;}
.h5_c00048{height:61.812500pt;}
.h2_c00048{height:71.785156pt;}
.h4_c00048{height:77.654948pt;}
.h0_c00048{height:730.533333pt;}
.h1_c00048{height:730.666667pt;}
.w2_c00048{width:93.222667pt;}
.w1_c00048{width:489.333333pt;}
.w0_c00048{width:489.600000pt;}
.x0_c00048{left:0.000000pt;}
.x3_c00048{left:21.600000pt;}
.x8_c00048{left:24.533333pt;}
.xa_c00048{left:25.466667pt;}
.xb_c00048{left:26.666667pt;}
.xd_c00048{left:27.866667pt;}
.x2_c00048{left:36.000000pt;}
.x4_c00048{left:37.200000pt;}
.x5_c00048{left:38.133333pt;}
.x7_c00048{left:46.400000pt;}
.x9_c00048{left:48.000000pt;}
.x6_c00048{left:60.533333pt;}
.xc_c00048{left:62.933333pt;}
.x1_c00048{left:161.200000pt;}
.xf_c00048{left:201.968221pt;}
.xe_c00048{left:353.333333pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec56b551242420dd0321cf44.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_7e4211a1ddcf799bf4aec43b.woff2')format("woff");}.ff2_c00050{font-family:ff2_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:ff3_c00050;src:url('chunks/assets/font_4541bb68f365ec6e5e655211.woff2')format("woff");}.ff3_c00050{font-family:ff3_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:ff4_c00050;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00050{font-family:ff4_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;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls3_c00050{letter-spacing:3.000000px;}
.ls4_c00050{letter-spacing:9.000000px;}
.ls0_c00050{letter-spacing:14.064000px;}
.ls1_c00050{letter-spacing:15.864000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00050{word-spacing:-51.900000px;}
.ws6_c00050{word-spacing:-19.629000px;}
.ws3_c00050{word-spacing:-16.629000px;}
.ws4_c00050{word-spacing:-0.276000px;}
.ws7_c00050{word-spacing:0.000000px;}
.ws5_c00050{word-spacing:4.071000px;}
.ws2_c00050{word-spacing:8.844000px;}
.ws0_c00050{word-spacing:10.164000px;}
._27_c00050{margin-left:-33.879000px;}
._1e_c00050{margin-left:-31.191000px;}
._2a_c00050{margin-left:-22.767000px;}
._17_c00050{margin-left:-19.263000px;}
._25_c00050{margin-left:-17.043000px;}
._e_c00050{margin-left:-15.279000px;}
._2c_c00050{margin-left:-13.800000px;}
._18_c00050{margin-left:-12.489000px;}
._2_c00050{margin-left:-10.902000px;}
._12_c00050{margin-left:-8.826000px;}
._d_c00050{margin-left:-7.314000px;}
._16_c00050{margin-left:-6.222000px;}
._5_c00050{margin-left:-5.106000px;}
._3_c00050{margin-left:-3.243000px;}
._4_c00050{margin-left:-1.725000px;}
._0_c00050{width:1.242000px;}
._1_c00050{width:2.484000px;}
._13_c00050{width:3.864000px;}
._15_c00050{width:5.727000px;}
._19_c00050{width:7.365000px;}
._8_c00050{width:8.418000px;}
._14_c00050{width:9.801000px;}
._7_c00050{width:10.833000px;}
._1b_c00050{width:12.219000px;}
._21_c00050{width:13.998000px;}
._11_c00050{width:15.114000px;}
._1f_c00050{width:16.146000px;}
._1a_c00050{width:18.285000px;}
._2b_c00050{width:19.674000px;}
._f_c00050{width:20.856000px;}
._1d_c00050{width:22.839000px;}
._10_c00050{width:26.466000px;}
._a_c00050{width:27.984000px;}
._b_c00050{width:31.350000px;}
._9_c00050{width:34.386000px;}
._c_c00050{width:38.478000px;}
._24_c00050{width:42.483000px;}
._28_c00050{width:46.365000px;}
._26_c00050{width:80.529000px;}
._1c_c00050{width:102.222000px;}
._20_c00050{width:108.627000px;}
._23_c00050{width:150.555000px;}
._22_c00050{width:159.948000px;}
._29_c00050{width:194.976000px;}
._6_c00050{width:501.153000px;}
._2e_c00050{width:519.225000px;}
._2d_c00050{width:633.462000px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(128,128,128);}
.fc0_c00050{color:rgb(0,0,0);}
.fs4_c00050{font-size:48.000000px;}
.fs1_c00050{font-size:66.000000px;}
.fs0_c00050{font-size:69.000000px;}
.fs3_c00050{font-size:75.000000px;}
.fs2_c00050{font-size:96.000000px;}
.y0_c00050{bottom:0.000000px;}
.y1d_c00050{bottom:3.105000px;}
.y1c_c00050{bottom:7.228355px;}
.y1b_c00050{bottom:67.035000px;}
.y1a_c00050{bottom:91.335000px;}
.y19_c00050{bottom:116.085000px;}
.y18_c00050{bottom:152.235000px;}
.y17_c00050{bottom:189.285000px;}
.y16_c00050{bottom:213.585000px;}
.y15_c00050{bottom:238.635000px;}
.y14_c00050{bottom:263.235000px;}
.y13_c00050{bottom:287.235000px;}
.y12_c00050{bottom:312.735000px;}
.y11_c00050{bottom:337.485000px;}
.y10_c00050{bottom:361.785000px;}
.yf_c00050{bottom:386.685000px;}
.ye_c00050{bottom:410.685000px;}
.yd_c00050{bottom:435.585000px;}
.yc_c00050{bottom:460.335000px;}
.yb_c00050{bottom:484.635000px;}
.ya_c00050{bottom:508.635000px;}
.y9_c00050{bottom:532.935000px;}
.y8_c00050{bottom:557.535000px;}
.y7_c00050{bottom:582.135000px;}
.y6_c00050{bottom:607.035000px;}
.y5_c00050{bottom:631.335000px;}
.y4_c00050{bottom:656.985000px;}
.y3_c00050{bottom:681.735000px;}
.y2_c00050{bottom:730.935000px;}
.y1_c00050{bottom:780.585000px;}
.h5_c00050{height:13.200074px;}
.h6_c00050{height:43.804688px;}
.h4_c00050{height:80.758301px;}
.h2_c00050{height:87.361816px;}
.h3_c00050{height:121.546875px;}
.h1_c00050{height:813.000000px;}
.h0_c00050{height:813.225000px;}
.w2_c00050{width:104.875500px;}
.w1_c00050{width:545.250000px;}
.w0_c00050{width:545.400000px;}
.x0_c00050{left:0.000000px;}
.x4_c00050{left:21.000000px;}
.x5_c00050{left:24.000000px;}
.x7_c00050{left:45.300000px;}
.x3_c00050{left:48.600000px;}
.x2_c00050{left:55.050000px;}
.x6_c00050{left:65.850000px;}
.x1_c00050{left:180.150000px;}
.x9_c00050{left:224.514267px;}
.x8_c00050{left:273.750000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls3_c00050{letter-spacing:2.666667pt;}
.ls4_c00050{letter-spacing:8.000000pt;}
.ls0_c00050{letter-spacing:12.501333pt;}
.ls1_c00050{letter-spacing:14.101333pt;}
.ws1_c00050{word-spacing:-46.133333pt;}
.ws6_c00050{word-spacing:-17.448000pt;}
.ws3_c00050{word-spacing:-14.781333pt;}
.ws4_c00050{word-spacing:-0.245333pt;}
.ws7_c00050{word-spacing:0.000000pt;}
.ws5_c00050{word-spacing:3.618667pt;}
.ws2_c00050{word-spacing:7.861333pt;}
.ws0_c00050{word-spacing:9.034667pt;}
._27_c00050{margin-left:-30.114667pt;}
._1e_c00050{margin-left:-27.725333pt;}
._2a_c00050{margin-left:-20.237333pt;}
._17_c00050{margin-left:-17.122667pt;}
._25_c00050{margin-left:-15.149333pt;}
._e_c00050{margin-left:-13.581333pt;}
._2c_c00050{margin-left:-12.266667pt;}
._18_c00050{margin-left:-11.101333pt;}
._2_c00050{margin-left:-9.690667pt;}
._12_c00050{margin-left:-7.845333pt;}
._d_c00050{margin-left:-6.501333pt;}
._16_c00050{margin-left:-5.530667pt;}
._5_c00050{margin-left:-4.538667pt;}
._3_c00050{margin-left:-2.882667pt;}
._4_c00050{margin-left:-1.533333pt;}
._0_c00050{width:1.104000pt;}
._1_c00050{width:2.208000pt;}
._13_c00050{width:3.434667pt;}
._15_c00050{width:5.090667pt;}
._19_c00050{width:6.546667pt;}
._8_c00050{width:7.482667pt;}
._14_c00050{width:8.712000pt;}
._7_c00050{width:9.629333pt;}
._1b_c00050{width:10.861333pt;}
._21_c00050{width:12.442667pt;}
._11_c00050{width:13.434667pt;}
._1f_c00050{width:14.352000pt;}
._1a_c00050{width:16.253333pt;}
._2b_c00050{width:17.488000pt;}
._f_c00050{width:18.538667pt;}
._1d_c00050{width:20.301333pt;}
._10_c00050{width:23.525333pt;}
._a_c00050{width:24.874667pt;}
._b_c00050{width:27.866667pt;}
._9_c00050{width:30.565333pt;}
._c_c00050{width:34.202667pt;}
._24_c00050{width:37.762667pt;}
._28_c00050{width:41.213333pt;}
._26_c00050{width:71.581333pt;}
._1c_c00050{width:90.864000pt;}
._20_c00050{width:96.557333pt;}
._23_c00050{width:133.826667pt;}
._22_c00050{width:142.176000pt;}
._29_c00050{width:173.312000pt;}
._6_c00050{width:445.469333pt;}
._2e_c00050{width:461.533333pt;}
._2d_c00050{width:563.077333pt;}
.fs4_c00050{font-size:42.666667pt;}
.fs1_c00050{font-size:58.666667pt;}
.fs0_c00050{font-size:61.333333pt;}
.fs3_c00050{font-size:66.666667pt;}
.fs2_c00050{font-size:85.333333pt;}
.y0_c00050{bottom:0.000000pt;}
.y1d_c00050{bottom:2.760000pt;}
.y1c_c00050{bottom:6.425204pt;}
.y1b_c00050{bottom:59.586667pt;}
.y1a_c00050{bottom:81.186667pt;}
.y19_c00050{bottom:103.186667pt;}
.y18_c00050{bottom:135.320000pt;}
.y17_c00050{bottom:168.253333pt;}
.y16_c00050{bottom:189.853333pt;}
.y15_c00050{bottom:212.120000pt;}
.y14_c00050{bottom:233.986667pt;}
.y13_c00050{bottom:255.320000pt;}
.y12_c00050{bottom:277.986667pt;}
.y11_c00050{bottom:299.986667pt;}
.y10_c00050{bottom:321.586667pt;}
.yf_c00050{bottom:343.720000pt;}
.ye_c00050{bottom:365.053333pt;}
.yd_c00050{bottom:387.186667pt;}
.yc_c00050{bottom:409.186667pt;}
.yb_c00050{bottom:430.786667pt;}
.ya_c00050{bottom:452.120000pt;}
.y9_c00050{bottom:473.720000pt;}
.y8_c00050{bottom:495.586667pt;}
.y7_c00050{bottom:517.453333pt;}
.y6_c00050{bottom:539.586667pt;}
.y5_c00050{bottom:561.186667pt;}
.y4_c00050{bottom:583.986667pt;}
.y3_c00050{bottom:605.986667pt;}
.y2_c00050{bottom:649.720000pt;}
.y1_c00050{bottom:693.853333pt;}
.h5_c00050{height:11.733399pt;}
.h6_c00050{height:38.937500pt;}
.h4_c00050{height:71.785156pt;}
.h2_c00050{height:77.654948pt;}
.h3_c00050{height:108.041667pt;}
.h1_c00050{height:722.666667pt;}
.h0_c00050{height:722.866667pt;}
.w2_c00050{width:93.222667pt;}
.w1_c00050{width:484.666667pt;}
.w0_c00050{width:484.800000pt;}
.x0_c00050{left:0.000000pt;}
.x4_c00050{left:18.666667pt;}
.x5_c00050{left:21.333333pt;}
.x7_c00050{left:40.266667pt;}
.x3_c00050{left:43.200000pt;}
.x2_c00050{left:48.933333pt;}
.x6_c00050{left:58.533333pt;}
.x1_c00050{left:160.133333pt;}
.x9_c00050{left:199.568237pt;}
.x8_c00050{left:243.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_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_8b33dc4bd6b2c23da680c8ac.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.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_8e59e3bc94f17815afa0a0ae.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_1ff5ee1a3e3835463db12beb.woff2')format("woff");}.ff4_c00051{font-family:ff4_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:ff5_c00051;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00051{font-family:ff5_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);}
.v0_c00051{vertical-align:0.000000px;}
.ls1_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:3.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:-49.023000px;}
.ws3_c00051{word-spacing:-19.629000px;}
.ws1_c00051{word-spacing:-16.629000px;}
.ws2_c00051{word-spacing:-1.104000px;}
.ws4_c00051{word-spacing:0.000000px;}
._1c_c00051{margin-left:-28.494000px;}
._1b_c00051{margin-left:-19.182000px;}
._1_c00051{margin-left:-16.215000px;}
._25_c00051{margin-left:-12.651000px;}
._0_c00051{margin-left:-11.385000px;}
._18_c00051{margin-left:-10.005000px;}
._29_c00051{margin-left:-8.970000px;}
._13_c00051{margin-left:-7.800000px;}
._2_c00051{margin-left:-6.210000px;}
._8_c00051{margin-left:-4.554000px;}
._5_c00051{margin-left:-2.760000px;}
._6_c00051{margin-left:-1.242000px;}
._3_c00051{width:1.518000px;}
._a_c00051{width:3.312000px;}
._10_c00051{width:4.449000px;}
._7_c00051{width:5.865000px;}
._20_c00051{width:6.903000px;}
._11_c00051{width:8.073000px;}
._17_c00051{width:9.627000px;}
._1e_c00051{width:11.178000px;}
._e_c00051{width:12.489000px;}
._d_c00051{width:14.007000px;}
._f_c00051{width:15.939000px;}
._14_c00051{width:17.388000px;}
._c_c00051{width:18.495000px;}
._24_c00051{width:20.109000px;}
._b_c00051{width:21.288000px;}
._1a_c00051{width:22.461000px;}
._1f_c00051{width:24.192000px;}
._12_c00051{width:25.326000px;}
._23_c00051{width:27.183000px;}
._15_c00051{width:29.982000px;}
._27_c00051{width:33.813000px;}
._22_c00051{width:36.501000px;}
._21_c00051{width:38.433000px;}
._19_c00051{width:44.148000px;}
._1d_c00051{width:66.792000px;}
._28_c00051{width:93.345000px;}
._16_c00051{width:111.642000px;}
._26_c00051{width:144.552000px;}
._9_c00051{width:244.746000px;}
._4_c00051{width:378.855000px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(128,128,128);}
.fc0_c00051{color:rgb(0,0,0);}
.fs1_c00051{font-size:42.000000px;}
.fs3_c00051{font-size:48.000000px;}
.fs2_c00051{font-size:63.000000px;}
.fs0_c00051{font-size:69.000000px;}
.y0_c00051{bottom:0.000000px;}
.y22_c00051{bottom:3.105000px;}
.y21_c00051{bottom:7.228371px;}
.y20_c00051{bottom:62.565000px;}
.y1f_c00051{bottom:88.065000px;}
.y1e_c00051{bottom:112.815000px;}
.y1d_c00051{bottom:138.015000px;}
.y1c_c00051{bottom:162.465000px;}
.y1b_c00051{bottom:187.965000px;}
.y1a_c00051{bottom:213.615000px;}
.y19_c00051{bottom:238.365000px;}
.y18_c00051{bottom:267.315000px;}
.y17_c00051{bottom:287.565000px;}
.y16_c00051{bottom:313.665000px;}
.y15_c00051{bottom:337.515000px;}
.y14_c00051{bottom:362.265000px;}
.y13_c00051{bottom:386.865000px;}
.y12_c00051{bottom:411.165000px;}
.y11_c00051{bottom:436.065000px;}
.y10_c00051{bottom:460.815000px;}
.yf_c00051{bottom:485.715000px;}
.ye_c00051{bottom:510.015000px;}
.yd_c00051{bottom:535.065000px;}
.yc_c00051{bottom:559.365000px;}
.yb_c00051{bottom:584.565000px;}
.ya_c00051{bottom:609.165000px;}
.y2_c00051{bottom:622.365000px;}
.y9_c00051{bottom:633.615000px;}
.y1_c00051{bottom:641.265000px;}
.y8_c00051{bottom:658.815000px;}
.y7_c00051{bottom:683.565000px;}
.y6_c00051{bottom:707.865000px;}
.y5_c00051{bottom:732.765000px;}
.y4_c00051{bottom:758.415000px;}
.y3_c00051{bottom:783.015000px;}
.h6_c00051{height:13.200074px;}
.h7_c00051{height:43.804688px;}
.h5_c00051{height:49.157227px;}
.h2_c00051{height:69.539062px;}
.h4_c00051{height:80.758301px;}
.h3_c00051{height:87.361816px;}
.h0_c00051{height:833.775000px;}
.h1_c00051{height:834.000000px;}
.w2_c00051{width:104.875500px;}
.w0_c00051{width:572.925000px;}
.w1_c00051{width:573.000000px;}
.x0_c00051{left:0.000000px;}
.x10_c00051{left:44.250000px;}
.x1_c00051{left:45.600000px;}
.x8_c00051{left:47.250000px;}
.x4_c00051{left:48.900000px;}
.x12_c00051{left:61.050000px;}
.x7_c00051{left:64.350000px;}
.x2_c00051{left:65.550000px;}
.xc_c00051{left:70.800000px;}
.x11_c00051{left:108.300000px;}
.xb_c00051{left:110.250000px;}
.xa_c00051{left:111.600000px;}
.x5_c00051{left:113.100000px;}
.x6_c00051{left:114.300000px;}
.x3_c00051{left:125.250000px;}
.xf_c00051{left:135.000000px;}
.xd_c00051{left:153.450000px;}
.x9_c00051{left:192.000000px;}
.x14_c00051{left:238.276749px;}
.x13_c00051{left:508.950000px;}
.xe_c00051{left:547.050000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:2.666667pt;}
.ws0_c00051{word-spacing:-43.576000pt;}
.ws3_c00051{word-spacing:-17.448000pt;}
.ws1_c00051{word-spacing:-14.781333pt;}
.ws2_c00051{word-spacing:-0.981333pt;}
.ws4_c00051{word-spacing:0.000000pt;}
._1c_c00051{margin-left:-25.328000pt;}
._1b_c00051{margin-left:-17.050667pt;}
._1_c00051{margin-left:-14.413333pt;}
._25_c00051{margin-left:-11.245333pt;}
._0_c00051{margin-left:-10.120000pt;}
._18_c00051{margin-left:-8.893333pt;}
._29_c00051{margin-left:-7.973333pt;}
._13_c00051{margin-left:-6.933333pt;}
._2_c00051{margin-left:-5.520000pt;}
._8_c00051{margin-left:-4.048000pt;}
._5_c00051{margin-left:-2.453333pt;}
._6_c00051{margin-left:-1.104000pt;}
._3_c00051{width:1.349333pt;}
._a_c00051{width:2.944000pt;}
._10_c00051{width:3.954667pt;}
._7_c00051{width:5.213333pt;}
._20_c00051{width:6.136000pt;}
._11_c00051{width:7.176000pt;}
._17_c00051{width:8.557333pt;}
._1e_c00051{width:9.936000pt;}
._e_c00051{width:11.101333pt;}
._d_c00051{width:12.450667pt;}
._f_c00051{width:14.168000pt;}
._14_c00051{width:15.456000pt;}
._c_c00051{width:16.440000pt;}
._24_c00051{width:17.874667pt;}
._b_c00051{width:18.922667pt;}
._1a_c00051{width:19.965333pt;}
._1f_c00051{width:21.504000pt;}
._12_c00051{width:22.512000pt;}
._23_c00051{width:24.162667pt;}
._15_c00051{width:26.650667pt;}
._27_c00051{width:30.056000pt;}
._22_c00051{width:32.445333pt;}
._21_c00051{width:34.162667pt;}
._19_c00051{width:39.242667pt;}
._1d_c00051{width:59.370667pt;}
._28_c00051{width:82.973333pt;}
._16_c00051{width:99.237333pt;}
._26_c00051{width:128.490667pt;}
._9_c00051{width:217.552000pt;}
._4_c00051{width:336.760000pt;}
.fs1_c00051{font-size:37.333333pt;}
.fs3_c00051{font-size:42.666667pt;}
.fs2_c00051{font-size:56.000000pt;}
.fs0_c00051{font-size:61.333333pt;}
.y0_c00051{bottom:0.000000pt;}
.y22_c00051{bottom:2.760000pt;}
.y21_c00051{bottom:6.425219pt;}
.y20_c00051{bottom:55.613333pt;}
.y1f_c00051{bottom:78.280000pt;}
.y1e_c00051{bottom:100.280000pt;}
.y1d_c00051{bottom:122.680000pt;}
.y1c_c00051{bottom:144.413333pt;}
.y1b_c00051{bottom:167.080000pt;}
.y1a_c00051{bottom:189.880000pt;}
.y19_c00051{bottom:211.880000pt;}
.y18_c00051{bottom:237.613333pt;}
.y17_c00051{bottom:255.613333pt;}
.y16_c00051{bottom:278.813333pt;}
.y15_c00051{bottom:300.013333pt;}
.y14_c00051{bottom:322.013333pt;}
.y13_c00051{bottom:343.880000pt;}
.y12_c00051{bottom:365.480000pt;}
.y11_c00051{bottom:387.613333pt;}
.y10_c00051{bottom:409.613333pt;}
.yf_c00051{bottom:431.746667pt;}
.ye_c00051{bottom:453.346667pt;}
.yd_c00051{bottom:475.613333pt;}
.yc_c00051{bottom:497.213333pt;}
.yb_c00051{bottom:519.613333pt;}
.ya_c00051{bottom:541.480000pt;}
.y2_c00051{bottom:553.213333pt;}
.y9_c00051{bottom:563.213333pt;}
.y1_c00051{bottom:570.013333pt;}
.y8_c00051{bottom:585.613333pt;}
.y7_c00051{bottom:607.613333pt;}
.y6_c00051{bottom:629.213333pt;}
.y5_c00051{bottom:651.346667pt;}
.y4_c00051{bottom:674.146667pt;}
.y3_c00051{bottom:696.013333pt;}
.h6_c00051{height:11.733399pt;}
.h7_c00051{height:38.937500pt;}
.h5_c00051{height:43.695312pt;}
.h2_c00051{height:61.812500pt;}
.h4_c00051{height:71.785156pt;}
.h3_c00051{height:77.654948pt;}
.h0_c00051{height:741.133333pt;}
.h1_c00051{height:741.333333pt;}
.w2_c00051{width:93.222667pt;}
.w0_c00051{width:509.266667pt;}
.w1_c00051{width:509.333333pt;}
.x0_c00051{left:0.000000pt;}
.x10_c00051{left:39.333333pt;}
.x1_c00051{left:40.533333pt;}
.x8_c00051{left:42.000000pt;}
.x4_c00051{left:43.466667pt;}
.x12_c00051{left:54.266667pt;}
.x7_c00051{left:57.200000pt;}
.x2_c00051{left:58.266667pt;}
.xc_c00051{left:62.933333pt;}
.x11_c00051{left:96.266667pt;}
.xb_c00051{left:98.000000pt;}
.xa_c00051{left:99.200000pt;}
.x5_c00051{left:100.533333pt;}
.x6_c00051{left:101.600000pt;}
.x3_c00051{left:111.333333pt;}
.xf_c00051{left:120.000000pt;}
.xd_c00051{left:136.400000pt;}
.x9_c00051{left:170.666667pt;}
.x14_c00051{left:211.801554pt;}
.x13_c00051{left:452.400000pt;}
.xe_c00051{left:486.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_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_7530c0ffc87e811fbf82c2b6.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_efa0184ab133a643c96d01cc.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.568848;font-style:normal;font-weight:normal;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_801610a7177efefd2bc26212.woff2')format("woff");}.ff3_c00052{font-family:ff3_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:ff4_c00052;src:url('chunks/assets/font_e7d421fc3d8a8d215d7be08b.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;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_c00052;src:url('chunks/assets/font_f279b4539f9cf22a189703ae.woff2')format("woff");}.ff5_c00052{font-family:ff5_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:ff6_c00052;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00052;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00052{font-family:ff7_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;}
.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;}
.ls7_c00052{letter-spacing:-3.000000px;}
.ls5_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:3.000000px;}
.ls6_c00052{letter-spacing:6.000000px;}
.ls4_c00052{letter-spacing:7.800000px;}
.ls1_c00052{letter-spacing:11.730000px;}
.ls2_c00052{letter-spacing:13.704000px;}
.ls3_c00052{letter-spacing:22.749000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00052{word-spacing:-27.474000px;}
.ws8_c00052{word-spacing:-19.629000px;}
.ws0_c00052{word-spacing:-16.629000px;}
.ws1_c00052{word-spacing:-1.206000px;}
.ws7_c00052{word-spacing:-0.662400px;}
.ws3_c00052{word-spacing:-0.483000px;}
.ws4_c00052{word-spacing:-0.069000px;}
.ws9_c00052{word-spacing:0.000000px;}
.ws5_c00052{word-spacing:3.811200px;}
.ws6_c00052{word-spacing:16.339200px;}
._29_c00052{margin-left:-34.293000px;}
._17_c00052{margin-left:-29.625000px;}
._27_c00052{margin-left:-26.979000px;}
._18_c00052{margin-left:-20.739000px;}
._19_c00052{margin-left:-14.976000px;}
._a_c00052{margin-left:-13.755000px;}
._11_c00052{margin-left:-12.528000px;}
._1a_c00052{margin-left:-10.584000px;}
._5_c00052{margin-left:-9.177000px;}
._8_c00052{margin-left:-8.142000px;}
._13_c00052{margin-left:-6.942000px;}
._9_c00052{margin-left:-5.589000px;}
._2_c00052{margin-left:-3.864000px;}
._b_c00052{margin-left:-2.661000px;}
._3_c00052{margin-left:-1.161000px;}
._1_c00052{width:1.380000px;}
._14_c00052{width:2.448000px;}
._0_c00052{width:3.657000px;}
._15_c00052{width:4.824000px;}
._f_c00052{width:6.015000px;}
._23_c00052{width:7.335000px;}
._d_c00052{width:8.337000px;}
._1b_c00052{width:9.375000px;}
._1c_c00052{width:10.419000px;}
._1d_c00052{width:11.802000px;}
._12_c00052{width:12.897000px;}
._e_c00052{width:14.493000px;}
._24_c00052{width:15.678000px;}
._16_c00052{width:16.836000px;}
._22_c00052{width:18.207000px;}
._c_c00052{width:21.156000px;}
._6_c00052{width:22.425000px;}
._1f_c00052{width:23.805000px;}
._2d_c00052{width:24.879000px;}
._2b_c00052{width:29.628000px;}
._2a_c00052{width:31.122000px;}
._26_c00052{width:34.470000px;}
._21_c00052{width:35.820000px;}
._1e_c00052{width:41.697000px;}
._4_c00052{width:46.092000px;}
._20_c00052{width:51.630000px;}
._28_c00052{width:67.989000px;}
._2c_c00052{width:81.525000px;}
._10_c00052{width:227.679000px;}
._25_c00052{width:230.313000px;}
._7_c00052{width:372.600000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(128,128,128);}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:42.000000px;}
.fs3_c00052{font-size:45.000000px;}
.fs7_c00052{font-size:48.000000px;}
.fs5_c00052{font-size:55.200000px;}
.fs6_c00052{font-size:66.000000px;}
.fs0_c00052{font-size:69.000000px;}
.fs1_c00052{font-size:72.000000px;}
.fs2_c00052{font-size:114.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1b_c00052{bottom:3.105000px;}
.y1a_c00052{bottom:7.228369px;}
.y19_c00052{bottom:41.520000px;}
.y18_c00052{bottom:96.420000px;}
.y17_c00052{bottom:117.420000px;}
.y16_c00052{bottom:141.120000px;}
.y15_c00052{bottom:191.070000px;}
.y14_c00052{bottom:242.970000px;}
.y13_c00052{bottom:263.970000px;}
.y12_c00052{bottom:289.620000px;}
.y11_c00052{bottom:313.770000px;}
.y10_c00052{bottom:338.820000px;}
.yf_c00052{bottom:363.120000px;}
.ye_c00052{bottom:384.420000px;}
.yd_c00052{bottom:412.020000px;}
.yc_c00052{bottom:436.320000px;}
.yb_c00052{bottom:457.920000px;}
.ya_c00052{bottom:486.570000px;}
.y9_c00052{bottom:509.520000px;}
.y8_c00052{bottom:559.620000px;}
.y7_c00052{bottom:610.170000px;}
.y6_c00052{bottom:634.170000px;}
.y5_c00052{bottom:659.070000px;}
.y4_c00052{bottom:683.820000px;}
.y3_c00052{bottom:709.020000px;}
.y2_c00052{bottom:733.620000px;}
.y1_c00052{bottom:758.670000px;}
.h6_c00052{height:13.200073px;}
.h7_c00052{height:43.804688px;}
.h5_c00052{height:80.758301px;}
.h2_c00052{height:87.361816px;}
.h3_c00052{height:91.160156px;}
.h4_c00052{height:133.426758px;}
.h0_c00052{height:802.950000px;}
.h1_c00052{height:803.250000px;}
.w2_c00052{width:104.875500px;}
.w0_c00052{width:538.350000px;}
.w1_c00052{width:538.500000px;}
.x0_c00052{left:0.000000px;}
.xd_c00052{left:11.250000px;}
.xa_c00052{left:16.800000px;}
.x9_c00052{left:18.150000px;}
.x8_c00052{left:19.200000px;}
.x6_c00052{left:21.600000px;}
.x3_c00052{left:22.950000px;}
.x2_c00052{left:24.750000px;}
.x5_c00052{left:26.100000px;}
.xc_c00052{left:41.550000px;}
.x7_c00052{left:45.600000px;}
.x4_c00052{left:54.600000px;}
.xb_c00052{left:58.050000px;}
.x1_c00052{left:181.350000px;}
.xf_c00052{left:220.989258px;}
.xe_c00052{left:409.350000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls7_c00052{letter-spacing:-2.666667pt;}
.ls5_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:2.666667pt;}
.ls6_c00052{letter-spacing:5.333333pt;}
.ls4_c00052{letter-spacing:6.933333pt;}
.ls1_c00052{letter-spacing:10.426667pt;}
.ls2_c00052{letter-spacing:12.181333pt;}
.ls3_c00052{letter-spacing:20.221333pt;}
.ws2_c00052{word-spacing:-24.421333pt;}
.ws8_c00052{word-spacing:-17.448000pt;}
.ws0_c00052{word-spacing:-14.781333pt;}
.ws1_c00052{word-spacing:-1.072000pt;}
.ws7_c00052{word-spacing:-0.588800pt;}
.ws3_c00052{word-spacing:-0.429333pt;}
.ws4_c00052{word-spacing:-0.061333pt;}
.ws9_c00052{word-spacing:0.000000pt;}
.ws5_c00052{word-spacing:3.387733pt;}
.ws6_c00052{word-spacing:14.523733pt;}
._29_c00052{margin-left:-30.482667pt;}
._17_c00052{margin-left:-26.333333pt;}
._27_c00052{margin-left:-23.981333pt;}
._18_c00052{margin-left:-18.434667pt;}
._19_c00052{margin-left:-13.312000pt;}
._a_c00052{margin-left:-12.226667pt;}
._11_c00052{margin-left:-11.136000pt;}
._1a_c00052{margin-left:-9.408000pt;}
._5_c00052{margin-left:-8.157333pt;}
._8_c00052{margin-left:-7.237333pt;}
._13_c00052{margin-left:-6.170667pt;}
._9_c00052{margin-left:-4.968000pt;}
._2_c00052{margin-left:-3.434667pt;}
._b_c00052{margin-left:-2.365333pt;}
._3_c00052{margin-left:-1.032000pt;}
._1_c00052{width:1.226667pt;}
._14_c00052{width:2.176000pt;}
._0_c00052{width:3.250667pt;}
._15_c00052{width:4.288000pt;}
._f_c00052{width:5.346667pt;}
._23_c00052{width:6.520000pt;}
._d_c00052{width:7.410667pt;}
._1b_c00052{width:8.333333pt;}
._1c_c00052{width:9.261333pt;}
._1d_c00052{width:10.490667pt;}
._12_c00052{width:11.464000pt;}
._e_c00052{width:12.882667pt;}
._24_c00052{width:13.936000pt;}
._16_c00052{width:14.965333pt;}
._22_c00052{width:16.184000pt;}
._c_c00052{width:18.805333pt;}
._6_c00052{width:19.933333pt;}
._1f_c00052{width:21.160000pt;}
._2d_c00052{width:22.114667pt;}
._2b_c00052{width:26.336000pt;}
._2a_c00052{width:27.664000pt;}
._26_c00052{width:30.640000pt;}
._21_c00052{width:31.840000pt;}
._1e_c00052{width:37.064000pt;}
._4_c00052{width:40.970667pt;}
._20_c00052{width:45.893333pt;}
._28_c00052{width:60.434667pt;}
._2c_c00052{width:72.466667pt;}
._10_c00052{width:202.381333pt;}
._25_c00052{width:204.722667pt;}
._7_c00052{width:331.200000pt;}
.fs4_c00052{font-size:37.333333pt;}
.fs3_c00052{font-size:40.000000pt;}
.fs7_c00052{font-size:42.666667pt;}
.fs5_c00052{font-size:49.066667pt;}
.fs6_c00052{font-size:58.666667pt;}
.fs0_c00052{font-size:61.333333pt;}
.fs1_c00052{font-size:64.000000pt;}
.fs2_c00052{font-size:101.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.y1b_c00052{bottom:2.760000pt;}
.y1a_c00052{bottom:6.425217pt;}
.y19_c00052{bottom:36.906667pt;}
.y18_c00052{bottom:85.706667pt;}
.y17_c00052{bottom:104.373333pt;}
.y16_c00052{bottom:125.440000pt;}
.y15_c00052{bottom:169.840000pt;}
.y14_c00052{bottom:215.973333pt;}
.y13_c00052{bottom:234.640000pt;}
.y12_c00052{bottom:257.440000pt;}
.y11_c00052{bottom:278.906667pt;}
.y10_c00052{bottom:301.173333pt;}
.yf_c00052{bottom:322.773333pt;}
.ye_c00052{bottom:341.706667pt;}
.yd_c00052{bottom:366.240000pt;}
.yc_c00052{bottom:387.840000pt;}
.yb_c00052{bottom:407.040000pt;}
.ya_c00052{bottom:432.506667pt;}
.y9_c00052{bottom:452.906667pt;}
.y8_c00052{bottom:497.440000pt;}
.y7_c00052{bottom:542.373333pt;}
.y6_c00052{bottom:563.706667pt;}
.y5_c00052{bottom:585.840000pt;}
.y4_c00052{bottom:607.840000pt;}
.y3_c00052{bottom:630.240000pt;}
.y2_c00052{bottom:652.106667pt;}
.y1_c00052{bottom:674.373333pt;}
.h6_c00052{height:11.733399pt;}
.h7_c00052{height:38.937500pt;}
.h5_c00052{height:71.785156pt;}
.h2_c00052{height:77.654948pt;}
.h3_c00052{height:81.031250pt;}
.h4_c00052{height:118.601562pt;}
.h0_c00052{height:713.733333pt;}
.h1_c00052{height:714.000000pt;}
.w2_c00052{width:93.222667pt;}
.w0_c00052{width:478.533333pt;}
.w1_c00052{width:478.666667pt;}
.x0_c00052{left:0.000000pt;}
.xd_c00052{left:10.000000pt;}
.xa_c00052{left:14.933333pt;}
.x9_c00052{left:16.133333pt;}
.x8_c00052{left:17.066667pt;}
.x6_c00052{left:19.200000pt;}
.x3_c00052{left:20.400000pt;}
.x2_c00052{left:22.000000pt;}
.x5_c00052{left:23.200000pt;}
.xc_c00052{left:36.933333pt;}
.x7_c00052{left:40.533333pt;}
.x4_c00052{left:48.533333pt;}
.xb_c00052{left:51.600000pt;}
.x1_c00052{left:161.200000pt;}
.xf_c00052{left:196.434896pt;}
.xe_c00052{left:363.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_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_97aa315f449bc095c42e22b6.woff2')format("woff");}.ff1_c00053{font-family:ff1_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:ff2_c00053;src:url('chunks/assets/font_1237bbba3cb676a67922e9f4.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_432b2ce93d991605d2211600.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.480469;font-style:normal;font-weight:normal;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_97df4c2ca56d58fa9ce19fad.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.480469;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00053{letter-spacing:0.000000px;}
.ls1_c00053{letter-spacing:3.000000px;}
.ls3_c00053{letter-spacing:6.000000px;}
.ls0_c00053{letter-spacing:12.330000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00053{word-spacing:-33.825000px;}
.ws0_c00053{word-spacing:-19.014000px;}
.ws1_c00053{word-spacing:-16.629000px;}
.ws2_c00053{word-spacing:-0.276000px;}
.ws4_c00053{word-spacing:0.000000px;}
._1f_c00053{margin-left:-20.229000px;}
._19_c00053{margin-left:-12.648000px;}
._1d_c00053{margin-left:-10.695000px;}
._23_c00053{margin-left:-9.582000px;}
._1e_c00053{margin-left:-8.418000px;}
._0_c00053{margin-left:-7.038000px;}
._f_c00053{margin-left:-5.658000px;}
._1_c00053{margin-left:-4.347000px;}
._10_c00053{margin-left:-3.237000px;}
._9_c00053{margin-left:-2.208000px;}
._7_c00053{margin-left:-1.029000px;}
._4_c00053{width:1.794000px;}
._5_c00053{width:2.967000px;}
._3_c00053{width:4.347000px;}
._6_c00053{width:5.382000px;}
._c_c00053{width:7.383000px;}
._27_c00053{width:8.415000px;}
._8_c00053{width:9.447000px;}
._e_c00053{width:10.854000px;}
._d_c00053{width:11.868000px;}
._1b_c00053{width:13.104000px;}
._a_c00053{width:14.124000px;}
._11_c00053{width:15.945000px;}
._21_c00053{width:16.974000px;}
._1a_c00053{width:18.042000px;}
._17_c00053{width:21.816000px;}
._12_c00053{width:22.908000px;}
._13_c00053{width:24.207000px;}
._14_c00053{width:25.863000px;}
._25_c00053{width:27.324000px;}
._15_c00053{width:31.257000px;}
._18_c00053{width:33.051000px;}
._20_c00053{width:36.363000px;}
._24_c00053{width:39.384000px;}
._26_c00053{width:56.580000px;}
._1c_c00053{width:88.182000px;}
._16_c00053{width:94.041000px;}
._22_c00053{width:100.596000px;}
._b_c00053{width:140.367000px;}
._2_c00053{width:378.789000px;}
.fc2_c00053{color:transparent;}
.fc1_c00053{color:rgb(128,128,128);}
.fc0_c00053{color:rgb(0,0,0);}
.fs3_c00053{font-size:48.000000px;}
.fs1_c00053{font-size:54.000000px;}
.fs0_c00053{font-size:69.000000px;}
.fs2_c00053{font-size:75.000000px;}
.y0_c00053{bottom:0.000000px;}
.y1f_c00053{bottom:3.105000px;}
.y1e_c00053{bottom:7.228371px;}
.y1d_c00053{bottom:72.915000px;}
.y1c_c00053{bottom:124.665000px;}
.y1b_c00053{bottom:149.565000px;}
.y1a_c00053{bottom:174.615000px;}
.y19_c00053{bottom:199.815000px;}
.y18_c00053{bottom:224.565000px;}
.y17_c00053{bottom:248.715000px;}
.y16_c00053{bottom:273.465000px;}
.y15_c00053{bottom:298.815000px;}
.y14_c00053{bottom:323.715000px;}
.y13_c00053{bottom:347.265000px;}
.y12_c00053{bottom:372.615000px;}
.y11_c00053{bottom:397.215000px;}
.y10_c00053{bottom:421.665000px;}
.yf_c00053{bottom:446.565000px;}
.ye_c00053{bottom:471.615000px;}
.yd_c00053{bottom:496.515000px;}
.yc_c00053{bottom:521.415000px;}
.yb_c00053{bottom:546.165000px;}
.ya_c00053{bottom:570.765000px;}
.y9_c00053{bottom:595.815000px;}
.y8_c00053{bottom:620.415000px;}
.y7_c00053{bottom:645.315000px;}
.y6_c00053{bottom:669.915000px;}
.y5_c00053{bottom:695.565000px;}
.y4_c00053{bottom:720.015000px;}
.y3_c00053{bottom:745.215000px;}
.y2_c00053{bottom:769.815000px;}
.y1_c00053{bottom:794.865000px;}
.h4_c00053{height:13.200074px;}
.h5_c00053{height:43.804688px;}
.h2_c00053{height:87.361816px;}
.h3_c00053{height:87.780762px;}
.h0_c00053{height:833.775000px;}
.h1_c00053{height:834.000000px;}
.w2_c00053{width:104.875500px;}
.w0_c00053{width:572.925000px;}
.w1_c00053{width:573.000000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:49.350000px;}
.x8_c00053{left:52.350000px;}
.x7_c00053{left:65.550000px;}
.x5_c00053{left:66.600000px;}
.x3_c00053{left:113.700000px;}
.x4_c00053{left:114.750000px;}
.x6_c00053{left:116.100000px;}
.x9_c00053{left:117.450000px;}
.xa_c00053{left:118.500000px;}
.x1_c00053{left:126.450000px;}
.xc_c00053{left:238.276749px;}
.xb_c00053{left:480.900000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:0.000000pt;}
.ls1_c00053{letter-spacing:2.666667pt;}
.ls3_c00053{letter-spacing:5.333333pt;}
.ls0_c00053{letter-spacing:10.960000pt;}
.ws3_c00053{word-spacing:-30.066667pt;}
.ws0_c00053{word-spacing:-16.901333pt;}
.ws1_c00053{word-spacing:-14.781333pt;}
.ws2_c00053{word-spacing:-0.245333pt;}
.ws4_c00053{word-spacing:0.000000pt;}
._1f_c00053{margin-left:-17.981333pt;}
._19_c00053{margin-left:-11.242667pt;}
._1d_c00053{margin-left:-9.506667pt;}
._23_c00053{margin-left:-8.517333pt;}
._1e_c00053{margin-left:-7.482667pt;}
._0_c00053{margin-left:-6.256000pt;}
._f_c00053{margin-left:-5.029333pt;}
._1_c00053{margin-left:-3.864000pt;}
._10_c00053{margin-left:-2.877333pt;}
._9_c00053{margin-left:-1.962667pt;}
._7_c00053{margin-left:-0.914667pt;}
._4_c00053{width:1.594667pt;}
._5_c00053{width:2.637333pt;}
._3_c00053{width:3.864000pt;}
._6_c00053{width:4.784000pt;}
._c_c00053{width:6.562667pt;}
._27_c00053{width:7.480000pt;}
._8_c00053{width:8.397333pt;}
._e_c00053{width:9.648000pt;}
._d_c00053{width:10.549333pt;}
._1b_c00053{width:11.648000pt;}
._a_c00053{width:12.554667pt;}
._11_c00053{width:14.173333pt;}
._21_c00053{width:15.088000pt;}
._1a_c00053{width:16.037333pt;}
._17_c00053{width:19.392000pt;}
._12_c00053{width:20.362667pt;}
._13_c00053{width:21.517333pt;}
._14_c00053{width:22.989333pt;}
._25_c00053{width:24.288000pt;}
._15_c00053{width:27.784000pt;}
._18_c00053{width:29.378667pt;}
._20_c00053{width:32.322667pt;}
._24_c00053{width:35.008000pt;}
._26_c00053{width:50.293333pt;}
._1c_c00053{width:78.384000pt;}
._16_c00053{width:83.592000pt;}
._22_c00053{width:89.418667pt;}
._b_c00053{width:124.770667pt;}
._2_c00053{width:336.701333pt;}
.fs3_c00053{font-size:42.666667pt;}
.fs1_c00053{font-size:48.000000pt;}
.fs0_c00053{font-size:61.333333pt;}
.fs2_c00053{font-size:66.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y1f_c00053{bottom:2.760000pt;}
.y1e_c00053{bottom:6.425219pt;}
.y1d_c00053{bottom:64.813333pt;}
.y1c_c00053{bottom:110.813333pt;}
.y1b_c00053{bottom:132.946667pt;}
.y1a_c00053{bottom:155.213333pt;}
.y19_c00053{bottom:177.613333pt;}
.y18_c00053{bottom:199.613333pt;}
.y17_c00053{bottom:221.080000pt;}
.y16_c00053{bottom:243.080000pt;}
.y15_c00053{bottom:265.613333pt;}
.y14_c00053{bottom:287.746667pt;}
.y13_c00053{bottom:308.680000pt;}
.y12_c00053{bottom:331.213333pt;}
.y11_c00053{bottom:353.080000pt;}
.y10_c00053{bottom:374.813333pt;}
.yf_c00053{bottom:396.946667pt;}
.ye_c00053{bottom:419.213333pt;}
.yd_c00053{bottom:441.346667pt;}
.yc_c00053{bottom:463.480000pt;}
.yb_c00053{bottom:485.480000pt;}
.ya_c00053{bottom:507.346667pt;}
.y9_c00053{bottom:529.613333pt;}
.y8_c00053{bottom:551.480000pt;}
.y7_c00053{bottom:573.613333pt;}
.y6_c00053{bottom:595.480000pt;}
.y5_c00053{bottom:618.280000pt;}
.y4_c00053{bottom:640.013333pt;}
.y3_c00053{bottom:662.413333pt;}
.y2_c00053{bottom:684.280000pt;}
.y1_c00053{bottom:706.546667pt;}
.h4_c00053{height:11.733399pt;}
.h5_c00053{height:38.937500pt;}
.h2_c00053{height:77.654948pt;}
.h3_c00053{height:78.027344pt;}
.h0_c00053{height:741.133333pt;}
.h1_c00053{height:741.333333pt;}
.w2_c00053{width:93.222667pt;}
.w0_c00053{width:509.266667pt;}
.w1_c00053{width:509.333333pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:43.866667pt;}
.x8_c00053{left:46.533333pt;}
.x7_c00053{left:58.266667pt;}
.x5_c00053{left:59.200000pt;}
.x3_c00053{left:101.066667pt;}
.x4_c00053{left:102.000000pt;}
.x6_c00053{left:103.200000pt;}
.x9_c00053{left:104.400000pt;}
.xa_c00053{left:105.333333pt;}
.x1_c00053{left:112.400000pt;}
.xc_c00053{left:211.801554pt;}
.xb_c00053{left:427.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_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_41e75d3bf4641daf0945607a.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_014f8db384d09e37760b6a45.woff2')format("woff");}.ff2_c00054{font-family:ff2_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:ff3_c00054;src:url('chunks/assets/font_79ae11630280cabf511e96ec.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.311035;font-style:normal;font-weight:normal;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_01959d60d1c2bc32d1762325.woff2')format("woff");}.ff4_c00054{font-family:ff4_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:ff5_c00054;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00054{font-family:ff5_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;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls4_c00054{letter-spacing:0.000000px;}
.ls5_c00054{letter-spacing:3.000000px;}
.ls1_c00054{letter-spacing:8.400000px;}
.ls3_c00054{letter-spacing:17.560800px;}
.ls2_c00054{letter-spacing:26.274000px;}
.ls0_c00054{letter-spacing:502.371000px;}
.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:-56.235000px;}
.ws6_c00054{word-spacing:-20.244000px;}
.ws2_c00054{word-spacing:-16.629000px;}
.ws5_c00054{word-spacing:-1.173000px;}
.ws3_c00054{word-spacing:-0.081000px;}
.ws7_c00054{word-spacing:0.000000px;}
.ws0_c00054{word-spacing:6.072000px;}
.ws1_c00054{word-spacing:7.728000px;}
._29_c00054{margin-left:-27.006000px;}
._20_c00054{margin-left:-25.737000px;}
._23_c00054{margin-left:-17.085000px;}
._10_c00054{margin-left:-12.606000px;}
._13_c00054{margin-left:-10.410000px;}
._11_c00054{margin-left:-9.018000px;}
._26_c00054{margin-left:-7.785000px;}
._1_c00054{margin-left:-6.486000px;}
._3_c00054{margin-left:-5.313000px;}
._f_c00054{margin-left:-4.308000px;}
._2_c00054{margin-left:-3.243000px;}
._4_c00054{margin-left:-1.725000px;}
._0_c00054{width:1.794000px;}
._9_c00054{width:3.483000px;}
._12_c00054{width:4.830000px;}
._e_c00054{width:6.210000px;}
._17_c00054{width:8.253000px;}
._19_c00054{width:9.351000px;}
._18_c00054{width:10.695000px;}
._b_c00054{width:11.799000px;}
._15_c00054{width:13.218000px;}
._1c_c00054{width:14.256000px;}
._22_c00054{width:15.663000px;}
._16_c00054{width:16.689000px;}
._1b_c00054{width:18.120000px;}
._21_c00054{width:20.727000px;}
._1e_c00054{width:22.926000px;}
._6_c00054{width:24.288000px;}
._7_c00054{width:27.324000px;}
._28_c00054{width:28.662000px;}
._5_c00054{width:30.429000px;}
._c_c00054{width:31.533000px;}
._d_c00054{width:32.562000px;}
._8_c00054{width:34.155000px;}
._1f_c00054{width:38.145000px;}
._a_c00054{width:42.297000px;}
._1a_c00054{width:48.537000px;}
._25_c00054{width:61.044000px;}
._1d_c00054{width:99.675000px;}
._24_c00054{width:102.114000px;}
._27_c00054{width:113.850000px;}
._14_c00054{width:1772.391000px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(128,128,128);}
.fc0_c00054{color:rgb(0,0,0);}
.fs4_c00054{font-size:48.000000px;}
.fs2_c00054{font-size:55.200000px;}
.fs1_c00054{font-size:66.000000px;}
.fs0_c00054{font-size:69.000000px;}
.fs3_c00054{font-size:84.000000px;}
.y0_c00054{bottom:0.000000px;}
.y1e_c00054{bottom:3.105000px;}
.y1d_c00054{bottom:7.228371px;}
.y1c_c00054{bottom:72.315000px;}
.y1b_c00054{bottom:98.265000px;}
.y1a_c00054{bottom:123.315000px;}
.y19_c00054{bottom:147.615000px;}
.y18_c00054{bottom:172.815000px;}
.y17_c00054{bottom:197.415000px;}
.y16_c00054{bottom:222.465000px;}
.y15_c00054{bottom:247.365000px;}
.y14_c00054{bottom:273.165000px;}
.y13_c00054{bottom:296.715000px;}
.y12_c00054{bottom:321.315000px;}
.y11_c00054{bottom:346.365000px;}
.y10_c00054{bottom:370.665000px;}
.yf_c00054{bottom:393.315000px;}
.ye_c00054{bottom:420.315000px;}
.yd_c00054{bottom:444.915000px;}
.yc_c00054{bottom:469.515000px;}
.yb_c00054{bottom:494.115000px;}
.ya_c00054{bottom:518.115000px;}
.y9_c00054{bottom:542.715000px;}
.y8_c00054{bottom:567.465000px;}
.y7_c00054{bottom:592.065000px;}
.y6_c00054{bottom:616.965000px;}
.y5_c00054{bottom:642.315000px;}
.y4_c00054{bottom:666.915000px;}
.y3_c00054{bottom:691.965000px;}
.y2_c00054{bottom:741.465000px;}
.y1_c00054{bottom:790.065000px;}
.h5_c00054{height:13.200074px;}
.h6_c00054{height:43.804688px;}
.h3_c00054{height:80.758301px;}
.h2_c00054{height:87.361816px;}
.h4_c00054{height:106.353516px;}
.h1_c00054{height:831.000000px;}
.h0_c00054{height:831.075000px;}
.w1_c00054{width:104.875500px;}
.w0_c00054{width:557.250000px;}
.x0_c00054{left:0.000000px;}
.x4_c00054{left:29.700000px;}
.x5_c00054{left:30.750000px;}
.x6_c00054{left:32.100000px;}
.x7_c00054{left:33.150000px;}
.x8_c00054{left:34.200000px;}
.x3_c00054{left:54.000000px;}
.x2_c00054{left:69.900000px;}
.x1_c00054{left:185.700000px;}
.xa_c00054{left:230.439240px;}
.x9_c00054{left:429.750000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls4_c00054{letter-spacing:0.000000pt;}
.ls5_c00054{letter-spacing:2.666667pt;}
.ls1_c00054{letter-spacing:7.466667pt;}
.ls3_c00054{letter-spacing:15.609600pt;}
.ls2_c00054{letter-spacing:23.354667pt;}
.ls0_c00054{letter-spacing:446.552000pt;}
.ws4_c00054{word-spacing:-49.986667pt;}
.ws6_c00054{word-spacing:-17.994667pt;}
.ws2_c00054{word-spacing:-14.781333pt;}
.ws5_c00054{word-spacing:-1.042667pt;}
.ws3_c00054{word-spacing:-0.072000pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.ws0_c00054{word-spacing:5.397333pt;}
.ws1_c00054{word-spacing:6.869333pt;}
._29_c00054{margin-left:-24.005333pt;}
._20_c00054{margin-left:-22.877333pt;}
._23_c00054{margin-left:-15.186667pt;}
._10_c00054{margin-left:-11.205333pt;}
._13_c00054{margin-left:-9.253333pt;}
._11_c00054{margin-left:-8.016000pt;}
._26_c00054{margin-left:-6.920000pt;}
._1_c00054{margin-left:-5.765333pt;}
._3_c00054{margin-left:-4.722667pt;}
._f_c00054{margin-left:-3.829333pt;}
._2_c00054{margin-left:-2.882667pt;}
._4_c00054{margin-left:-1.533333pt;}
._0_c00054{width:1.594667pt;}
._9_c00054{width:3.096000pt;}
._12_c00054{width:4.293333pt;}
._e_c00054{width:5.520000pt;}
._17_c00054{width:7.336000pt;}
._19_c00054{width:8.312000pt;}
._18_c00054{width:9.506667pt;}
._b_c00054{width:10.488000pt;}
._15_c00054{width:11.749333pt;}
._1c_c00054{width:12.672000pt;}
._22_c00054{width:13.922667pt;}
._16_c00054{width:14.834667pt;}
._1b_c00054{width:16.106667pt;}
._21_c00054{width:18.424000pt;}
._1e_c00054{width:20.378667pt;}
._6_c00054{width:21.589333pt;}
._7_c00054{width:24.288000pt;}
._28_c00054{width:25.477333pt;}
._5_c00054{width:27.048000pt;}
._c_c00054{width:28.029333pt;}
._d_c00054{width:28.944000pt;}
._8_c00054{width:30.360000pt;}
._1f_c00054{width:33.906667pt;}
._a_c00054{width:37.597333pt;}
._1a_c00054{width:43.144000pt;}
._25_c00054{width:54.261333pt;}
._1d_c00054{width:88.600000pt;}
._24_c00054{width:90.768000pt;}
._27_c00054{width:101.200000pt;}
._14_c00054{width:1575.458667pt;}
.fs4_c00054{font-size:42.666667pt;}
.fs2_c00054{font-size:49.066667pt;}
.fs1_c00054{font-size:58.666667pt;}
.fs0_c00054{font-size:61.333333pt;}
.fs3_c00054{font-size:74.666667pt;}
.y0_c00054{bottom:0.000000pt;}
.y1e_c00054{bottom:2.760000pt;}
.y1d_c00054{bottom:6.425219pt;}
.y1c_c00054{bottom:64.280000pt;}
.y1b_c00054{bottom:87.346667pt;}
.y1a_c00054{bottom:109.613333pt;}
.y19_c00054{bottom:131.213333pt;}
.y18_c00054{bottom:153.613333pt;}
.y17_c00054{bottom:175.480000pt;}
.y16_c00054{bottom:197.746667pt;}
.y15_c00054{bottom:219.880000pt;}
.y14_c00054{bottom:242.813333pt;}
.y13_c00054{bottom:263.746667pt;}
.y12_c00054{bottom:285.613333pt;}
.y11_c00054{bottom:307.880000pt;}
.y10_c00054{bottom:329.480000pt;}
.yf_c00054{bottom:349.613333pt;}
.ye_c00054{bottom:373.613333pt;}
.yd_c00054{bottom:395.480000pt;}
.yc_c00054{bottom:417.346667pt;}
.yb_c00054{bottom:439.213333pt;}
.ya_c00054{bottom:460.546667pt;}
.y9_c00054{bottom:482.413333pt;}
.y8_c00054{bottom:504.413333pt;}
.y7_c00054{bottom:526.280000pt;}
.y6_c00054{bottom:548.413333pt;}
.y5_c00054{bottom:570.946667pt;}
.y4_c00054{bottom:592.813333pt;}
.y3_c00054{bottom:615.080000pt;}
.y2_c00054{bottom:659.080000pt;}
.y1_c00054{bottom:702.280000pt;}
.h5_c00054{height:11.733399pt;}
.h6_c00054{height:38.937500pt;}
.h3_c00054{height:71.785156pt;}
.h2_c00054{height:77.654948pt;}
.h4_c00054{height:94.536458pt;}
.h1_c00054{height:738.666667pt;}
.h0_c00054{height:738.733333pt;}
.w1_c00054{width:93.222667pt;}
.w0_c00054{width:495.333333pt;}
.x0_c00054{left:0.000000pt;}
.x4_c00054{left:26.400000pt;}
.x5_c00054{left:27.333333pt;}
.x6_c00054{left:28.533333pt;}
.x7_c00054{left:29.466667pt;}
.x8_c00054{left:30.400000pt;}
.x3_c00054{left:48.000000pt;}
.x2_c00054{left:62.133333pt;}
.x1_c00054{left:165.066667pt;}
.xa_c00054{left:204.834880pt;}
.x9_c00054{left:382.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_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_18373a865c15130ef9951f91.woff2')format("woff");}.ff1_c00055{font-family:ff1_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:ff2_c00055;src:url('chunks/assets/font_91d2d6bf1cd23127e50d8faa.woff2')format("woff");}.ff2_c00055{font-family:ff2_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:ff3_c00055;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_3c752839abac15618d6f6c6d.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_e1feeebedcc25168ea176ff9.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00055;src:url('chunks/assets/font_b073cdc6b620376974d4b67f.woff2')format("woff");}.ff6_c00055{font-family:ff6_c00055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00055;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00055{font-family:ff7_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);}
.v1_c00055{vertical-align:-78.000000px;}
.v0_c00055{vertical-align:0.000000px;}
.ls6_c00055{letter-spacing:0.000000px;}
.ls3_c00055{letter-spacing:0.102000px;}
.ls5_c00055{letter-spacing:1.800000px;}
.ls4_c00055{letter-spacing:3.000000px;}
.ls2_c00055{letter-spacing:7.800000px;}
.ls0_c00055{letter-spacing:8.901000px;}
.ls1_c00055{letter-spacing:22.200000px;}
.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;}
}
.ws3_c00055{word-spacing:-33.000000px;}
.ws6_c00055{word-spacing:-19.629000px;}
.ws7_c00055{word-spacing:-18.075000px;}
.ws4_c00055{word-spacing:-16.629000px;}
.ws5_c00055{word-spacing:-3.000000px;}
.ws8_c00055{word-spacing:0.000000px;}
.ws1_c00055{word-spacing:1.410000px;}
.ws2_c00055{word-spacing:2.853000px;}
.ws0_c00055{word-spacing:6.693000px;}
._23_c00055{margin-left:-22.011000px;}
._c_c00055{margin-left:-20.355000px;}
._1f_c00055{margin-left:-18.870000px;}
._18_c00055{margin-left:-15.222000px;}
._1_c00055{margin-left:-12.972000px;}
._d_c00055{margin-left:-11.730000px;}
._14_c00055{margin-left:-9.936000px;}
._1c_c00055{margin-left:-8.556000px;}
._28_c00055{margin-left:-7.521000px;}
._2b_c00055{margin-left:-6.141000px;}
._a_c00055{margin-left:-4.278000px;}
._4_c00055{margin-left:-2.484000px;}
._5_c00055{margin-left:-1.242000px;}
._2_c00055{width:1.104000px;}
._6_c00055{width:2.415000px;}
._7_c00055{width:3.450000px;}
._0_c00055{width:5.382000px;}
._b_c00055{width:6.900000px;}
._9_c00055{width:9.315000px;}
._13_c00055{width:10.419000px;}
._25_c00055{width:11.607000px;}
._27_c00055{width:12.819000px;}
._1a_c00055{width:14.214000px;}
._8_c00055{width:15.801000px;}
._15_c00055{width:17.574000px;}
._30_c00055{width:18.780000px;}
._2f_c00055{width:20.148000px;}
._1e_c00055{width:21.183000px;}
._2a_c00055{width:22.482000px;}
._33_c00055{width:23.658000px;}
._10_c00055{width:24.840000px;}
._12_c00055{width:26.373000px;}
._11_c00055{width:27.945000px;}
._2c_c00055{width:30.552000px;}
._16_c00055{width:33.258000px;}
._f_c00055{width:35.604000px;}
._24_c00055{width:39.780000px;}
._35_c00055{width:42.021000px;}
._2e_c00055{width:43.086000px;}
._e_c00055{width:55.014000px;}
._31_c00055{width:60.468000px;}
._17_c00055{width:69.702000px;}
._20_c00055{width:80.868000px;}
._2d_c00055{width:85.104000px;}
._29_c00055{width:104.535000px;}
._21_c00055{width:129.099000px;}
._1b_c00055{width:130.314000px;}
._22_c00055{width:191.517000px;}
._32_c00055{width:218.331000px;}
._19_c00055{width:241.707000px;}
._34_c00055{width:273.288000px;}
._1d_c00055{width:314.295000px;}
._3_c00055{width:354.177000px;}
._26_c00055{width:458.559000px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(128,128,128);}
.fc0_c00055{color:rgb(0,0,0);}
.fs3_c00055{font-size:48.000000px;}
.fs1_c00055{font-size:66.000000px;}
.fs0_c00055{font-size:69.000000px;}
.fs2_c00055{font-size:75.000000px;}
.y0_c00055{bottom:0.000000px;}
.y1e_c00055{bottom:3.105000px;}
.y1d_c00055{bottom:7.228369px;}
.y1c_c00055{bottom:70.920000px;}
.y1b_c00055{bottom:96.420000px;}
.y1a_c00055{bottom:121.470000px;}
.y19_c00055{bottom:146.820000px;}
.y18_c00055{bottom:171.720000px;}
.y17_c00055{bottom:195.720000px;}
.y16_c00055{bottom:214.620000px;}
.y15_c00055{bottom:222.720000px;}
.y14_c00055{bottom:246.720000px;}
.y13_c00055{bottom:296.670000px;}
.y12_c00055{bottom:321.270000px;}
.y11_c00055{bottom:345.270000px;}
.y10_c00055{bottom:370.470000px;}
.yf_c00055{bottom:394.770000px;}
.ye_c00055{bottom:419.220000px;}
.yd_c00055{bottom:444.720000px;}
.yc_c00055{bottom:469.170000px;}
.yb_c00055{bottom:494.670000px;}
.ya_c00055{bottom:518.970000px;}
.y9_c00055{bottom:543.420000px;}
.y8_c00055{bottom:569.070000px;}
.y7_c00055{bottom:593.220000px;}
.y6_c00055{bottom:618.870000px;}
.y5_c00055{bottom:643.170000px;}
.y4_c00055{bottom:692.820000px;}
.y3_c00055{bottom:742.770000px;}
.y2_c00055{bottom:767.520000px;}
.y1_c00055{bottom:792.720000px;}
.h7_c00055{height:13.200073px;}
.h8_c00055{height:43.804688px;}
.h4_c00055{height:67.686035px;}
.h5_c00055{height:67.719727px;}
.h3_c00055{height:80.758301px;}
.h2_c00055{height:87.361816px;}
.h6_c00055{height:94.958496px;}
.h0_c00055{height:816.450000px;}
.h1_c00055{height:816.750000px;}
.w2_c00055{width:104.875500px;}
.w1_c00055{width:561.000000px;}
.w0_c00055{width:561.075000px;}
.x0_c00055{left:0.000000px;}
.xc_c00055{left:30.750000px;}
.x10_c00055{left:31.950000px;}
.xe_c00055{left:35.400000px;}
.xb_c00055{left:43.650000px;}
.x6_c00055{left:63.150000px;}
.x8_c00055{left:71.550000px;}
.x5_c00055{left:93.150000px;}
.xd_c00055{left:95.100000px;}
.x9_c00055{left:96.150000px;}
.x7_c00055{left:97.800000px;}
.x2_c00055{left:99.150000px;}
.x3_c00055{left:105.000000px;}
.x1_c00055{left:111.000000px;}
.x4_c00055{left:121.050000px;}
.xa_c00055{left:144.150000px;}
.xf_c00055{left:153.900000px;}
.x12_c00055{left:232.351730px;}
.x11_c00055{left:501.750000px;}
@media print{
.v1_c00055{vertical-align:-69.333333pt;}
.v0_c00055{vertical-align:0.000000pt;}
.ls6_c00055{letter-spacing:0.000000pt;}
.ls3_c00055{letter-spacing:0.090667pt;}
.ls5_c00055{letter-spacing:1.600000pt;}
.ls4_c00055{letter-spacing:2.666667pt;}
.ls2_c00055{letter-spacing:6.933333pt;}
.ls0_c00055{letter-spacing:7.912000pt;}
.ls1_c00055{letter-spacing:19.733333pt;}
.ws3_c00055{word-spacing:-29.333333pt;}
.ws6_c00055{word-spacing:-17.448000pt;}
.ws7_c00055{word-spacing:-16.066667pt;}
.ws4_c00055{word-spacing:-14.781333pt;}
.ws5_c00055{word-spacing:-2.666667pt;}
.ws8_c00055{word-spacing:0.000000pt;}
.ws1_c00055{word-spacing:1.253333pt;}
.ws2_c00055{word-spacing:2.536000pt;}
.ws0_c00055{word-spacing:5.949333pt;}
._23_c00055{margin-left:-19.565333pt;}
._c_c00055{margin-left:-18.093333pt;}
._1f_c00055{margin-left:-16.773333pt;}
._18_c00055{margin-left:-13.530667pt;}
._1_c00055{margin-left:-11.530667pt;}
._d_c00055{margin-left:-10.426667pt;}
._14_c00055{margin-left:-8.832000pt;}
._1c_c00055{margin-left:-7.605333pt;}
._28_c00055{margin-left:-6.685333pt;}
._2b_c00055{margin-left:-5.458667pt;}
._a_c00055{margin-left:-3.802667pt;}
._4_c00055{margin-left:-2.208000pt;}
._5_c00055{margin-left:-1.104000pt;}
._2_c00055{width:0.981333pt;}
._6_c00055{width:2.146667pt;}
._7_c00055{width:3.066667pt;}
._0_c00055{width:4.784000pt;}
._b_c00055{width:6.133333pt;}
._9_c00055{width:8.280000pt;}
._13_c00055{width:9.261333pt;}
._25_c00055{width:10.317333pt;}
._27_c00055{width:11.394667pt;}
._1a_c00055{width:12.634667pt;}
._8_c00055{width:14.045333pt;}
._15_c00055{width:15.621333pt;}
._30_c00055{width:16.693333pt;}
._2f_c00055{width:17.909333pt;}
._1e_c00055{width:18.829333pt;}
._2a_c00055{width:19.984000pt;}
._33_c00055{width:21.029333pt;}
._10_c00055{width:22.080000pt;}
._12_c00055{width:23.442667pt;}
._11_c00055{width:24.840000pt;}
._2c_c00055{width:27.157333pt;}
._16_c00055{width:29.562667pt;}
._f_c00055{width:31.648000pt;}
._24_c00055{width:35.360000pt;}
._35_c00055{width:37.352000pt;}
._2e_c00055{width:38.298667pt;}
._e_c00055{width:48.901333pt;}
._31_c00055{width:53.749333pt;}
._17_c00055{width:61.957333pt;}
._20_c00055{width:71.882667pt;}
._2d_c00055{width:75.648000pt;}
._29_c00055{width:92.920000pt;}
._21_c00055{width:114.754667pt;}
._1b_c00055{width:115.834667pt;}
._22_c00055{width:170.237333pt;}
._32_c00055{width:194.072000pt;}
._19_c00055{width:214.850667pt;}
._34_c00055{width:242.922667pt;}
._1d_c00055{width:279.373333pt;}
._3_c00055{width:314.824000pt;}
._26_c00055{width:407.608000pt;}
.fs3_c00055{font-size:42.666667pt;}
.fs1_c00055{font-size:58.666667pt;}
.fs0_c00055{font-size:61.333333pt;}
.fs2_c00055{font-size:66.666667pt;}
.y0_c00055{bottom:0.000000pt;}
.y1e_c00055{bottom:2.760000pt;}
.y1d_c00055{bottom:6.425217pt;}
.y1c_c00055{bottom:63.040000pt;}
.y1b_c00055{bottom:85.706667pt;}
.y1a_c00055{bottom:107.973333pt;}
.y19_c00055{bottom:130.506667pt;}
.y18_c00055{bottom:152.640000pt;}
.y17_c00055{bottom:173.973333pt;}
.y16_c00055{bottom:190.773333pt;}
.y15_c00055{bottom:197.973333pt;}
.y14_c00055{bottom:219.306667pt;}
.y13_c00055{bottom:263.706667pt;}
.y12_c00055{bottom:285.573333pt;}
.y11_c00055{bottom:306.906667pt;}
.y10_c00055{bottom:329.306667pt;}
.yf_c00055{bottom:350.906667pt;}
.ye_c00055{bottom:372.640000pt;}
.yd_c00055{bottom:395.306667pt;}
.yc_c00055{bottom:417.040000pt;}
.yb_c00055{bottom:439.706667pt;}
.ya_c00055{bottom:461.306667pt;}
.y9_c00055{bottom:483.040000pt;}
.y8_c00055{bottom:505.840000pt;}
.y7_c00055{bottom:527.306667pt;}
.y6_c00055{bottom:550.106667pt;}
.y5_c00055{bottom:571.706667pt;}
.y4_c00055{bottom:615.840000pt;}
.y3_c00055{bottom:660.240000pt;}
.y2_c00055{bottom:682.240000pt;}
.y1_c00055{bottom:704.640000pt;}
.h7_c00055{height:11.733399pt;}
.h8_c00055{height:38.937500pt;}
.h4_c00055{height:60.165365pt;}
.h5_c00055{height:60.195312pt;}
.h3_c00055{height:71.785156pt;}
.h2_c00055{height:77.654948pt;}
.h6_c00055{height:84.407552pt;}
.h0_c00055{height:725.733333pt;}
.h1_c00055{height:726.000000pt;}
.w2_c00055{width:93.222667pt;}
.w1_c00055{width:498.666667pt;}
.w0_c00055{width:498.733333pt;}
.x0_c00055{left:0.000000pt;}
.xc_c00055{left:27.333333pt;}
.x10_c00055{left:28.400000pt;}
.xe_c00055{left:31.466667pt;}
.xb_c00055{left:38.800000pt;}
.x6_c00055{left:56.133333pt;}
.x8_c00055{left:63.600000pt;}
.x5_c00055{left:82.800000pt;}
.xd_c00055{left:84.533333pt;}
.x9_c00055{left:85.466667pt;}
.x7_c00055{left:86.933333pt;}
.x2_c00055{left:88.133333pt;}
.x3_c00055{left:93.333333pt;}
.x1_c00055{left:98.666667pt;}
.x4_c00055{left:107.600000pt;}
.xa_c00055{left:128.133333pt;}
.xf_c00055{left:136.800000pt;}
.x12_c00055{left:206.534871pt;}
.x11_c00055{left:446.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_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_613a050d9adbcf2e9638e3b4.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.437000;font-style:normal;font-weight:normal;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_28b9f11f071d5af5b2a326ed.woff2')format("woff");}.ff2_c00056{font-family:ff2_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:ff3_c00056;src:url('chunks/assets/font_38f0b29b72f0ab40efdb562d.woff2')format("woff");}.ff3_c00056{font-family:ff3_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:ff4_c00056;src:url('chunks/assets/font_64e18ce9798186d719c6e92b.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;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_c00056;src:url('chunks/assets/font_c6934fcafe330adff2903ea6.woff2')format("woff");}.ff5_c00056{font-family:ff5_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:ff6_c00056;src:url('chunks/assets/font_87af098deadf9177ef7275e1.woff2')format("woff");}.ff6_c00056{font-family:ff6_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:ff7_c00056;src:url('chunks/assets/font_3190ea63f02eeb52dd87da0b.woff2')format("woff");}.ff7_c00056{font-family:ff7_c00056;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_c00056;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00056{font-family:ff8_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;}
.m1_c00056{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_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;}
.ls3_c00056{letter-spacing:-3.000000px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls2_c00056{letter-spacing:3.000000px;}
.ls0_c00056{letter-spacing:19.578000px;}
.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;}
}
.ws3_c00056{word-spacing:-47.088000px;}
.ws2_c00056{word-spacing:-37.670400px;}
.ws1_c00056{word-spacing:-17.238000px;}
.ws5_c00056{word-spacing:-14.352000px;}
.ws4_c00056{word-spacing:-0.324000px;}
.ws6_c00056{word-spacing:0.000000px;}
.ws0_c00056{word-spacing:2.451000px;}
._31_c00056{margin-left:-60.306000px;}
._d_c00056{margin-left:-25.443000px;}
._2a_c00056{margin-left:-20.808000px;}
._21_c00056{margin-left:-17.388000px;}
._27_c00056{margin-left:-15.870000px;}
._26_c00056{margin-left:-13.065000px;}
._14_c00056{margin-left:-11.808000px;}
._15_c00056{margin-left:-10.800000px;}
._1e_c00056{margin-left:-9.660000px;}
._30_c00056{margin-left:-8.211000px;}
._16_c00056{margin-left:-6.840000px;}
._1a_c00056{margin-left:-5.616000px;}
._c_c00056{margin-left:-4.482000px;}
._3_c00056{margin-left:-2.829000px;}
._9_c00056{margin-left:-1.440000px;}
._1_c00056{width:1.188000px;}
._4_c00056{width:2.484000px;}
._0_c00056{width:3.618000px;}
._6_c00056{width:4.914000px;}
._7_c00056{width:6.072000px;}
._2_c00056{width:7.467000px;}
._a_c00056{width:8.778000px;}
._33_c00056{width:9.984000px;}
._8_c00056{width:11.088000px;}
._10_c00056{width:12.201000px;}
._b_c00056{width:14.214000px;}
._12_c00056{width:15.258000px;}
._28_c00056{width:16.275600px;}
._11_c00056{width:18.411000px;}
._f_c00056{width:20.178000px;}
._17_c00056{width:21.204000px;}
._18_c00056{width:24.036000px;}
._2f_c00056{width:33.252000px;}
._2b_c00056{width:34.560000px;}
._20_c00056{width:40.512000px;}
._19_c00056{width:56.616000px;}
._22_c00056{width:68.931000px;}
._2c_c00056{width:72.954000px;}
._32_c00056{width:93.363000px;}
._13_c00056{width:98.190000px;}
._25_c00056{width:102.468000px;}
._1f_c00056{width:110.883000px;}
._29_c00056{width:113.727000px;}
._2e_c00056{width:117.945000px;}
._23_c00056{width:156.168000px;}
._24_c00056{width:192.372000px;}
._e_c00056{width:238.194000px;}
._1c_c00056{width:276.552000px;}
._1b_c00056{width:357.273000px;}
._1d_c00056{width:428.430000px;}
._5_c00056{width:494.661000px;}
._2d_c00056{width:1630.245000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(128,128,128);}
.fc0_c00056{color:rgb(0,0,0);}
.fs6_c00056{font-size:30.000000px;}
.fs7_c00056{font-size:39.000000px;}
.fs8_c00056{font-size:48.000000px;}
.fs0_c00056{font-size:54.000000px;}
.fs1_c00056{font-size:57.000000px;}
.fs5_c00056{font-size:57.600000px;}
.fs2_c00056{font-size:69.000000px;}
.fs3_c00056{font-size:72.000000px;}
.fs4_c00056{font-size:78.000000px;}
.y0_c00056{bottom:0.000000px;}
.y20_c00056{bottom:3.105000px;}
.y1f_c00056{bottom:7.228371px;}
.y1e_c00056{bottom:87.465000px;}
.y1d_c00056{bottom:113.115000px;}
.y1c_c00056{bottom:138.165000px;}
.y1b_c00056{bottom:162.465000px;}
.y1a_c00056{bottom:187.365000px;}
.y19_c00056{bottom:212.415000px;}
.y18_c00056{bottom:237.015000px;}
.y17_c00056{bottom:261.915000px;}
.y16_c00056{bottom:286.965000px;}
.y15_c00056{bottom:312.315000px;}
.y14_c00056{bottom:336.915000px;}
.y13_c00056{bottom:372.015000px;}
.y12_c00056{bottom:385.065000px;}
.y11_c00056{bottom:435.465000px;}
.y10_c00056{bottom:460.665000px;}
.yf_c00056{bottom:485.415000px;}
.ye_c00056{bottom:509.415000px;}
.yd_c00056{bottom:521.865000px;}
.yc_c00056{bottom:533.265000px;}
.yb_c00056{bottom:559.215000px;}
.ya_c00056{bottom:582.615000px;}
.y9_c00056{bottom:607.515000px;}
.y8_c00056{bottom:632.115000px;}
.y7_c00056{bottom:656.565000px;}
.y6_c00056{bottom:681.465000px;}
.y5_c00056{bottom:706.815000px;}
.y4_c00056{bottom:730.815000px;}
.y1_c00056{bottom:751.965000px;}
.y3_c00056{bottom:755.415000px;}
.y2_c00056{bottom:780.315000px;}
.h9_c00056{height:13.200074px;}
.h7_c00056{height:41.613000px;}
.ha_c00056{height:43.804688px;}
.h2_c00056{height:56.592000px;}
.h3_c00056{height:66.713379px;}
.h6_c00056{height:76.514648px;}
.h8_c00056{height:80.758301px;}
.h4_c00056{height:87.361816px;}
.h5_c00056{height:91.160156px;}
.h1_c00056{height:831.000000px;}
.h0_c00056{height:831.075000px;}
.w1_c00056{width:104.875500px;}
.w0_c00056{width:557.250000px;}
.x0_c00056{left:0.000000px;}
.x4_c00056{left:30.000000px;}
.x5_c00056{left:32.100000px;}
.x7_c00056{left:33.150000px;}
.x6_c00056{left:34.200000px;}
.xc_c00056{left:35.400000px;}
.xb_c00056{left:36.750000px;}
.x8_c00056{left:37.800000px;}
.xa_c00056{left:60.000000px;}
.x3_c00056{left:173.850000px;}
.xd_c00056{left:230.439240px;}
.x9_c00056{left:310.800000px;}
.x1_c00056{left:477.000000px;}
.x2_c00056{left:500.550000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls3_c00056{letter-spacing:-2.666667pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls2_c00056{letter-spacing:2.666667pt;}
.ls0_c00056{letter-spacing:17.402667pt;}
.ws3_c00056{word-spacing:-41.856000pt;}
.ws2_c00056{word-spacing:-33.484800pt;}
.ws1_c00056{word-spacing:-15.322667pt;}
.ws5_c00056{word-spacing:-12.757333pt;}
.ws4_c00056{word-spacing:-0.288000pt;}
.ws6_c00056{word-spacing:0.000000pt;}
.ws0_c00056{word-spacing:2.178667pt;}
._31_c00056{margin-left:-53.605333pt;}
._d_c00056{margin-left:-22.616000pt;}
._2a_c00056{margin-left:-18.496000pt;}
._21_c00056{margin-left:-15.456000pt;}
._27_c00056{margin-left:-14.106667pt;}
._26_c00056{margin-left:-11.613333pt;}
._14_c00056{margin-left:-10.496000pt;}
._15_c00056{margin-left:-9.600000pt;}
._1e_c00056{margin-left:-8.586667pt;}
._30_c00056{margin-left:-7.298667pt;}
._16_c00056{margin-left:-6.080000pt;}
._1a_c00056{margin-left:-4.992000pt;}
._c_c00056{margin-left:-3.984000pt;}
._3_c00056{margin-left:-2.514667pt;}
._9_c00056{margin-left:-1.280000pt;}
._1_c00056{width:1.056000pt;}
._4_c00056{width:2.208000pt;}
._0_c00056{width:3.216000pt;}
._6_c00056{width:4.368000pt;}
._7_c00056{width:5.397333pt;}
._2_c00056{width:6.637333pt;}
._a_c00056{width:7.802667pt;}
._33_c00056{width:8.874667pt;}
._8_c00056{width:9.856000pt;}
._10_c00056{width:10.845333pt;}
._b_c00056{width:12.634667pt;}
._12_c00056{width:13.562667pt;}
._28_c00056{width:14.467200pt;}
._11_c00056{width:16.365333pt;}
._f_c00056{width:17.936000pt;}
._17_c00056{width:18.848000pt;}
._18_c00056{width:21.365333pt;}
._2f_c00056{width:29.557333pt;}
._2b_c00056{width:30.720000pt;}
._20_c00056{width:36.010667pt;}
._19_c00056{width:50.325333pt;}
._22_c00056{width:61.272000pt;}
._2c_c00056{width:64.848000pt;}
._32_c00056{width:82.989333pt;}
._13_c00056{width:87.280000pt;}
._25_c00056{width:91.082667pt;}
._1f_c00056{width:98.562667pt;}
._29_c00056{width:101.090667pt;}
._2e_c00056{width:104.840000pt;}
._23_c00056{width:138.816000pt;}
._24_c00056{width:170.997333pt;}
._e_c00056{width:211.728000pt;}
._1c_c00056{width:245.824000pt;}
._1b_c00056{width:317.576000pt;}
._1d_c00056{width:380.826667pt;}
._5_c00056{width:439.698667pt;}
._2d_c00056{width:1449.106667pt;}
.fs6_c00056{font-size:26.666667pt;}
.fs7_c00056{font-size:34.666667pt;}
.fs8_c00056{font-size:42.666667pt;}
.fs0_c00056{font-size:48.000000pt;}
.fs1_c00056{font-size:50.666667pt;}
.fs5_c00056{font-size:51.200000pt;}
.fs2_c00056{font-size:61.333333pt;}
.fs3_c00056{font-size:64.000000pt;}
.fs4_c00056{font-size:69.333333pt;}
.y0_c00056{bottom:0.000000pt;}
.y20_c00056{bottom:2.760000pt;}
.y1f_c00056{bottom:6.425219pt;}
.y1e_c00056{bottom:77.746667pt;}
.y1d_c00056{bottom:100.546667pt;}
.y1c_c00056{bottom:122.813333pt;}
.y1b_c00056{bottom:144.413333pt;}
.y1a_c00056{bottom:166.546667pt;}
.y19_c00056{bottom:188.813333pt;}
.y18_c00056{bottom:210.680000pt;}
.y17_c00056{bottom:232.813333pt;}
.y16_c00056{bottom:255.080000pt;}
.y15_c00056{bottom:277.613333pt;}
.y14_c00056{bottom:299.480000pt;}
.y13_c00056{bottom:330.680000pt;}
.y12_c00056{bottom:342.280000pt;}
.y11_c00056{bottom:387.080000pt;}
.y10_c00056{bottom:409.480000pt;}
.yf_c00056{bottom:431.480000pt;}
.ye_c00056{bottom:452.813333pt;}
.yd_c00056{bottom:463.880000pt;}
.yc_c00056{bottom:474.013333pt;}
.yb_c00056{bottom:497.080000pt;}
.ya_c00056{bottom:517.880000pt;}
.y9_c00056{bottom:540.013333pt;}
.y8_c00056{bottom:561.880000pt;}
.y7_c00056{bottom:583.613333pt;}
.y6_c00056{bottom:605.746667pt;}
.y5_c00056{bottom:628.280000pt;}
.y4_c00056{bottom:649.613333pt;}
.y1_c00056{bottom:668.413333pt;}
.y3_c00056{bottom:671.480000pt;}
.y2_c00056{bottom:693.613333pt;}
.h9_c00056{height:11.733399pt;}
.h7_c00056{height:36.989333pt;}
.ha_c00056{height:38.937500pt;}
.h2_c00056{height:50.304000pt;}
.h3_c00056{height:59.300781pt;}
.h6_c00056{height:68.013021pt;}
.h8_c00056{height:71.785156pt;}
.h4_c00056{height:77.654948pt;}
.h5_c00056{height:81.031250pt;}
.h1_c00056{height:738.666667pt;}
.h0_c00056{height:738.733333pt;}
.w1_c00056{width:93.222667pt;}
.w0_c00056{width:495.333333pt;}
.x0_c00056{left:0.000000pt;}
.x4_c00056{left:26.666667pt;}
.x5_c00056{left:28.533333pt;}
.x7_c00056{left:29.466667pt;}
.x6_c00056{left:30.400000pt;}
.xc_c00056{left:31.466667pt;}
.xb_c00056{left:32.666667pt;}
.x8_c00056{left:33.600000pt;}
.xa_c00056{left:53.333333pt;}
.x3_c00056{left:154.533333pt;}
.xd_c00056{left:204.834880pt;}
.x9_c00056{left:276.266667pt;}
.x1_c00056{left:424.000000pt;}
.x2_c00056{left:444.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_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_48b1105563739c2ff868753d.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_44e72f388f8f78c8090e60f5.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_54d4bda31eaf8bdbb5653a70.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_66a13e8a64aede4f880cef08.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;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_c00057;src:url('chunks/assets/font_d45d5c0a2bb0036b6b73439e.woff2')format("woff");}.ff5_c00057{font-family:ff5_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:ff6_c00057;src:url('chunks/assets/font_b68efbdd17b03d78f736cff4.woff2')format("woff");}.ff6_c00057{font-family:ff6_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:ff7_c00057;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00057{letter-spacing:0.000000px;}
.ls2_c00057{letter-spacing:3.000000px;}
.ls5_c00057{letter-spacing:9.000000px;}
.ls1_c00057{letter-spacing:14.325000px;}
.ls0_c00057{letter-spacing:33.600000px;}
.ls4_c00057{letter-spacing:39.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;}
}
.ws9_c00057{word-spacing:-23.460000px;}
.ws8_c00057{word-spacing:-19.629000px;}
.ws4_c00057{word-spacing:-19.500000px;}
.ws2_c00057{word-spacing:-17.250000px;}
.ws0_c00057{word-spacing:-16.629000px;}
.ws6_c00057{word-spacing:-0.897000px;}
.ws3_c00057{word-spacing:-0.357000px;}
.ws1_c00057{word-spacing:-0.048000px;}
.wsa_c00057{word-spacing:0.000000px;}
.ws7_c00057{word-spacing:0.345000px;}
.ws5_c00057{word-spacing:67.674000px;}
._2a_c00057{margin-left:-64.170000px;}
._28_c00057{margin-left:-41.745000px;}
._25_c00057{margin-left:-36.930000px;}
._27_c00057{margin-left:-33.879000px;}
._26_c00057{margin-left:-27.462000px;}
._2e_c00057{margin-left:-24.777000px;}
._8_c00057{margin-left:-16.767000px;}
._4_c00057{margin-left:-12.351000px;}
._2f_c00057{margin-left:-9.465000px;}
._10_c00057{margin-left:-8.457000px;}
._1a_c00057{margin-left:-6.846000px;}
._d_c00057{margin-left:-5.823000px;}
._22_c00057{margin-left:-4.569000px;}
._f_c00057{margin-left:-3.183000px;}
._6_c00057{margin-left:-1.164000px;}
._7_c00057{width:1.104000px;}
._3_c00057{width:2.244000px;}
._1_c00057{width:4.032000px;}
._19_c00057{width:5.058000px;}
._1c_c00057{width:6.090000px;}
._0_c00057{width:7.344000px;}
._14_c00057{width:8.625000px;}
._c_c00057{width:9.936000px;}
._b_c00057{width:11.592000px;}
._a_c00057{width:13.428000px;}
._e_c00057{width:15.618000px;}
._1d_c00057{width:16.791000px;}
._1f_c00057{width:17.841000px;}
._12_c00057{width:19.044000px;}
._11_c00057{width:21.666000px;}
._17_c00057{width:22.866000px;}
._1e_c00057{width:23.868000px;}
._18_c00057{width:25.695000px;}
._21_c00057{width:28.191000px;}
._13_c00057{width:30.084000px;}
._1b_c00057{width:32.241000px;}
._16_c00057{width:34.155000px;}
._2c_c00057{width:37.434000px;}
._15_c00057{width:41.607000px;}
._23_c00057{width:66.393000px;}
._29_c00057{width:78.591000px;}
._9_c00057{width:88.320000px;}
._20_c00057{width:97.233000px;}
._2b_c00057{width:98.601000px;}
._2d_c00057{width:101.004000px;}
._24_c00057{width:160.695000px;}
._5_c00057{width:178.089000px;}
._2_c00057{width:351.912000px;}
.fc2_c00057{color:transparent;}
.fc1_c00057{color:rgb(128,128,128);}
.fc0_c00057{color:rgb(0,0,0);}
.fs5_c00057{font-size:45.000000px;}
.fs3_c00057{font-size:48.000000px;}
.fs4_c00057{font-size:60.000000px;}
.fs1_c00057{font-size:66.000000px;}
.fs2_c00057{font-size:69.000000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y21_c00057{bottom:3.105000px;}
.y20_c00057{bottom:7.228369px;}
.y1c_c00057{bottom:66.870000px;}
.y1b_c00057{bottom:91.770000px;}
.y1f_c00057{bottom:100.470000px;}
.y1a_c00057{bottom:117.720000px;}
.y19_c00057{bottom:142.770000px;}
.y18_c00057{bottom:167.970000px;}
.y17_c00057{bottom:192.270000px;}
.y16_c00057{bottom:217.620000px;}
.y15_c00057{bottom:242.670000px;}
.y14_c00057{bottom:267.570000px;}
.y13_c00057{bottom:292.620000px;}
.y12_c00057{bottom:317.520000px;}
.y11_c00057{bottom:342.120000px;}
.y10_c00057{bottom:366.570000px;}
.yf_c00057{bottom:391.170000px;}
.y1e_c00057{bottom:407.370000px;}
.ye_c00057{bottom:416.070000px;}
.y1d_c00057{bottom:421.770000px;}
.yd_c00057{bottom:440.820000px;}
.yc_c00057{bottom:465.720000px;}
.yb_c00057{bottom:490.770000px;}
.ya_c00057{bottom:515.370000px;}
.y9_c00057{bottom:540.570000px;}
.y8_c00057{bottom:564.870000px;}
.y7_c00057{bottom:590.520000px;}
.y6_c00057{bottom:614.820000px;}
.y5_c00057{bottom:664.470000px;}
.y4_c00057{bottom:714.720000px;}
.y3_c00057{bottom:739.470000px;}
.y2_c00057{bottom:763.470000px;}
.y1_c00057{bottom:789.420000px;}
.h8_c00057{height:13.200073px;}
.h9_c00057{height:43.804688px;}
.h5_c00057{height:67.686035px;}
.h6_c00057{height:69.539062px;}
.h7_c00057{height:75.966797px;}
.h4_c00057{height:80.758301px;}
.h3_c00057{height:87.361816px;}
.h2_c00057{height:91.160156px;}
.h0_c00057{height:842.100000px;}
.h1_c00057{height:842.250000px;}
.w2_c00057{width:104.875500px;}
.w0_c00057{width:572.925000px;}
.w1_c00057{width:573.000000px;}
.x0_c00057{left:0.000000px;}
.xa_c00057{left:54.450000px;}
.x9_c00057{left:56.100000px;}
.x7_c00057{left:57.750000px;}
.xc_c00057{left:69.300000px;}
.x2_c00057{left:71.250000px;}
.xe_c00057{left:72.600000px;}
.x4_c00057{left:92.550000px;}
.x3_c00057{left:93.900000px;}
.xb_c00057{left:120.600000px;}
.x8_c00057{left:121.800000px;}
.x1_c00057{left:135.300000px;}
.x6_c00057{left:145.500000px;}
.x5_c00057{left:160.950000px;}
.xf_c00057{left:238.276749px;}
.xd_c00057{left:534.900000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls3_c00057{letter-spacing:0.000000pt;}
.ls2_c00057{letter-spacing:2.666667pt;}
.ls5_c00057{letter-spacing:8.000000pt;}
.ls1_c00057{letter-spacing:12.733333pt;}
.ls0_c00057{letter-spacing:29.866667pt;}
.ls4_c00057{letter-spacing:34.666667pt;}
.ws9_c00057{word-spacing:-20.853333pt;}
.ws8_c00057{word-spacing:-17.448000pt;}
.ws4_c00057{word-spacing:-17.333333pt;}
.ws2_c00057{word-spacing:-15.333333pt;}
.ws0_c00057{word-spacing:-14.781333pt;}
.ws6_c00057{word-spacing:-0.797333pt;}
.ws3_c00057{word-spacing:-0.317333pt;}
.ws1_c00057{word-spacing:-0.042667pt;}
.wsa_c00057{word-spacing:0.000000pt;}
.ws7_c00057{word-spacing:0.306667pt;}
.ws5_c00057{word-spacing:60.154667pt;}
._2a_c00057{margin-left:-57.040000pt;}
._28_c00057{margin-left:-37.106667pt;}
._25_c00057{margin-left:-32.826667pt;}
._27_c00057{margin-left:-30.114667pt;}
._26_c00057{margin-left:-24.410667pt;}
._2e_c00057{margin-left:-22.024000pt;}
._8_c00057{margin-left:-14.904000pt;}
._4_c00057{margin-left:-10.978667pt;}
._2f_c00057{margin-left:-8.413333pt;}
._10_c00057{margin-left:-7.517333pt;}
._1a_c00057{margin-left:-6.085333pt;}
._d_c00057{margin-left:-5.176000pt;}
._22_c00057{margin-left:-4.061333pt;}
._f_c00057{margin-left:-2.829333pt;}
._6_c00057{margin-left:-1.034667pt;}
._7_c00057{width:0.981333pt;}
._3_c00057{width:1.994667pt;}
._1_c00057{width:3.584000pt;}
._19_c00057{width:4.496000pt;}
._1c_c00057{width:5.413333pt;}
._0_c00057{width:6.528000pt;}
._14_c00057{width:7.666667pt;}
._c_c00057{width:8.832000pt;}
._b_c00057{width:10.304000pt;}
._a_c00057{width:11.936000pt;}
._e_c00057{width:13.882667pt;}
._1d_c00057{width:14.925333pt;}
._1f_c00057{width:15.858667pt;}
._12_c00057{width:16.928000pt;}
._11_c00057{width:19.258667pt;}
._17_c00057{width:20.325333pt;}
._1e_c00057{width:21.216000pt;}
._18_c00057{width:22.840000pt;}
._21_c00057{width:25.058667pt;}
._13_c00057{width:26.741333pt;}
._1b_c00057{width:28.658667pt;}
._16_c00057{width:30.360000pt;}
._2c_c00057{width:33.274667pt;}
._15_c00057{width:36.984000pt;}
._23_c00057{width:59.016000pt;}
._29_c00057{width:69.858667pt;}
._9_c00057{width:78.506667pt;}
._20_c00057{width:86.429333pt;}
._2b_c00057{width:87.645333pt;}
._2d_c00057{width:89.781333pt;}
._24_c00057{width:142.840000pt;}
._5_c00057{width:158.301333pt;}
._2_c00057{width:312.810667pt;}
.fs5_c00057{font-size:40.000000pt;}
.fs3_c00057{font-size:42.666667pt;}
.fs4_c00057{font-size:53.333333pt;}
.fs1_c00057{font-size:58.666667pt;}
.fs2_c00057{font-size:61.333333pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y21_c00057{bottom:2.760000pt;}
.y20_c00057{bottom:6.425217pt;}
.y1c_c00057{bottom:59.440000pt;}
.y1b_c00057{bottom:81.573333pt;}
.y1f_c00057{bottom:89.306667pt;}
.y1a_c00057{bottom:104.640000pt;}
.y19_c00057{bottom:126.906667pt;}
.y18_c00057{bottom:149.306667pt;}
.y17_c00057{bottom:170.906667pt;}
.y16_c00057{bottom:193.440000pt;}
.y15_c00057{bottom:215.706667pt;}
.y14_c00057{bottom:237.840000pt;}
.y13_c00057{bottom:260.106667pt;}
.y12_c00057{bottom:282.240000pt;}
.y11_c00057{bottom:304.106667pt;}
.y10_c00057{bottom:325.840000pt;}
.yf_c00057{bottom:347.706667pt;}
.y1e_c00057{bottom:362.106667pt;}
.ye_c00057{bottom:369.840000pt;}
.y1d_c00057{bottom:374.906667pt;}
.yd_c00057{bottom:391.840000pt;}
.yc_c00057{bottom:413.973333pt;}
.yb_c00057{bottom:436.240000pt;}
.ya_c00057{bottom:458.106667pt;}
.y9_c00057{bottom:480.506667pt;}
.y8_c00057{bottom:502.106667pt;}
.y7_c00057{bottom:524.906667pt;}
.y6_c00057{bottom:546.506667pt;}
.y5_c00057{bottom:590.640000pt;}
.y4_c00057{bottom:635.306667pt;}
.y3_c00057{bottom:657.306667pt;}
.y2_c00057{bottom:678.640000pt;}
.y1_c00057{bottom:701.706667pt;}
.h8_c00057{height:11.733399pt;}
.h9_c00057{height:38.937500pt;}
.h5_c00057{height:60.165365pt;}
.h6_c00057{height:61.812500pt;}
.h7_c00057{height:67.526042pt;}
.h4_c00057{height:71.785156pt;}
.h3_c00057{height:77.654948pt;}
.h2_c00057{height:81.031250pt;}
.h0_c00057{height:748.533333pt;}
.h1_c00057{height:748.666667pt;}
.w2_c00057{width:93.222667pt;}
.w0_c00057{width:509.266667pt;}
.w1_c00057{width:509.333333pt;}
.x0_c00057{left:0.000000pt;}
.xa_c00057{left:48.400000pt;}
.x9_c00057{left:49.866667pt;}
.x7_c00057{left:51.333333pt;}
.xc_c00057{left:61.600000pt;}
.x2_c00057{left:63.333333pt;}
.xe_c00057{left:64.533333pt;}
.x4_c00057{left:82.266667pt;}
.x3_c00057{left:83.466667pt;}
.xb_c00057{left:107.200000pt;}
.x8_c00057{left:108.266667pt;}
.x1_c00057{left:120.266667pt;}
.x6_c00057{left:129.333333pt;}
.x5_c00057{left:143.066667pt;}
.xf_c00057{left:211.801554pt;}
.xd_c00057{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_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_3db628e36ceb284f719b24dd.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_18eea4debd40910ba0d41fee.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_b340bed25f863787a3ac73f2.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00058{font-family:ff4_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:ff5_c00058;src:url('chunks/assets/font_75ba70db413959cf8893e62c.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00058{font-family:ff6_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;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls2_c00058{letter-spacing:3.000000px;}
.ls3_c00058{letter-spacing:6.000000px;}
.ls0_c00058{letter-spacing:547.971000px;}
.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;}
}
.ws4_c00058{word-spacing:-47.022000px;}
.ws1_c00058{word-spacing:-21.906000px;}
.ws3_c00058{word-spacing:-17.250000px;}
.ws0_c00058{word-spacing:-16.629000px;}
.ws2_c00058{word-spacing:-2.832000px;}
.ws5_c00058{word-spacing:0.000000px;}
._25_c00058{margin-left:-29.049000px;}
._15_c00058{margin-left:-14.673000px;}
._19_c00058{margin-left:-12.099000px;}
._2_c00058{margin-left:-10.488000px;}
._e_c00058{margin-left:-7.539000px;}
._23_c00058{margin-left:-6.531000px;}
._5_c00058{margin-left:-5.451000px;}
._3_c00058{margin-left:-3.864000px;}
._6_c00058{margin-left:-2.346000px;}
._4_c00058{margin-left:-1.035000px;}
._0_c00058{width:1.794000px;}
._1_c00058{width:2.829000px;}
._7_c00058{width:3.864000px;}
._8_c00058{width:5.832000px;}
._9_c00058{width:7.038000px;}
._b_c00058{width:8.076000px;}
._c_c00058{width:9.513000px;}
._d_c00058{width:10.980000px;}
._a_c00058{width:12.048000px;}
._14_c00058{width:13.386000px;}
._17_c00058{width:14.592000px;}
._16_c00058{width:15.594000px;}
._11_c00058{width:16.962000px;}
._18_c00058{width:18.033000px;}
._13_c00058{width:20.172000px;}
._12_c00058{width:21.510000px;}
._1a_c00058{width:22.590000px;}
._1c_c00058{width:24.030000px;}
._1b_c00058{width:25.263000px;}
._10_c00058{width:26.268000px;}
._22_c00058{width:32.418000px;}
._21_c00058{width:34.359000px;}
._20_c00058{width:36.192000px;}
._1e_c00058{width:39.549000px;}
._f_c00058{width:40.824000px;}
._1f_c00058{width:48.231000px;}
._1d_c00058{width:91.986000px;}
._24_c00058{width:204.432000px;}
._26_c00058{width:487.374000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(128,128,128);}
.fc0_c00058{color:rgb(0,0,0);}
.fs3_c00058{font-size:48.000000px;}
.fs2_c00058{font-size:66.000000px;}
.fs0_c00058{font-size:69.000000px;}
.fs1_c00058{font-size:78.000000px;}
.y0_c00058{bottom:0.000000px;}
.y1f_c00058{bottom:3.105000px;}
.y1e_c00058{bottom:7.228371px;}
.y1d_c00058{bottom:60.765000px;}
.y1c_c00058{bottom:84.915000px;}
.y1b_c00058{bottom:110.115000px;}
.y1a_c00058{bottom:135.315000px;}
.y19_c00058{bottom:159.615000px;}
.y18_c00058{bottom:184.365000px;}
.y17_c00058{bottom:208.665000px;}
.y16_c00058{bottom:234.015000px;}
.y15_c00058{bottom:258.915000px;}
.y14_c00058{bottom:283.815000px;}
.y13_c00058{bottom:308.565000px;}
.y12_c00058{bottom:332.865000px;}
.y11_c00058{bottom:357.765000px;}
.y10_c00058{bottom:382.065000px;}
.yf_c00058{bottom:406.665000px;}
.ye_c00058{bottom:431.715000px;}
.yd_c00058{bottom:456.315000px;}
.yc_c00058{bottom:480.315000px;}
.yb_c00058{bottom:504.615000px;}
.ya_c00058{bottom:528.615000px;}
.y9_c00058{bottom:553.815000px;}
.y8_c00058{bottom:578.265000px;}
.y7_c00058{bottom:603.915000px;}
.y6_c00058{bottom:628.065000px;}
.y5_c00058{bottom:652.815000px;}
.y4_c00058{bottom:677.415000px;}
.y3_c00058{bottom:726.765000px;}
.y2_c00058{bottom:751.665000px;}
.y1_c00058{bottom:776.715000px;}
.h6_c00058{height:13.200074px;}
.h7_c00058{height:43.804688px;}
.h5_c00058{height:67.686035px;}
.h4_c00058{height:67.719727px;}
.h3_c00058{height:87.361816px;}
.h2_c00058{height:98.756836px;}
.h0_c00058{height:825.675000px;}
.h1_c00058{height:825.750000px;}
.w1_c00058{width:104.875500px;}
.w0_c00058{width:553.500000px;}
.x0_c00058{left:0.000000px;}
.x2_c00058{left:36.000000px;}
.x6_c00058{left:37.050000px;}
.x3_c00058{left:39.150000px;}
.x5_c00058{left:60.750000px;}
.x4_c00058{left:77.250000px;}
.x1_c00058{left:183.900000px;}
.x8_c00058{left:228.564240px;}
.x7_c00058{left:296.250000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls2_c00058{letter-spacing:2.666667pt;}
.ls3_c00058{letter-spacing:5.333333pt;}
.ls0_c00058{letter-spacing:487.085333pt;}
.ws4_c00058{word-spacing:-41.797333pt;}
.ws1_c00058{word-spacing:-19.472000pt;}
.ws3_c00058{word-spacing:-15.333333pt;}
.ws0_c00058{word-spacing:-14.781333pt;}
.ws2_c00058{word-spacing:-2.517333pt;}
.ws5_c00058{word-spacing:0.000000pt;}
._25_c00058{margin-left:-25.821333pt;}
._15_c00058{margin-left:-13.042667pt;}
._19_c00058{margin-left:-10.754667pt;}
._2_c00058{margin-left:-9.322667pt;}
._e_c00058{margin-left:-6.701333pt;}
._23_c00058{margin-left:-5.805333pt;}
._5_c00058{margin-left:-4.845333pt;}
._3_c00058{margin-left:-3.434667pt;}
._6_c00058{margin-left:-2.085333pt;}
._4_c00058{margin-left:-0.920000pt;}
._0_c00058{width:1.594667pt;}
._1_c00058{width:2.514667pt;}
._7_c00058{width:3.434667pt;}
._8_c00058{width:5.184000pt;}
._9_c00058{width:6.256000pt;}
._b_c00058{width:7.178667pt;}
._c_c00058{width:8.456000pt;}
._d_c00058{width:9.760000pt;}
._a_c00058{width:10.709333pt;}
._14_c00058{width:11.898667pt;}
._17_c00058{width:12.970667pt;}
._16_c00058{width:13.861333pt;}
._11_c00058{width:15.077333pt;}
._18_c00058{width:16.029333pt;}
._13_c00058{width:17.930667pt;}
._12_c00058{width:19.120000pt;}
._1a_c00058{width:20.080000pt;}
._1c_c00058{width:21.360000pt;}
._1b_c00058{width:22.456000pt;}
._10_c00058{width:23.349333pt;}
._22_c00058{width:28.816000pt;}
._21_c00058{width:30.541333pt;}
._20_c00058{width:32.170667pt;}
._1e_c00058{width:35.154667pt;}
._f_c00058{width:36.288000pt;}
._1f_c00058{width:42.872000pt;}
._1d_c00058{width:81.765333pt;}
._24_c00058{width:181.717333pt;}
._26_c00058{width:433.221333pt;}
.fs3_c00058{font-size:42.666667pt;}
.fs2_c00058{font-size:58.666667pt;}
.fs0_c00058{font-size:61.333333pt;}
.fs1_c00058{font-size:69.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y1f_c00058{bottom:2.760000pt;}
.y1e_c00058{bottom:6.425219pt;}
.y1d_c00058{bottom:54.013333pt;}
.y1c_c00058{bottom:75.480000pt;}
.y1b_c00058{bottom:97.880000pt;}
.y1a_c00058{bottom:120.280000pt;}
.y19_c00058{bottom:141.880000pt;}
.y18_c00058{bottom:163.880000pt;}
.y17_c00058{bottom:185.480000pt;}
.y16_c00058{bottom:208.013333pt;}
.y15_c00058{bottom:230.146667pt;}
.y14_c00058{bottom:252.280000pt;}
.y13_c00058{bottom:274.280000pt;}
.y12_c00058{bottom:295.880000pt;}
.y11_c00058{bottom:318.013333pt;}
.y10_c00058{bottom:339.613333pt;}
.yf_c00058{bottom:361.480000pt;}
.ye_c00058{bottom:383.746667pt;}
.yd_c00058{bottom:405.613333pt;}
.yc_c00058{bottom:426.946667pt;}
.yb_c00058{bottom:448.546667pt;}
.ya_c00058{bottom:469.880000pt;}
.y9_c00058{bottom:492.280000pt;}
.y8_c00058{bottom:514.013333pt;}
.y7_c00058{bottom:536.813333pt;}
.y6_c00058{bottom:558.280000pt;}
.y5_c00058{bottom:580.280000pt;}
.y4_c00058{bottom:602.146667pt;}
.y3_c00058{bottom:646.013333pt;}
.y2_c00058{bottom:668.146667pt;}
.y1_c00058{bottom:690.413333pt;}
.h6_c00058{height:11.733399pt;}
.h7_c00058{height:38.937500pt;}
.h5_c00058{height:60.165365pt;}
.h4_c00058{height:60.195312pt;}
.h3_c00058{height:77.654948pt;}
.h2_c00058{height:87.783854pt;}
.h0_c00058{height:733.933333pt;}
.h1_c00058{height:734.000000pt;}
.w1_c00058{width:93.222667pt;}
.w0_c00058{width:492.000000pt;}
.x0_c00058{left:0.000000pt;}
.x2_c00058{left:32.000000pt;}
.x6_c00058{left:32.933333pt;}
.x3_c00058{left:34.800000pt;}
.x5_c00058{left:54.000000pt;}
.x4_c00058{left:68.666667pt;}
.x1_c00058{left:163.466667pt;}
.x8_c00058{left:203.168213pt;}
.x7_c00058{left:263.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_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_2390a37a6f4e7780bf4baf96.woff2')format("woff");}.ff1_c00059{font-family:ff1_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:ff2_c00059;src:url('chunks/assets/font_acb64ba17dd5e7627f012741.woff2')format("woff");}.ff2_c00059{font-family:ff2_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:ff3_c00059;src:url('chunks/assets/font_3e1d979c676293788fcd46ff.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;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_c00059;src:url('chunks/assets/font_5f133ab74e0f82ee7c6de388.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;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_c00059;src:url('chunks/assets/font_a04e84183eb5d2acd344b981.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff6_c00059{font-family:ff6_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:ff7_c00059;src:url('chunks/assets/font_8cd2f3375705c4b76ddb34c8.woff2')format("woff");}.ff7_c00059{font-family:ff7_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:ff8_c00059;src:url('chunks/assets/font_6fe3ccb7e7e70a3cbc39eb10.woff2')format("woff");}.ff8_c00059{font-family:ff8_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:ff9_c00059;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00059{font-family:ff9_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;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.lsa_c00059{letter-spacing:-6.000000px;}
.ls6_c00059{letter-spacing:0.000000px;}
.ls7_c00059{letter-spacing:3.000000px;}
.ls2_c00059{letter-spacing:3.600000px;}
.ls9_c00059{letter-spacing:6.000000px;}
.ls1_c00059{letter-spacing:6.144000px;}
.ls8_c00059{letter-spacing:9.000000px;}
.ls4_c00059{letter-spacing:9.294000px;}
.ls0_c00059{letter-spacing:9.744000px;}
.ls5_c00059{letter-spacing:14.325000px;}
.ls3_c00059{letter-spacing:14.850000px;}
.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:-38.136000px;}
.ws2_c00059{word-spacing:-27.075000px;}
.ws0_c00059{word-spacing:-16.629000px;}
.ws4_c00059{word-spacing:0.000000px;}
.ws3_c00059{word-spacing:0.138000px;}
._22_c00059{margin-left:-22.287000px;}
._9_c00059{margin-left:-20.355000px;}
._18_c00059{margin-left:-14.904000px;}
._2a_c00059{margin-left:-13.443000px;}
._17_c00059{margin-left:-11.799000px;}
._e_c00059{margin-left:-8.970000px;}
._d_c00059{margin-left:-7.452000px;}
._15_c00059{margin-left:-5.589000px;}
._f_c00059{margin-left:-4.554000px;}
._5_c00059{margin-left:-2.829000px;}
._0_c00059{margin-left:-1.242000px;}
._6_c00059{width:1.725000px;}
._11_c00059{width:2.898000px;}
._2_c00059{width:4.002000px;}
._12_c00059{width:5.175000px;}
._4_c00059{width:6.210000px;}
._3_c00059{width:7.383000px;}
._7_c00059{width:9.315000px;}
._8_c00059{width:10.626000px;}
._14_c00059{width:11.937000px;}
._13_c00059{width:13.662000px;}
._1f_c00059{width:15.699000px;}
._1a_c00059{width:17.079000px;}
._a_c00059{width:18.147000px;}
._c_c00059{width:20.907000px;}
._b_c00059{width:22.563000px;}
._1d_c00059{width:25.323000px;}
._27_c00059{width:27.147000px;}
._20_c00059{width:30.459000px;}
._29_c00059{width:32.688000px;}
._25_c00059{width:33.948000px;}
._21_c00059{width:39.975000px;}
._19_c00059{width:41.193000px;}
._10_c00059{width:43.107000px;}
._1c_c00059{width:44.937000px;}
._23_c00059{width:58.926000px;}
._24_c00059{width:63.342000px;}
._28_c00059{width:94.395000px;}
._1_c00059{width:98.361000px;}
._16_c00059{width:102.948000px;}
._26_c00059{width:129.513000px;}
._1e_c00059{width:293.802000px;}
._1b_c00059{width:299.853000px;}
.fc2_c00059{color:transparent;}
.fc1_c00059{color:rgb(128,128,128);}
.fc0_c00059{color:rgb(0,0,0);}
.fs6_c00059{font-size:39.000000px;}
.fs1_c00059{font-size:45.000000px;}
.fs8_c00059{font-size:48.000000px;}
.fs7_c00059{font-size:57.000000px;}
.fs5_c00059{font-size:66.000000px;}
.fs0_c00059{font-size:69.000000px;}
.fs4_c00059{font-size:75.000000px;}
.fs3_c00059{font-size:81.000000px;}
.fs2_c00059{font-size:84.000000px;}
.y0_c00059{bottom:0.000000px;}
.y1e_c00059{bottom:3.105000px;}
.y1d_c00059{bottom:7.228369px;}
.y1b_c00059{bottom:98.820000px;}
.y1a_c00059{bottom:126.120000px;}
.y19_c00059{bottom:150.870000px;}
.y18_c00059{bottom:176.220000px;}
.y17_c00059{bottom:201.720000px;}
.y16_c00059{bottom:225.720000px;}
.y15_c00059{bottom:250.470000px;}
.y14_c00059{bottom:275.370000px;}
.y1c_c00059{bottom:286.170000px;}
.y13_c00059{bottom:300.270000px;}
.y12_c00059{bottom:324.270000px;}
.y11_c00059{bottom:349.620000px;}
.y10_c00059{bottom:373.320000px;}
.yf_c00059{bottom:397.920000px;}
.ye_c00059{bottom:423.120000px;}
.yd_c00059{bottom:447.120000px;}
.yc_c00059{bottom:497.820000px;}
.yb_c00059{bottom:547.470000px;}
.ya_c00059{bottom:571.020000px;}
.y9_c00059{bottom:596.970000px;}
.y8_c00059{bottom:615.270000px;}
.y7_c00059{bottom:622.320000px;}
.y6_c00059{bottom:646.320000px;}
.y5_c00059{bottom:671.220000px;}
.y4_c00059{bottom:695.820000px;}
.y3_c00059{bottom:720.570000px;}
.y2_c00059{bottom:746.220000px;}
.y1_c00059{bottom:770.070000px;}
.h7_c00059{height:13.200073px;}
.h8_c00059{height:43.804688px;}
.h6_c00059{height:55.942383px;}
.h3_c00059{height:56.975098px;}
.h5_c00059{height:67.686035px;}
.h2_c00059{height:87.361816px;}
.h4_c00059{height:94.958496px;}
.h0_c00059{height:842.100000px;}
.h1_c00059{height:842.250000px;}
.w2_c00059{width:104.875500px;}
.w0_c00059{width:572.925000px;}
.w1_c00059{width:573.000000px;}
.x0_c00059{left:0.000000px;}
.xd_c00059{left:48.300000px;}
.x8_c00059{left:50.250000px;}
.xc_c00059{left:51.300000px;}
.x2_c00059{left:55.950000px;}
.x5_c00059{left:58.050000px;}
.xb_c00059{left:63.450000px;}
.x1_c00059{left:72.900000px;}
.xa_c00059{left:113.100000px;}
.x4_c00059{left:120.450000px;}
.x3_c00059{left:121.800000px;}
.x9_c00059{left:138.450000px;}
.x7_c00059{left:156.600000px;}
.x6_c00059{left:173.700000px;}
.xe_c00059{left:238.276749px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.lsa_c00059{letter-spacing:-5.333333pt;}
.ls6_c00059{letter-spacing:0.000000pt;}
.ls7_c00059{letter-spacing:2.666667pt;}
.ls2_c00059{letter-spacing:3.200000pt;}
.ls9_c00059{letter-spacing:5.333333pt;}
.ls1_c00059{letter-spacing:5.461333pt;}
.ls8_c00059{letter-spacing:8.000000pt;}
.ls4_c00059{letter-spacing:8.261333pt;}
.ls0_c00059{letter-spacing:8.661333pt;}
.ls5_c00059{letter-spacing:12.733333pt;}
.ls3_c00059{letter-spacing:13.200000pt;}
.ws1_c00059{word-spacing:-33.898667pt;}
.ws2_c00059{word-spacing:-24.066667pt;}
.ws0_c00059{word-spacing:-14.781333pt;}
.ws4_c00059{word-spacing:0.000000pt;}
.ws3_c00059{word-spacing:0.122667pt;}
._22_c00059{margin-left:-19.810667pt;}
._9_c00059{margin-left:-18.093333pt;}
._18_c00059{margin-left:-13.248000pt;}
._2a_c00059{margin-left:-11.949333pt;}
._17_c00059{margin-left:-10.488000pt;}
._e_c00059{margin-left:-7.973333pt;}
._d_c00059{margin-left:-6.624000pt;}
._15_c00059{margin-left:-4.968000pt;}
._f_c00059{margin-left:-4.048000pt;}
._5_c00059{margin-left:-2.514667pt;}
._0_c00059{margin-left:-1.104000pt;}
._6_c00059{width:1.533333pt;}
._11_c00059{width:2.576000pt;}
._2_c00059{width:3.557333pt;}
._12_c00059{width:4.600000pt;}
._4_c00059{width:5.520000pt;}
._3_c00059{width:6.562667pt;}
._7_c00059{width:8.280000pt;}
._8_c00059{width:9.445333pt;}
._14_c00059{width:10.610667pt;}
._13_c00059{width:12.144000pt;}
._1f_c00059{width:13.954667pt;}
._1a_c00059{width:15.181333pt;}
._a_c00059{width:16.130667pt;}
._c_c00059{width:18.584000pt;}
._b_c00059{width:20.056000pt;}
._1d_c00059{width:22.509333pt;}
._27_c00059{width:24.130667pt;}
._20_c00059{width:27.074667pt;}
._29_c00059{width:29.056000pt;}
._25_c00059{width:30.176000pt;}
._21_c00059{width:35.533333pt;}
._19_c00059{width:36.616000pt;}
._10_c00059{width:38.317333pt;}
._1c_c00059{width:39.944000pt;}
._23_c00059{width:52.378667pt;}
._24_c00059{width:56.304000pt;}
._28_c00059{width:83.906667pt;}
._1_c00059{width:87.432000pt;}
._16_c00059{width:91.509333pt;}
._26_c00059{width:115.122667pt;}
._1e_c00059{width:261.157333pt;}
._1b_c00059{width:266.536000pt;}
.fs6_c00059{font-size:34.666667pt;}
.fs1_c00059{font-size:40.000000pt;}
.fs8_c00059{font-size:42.666667pt;}
.fs7_c00059{font-size:50.666667pt;}
.fs5_c00059{font-size:58.666667pt;}
.fs0_c00059{font-size:61.333333pt;}
.fs4_c00059{font-size:66.666667pt;}
.fs3_c00059{font-size:72.000000pt;}
.fs2_c00059{font-size:74.666667pt;}
.y0_c00059{bottom:0.000000pt;}
.y1e_c00059{bottom:2.760000pt;}
.y1d_c00059{bottom:6.425217pt;}
.y1b_c00059{bottom:87.840000pt;}
.y1a_c00059{bottom:112.106667pt;}
.y19_c00059{bottom:134.106667pt;}
.y18_c00059{bottom:156.640000pt;}
.y17_c00059{bottom:179.306667pt;}
.y16_c00059{bottom:200.640000pt;}
.y15_c00059{bottom:222.640000pt;}
.y14_c00059{bottom:244.773333pt;}
.y1c_c00059{bottom:254.373333pt;}
.y13_c00059{bottom:266.906667pt;}
.y12_c00059{bottom:288.240000pt;}
.y11_c00059{bottom:310.773333pt;}
.y10_c00059{bottom:331.840000pt;}
.yf_c00059{bottom:353.706667pt;}
.ye_c00059{bottom:376.106667pt;}
.yd_c00059{bottom:397.440000pt;}
.yc_c00059{bottom:442.506667pt;}
.yb_c00059{bottom:486.640000pt;}
.ya_c00059{bottom:507.573333pt;}
.y9_c00059{bottom:530.640000pt;}
.y8_c00059{bottom:546.906667pt;}
.y7_c00059{bottom:553.173333pt;}
.y6_c00059{bottom:574.506667pt;}
.y5_c00059{bottom:596.640000pt;}
.y4_c00059{bottom:618.506667pt;}
.y3_c00059{bottom:640.506667pt;}
.y2_c00059{bottom:663.306667pt;}
.y1_c00059{bottom:684.506667pt;}
.h7_c00059{height:11.733399pt;}
.h8_c00059{height:38.937500pt;}
.h6_c00059{height:49.726562pt;}
.h3_c00059{height:50.644531pt;}
.h5_c00059{height:60.165365pt;}
.h2_c00059{height:77.654948pt;}
.h4_c00059{height:84.407552pt;}
.h0_c00059{height:748.533333pt;}
.h1_c00059{height:748.666667pt;}
.w2_c00059{width:93.222667pt;}
.w0_c00059{width:509.266667pt;}
.w1_c00059{width:509.333333pt;}
.x0_c00059{left:0.000000pt;}
.xd_c00059{left:42.933333pt;}
.x8_c00059{left:44.666667pt;}
.xc_c00059{left:45.600000pt;}
.x2_c00059{left:49.733333pt;}
.x5_c00059{left:51.600000pt;}
.xb_c00059{left:56.400000pt;}
.x1_c00059{left:64.800000pt;}
.xa_c00059{left:100.533333pt;}
.x4_c00059{left:107.066667pt;}
.x3_c00059{left:108.266667pt;}
.x9_c00059{left:123.066667pt;}
.x7_c00059{left:139.200000pt;}
.x6_c00059{left:154.400000pt;}
.xe_c00059{left:211.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_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_db2dbd933b950944ad80f264.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_59042a4a81ab67dbeb41303c.woff2')format("woff");}.ff2_c00060{font-family:ff2_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:ff3_c00060;src:url('chunks/assets/font_be9c384b58cb116dc7643a0f.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_d5234cebbc2c03476b58505a.woff2')format("woff");}.ff4_c00060{font-family:ff4_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:ff5_c00060;src:url('chunks/assets/font_36e65fbca059addf8f5e0e6b.woff2')format("woff");}.ff5_c00060{font-family:ff5_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:ff6_c00060;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00060{font-family:ff6_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;}
.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;}
.ls3_c00060{letter-spacing:0.000000px;}
.ls1_c00060{letter-spacing:2.400000px;}
.ls4_c00060{letter-spacing:3.000000px;}
.ls2_c00060{letter-spacing:5.580000px;}
.ls0_c00060{letter-spacing:10.200000px;}
.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;}
}
.ws6_c00060{word-spacing:-56.235000px;}
.ws0_c00060{word-spacing:-19.629000px;}
.ws3_c00060{word-spacing:-16.629000px;}
.ws1_c00060{word-spacing:-13.014000px;}
.ws8_c00060{word-spacing:0.000000px;}
.ws4_c00060{word-spacing:0.966000px;}
.ws5_c00060{word-spacing:1.449000px;}
.ws2_c00060{word-spacing:2.208000px;}
.ws7_c00060{word-spacing:4.623000px;}
._2d_c00060{margin-left:-24.327000px;}
._19_c00060{margin-left:-17.043000px;}
._33_c00060{margin-left:-16.035000px;}
._2b_c00060{margin-left:-13.869000px;}
._18_c00060{margin-left:-12.681000px;}
._1c_c00060{margin-left:-11.109000px;}
._1a_c00060{margin-left:-9.738000px;}
._15_c00060{margin-left:-8.649000px;}
._3_c00060{margin-left:-7.521000px;}
._20_c00060{margin-left:-6.339000px;}
._6_c00060{margin-left:-5.106000px;}
._4_c00060{margin-left:-3.312000px;}
._5_c00060{margin-left:-1.587000px;}
._9_c00060{width:1.104000px;}
._1_c00060{width:2.346000px;}
._14_c00060{width:3.780000px;}
._2_c00060{width:4.899000px;}
._0_c00060{width:6.003000px;}
._b_c00060{width:7.695000px;}
._8_c00060{width:8.832000px;}
._27_c00060{width:10.119000px;}
._12_c00060{width:11.175000px;}
._d_c00060{width:12.735000px;}
._29_c00060{width:13.737000px;}
._13_c00060{width:15.015000px;}
._a_c00060{width:16.767000px;}
._11_c00060{width:18.810000px;}
._c_c00060{width:21.555000px;}
._16_c00060{width:23.097000px;}
._10_c00060{width:24.204000px;}
._f_c00060{width:26.106000px;}
._e_c00060{width:27.855000px;}
._2e_c00060{width:29.589000px;}
._17_c00060{width:38.538000px;}
._30_c00060{width:39.603000px;}
._1e_c00060{width:43.413000px;}
._2a_c00060{width:53.904000px;}
._32_c00060{width:73.950000px;}
._23_c00060{width:78.345000px;}
._2c_c00060{width:84.633000px;}
._31_c00060{width:95.766000px;}
._25_c00060{width:99.237000px;}
._1d_c00060{width:128.148000px;}
._24_c00060{width:144.348000px;}
._1b_c00060{width:156.750000px;}
._22_c00060{width:169.083000px;}
._26_c00060{width:173.721000px;}
._21_c00060{width:176.640000px;}
._28_c00060{width:186.273000px;}
._2f_c00060{width:216.207000px;}
._1f_c00060{width:254.025000px;}
._7_c00060{width:520.734000px;}
._35_c00060{width:537.159000px;}
._34_c00060{width:810.750000px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(128,128,128);}
.fc0_c00060{color:rgb(0,0,0);}
.fs2_c00060{font-size:45.000000px;}
.fs6_c00060{font-size:48.000000px;}
.fs3_c00060{font-size:51.000000px;}
.fs4_c00060{font-size:54.000000px;}
.fs5_c00060{font-size:55.200000px;}
.fs1_c00060{font-size:66.000000px;}
.fs0_c00060{font-size:69.000000px;}
.y0_c00060{bottom:0.000000px;}
.y20_c00060{bottom:3.105000px;}
.y1f_c00060{bottom:7.228371px;}
.y1e_c00060{bottom:57.765000px;}
.y1d_c00060{bottom:83.715000px;}
.y1c_c00060{bottom:108.015000px;}
.y1b_c00060{bottom:132.765000px;}
.y1a_c00060{bottom:157.365000px;}
.y19_c00060{bottom:181.665000px;}
.y18_c00060{bottom:205.215000px;}
.y17_c00060{bottom:231.915000px;}
.y16_c00060{bottom:256.815000px;}
.y15_c00060{bottom:280.815000px;}
.y14_c00060{bottom:306.465000px;}
.y13_c00060{bottom:328.515000px;}
.y12_c00060{bottom:355.365000px;}
.y11_c00060{bottom:378.015000px;}
.y10_c00060{bottom:404.115000px;}
.yf_c00060{bottom:428.415000px;}
.ye_c00060{bottom:449.265000px;}
.yd_c00060{bottom:456.015000px;}
.yc_c00060{bottom:478.665000px;}
.yb_c00060{bottom:502.965000px;}
.ya_c00060{bottom:526.515000px;}
.y9_c00060{bottom:576.915000px;}
.y8_c00060{bottom:630.765000px;}
.y7_c00060{bottom:647.115000px;}
.y6_c00060{bottom:664.665000px;}
.y5_c00060{bottom:690.165000px;}
.y4_c00060{bottom:699.765000px;}
.y3_c00060{bottom:724.665000px;}
.y2_c00060{bottom:750.015000px;}
.y1_c00060{bottom:775.365000px;}
.h7_c00060{height:13.200074px;}
.h8_c00060{height:43.804688px;}
.h3_c00060{height:52.668457px;}
.h4_c00060{height:64.571777px;}
.h5_c00060{height:68.370117px;}
.h6_c00060{height:80.758301px;}
.h2_c00060{height:87.361816px;}
.h1_c00060{height:831.000000px;}
.h0_c00060{height:831.075000px;}
.w1_c00060{width:104.875500px;}
.w0_c00060{width:557.250000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:39.450000px;}
.x7_c00060{left:40.800000px;}
.x9_c00060{left:42.150000px;}
.xa_c00060{left:43.500000px;}
.x4_c00060{left:57.000000px;}
.xb_c00060{left:59.700000px;}
.x6_c00060{left:65.400000px;}
.x5_c00060{left:72.150000px;}
.x8_c00060{left:102.150000px;}
.x3_c00060{left:184.950000px;}
.x1_c00060{left:193.350000px;}
.xc_c00060{left:230.439240px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls3_c00060{letter-spacing:0.000000pt;}
.ls1_c00060{letter-spacing:2.133333pt;}
.ls4_c00060{letter-spacing:2.666667pt;}
.ls2_c00060{letter-spacing:4.960000pt;}
.ls0_c00060{letter-spacing:9.066667pt;}
.ws6_c00060{word-spacing:-49.986667pt;}
.ws0_c00060{word-spacing:-17.448000pt;}
.ws3_c00060{word-spacing:-14.781333pt;}
.ws1_c00060{word-spacing:-11.568000pt;}
.ws8_c00060{word-spacing:0.000000pt;}
.ws4_c00060{word-spacing:0.858667pt;}
.ws5_c00060{word-spacing:1.288000pt;}
.ws2_c00060{word-spacing:1.962667pt;}
.ws7_c00060{word-spacing:4.109333pt;}
._2d_c00060{margin-left:-21.624000pt;}
._19_c00060{margin-left:-15.149333pt;}
._33_c00060{margin-left:-14.253333pt;}
._2b_c00060{margin-left:-12.328000pt;}
._18_c00060{margin-left:-11.272000pt;}
._1c_c00060{margin-left:-9.874667pt;}
._1a_c00060{margin-left:-8.656000pt;}
._15_c00060{margin-left:-7.688000pt;}
._3_c00060{margin-left:-6.685333pt;}
._20_c00060{margin-left:-5.634667pt;}
._6_c00060{margin-left:-4.538667pt;}
._4_c00060{margin-left:-2.944000pt;}
._5_c00060{margin-left:-1.410667pt;}
._9_c00060{width:0.981333pt;}
._1_c00060{width:2.085333pt;}
._14_c00060{width:3.360000pt;}
._2_c00060{width:4.354667pt;}
._0_c00060{width:5.336000pt;}
._b_c00060{width:6.840000pt;}
._8_c00060{width:7.850667pt;}
._27_c00060{width:8.994667pt;}
._12_c00060{width:9.933333pt;}
._d_c00060{width:11.320000pt;}
._29_c00060{width:12.210667pt;}
._13_c00060{width:13.346667pt;}
._a_c00060{width:14.904000pt;}
._11_c00060{width:16.720000pt;}
._c_c00060{width:19.160000pt;}
._16_c00060{width:20.530667pt;}
._10_c00060{width:21.514667pt;}
._f_c00060{width:23.205333pt;}
._e_c00060{width:24.760000pt;}
._2e_c00060{width:26.301333pt;}
._17_c00060{width:34.256000pt;}
._30_c00060{width:35.202667pt;}
._1e_c00060{width:38.589333pt;}
._2a_c00060{width:47.914667pt;}
._32_c00060{width:65.733333pt;}
._23_c00060{width:69.640000pt;}
._2c_c00060{width:75.229333pt;}
._31_c00060{width:85.125333pt;}
._25_c00060{width:88.210667pt;}
._1d_c00060{width:113.909333pt;}
._24_c00060{width:128.309333pt;}
._1b_c00060{width:139.333333pt;}
._22_c00060{width:150.296000pt;}
._26_c00060{width:154.418667pt;}
._21_c00060{width:157.013333pt;}
._28_c00060{width:165.576000pt;}
._2f_c00060{width:192.184000pt;}
._1f_c00060{width:225.800000pt;}
._7_c00060{width:462.874667pt;}
._35_c00060{width:477.474667pt;}
._34_c00060{width:720.666667pt;}
.fs2_c00060{font-size:40.000000pt;}
.fs6_c00060{font-size:42.666667pt;}
.fs3_c00060{font-size:45.333333pt;}
.fs4_c00060{font-size:48.000000pt;}
.fs5_c00060{font-size:49.066667pt;}
.fs1_c00060{font-size:58.666667pt;}
.fs0_c00060{font-size:61.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y20_c00060{bottom:2.760000pt;}
.y1f_c00060{bottom:6.425219pt;}
.y1e_c00060{bottom:51.346667pt;}
.y1d_c00060{bottom:74.413333pt;}
.y1c_c00060{bottom:96.013333pt;}
.y1b_c00060{bottom:118.013333pt;}
.y1a_c00060{bottom:139.880000pt;}
.y19_c00060{bottom:161.480000pt;}
.y18_c00060{bottom:182.413333pt;}
.y17_c00060{bottom:206.146667pt;}
.y16_c00060{bottom:228.280000pt;}
.y15_c00060{bottom:249.613333pt;}
.y14_c00060{bottom:272.413333pt;}
.y13_c00060{bottom:292.013333pt;}
.y12_c00060{bottom:315.880000pt;}
.y11_c00060{bottom:336.013333pt;}
.y10_c00060{bottom:359.213333pt;}
.yf_c00060{bottom:380.813333pt;}
.ye_c00060{bottom:399.346667pt;}
.yd_c00060{bottom:405.346667pt;}
.yc_c00060{bottom:425.480000pt;}
.yb_c00060{bottom:447.080000pt;}
.ya_c00060{bottom:468.013333pt;}
.y9_c00060{bottom:512.813333pt;}
.y8_c00060{bottom:560.680000pt;}
.y7_c00060{bottom:575.213333pt;}
.y6_c00060{bottom:590.813333pt;}
.y5_c00060{bottom:613.480000pt;}
.y4_c00060{bottom:622.013333pt;}
.y3_c00060{bottom:644.146667pt;}
.y2_c00060{bottom:666.680000pt;}
.y1_c00060{bottom:689.213333pt;}
.h7_c00060{height:11.733399pt;}
.h8_c00060{height:38.937500pt;}
.h3_c00060{height:46.816406pt;}
.h4_c00060{height:57.397135pt;}
.h5_c00060{height:60.773438pt;}
.h6_c00060{height:71.785156pt;}
.h2_c00060{height:77.654948pt;}
.h1_c00060{height:738.666667pt;}
.h0_c00060{height:738.733333pt;}
.w1_c00060{width:93.222667pt;}
.w0_c00060{width:495.333333pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:35.066667pt;}
.x7_c00060{left:36.266667pt;}
.x9_c00060{left:37.466667pt;}
.xa_c00060{left:38.666667pt;}
.x4_c00060{left:50.666667pt;}
.xb_c00060{left:53.066667pt;}
.x6_c00060{left:58.133333pt;}
.x5_c00060{left:64.133333pt;}
.x8_c00060{left:90.800000pt;}
.x3_c00060{left:164.400000pt;}
.x1_c00060{left:171.866667pt;}
.xc_c00060{left:204.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_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_0d80a7a0b20f6aa13a8cbb6f.woff2')format("woff");}.ff1_c00061{font-family:ff1_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:ff2_c00061;src:url('chunks/assets/font_c550c93f1ed2447cff01a9ed.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_96e9ff9457d1dc62768051eb.woff2')format("woff");}.ff3_c00061{font-family:ff3_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:ff4_c00061;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00061{font-family:ff4_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;}
.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;}
.ls5_c00061{letter-spacing:0.000000px;}
.ls4_c00061{letter-spacing:3.000000px;}
.ls1_c00061{letter-spacing:7.560000px;}
.ls3_c00061{letter-spacing:16.725000px;}
.ls0_c00061{letter-spacing:17.325000px;}
.ls2_c00061{letter-spacing:96.786000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:-16.629000px;}
.ws1_c00061{word-spacing:0.000000px;}
._1e_c00061{margin-left:-19.044000px;}
._0_c00061{margin-left:-16.353000px;}
._1_c00061{margin-left:-11.385000px;}
._1a_c00061{margin-left:-9.609000px;}
._c_c00061{margin-left:-7.797000px;}
._9_c00061{margin-left:-6.279000px;}
._f_c00061{margin-left:-4.554000px;}
._2_c00061{margin-left:-2.967000px;}
._3_c00061{margin-left:-1.242000px;}
._d_c00061{width:1.002000px;}
._6_c00061{width:2.070000px;}
._8_c00061{width:4.071000px;}
._7_c00061{width:5.175000px;}
._11_c00061{width:6.375000px;}
._5_c00061{width:7.659000px;}
._a_c00061{width:9.522000px;}
._12_c00061{width:10.833000px;}
._15_c00061{width:12.075000px;}
._13_c00061{width:13.461000px;}
._22_c00061{width:14.583000px;}
._20_c00061{width:15.900000px;}
._e_c00061{width:16.971000px;}
._17_c00061{width:18.651000px;}
._21_c00061{width:21.579000px;}
._b_c00061{width:22.977000px;}
._19_c00061{width:24.864000px;}
._14_c00061{width:27.804000px;}
._23_c00061{width:29.925000px;}
._10_c00061{width:33.090000px;}
._18_c00061{width:68.181000px;}
._1c_c00061{width:92.595000px;}
._1b_c00061{width:100.671000px;}
._24_c00061{width:107.571000px;}
._1d_c00061{width:145.266000px;}
._16_c00061{width:171.462000px;}
._1f_c00061{width:236.256000px;}
._4_c00061{width:387.159000px;}
.fc2_c00061{color:transparent;}
.fc1_c00061{color:rgb(128,128,128);}
.fc0_c00061{color:rgb(0,0,0);}
.fs2_c00061{font-size:48.000000px;}
.fs1_c00061{font-size:54.000000px;}
.fs0_c00061{font-size:69.000000px;}
.y0_c00061{bottom:0.000000px;}
.y1f_c00061{bottom:3.105000px;}
.y1e_c00061{bottom:7.228363px;}
.y1d_c00061{bottom:96.450000px;}
.y1c_c00061{bottom:122.100000px;}
.y1b_c00061{bottom:147.150000px;}
.y1a_c00061{bottom:172.050000px;}
.y19_c00061{bottom:196.800000px;}
.y18_c00061{bottom:221.700000px;}
.y17_c00061{bottom:246.750000px;}
.y16_c00061{bottom:271.350000px;}
.y15_c00061{bottom:296.700000px;}
.y14_c00061{bottom:321.300000px;}
.y13_c00061{bottom:345.600000px;}
.y12_c00061{bottom:370.500000px;}
.y11_c00061{bottom:396.150000px;}
.y10_c00061{bottom:419.550000px;}
.yf_c00061{bottom:444.750000px;}
.ye_c00061{bottom:469.500000px;}
.yd_c00061{bottom:493.800000px;}
.yc_c00061{bottom:518.400000px;}
.yb_c00061{bottom:544.050000px;}
.ya_c00061{bottom:568.350000px;}
.y9_c00061{bottom:594.000000px;}
.y8_c00061{bottom:618.300000px;}
.y7_c00061{bottom:644.400000px;}
.y6_c00061{bottom:667.650000px;}
.y5_c00061{bottom:692.850000px;}
.y4_c00061{bottom:717.750000px;}
.y3_c00061{bottom:742.500000px;}
.y2_c00061{bottom:767.250000px;}
.y1_c00061{bottom:792.750000px;}
.h3_c00061{height:13.200074px;}
.h4_c00061{height:43.804688px;}
.h2_c00061{height:87.361816px;}
.h1_c00061{height:834.000000px;}
.h0_c00061{height:834.300000px;}
.w2_c00061{width:104.875500px;}
.w0_c00061{width:567.525000px;}
.w1_c00061{width:567.750000px;}
.x0_c00061{left:0.000000px;}
.xc_c00061{left:43.500000px;}
.x6_c00061{left:44.850000px;}
.x3_c00061{left:46.650000px;}
.xb_c00061{left:59.850000px;}
.x7_c00061{left:61.500000px;}
.x5_c00061{left:64.050000px;}
.x8_c00061{left:94.950000px;}
.xf_c00061{left:104.550000px;}
.xe_c00061{left:107.100000px;}
.xd_c00061{left:108.300000px;}
.xa_c00061{left:109.350000px;}
.x9_c00061{left:110.400000px;}
.x4_c00061{left:111.750000px;}
.x2_c00061{left:113.100000px;}
.x1_c00061{left:128.250000px;}
.x10_c00061{left:235.576767px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls5_c00061{letter-spacing:0.000000pt;}
.ls4_c00061{letter-spacing:2.666667pt;}
.ls1_c00061{letter-spacing:6.720000pt;}
.ls3_c00061{letter-spacing:14.866667pt;}
.ls0_c00061{letter-spacing:15.400000pt;}
.ls2_c00061{letter-spacing:86.032000pt;}
.ws0_c00061{word-spacing:-14.781333pt;}
.ws1_c00061{word-spacing:0.000000pt;}
._1e_c00061{margin-left:-16.928000pt;}
._0_c00061{margin-left:-14.536000pt;}
._1_c00061{margin-left:-10.120000pt;}
._1a_c00061{margin-left:-8.541333pt;}
._c_c00061{margin-left:-6.930667pt;}
._9_c00061{margin-left:-5.581333pt;}
._f_c00061{margin-left:-4.048000pt;}
._2_c00061{margin-left:-2.637333pt;}
._3_c00061{margin-left:-1.104000pt;}
._d_c00061{width:0.890667pt;}
._6_c00061{width:1.840000pt;}
._8_c00061{width:3.618667pt;}
._7_c00061{width:4.600000pt;}
._11_c00061{width:5.666667pt;}
._5_c00061{width:6.808000pt;}
._a_c00061{width:8.464000pt;}
._12_c00061{width:9.629333pt;}
._15_c00061{width:10.733333pt;}
._13_c00061{width:11.965333pt;}
._22_c00061{width:12.962667pt;}
._20_c00061{width:14.133333pt;}
._e_c00061{width:15.085333pt;}
._17_c00061{width:16.578667pt;}
._21_c00061{width:19.181333pt;}
._b_c00061{width:20.424000pt;}
._19_c00061{width:22.101333pt;}
._14_c00061{width:24.714667pt;}
._23_c00061{width:26.600000pt;}
._10_c00061{width:29.413333pt;}
._18_c00061{width:60.605333pt;}
._1c_c00061{width:82.306667pt;}
._1b_c00061{width:89.485333pt;}
._24_c00061{width:95.618667pt;}
._1d_c00061{width:129.125333pt;}
._16_c00061{width:152.410667pt;}
._1f_c00061{width:210.005333pt;}
._4_c00061{width:344.141333pt;}
.fs2_c00061{font-size:42.666667pt;}
.fs1_c00061{font-size:48.000000pt;}
.fs0_c00061{font-size:61.333333pt;}
.y0_c00061{bottom:0.000000pt;}
.y1f_c00061{bottom:2.760000pt;}
.y1e_c00061{bottom:6.425212pt;}
.y1d_c00061{bottom:85.733333pt;}
.y1c_c00061{bottom:108.533333pt;}
.y1b_c00061{bottom:130.800000pt;}
.y1a_c00061{bottom:152.933333pt;}
.y19_c00061{bottom:174.933333pt;}
.y18_c00061{bottom:197.066667pt;}
.y17_c00061{bottom:219.333333pt;}
.y16_c00061{bottom:241.200000pt;}
.y15_c00061{bottom:263.733333pt;}
.y14_c00061{bottom:285.600000pt;}
.y13_c00061{bottom:307.200000pt;}
.y12_c00061{bottom:329.333333pt;}
.y11_c00061{bottom:352.133333pt;}
.y10_c00061{bottom:372.933333pt;}
.yf_c00061{bottom:395.333333pt;}
.ye_c00061{bottom:417.333333pt;}
.yd_c00061{bottom:438.933333pt;}
.yc_c00061{bottom:460.800000pt;}
.yb_c00061{bottom:483.600000pt;}
.ya_c00061{bottom:505.200000pt;}
.y9_c00061{bottom:528.000000pt;}
.y8_c00061{bottom:549.600000pt;}
.y7_c00061{bottom:572.800000pt;}
.y6_c00061{bottom:593.466667pt;}
.y5_c00061{bottom:615.866667pt;}
.y4_c00061{bottom:638.000000pt;}
.y3_c00061{bottom:660.000000pt;}
.y2_c00061{bottom:682.000000pt;}
.y1_c00061{bottom:704.666667pt;}
.h3_c00061{height:11.733399pt;}
.h4_c00061{height:38.937500pt;}
.h2_c00061{height:77.654948pt;}
.h1_c00061{height:741.333333pt;}
.h0_c00061{height:741.600000pt;}
.w2_c00061{width:93.222667pt;}
.w0_c00061{width:504.466667pt;}
.w1_c00061{width:504.666667pt;}
.x0_c00061{left:0.000000pt;}
.xc_c00061{left:38.666667pt;}
.x6_c00061{left:39.866667pt;}
.x3_c00061{left:41.466667pt;}
.xb_c00061{left:53.200000pt;}
.x7_c00061{left:54.666667pt;}
.x5_c00061{left:56.933333pt;}
.x8_c00061{left:84.400000pt;}
.xf_c00061{left:92.933333pt;}
.xe_c00061{left:95.200000pt;}
.xd_c00061{left:96.266667pt;}
.xa_c00061{left:97.200000pt;}
.x9_c00061{left:98.133333pt;}
.x4_c00061{left:99.333333pt;}
.x2_c00061{left:100.533333pt;}
.x1_c00061{left:114.000000pt;}
.x10_c00061{left:209.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_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_5aed306cb20add07c2abd321.woff2')format("woff");}.ff1_c00062{font-family:ff1_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:ff2_c00062;src:url('chunks/assets/font_04057608b726607e201c0bca.woff2')format("woff");}.ff2_c00062{font-family:ff2_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:ff3_c00062;src:url('chunks/assets/font_c371028718a4b800dc02c6e2.woff2')format("woff");}.ff3_c00062{font-family:ff3_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:ff4_c00062;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.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_30c25f3c0a149ce872b4e3a2.woff2')format("woff");}.ff5_c00062{font-family:ff5_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:ff6_c00062;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00062{font-family:ff6_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;}
.ls4_c00062{letter-spacing:3.000000px;}
.ls2_c00062{letter-spacing:9.798000px;}
.ls6_c00062{letter-spacing:12.000000px;}
.ls3_c00062{letter-spacing:14.274000px;}
.ls1_c00062{letter-spacing:21.477000px;}
.ls0_c00062{letter-spacing:516.171000px;}
.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;}
}
.ws1_c00062{word-spacing:-47.022000px;}
.ws6_c00062{word-spacing:-26.427000px;}
.wsa_c00062{word-spacing:-19.629000px;}
.ws5_c00062{word-spacing:-17.424000px;}
.ws0_c00062{word-spacing:-16.629000px;}
.ws8_c00062{word-spacing:-11.568000px;}
.wsb_c00062{word-spacing:0.000000px;}
.ws4_c00062{word-spacing:0.069000px;}
.ws3_c00062{word-spacing:0.345000px;}
.ws9_c00062{word-spacing:0.414000px;}
.ws7_c00062{word-spacing:0.681000px;}
.ws2_c00062{word-spacing:3.504000px;}
._18_c00062{margin-left:-18.846000px;}
._23_c00062{margin-left:-16.491000px;}
._16_c00062{margin-left:-14.901000px;}
._17_c00062{margin-left:-13.530000px;}
._b_c00062{margin-left:-11.628000px;}
._1_c00062{margin-left:-9.867000px;}
._22_c00062{margin-left:-8.562000px;}
._0_c00062{margin-left:-6.555000px;}
._d_c00062{margin-left:-5.238000px;}
._3_c00062{margin-left:-3.573000px;}
._8_c00062{margin-left:-2.553000px;}
._2_c00062{margin-left:-1.476000px;}
._5_c00062{width:1.620000px;}
._a_c00062{width:2.988000px;}
._13_c00062{width:4.572000px;}
._4_c00062{width:5.670000px;}
._7_c00062{width:7.509000px;}
._6_c00062{width:9.474000px;}
._9_c00062{width:11.673000px;}
._c_c00062{width:13.629000px;}
._14_c00062{width:14.754000px;}
._1f_c00062{width:15.984000px;}
._f_c00062{width:17.115000px;}
._e_c00062{width:18.147000px;}
._25_c00062{width:19.149000px;}
._15_c00062{width:21.594000px;}
._11_c00062{width:23.106000px;}
._1a_c00062{width:24.558000px;}
._26_c00062{width:26.160000px;}
._1b_c00062{width:28.050000px;}
._19_c00062{width:30.276000px;}
._1d_c00062{width:32.598000px;}
._12_c00062{width:33.831000px;}
._24_c00062{width:35.094000px;}
._1e_c00062{width:38.238000px;}
._27_c00062{width:40.707000px;}
._28_c00062{width:41.739000px;}
._1c_c00062{width:44.463000px;}
._21_c00062{width:102.123000px;}
._10_c00062{width:103.293000px;}
._20_c00062{width:179.733000px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(128,128,128);}
.fc0_c00062{color:rgb(0,0,0);}
.fs1_c00062{font-size:36.000000px;}
.fs2_c00062{font-size:45.000000px;}
.fs4_c00062{font-size:48.000000px;}
.fs5_c00062{font-size:51.000000px;}
.fs3_c00062{font-size:66.000000px;}
.fs0_c00062{font-size:69.000000px;}
.y0_c00062{bottom:0.000000px;}
.y22_c00062{bottom:3.105000px;}
.y21_c00062{bottom:7.228363px;}
.y20_c00062{bottom:56.700000px;}
.y1f_c00062{bottom:79.650000px;}
.y1e_c00062{bottom:105.300000px;}
.y1d_c00062{bottom:130.500000px;}
.y1c_c00062{bottom:154.950000px;}
.y1b_c00062{bottom:179.850000px;}
.y1a_c00062{bottom:205.200000px;}
.y19_c00062{bottom:229.800000px;}
.y18_c00062{bottom:254.700000px;}
.y17_c00062{bottom:279.450000px;}
.y16_c00062{bottom:304.350000px;}
.y15_c00062{bottom:328.500000px;}
.y14_c00062{bottom:353.400000px;}
.y13_c00062{bottom:378.300000px;}
.y12_c00062{bottom:403.350000px;}
.y11_c00062{bottom:427.500000px;}
.y2_c00062{bottom:447.300000px;}
.y10_c00062{bottom:452.250000px;}
.y1_c00062{bottom:460.050000px;}
.yf_c00062{bottom:476.550000px;}
.ye_c00062{bottom:500.550000px;}
.yd_c00062{bottom:525.150000px;}
.yc_c00062{bottom:549.750000px;}
.yb_c00062{bottom:574.350000px;}
.ya_c00062{bottom:599.400000px;}
.y9_c00062{bottom:624.300000px;}
.y8_c00062{bottom:648.600000px;}
.y7_c00062{bottom:673.650000px;}
.y6_c00062{bottom:697.950000px;}
.y5_c00062{bottom:723.000000px;}
.y4_c00062{bottom:747.000000px;}
.y3_c00062{bottom:771.300000px;}
.h5_c00062{height:13.200074px;}
.h6_c00062{height:43.804688px;}
.h3_c00062{height:56.975098px;}
.h4_c00062{height:80.758301px;}
.h2_c00062{height:87.361816px;}
.h1_c00062{height:815.250000px;}
.h0_c00062{height:815.400000px;}
.w2_c00062{width:104.875500px;}
.w0_c00062{width:546.450000px;}
.w1_c00062{width:546.750000px;}
.x0_c00062{left:0.000000px;}
.x4_c00062{left:23.850000px;}
.x6_c00062{left:25.350000px;}
.x5_c00062{left:27.900000px;}
.x9_c00062{left:29.250000px;}
.xa_c00062{left:30.750000px;}
.xb_c00062{left:32.100000px;}
.xc_c00062{left:33.450000px;}
.x8_c00062{left:52.950000px;}
.x7_c00062{left:71.100000px;}
.x3_c00062{left:186.900000px;}
.xe_c00062{left:225.039230px;}
.xd_c00062{left:438.750000px;}
.x2_c00062{left:485.400000px;}
.x1_c00062{left:499.800000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls5_c00062{letter-spacing:0.000000pt;}
.ls4_c00062{letter-spacing:2.666667pt;}
.ls2_c00062{letter-spacing:8.709333pt;}
.ls6_c00062{letter-spacing:10.666667pt;}
.ls3_c00062{letter-spacing:12.688000pt;}
.ls1_c00062{letter-spacing:19.090667pt;}
.ls0_c00062{letter-spacing:458.818667pt;}
.ws1_c00062{word-spacing:-41.797333pt;}
.ws6_c00062{word-spacing:-23.490667pt;}
.wsa_c00062{word-spacing:-17.448000pt;}
.ws5_c00062{word-spacing:-15.488000pt;}
.ws0_c00062{word-spacing:-14.781333pt;}
.ws8_c00062{word-spacing:-10.282667pt;}
.wsb_c00062{word-spacing:0.000000pt;}
.ws4_c00062{word-spacing:0.061333pt;}
.ws3_c00062{word-spacing:0.306667pt;}
.ws9_c00062{word-spacing:0.368000pt;}
.ws7_c00062{word-spacing:0.605333pt;}
.ws2_c00062{word-spacing:3.114667pt;}
._18_c00062{margin-left:-16.752000pt;}
._23_c00062{margin-left:-14.658667pt;}
._16_c00062{margin-left:-13.245333pt;}
._17_c00062{margin-left:-12.026667pt;}
._b_c00062{margin-left:-10.336000pt;}
._1_c00062{margin-left:-8.770667pt;}
._22_c00062{margin-left:-7.610667pt;}
._0_c00062{margin-left:-5.826667pt;}
._d_c00062{margin-left:-4.656000pt;}
._3_c00062{margin-left:-3.176000pt;}
._8_c00062{margin-left:-2.269333pt;}
._2_c00062{margin-left:-1.312000pt;}
._5_c00062{width:1.440000pt;}
._a_c00062{width:2.656000pt;}
._13_c00062{width:4.064000pt;}
._4_c00062{width:5.040000pt;}
._7_c00062{width:6.674667pt;}
._6_c00062{width:8.421333pt;}
._9_c00062{width:10.376000pt;}
._c_c00062{width:12.114667pt;}
._14_c00062{width:13.114667pt;}
._1f_c00062{width:14.208000pt;}
._f_c00062{width:15.213333pt;}
._e_c00062{width:16.130667pt;}
._25_c00062{width:17.021333pt;}
._15_c00062{width:19.194667pt;}
._11_c00062{width:20.538667pt;}
._1a_c00062{width:21.829333pt;}
._26_c00062{width:23.253333pt;}
._1b_c00062{width:24.933333pt;}
._19_c00062{width:26.912000pt;}
._1d_c00062{width:28.976000pt;}
._12_c00062{width:30.072000pt;}
._24_c00062{width:31.194667pt;}
._1e_c00062{width:33.989333pt;}
._27_c00062{width:36.184000pt;}
._28_c00062{width:37.101333pt;}
._1c_c00062{width:39.522667pt;}
._21_c00062{width:90.776000pt;}
._10_c00062{width:91.816000pt;}
._20_c00062{width:159.762667pt;}
.fs1_c00062{font-size:32.000000pt;}
.fs2_c00062{font-size:40.000000pt;}
.fs4_c00062{font-size:42.666667pt;}
.fs5_c00062{font-size:45.333333pt;}
.fs3_c00062{font-size:58.666667pt;}
.fs0_c00062{font-size:61.333333pt;}
.y0_c00062{bottom:0.000000pt;}
.y22_c00062{bottom:2.760000pt;}
.y21_c00062{bottom:6.425212pt;}
.y20_c00062{bottom:50.400000pt;}
.y1f_c00062{bottom:70.800000pt;}
.y1e_c00062{bottom:93.600000pt;}
.y1d_c00062{bottom:116.000000pt;}
.y1c_c00062{bottom:137.733333pt;}
.y1b_c00062{bottom:159.866667pt;}
.y1a_c00062{bottom:182.400000pt;}
.y19_c00062{bottom:204.266667pt;}
.y18_c00062{bottom:226.400000pt;}
.y17_c00062{bottom:248.400000pt;}
.y16_c00062{bottom:270.533333pt;}
.y15_c00062{bottom:292.000000pt;}
.y14_c00062{bottom:314.133333pt;}
.y13_c00062{bottom:336.266667pt;}
.y12_c00062{bottom:358.533333pt;}
.y11_c00062{bottom:380.000000pt;}
.y2_c00062{bottom:397.600000pt;}
.y10_c00062{bottom:402.000000pt;}
.y1_c00062{bottom:408.933333pt;}
.yf_c00062{bottom:423.600000pt;}
.ye_c00062{bottom:444.933333pt;}
.yd_c00062{bottom:466.800000pt;}
.yc_c00062{bottom:488.666667pt;}
.yb_c00062{bottom:510.533333pt;}
.ya_c00062{bottom:532.800000pt;}
.y9_c00062{bottom:554.933333pt;}
.y8_c00062{bottom:576.533333pt;}
.y7_c00062{bottom:598.800000pt;}
.y6_c00062{bottom:620.400000pt;}
.y5_c00062{bottom:642.666667pt;}
.y4_c00062{bottom:664.000000pt;}
.y3_c00062{bottom:685.600000pt;}
.h5_c00062{height:11.733399pt;}
.h6_c00062{height:38.937500pt;}
.h3_c00062{height:50.644531pt;}
.h4_c00062{height:71.785156pt;}
.h2_c00062{height:77.654948pt;}
.h1_c00062{height:724.666667pt;}
.h0_c00062{height:724.800000pt;}
.w2_c00062{width:93.222667pt;}
.w0_c00062{width:485.733333pt;}
.w1_c00062{width:486.000000pt;}
.x0_c00062{left:0.000000pt;}
.x4_c00062{left:21.200000pt;}
.x6_c00062{left:22.533333pt;}
.x5_c00062{left:24.800000pt;}
.x9_c00062{left:26.000000pt;}
.xa_c00062{left:27.333333pt;}
.xb_c00062{left:28.533333pt;}
.xc_c00062{left:29.733333pt;}
.x8_c00062{left:47.066667pt;}
.x7_c00062{left:63.200000pt;}
.x3_c00062{left:166.133333pt;}
.xe_c00062{left:200.034871pt;}
.xd_c00062{left:390.000000pt;}
.x2_c00062{left:431.466667pt;}
.x1_c00062{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_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_8f623a59836f22da78ee07ea.woff2')format("woff");}.ff1_c00063{font-family:ff1_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:ff2_c00063;src:url('chunks/assets/font_f72bf9ca343609f593e73909.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.437000;font-style:normal;font-weight:normal;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_c720081eacb9f0566e9f7032.woff2')format("woff");}.ff3_c00063{font-family:ff3_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:ff4_c00063;src:url('chunks/assets/font_3a0c6c96ad95cd8510b9f4d4.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_e9f13bbe00339ebc9726e4cb.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_ed0a6e82b16e375bd846e9dd.woff2')format("woff");}.ff6_c00063{font-family:ff6_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:ff7_c00063;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00063{font-family:ff7_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:ff8_c00063;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00063{font-family:ff8_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;}
.m1_c00063{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_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;}
.ls5_c00063{letter-spacing:-3.000000px;}
.ls3_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.300000px;}
.ls4_c00063{letter-spacing:3.000000px;}
.ls7_c00063{letter-spacing:6.000000px;}
.ls1_c00063{letter-spacing:9.090000px;}
.ls6_c00063{letter-spacing:24.000000px;}
.ls2_c00063{letter-spacing:132.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-47.022000px;}
.ws3_c00063{word-spacing:-40.629000px;}
.ws2_c00063{word-spacing:-27.828000px;}
.ws5_c00063{word-spacing:-14.460000px;}
.ws4_c00063{word-spacing:-11.568000px;}
.ws1_c00063{word-spacing:-2.139000px;}
.ws6_c00063{word-spacing:0.000000px;}
._5_c00063{margin-left:-173.940000px;}
._0_c00063{margin-left:-147.810000px;}
._3_c00063{margin-left:-124.800000px;}
._1_c00063{margin-left:-119.730000px;}
._4_c00063{margin-left:-93.600000px;}
._2_c00063{margin-left:-89.310000px;}
._6_c00063{margin-left:-68.250000px;}
._a_c00063{margin-left:-35.604000px;}
._28_c00063{margin-left:-20.724000px;}
._2a_c00063{margin-left:-12.840000px;}
._27_c00063{margin-left:-9.810000px;}
._9_c00063{margin-left:-8.694000px;}
._7_c00063{margin-left:-7.038000px;}
._8_c00063{margin-left:-6.003000px;}
._1f_c00063{margin-left:-4.899000px;}
._1e_c00063{margin-left:-3.594000px;}
._20_c00063{margin-left:-2.493000px;}
._13_c00063{margin-left:-1.197000px;}
._16_c00063{width:1.764000px;}
._b_c00063{width:3.312000px;}
._1c_c00063{width:5.313000px;}
._18_c00063{width:6.741000px;}
._21_c00063{width:7.929000px;}
._26_c00063{width:9.045000px;}
._19_c00063{width:10.098000px;}
._f_c00063{width:11.109000px;}
._11_c00063{width:12.387000px;}
._10_c00063{width:13.731000px;}
._22_c00063{width:14.940000px;}
._d_c00063{width:16.146000px;}
._c_c00063{width:18.216000px;}
._23_c00063{width:20.280000px;}
._1a_c00063{width:22.446000px;}
._12_c00063{width:23.670000px;}
._1b_c00063{width:26.037000px;}
._14_c00063{width:27.621000px;}
._17_c00063{width:28.917000px;}
._e_c00063{width:35.604000px;}
._1d_c00063{width:38.334000px;}
._15_c00063{width:61.866000px;}
._25_c00063{width:64.410000px;}
._29_c00063{width:261.411000px;}
._24_c00063{width:930.783000px;}
.fc2_c00063{color:transparent;}
.fc1_c00063{color:rgb(128,128,128);}
.fc0_c00063{color:rgb(0,0,0);}
.fs6_c00063{font-size:45.000000px;}
.fs8_c00063{font-size:48.000000px;}
.fs7_c00063{font-size:57.000000px;}
.fs5_c00063{font-size:60.000000px;}
.fs4_c00063{font-size:63.000000px;}
.fs3_c00063{font-size:66.000000px;}
.fs2_c00063{font-size:69.000000px;}
.fs1_c00063{font-size:207.000000px;}
.fs0_c00063{font-size:390.000000px;}
.y0_c00063{bottom:0.000000px;}
.y1b_c00063{bottom:3.105000px;}
.y1a_c00063{bottom:7.228363px;}
.y19_c00063{bottom:97.200000px;}
.y18_c00063{bottom:123.600000px;}
.y17_c00063{bottom:148.500000px;}
.y16_c00063{bottom:173.550000px;}
.y15_c00063{bottom:201.150000px;}
.y14_c00063{bottom:219.450000px;}
.y13_c00063{bottom:237.300000px;}
.y12_c00063{bottom:255.150000px;}
.y11_c00063{bottom:272.250000px;}
.y10_c00063{bottom:289.950000px;}
.yf_c00063{bottom:308.850000px;}
.ye_c00063{bottom:324.300000px;}
.yd_c00063{bottom:340.500000px;}
.yc_c00063{bottom:358.800000px;}
.yb_c00063{bottom:376.350000px;}
.ya_c00063{bottom:396.450000px;}
.y9_c00063{bottom:419.850000px;}
.y8_c00063{bottom:445.800000px;}
.y7_c00063{bottom:470.700000px;}
.y6_c00063{bottom:495.150000px;}
.y5_c00063{bottom:544.950000px;}
.y4_c00063{bottom:585.600000px;}
.y3_c00063{bottom:610.500000px;}
.y2_c00063{bottom:648.600000px;}
.y1_c00063{bottom:709.500000px;}
.hc_c00063{height:13.200074px;}
.hd_c00063{height:43.804688px;}
.ha_c00063{height:56.179688px;}
.h9_c00063{height:60.773438px;}
.hb_c00063{height:70.224609px;}
.h8_c00063{height:72.168457px;}
.h7_c00063{height:75.966797px;}
.h5_c00063{height:79.765137px;}
.h6_c00063{height:80.758301px;}
.h4_c00063{height:87.361816px;}
.h3_c00063{height:216.936000px;}
.h2_c00063{height:493.784180px;}
.h1_c00063{height:834.000000px;}
.h0_c00063{height:834.300000px;}
.w2_c00063{width:104.875500px;}
.w0_c00063{width:567.525000px;}
.w1_c00063{width:567.750000px;}
.x0_c00063{left:0.000000px;}
.xe_c00063{left:96.750000px;}
.x3_c00063{left:98.550000px;}
.x1_c00063{left:102.600000px;}
.xc_c00063{left:114.150000px;}
.xb_c00063{left:115.200000px;}
.xd_c00063{left:121.800000px;}
.x2_c00063{left:183.150000px;}
.x5_c00063{left:206.550000px;}
.x4_c00063{left:223.350000px;}
.xf_c00063{left:235.576767px;}
.x6_c00063{left:292.500000px;}
.x9_c00063{left:298.050000px;}
.xa_c00063{left:306.450000px;}
.x7_c00063{left:311.400000px;}
.x8_c00063{left:313.200000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls5_c00063{letter-spacing:-2.666667pt;}
.ls3_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.266667pt;}
.ls4_c00063{letter-spacing:2.666667pt;}
.ls7_c00063{letter-spacing:5.333333pt;}
.ls1_c00063{letter-spacing:8.080000pt;}
.ls6_c00063{letter-spacing:21.333333pt;}
.ls2_c00063{letter-spacing:117.333333pt;}
.ws0_c00063{word-spacing:-41.797333pt;}
.ws3_c00063{word-spacing:-36.114667pt;}
.ws2_c00063{word-spacing:-24.736000pt;}
.ws5_c00063{word-spacing:-12.853333pt;}
.ws4_c00063{word-spacing:-10.282667pt;}
.ws1_c00063{word-spacing:-1.901333pt;}
.ws6_c00063{word-spacing:0.000000pt;}
._5_c00063{margin-left:-154.613333pt;}
._0_c00063{margin-left:-131.386667pt;}
._3_c00063{margin-left:-110.933333pt;}
._1_c00063{margin-left:-106.426667pt;}
._4_c00063{margin-left:-83.200000pt;}
._2_c00063{margin-left:-79.386667pt;}
._6_c00063{margin-left:-60.666667pt;}
._a_c00063{margin-left:-31.648000pt;}
._28_c00063{margin-left:-18.421333pt;}
._2a_c00063{margin-left:-11.413333pt;}
._27_c00063{margin-left:-8.720000pt;}
._9_c00063{margin-left:-7.728000pt;}
._7_c00063{margin-left:-6.256000pt;}
._8_c00063{margin-left:-5.336000pt;}
._1f_c00063{margin-left:-4.354667pt;}
._1e_c00063{margin-left:-3.194667pt;}
._20_c00063{margin-left:-2.216000pt;}
._13_c00063{margin-left:-1.064000pt;}
._16_c00063{width:1.568000pt;}
._b_c00063{width:2.944000pt;}
._1c_c00063{width:4.722667pt;}
._18_c00063{width:5.992000pt;}
._21_c00063{width:7.048000pt;}
._26_c00063{width:8.040000pt;}
._19_c00063{width:8.976000pt;}
._f_c00063{width:9.874667pt;}
._11_c00063{width:11.010667pt;}
._10_c00063{width:12.205333pt;}
._22_c00063{width:13.280000pt;}
._d_c00063{width:14.352000pt;}
._c_c00063{width:16.192000pt;}
._23_c00063{width:18.026667pt;}
._1a_c00063{width:19.952000pt;}
._12_c00063{width:21.040000pt;}
._1b_c00063{width:23.144000pt;}
._14_c00063{width:24.552000pt;}
._17_c00063{width:25.704000pt;}
._e_c00063{width:31.648000pt;}
._1d_c00063{width:34.074667pt;}
._15_c00063{width:54.992000pt;}
._25_c00063{width:57.253333pt;}
._29_c00063{width:232.365333pt;}
._24_c00063{width:827.362667pt;}
.fs6_c00063{font-size:40.000000pt;}
.fs8_c00063{font-size:42.666667pt;}
.fs7_c00063{font-size:50.666667pt;}
.fs5_c00063{font-size:53.333333pt;}
.fs4_c00063{font-size:56.000000pt;}
.fs3_c00063{font-size:58.666667pt;}
.fs2_c00063{font-size:61.333333pt;}
.fs1_c00063{font-size:184.000000pt;}
.fs0_c00063{font-size:346.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y1b_c00063{bottom:2.760000pt;}
.y1a_c00063{bottom:6.425212pt;}
.y19_c00063{bottom:86.400000pt;}
.y18_c00063{bottom:109.866667pt;}
.y17_c00063{bottom:132.000000pt;}
.y16_c00063{bottom:154.266667pt;}
.y15_c00063{bottom:178.800000pt;}
.y14_c00063{bottom:195.066667pt;}
.y13_c00063{bottom:210.933333pt;}
.y12_c00063{bottom:226.800000pt;}
.y11_c00063{bottom:242.000000pt;}
.y10_c00063{bottom:257.733333pt;}
.yf_c00063{bottom:274.533333pt;}
.ye_c00063{bottom:288.266667pt;}
.yd_c00063{bottom:302.666667pt;}
.yc_c00063{bottom:318.933333pt;}
.yb_c00063{bottom:334.533333pt;}
.ya_c00063{bottom:352.400000pt;}
.y9_c00063{bottom:373.200000pt;}
.y8_c00063{bottom:396.266667pt;}
.y7_c00063{bottom:418.400000pt;}
.y6_c00063{bottom:440.133333pt;}
.y5_c00063{bottom:484.400000pt;}
.y4_c00063{bottom:520.533333pt;}
.y3_c00063{bottom:542.666667pt;}
.y2_c00063{bottom:576.533333pt;}
.y1_c00063{bottom:630.666667pt;}
.hc_c00063{height:11.733399pt;}
.hd_c00063{height:38.937500pt;}
.ha_c00063{height:49.937500pt;}
.h9_c00063{height:54.020833pt;}
.hb_c00063{height:62.421875pt;}
.h8_c00063{height:64.149740pt;}
.h7_c00063{height:67.526042pt;}
.h5_c00063{height:70.902344pt;}
.h6_c00063{height:71.785156pt;}
.h4_c00063{height:77.654948pt;}
.h3_c00063{height:192.832000pt;}
.h2_c00063{height:438.919271pt;}
.h1_c00063{height:741.333333pt;}
.h0_c00063{height:741.600000pt;}
.w2_c00063{width:93.222667pt;}
.w0_c00063{width:504.466667pt;}
.w1_c00063{width:504.666667pt;}
.x0_c00063{left:0.000000pt;}
.xe_c00063{left:86.000000pt;}
.x3_c00063{left:87.600000pt;}
.x1_c00063{left:91.200000pt;}
.xc_c00063{left:101.466667pt;}
.xb_c00063{left:102.400000pt;}
.xd_c00063{left:108.266667pt;}
.x2_c00063{left:162.800000pt;}
.x5_c00063{left:183.600000pt;}
.x4_c00063{left:198.533333pt;}
.xf_c00063{left:209.401571pt;}
.x6_c00063{left:260.000000pt;}
.x9_c00063{left:264.933333pt;}
.xa_c00063{left:272.400000pt;}
.x7_c00063{left:276.800000pt;}
.x8_c00063{left:278.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b18546e8bbd989d225fb8404.woff2')format("woff");}.ff1_c00064{font-family:ff1_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:ff2_c00064;src:url('chunks/assets/font_f7ead545412d7e8d54d41a49.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_544f36aa1b5624b85df836f4.woff2')format("woff");}.ff3_c00064{font-family:ff3_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:ff4_c00064;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00064{font-family:ff4_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:ff5_c00064;src:url('chunks/assets/font_4c6e0af059ed80bbc913af2c.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;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_c00064;src:url('chunks/assets/font_7e85cadf294c5e005c59edc3.woff2')format("woff");}.ff6_c00064{font-family:ff6_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:ff7_c00064;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff7_c00064{font-family:ff7_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:ff8_c00064;src:url('chunks/assets/font_4dbd352ee32523fcd7cef32d.woff2')format("woff");}.ff8_c00064{font-family:ff8_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:ff9_c00064;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00064{font-family:ff9_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;}
.ls6_c00064{letter-spacing:-3.000000px;}
.ls4_c00064{letter-spacing:0.000000px;}
.ls3_c00064{letter-spacing:3.000000px;}
.ls0_c00064{letter-spacing:14.100000px;}
.ls5_c00064{letter-spacing:15.000000px;}
.ls1_c00064{letter-spacing:16.500000px;}
.ls2_c00064{letter-spacing:27.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00064{word-spacing:-49.554000px;}
.ws6_c00064{word-spacing:-47.022000px;}
.ws7_c00064{word-spacing:-38.250000px;}
.ws3_c00064{word-spacing:-34.500000px;}
.ws5_c00064{word-spacing:-16.629000px;}
.ws0_c00064{word-spacing:-13.416000px;}
.ws2_c00064{word-spacing:-11.622000px;}
.ws8_c00064{word-spacing:0.000000px;}
.ws4_c00064{word-spacing:6.630000px;}
._12_c00064{margin-left:-39.015000px;}
._25_c00064{margin-left:-26.979000px;}
._2a_c00064{margin-left:-25.806000px;}
._1c_c00064{margin-left:-24.012000px;}
._2c_c00064{margin-left:-21.321000px;}
._20_c00064{margin-left:-20.007000px;}
._19_c00064{margin-left:-16.836000px;}
._0_c00064{margin-left:-15.249000px;}
._1b_c00064{margin-left:-13.497000px;}
._23_c00064{margin-left:-11.817000px;}
._1_c00064{margin-left:-9.693000px;}
._1e_c00064{margin-left:-7.839000px;}
._5_c00064{margin-left:-6.294000px;}
._2_c00064{margin-left:-4.608000px;}
._4_c00064{margin-left:-3.450000px;}
._6_c00064{margin-left:-2.331000px;}
._10_c00064{margin-left:-1.146000px;}
._3_c00064{width:1.518000px;}
._a_c00064{width:2.760000px;}
._c_c00064{width:4.470000px;}
._d_c00064{width:5.850000px;}
._b_c00064{width:7.425000px;}
._f_c00064{width:9.156000px;}
._1d_c00064{width:11.226000px;}
._17_c00064{width:12.600000px;}
._11_c00064{width:14.196000px;}
._16_c00064{width:15.750000px;}
._15_c00064{width:17.415000px;}
._18_c00064{width:18.615000px;}
._14_c00064{width:19.908000px;}
._8_c00064{width:21.768000px;}
._27_c00064{width:23.082000px;}
._22_c00064{width:24.450000px;}
._28_c00064{width:25.668000px;}
._7_c00064{width:27.207000px;}
._2d_c00064{width:28.755000px;}
._1f_c00064{width:33.972000px;}
._2e_c00064{width:35.328000px;}
._29_c00064{width:39.813000px;}
._24_c00064{width:41.265000px;}
._13_c00064{width:49.770000px;}
._1a_c00064{width:66.801000px;}
._26_c00064{width:116.502000px;}
._e_c00064{width:133.335000px;}
._21_c00064{width:203.451000px;}
._2b_c00064{width:205.701000px;}
._9_c00064{width:388.593000px;}
.fc2_c00064{color:transparent;}
.fc1_c00064{color:rgb(128,128,128);}
.fc0_c00064{color:rgb(0,0,0);}
.fs1_c00064{font-size:45.000000px;}
.fs7_c00064{font-size:48.000000px;}
.fs5_c00064{font-size:54.000000px;}
.fs6_c00064{font-size:57.000000px;}
.fs4_c00064{font-size:66.000000px;}
.fs0_c00064{font-size:69.000000px;}
.fs3_c00064{font-size:75.000000px;}
.fs2_c00064{font-size:78.000000px;}
.y0_c00064{bottom:0.000000px;}
.y21_c00064{bottom:3.105000px;}
.y20_c00064{bottom:7.228371px;}
.y1f_c00064{bottom:60.765000px;}
.y1e_c00064{bottom:79.365000px;}
.y1d_c00064{bottom:96.615000px;}
.y1c_c00064{bottom:116.565000px;}
.y1b_c00064{bottom:141.465000px;}
.y1a_c00064{bottom:166.365000px;}
.y19_c00064{bottom:191.115000px;}
.y18_c00064{bottom:215.415000px;}
.y17_c00064{bottom:240.765000px;}
.y16_c00064{bottom:265.665000px;}
.y15_c00064{bottom:291.015000px;}
.y14_c00064{bottom:315.915000px;}
.y13_c00064{bottom:340.665000px;}
.y12_c00064{bottom:365.265000px;}
.y11_c00064{bottom:389.715000px;}
.y10_c00064{bottom:414.465000px;}
.yf_c00064{bottom:439.215000px;}
.ye_c00064{bottom:464.115000px;}
.yd_c00064{bottom:488.415000px;}
.yc_c00064{bottom:512.415000px;}
.yb_c00064{bottom:536.715000px;}
.ya_c00064{bottom:561.615000px;}
.y9_c00064{bottom:586.215000px;}
.y8_c00064{bottom:611.565000px;}
.y7_c00064{bottom:636.615000px;}
.y6_c00064{bottom:661.215000px;}
.y5_c00064{bottom:699.315000px;}
.y4_c00064{bottom:731.115000px;}
.y3_c00064{bottom:749.265000px;}
.y2_c00064{bottom:766.815000px;}
.y1_c00064{bottom:786.165000px;}
.h9_c00064{height:13.200074px;}
.ha_c00064{height:43.804688px;}
.h4_c00064{height:44.143066px;}
.h7_c00064{height:56.592000px;}
.h3_c00064{height:56.975098px;}
.h8_c00064{height:66.713379px;}
.h6_c00064{height:80.758301px;}
.h5_c00064{height:84.552000px;}
.h2_c00064{height:87.361816px;}
.h1_c00064{height:831.000000px;}
.h0_c00064{height:831.075000px;}
.w1_c00064{width:104.875500px;}
.w0_c00064{width:557.250000px;}
.x0_c00064{left:0.000000px;}
.x2_c00064{left:33.300000px;}
.x3_c00064{left:34.650000px;}
.x7_c00064{left:36.000000px;}
.x6_c00064{left:37.050000px;}
.x9_c00064{left:38.400000px;}
.xa_c00064{left:39.450000px;}
.x4_c00064{left:51.900000px;}
.x8_c00064{left:60.300000px;}
.xc_c00064{left:74.550000px;}
.x5_c00064{left:89.100000px;}
.xd_c00064{left:111.150000px;}
.x1_c00064{left:162.300000px;}
.xb_c00064{left:226.350000px;}
.xf_c00064{left:230.439240px;}
.xe_c00064{left:456.900000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls6_c00064{letter-spacing:-2.666667pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls3_c00064{letter-spacing:2.666667pt;}
.ls0_c00064{letter-spacing:12.533333pt;}
.ls5_c00064{letter-spacing:13.333333pt;}
.ls1_c00064{letter-spacing:14.666667pt;}
.ls2_c00064{letter-spacing:24.000000pt;}
.ws1_c00064{word-spacing:-44.048000pt;}
.ws6_c00064{word-spacing:-41.797333pt;}
.ws7_c00064{word-spacing:-34.000000pt;}
.ws3_c00064{word-spacing:-30.666667pt;}
.ws5_c00064{word-spacing:-14.781333pt;}
.ws0_c00064{word-spacing:-11.925333pt;}
.ws2_c00064{word-spacing:-10.330667pt;}
.ws8_c00064{word-spacing:0.000000pt;}
.ws4_c00064{word-spacing:5.893333pt;}
._12_c00064{margin-left:-34.680000pt;}
._25_c00064{margin-left:-23.981333pt;}
._2a_c00064{margin-left:-22.938667pt;}
._1c_c00064{margin-left:-21.344000pt;}
._2c_c00064{margin-left:-18.952000pt;}
._20_c00064{margin-left:-17.784000pt;}
._19_c00064{margin-left:-14.965333pt;}
._0_c00064{margin-left:-13.554667pt;}
._1b_c00064{margin-left:-11.997333pt;}
._23_c00064{margin-left:-10.504000pt;}
._1_c00064{margin-left:-8.616000pt;}
._1e_c00064{margin-left:-6.968000pt;}
._5_c00064{margin-left:-5.594667pt;}
._2_c00064{margin-left:-4.096000pt;}
._4_c00064{margin-left:-3.066667pt;}
._6_c00064{margin-left:-2.072000pt;}
._10_c00064{margin-left:-1.018667pt;}
._3_c00064{width:1.349333pt;}
._a_c00064{width:2.453333pt;}
._c_c00064{width:3.973333pt;}
._d_c00064{width:5.200000pt;}
._b_c00064{width:6.600000pt;}
._f_c00064{width:8.138667pt;}
._1d_c00064{width:9.978667pt;}
._17_c00064{width:11.200000pt;}
._11_c00064{width:12.618667pt;}
._16_c00064{width:14.000000pt;}
._15_c00064{width:15.480000pt;}
._18_c00064{width:16.546667pt;}
._14_c00064{width:17.696000pt;}
._8_c00064{width:19.349333pt;}
._27_c00064{width:20.517333pt;}
._22_c00064{width:21.733333pt;}
._28_c00064{width:22.816000pt;}
._7_c00064{width:24.184000pt;}
._2d_c00064{width:25.560000pt;}
._1f_c00064{width:30.197333pt;}
._2e_c00064{width:31.402667pt;}
._29_c00064{width:35.389333pt;}
._24_c00064{width:36.680000pt;}
._13_c00064{width:44.240000pt;}
._1a_c00064{width:59.378667pt;}
._26_c00064{width:103.557333pt;}
._e_c00064{width:118.520000pt;}
._21_c00064{width:180.845333pt;}
._2b_c00064{width:182.845333pt;}
._9_c00064{width:345.416000pt;}
.fs1_c00064{font-size:40.000000pt;}
.fs7_c00064{font-size:42.666667pt;}
.fs5_c00064{font-size:48.000000pt;}
.fs6_c00064{font-size:50.666667pt;}
.fs4_c00064{font-size:58.666667pt;}
.fs0_c00064{font-size:61.333333pt;}
.fs3_c00064{font-size:66.666667pt;}
.fs2_c00064{font-size:69.333333pt;}
.y0_c00064{bottom:0.000000pt;}
.y21_c00064{bottom:2.760000pt;}
.y20_c00064{bottom:6.425219pt;}
.y1f_c00064{bottom:54.013333pt;}
.y1e_c00064{bottom:70.546667pt;}
.y1d_c00064{bottom:85.880000pt;}
.y1c_c00064{bottom:103.613333pt;}
.y1b_c00064{bottom:125.746667pt;}
.y1a_c00064{bottom:147.880000pt;}
.y19_c00064{bottom:169.880000pt;}
.y18_c00064{bottom:191.480000pt;}
.y17_c00064{bottom:214.013333pt;}
.y16_c00064{bottom:236.146667pt;}
.y15_c00064{bottom:258.680000pt;}
.y14_c00064{bottom:280.813333pt;}
.y13_c00064{bottom:302.813333pt;}
.y12_c00064{bottom:324.680000pt;}
.y11_c00064{bottom:346.413333pt;}
.y10_c00064{bottom:368.413333pt;}
.yf_c00064{bottom:390.413333pt;}
.ye_c00064{bottom:412.546667pt;}
.yd_c00064{bottom:434.146667pt;}
.yc_c00064{bottom:455.480000pt;}
.yb_c00064{bottom:477.080000pt;}
.ya_c00064{bottom:499.213333pt;}
.y9_c00064{bottom:521.080000pt;}
.y8_c00064{bottom:543.613333pt;}
.y7_c00064{bottom:565.880000pt;}
.y6_c00064{bottom:587.746667pt;}
.y5_c00064{bottom:621.613333pt;}
.y4_c00064{bottom:649.880000pt;}
.y3_c00064{bottom:666.013333pt;}
.y2_c00064{bottom:681.613333pt;}
.y1_c00064{bottom:698.813333pt;}
.h9_c00064{height:11.733399pt;}
.ha_c00064{height:38.937500pt;}
.h4_c00064{height:39.238281pt;}
.h7_c00064{height:50.304000pt;}
.h3_c00064{height:50.644531pt;}
.h8_c00064{height:59.300781pt;}
.h6_c00064{height:71.785156pt;}
.h5_c00064{height:75.157333pt;}
.h2_c00064{height:77.654948pt;}
.h1_c00064{height:738.666667pt;}
.h0_c00064{height:738.733333pt;}
.w1_c00064{width:93.222667pt;}
.w0_c00064{width:495.333333pt;}
.x0_c00064{left:0.000000pt;}
.x2_c00064{left:29.600000pt;}
.x3_c00064{left:30.800000pt;}
.x7_c00064{left:32.000000pt;}
.x6_c00064{left:32.933333pt;}
.x9_c00064{left:34.133333pt;}
.xa_c00064{left:35.066667pt;}
.x4_c00064{left:46.133333pt;}
.x8_c00064{left:53.600000pt;}
.xc_c00064{left:66.266667pt;}
.x5_c00064{left:79.200000pt;}
.xd_c00064{left:98.800000pt;}
.x1_c00064{left:144.266667pt;}
.xb_c00064{left:201.200000pt;}
.xf_c00064{left:204.834880pt;}
.xe_c00064{left:406.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_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_32572fa68415e0f011dd7d45.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.568848;font-style:normal;font-weight:normal;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_bd32f9c0ba9e45fa8a6d167c.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_7c7bb0f374599015112c9419.woff2')format("woff");}.ff3_c00065{font-family:ff3_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:ff4_c00065;src:url('chunks/assets/font_63725ca3ae05e35b6842fdb6.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00065{font-family:ff5_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:ff6_c00065;src:url('chunks/assets/font_58ea22da6a327626efef191b.woff2')format("woff");}.ff6_c00065{font-family:ff6_c00065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00065;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00065{font-family:ff7_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;}
.ls8_c00065{letter-spacing:0.000000px;}
.ls5_c00065{letter-spacing:0.600000px;}
.ls4_c00065{letter-spacing:1.302000px;}
.ls6_c00065{letter-spacing:1.950000px;}
.ls0_c00065{letter-spacing:3.000000px;}
.ls9_c00065{letter-spacing:6.000000px;}
.ls3_c00065{letter-spacing:9.000000px;}
.ls2_c00065{letter-spacing:13.800000px;}
.ls1_c00065{letter-spacing:19.200000px;}
.ls7_c00065{letter-spacing:43.386000px;}
.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;}
}
.ws5_c00065{word-spacing:-19.014000px;}
.ws3_c00065{word-spacing:-18.876000px;}
.ws7_c00065{word-spacing:-16.629000px;}
.ws0_c00065{word-spacing:-13.014000px;}
.ws6_c00065{word-spacing:-3.069000px;}
.ws4_c00065{word-spacing:-3.055200px;}
.ws8_c00065{word-spacing:0.000000px;}
.ws2_c00065{word-spacing:2.829000px;}
.ws1_c00065{word-spacing:3.933000px;}
._1b_c00065{margin-left:-24.261000px;}
._1c_c00065{margin-left:-21.873000px;}
._24_c00065{margin-left:-16.197000px;}
._9_c00065{margin-left:-13.668000px;}
._26_c00065{margin-left:-12.213000px;}
._c_c00065{margin-left:-10.431000px;}
._d_c00065{margin-left:-9.180000px;}
._e_c00065{margin-left:-7.074000px;}
._6_c00065{margin-left:-5.400000px;}
._3_c00065{margin-left:-4.347000px;}
._7_c00065{margin-left:-3.294000px;}
._2_c00065{margin-left:-2.277000px;}
._1_c00065{margin-left:-1.242000px;}
._4_c00065{width:1.104000px;}
._5_c00065{width:2.760000px;}
._8_c00065{width:4.122000px;}
._11_c00065{width:5.256000px;}
._22_c00065{width:6.312000px;}
._a_c00065{width:7.362000px;}
._f_c00065{width:8.613000px;}
._14_c00065{width:10.044000px;}
._12_c00065{width:11.370000px;}
._17_c00065{width:13.005000px;}
._b_c00065{width:14.721000px;}
._10_c00065{width:16.632000px;}
._16_c00065{width:17.700000px;}
._15_c00065{width:19.923000px;}
._27_c00065{width:21.363000px;}
._19_c00065{width:22.770000px;}
._28_c00065{width:24.354000px;}
._1a_c00065{width:26.289000px;}
._13_c00065{width:27.561000px;}
._1f_c00065{width:30.219000px;}
._21_c00065{width:36.069000px;}
._18_c00065{width:46.683000px;}
._25_c00065{width:92.733000px;}
._23_c00065{width:98.238000px;}
._1d_c00065{width:148.005000px;}
._20_c00065{width:174.390000px;}
._1e_c00065{width:213.774000px;}
._0_c00065{width:356.487000px;}
.fc2_c00065{color:transparent;}
.fc1_c00065{color:rgb(128,128,128);}
.fc0_c00065{color:rgb(0,0,0);}
.fs6_c00065{font-size:48.000000px;}
.fs1_c00065{font-size:54.000000px;}
.fs5_c00065{font-size:55.200000px;}
.fs2_c00065{font-size:60.000000px;}
.fs3_c00065{font-size:66.000000px;}
.fs0_c00065{font-size:69.000000px;}
.fs4_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y20_c00065{bottom:3.105000px;}
.y1f_c00065{bottom:7.228369px;}
.y1e_c00065{bottom:63.120000px;}
.y1d_c00065{bottom:102.870000px;}
.y1c_c00065{bottom:121.170000px;}
.y1b_c00065{bottom:139.020000px;}
.y1a_c00065{bottom:159.570000px;}
.y19_c00065{bottom:183.870000px;}
.y18_c00065{bottom:209.220000px;}
.y17_c00065{bottom:234.570000px;}
.y16_c00065{bottom:259.920000px;}
.y15_c00065{bottom:284.820000px;}
.y14_c00065{bottom:309.870000px;}
.y13_c00065{bottom:335.820000px;}
.y12_c00065{bottom:359.070000px;}
.y11_c00065{bottom:384.420000px;}
.y10_c00065{bottom:409.620000px;}
.yf_c00065{bottom:433.920000px;}
.ye_c00065{bottom:460.020000px;}
.yd_c00065{bottom:485.220000px;}
.yc_c00065{bottom:509.670000px;}
.yb_c00065{bottom:534.870000px;}
.ya_c00065{bottom:584.220000px;}
.y9_c00065{bottom:640.170000px;}
.y8_c00065{bottom:657.120000px;}
.y7_c00065{bottom:674.970000px;}
.y6_c00065{bottom:692.520000px;}
.y5_c00065{bottom:710.370000px;}
.y4_c00065{bottom:728.370000px;}
.y3_c00065{bottom:745.470000px;}
.y2_c00065{bottom:763.320000px;}
.y1_c00065{bottom:783.270000px;}
.h9_c00065{height:13.200073px;}
.ha_c00065{height:43.804688px;}
.h4_c00065{height:63.202148px;}
.h3_c00065{height:68.370117px;}
.h8_c00065{height:69.539062px;}
.h7_c00065{height:72.562500px;}
.h5_c00065{height:75.966797px;}
.h6_c00065{height:80.758301px;}
.h2_c00065{height:87.361816px;}
.h1_c00065{height:824.250000px;}
.h0_c00065{height:824.550000px;}
.w2_c00065{width:104.875500px;}
.w1_c00065{width:561.000000px;}
.w0_c00065{width:561.075000px;}
.x0_c00065{left:0.000000px;}
.xd_c00065{left:40.200000px;}
.xb_c00065{left:42.900000px;}
.xc_c00065{left:55.050000px;}
.xe_c00065{left:57.300000px;}
.x9_c00065{left:72.300000px;}
.xf_c00065{left:102.300000px;}
.x12_c00065{left:103.500000px;}
.x10_c00065{left:104.550000px;}
.xa_c00065{left:105.750000px;}
.x8_c00065{left:106.950000px;}
.x5_c00065{left:108.000000px;}
.x3_c00065{left:109.650000px;}
.x2_c00065{left:110.700000px;}
.x11_c00065{left:121.800000px;}
.x4_c00065{left:126.900000px;}
.x7_c00065{left:132.300000px;}
.x1_c00065{left:135.300000px;}
.x6_c00065{left:152.250000px;}
.x14_c00065{left:232.351730px;}
.x13_c00065{left:469.050000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls8_c00065{letter-spacing:0.000000pt;}
.ls5_c00065{letter-spacing:0.533333pt;}
.ls4_c00065{letter-spacing:1.157333pt;}
.ls6_c00065{letter-spacing:1.733333pt;}
.ls0_c00065{letter-spacing:2.666667pt;}
.ls9_c00065{letter-spacing:5.333333pt;}
.ls3_c00065{letter-spacing:8.000000pt;}
.ls2_c00065{letter-spacing:12.266667pt;}
.ls1_c00065{letter-spacing:17.066667pt;}
.ls7_c00065{letter-spacing:38.565333pt;}
.ws5_c00065{word-spacing:-16.901333pt;}
.ws3_c00065{word-spacing:-16.778667pt;}
.ws7_c00065{word-spacing:-14.781333pt;}
.ws0_c00065{word-spacing:-11.568000pt;}
.ws6_c00065{word-spacing:-2.728000pt;}
.ws4_c00065{word-spacing:-2.715733pt;}
.ws8_c00065{word-spacing:0.000000pt;}
.ws2_c00065{word-spacing:2.514667pt;}
.ws1_c00065{word-spacing:3.496000pt;}
._1b_c00065{margin-left:-21.565333pt;}
._1c_c00065{margin-left:-19.442667pt;}
._24_c00065{margin-left:-14.397333pt;}
._9_c00065{margin-left:-12.149333pt;}
._26_c00065{margin-left:-10.856000pt;}
._c_c00065{margin-left:-9.272000pt;}
._d_c00065{margin-left:-8.160000pt;}
._e_c00065{margin-left:-6.288000pt;}
._6_c00065{margin-left:-4.800000pt;}
._3_c00065{margin-left:-3.864000pt;}
._7_c00065{margin-left:-2.928000pt;}
._2_c00065{margin-left:-2.024000pt;}
._1_c00065{margin-left:-1.104000pt;}
._4_c00065{width:0.981333pt;}
._5_c00065{width:2.453333pt;}
._8_c00065{width:3.664000pt;}
._11_c00065{width:4.672000pt;}
._22_c00065{width:5.610667pt;}
._a_c00065{width:6.544000pt;}
._f_c00065{width:7.656000pt;}
._14_c00065{width:8.928000pt;}
._12_c00065{width:10.106667pt;}
._17_c00065{width:11.560000pt;}
._b_c00065{width:13.085333pt;}
._10_c00065{width:14.784000pt;}
._16_c00065{width:15.733333pt;}
._15_c00065{width:17.709333pt;}
._27_c00065{width:18.989333pt;}
._19_c00065{width:20.240000pt;}
._28_c00065{width:21.648000pt;}
._1a_c00065{width:23.368000pt;}
._13_c00065{width:24.498667pt;}
._1f_c00065{width:26.861333pt;}
._21_c00065{width:32.061333pt;}
._18_c00065{width:41.496000pt;}
._25_c00065{width:82.429333pt;}
._23_c00065{width:87.322667pt;}
._1d_c00065{width:131.560000pt;}
._20_c00065{width:155.013333pt;}
._1e_c00065{width:190.021333pt;}
._0_c00065{width:316.877333pt;}
.fs6_c00065{font-size:42.666667pt;}
.fs1_c00065{font-size:48.000000pt;}
.fs5_c00065{font-size:49.066667pt;}
.fs2_c00065{font-size:53.333333pt;}
.fs3_c00065{font-size:58.666667pt;}
.fs0_c00065{font-size:61.333333pt;}
.fs4_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y20_c00065{bottom:2.760000pt;}
.y1f_c00065{bottom:6.425217pt;}
.y1e_c00065{bottom:56.106667pt;}
.y1d_c00065{bottom:91.440000pt;}
.y1c_c00065{bottom:107.706667pt;}
.y1b_c00065{bottom:123.573333pt;}
.y1a_c00065{bottom:141.840000pt;}
.y19_c00065{bottom:163.440000pt;}
.y18_c00065{bottom:185.973333pt;}
.y17_c00065{bottom:208.506667pt;}
.y16_c00065{bottom:231.040000pt;}
.y15_c00065{bottom:253.173333pt;}
.y14_c00065{bottom:275.440000pt;}
.y13_c00065{bottom:298.506667pt;}
.y12_c00065{bottom:319.173333pt;}
.y11_c00065{bottom:341.706667pt;}
.y10_c00065{bottom:364.106667pt;}
.yf_c00065{bottom:385.706667pt;}
.ye_c00065{bottom:408.906667pt;}
.yd_c00065{bottom:431.306667pt;}
.yc_c00065{bottom:453.040000pt;}
.yb_c00065{bottom:475.440000pt;}
.ya_c00065{bottom:519.306667pt;}
.y9_c00065{bottom:569.040000pt;}
.y8_c00065{bottom:584.106667pt;}
.y7_c00065{bottom:599.973333pt;}
.y6_c00065{bottom:615.573333pt;}
.y5_c00065{bottom:631.440000pt;}
.y4_c00065{bottom:647.440000pt;}
.y3_c00065{bottom:662.640000pt;}
.y2_c00065{bottom:678.506667pt;}
.y1_c00065{bottom:696.240000pt;}
.h9_c00065{height:11.733399pt;}
.ha_c00065{height:38.937500pt;}
.h4_c00065{height:56.179688pt;}
.h3_c00065{height:60.773438pt;}
.h8_c00065{height:61.812500pt;}
.h7_c00065{height:64.500000pt;}
.h5_c00065{height:67.526042pt;}
.h6_c00065{height:71.785156pt;}
.h2_c00065{height:77.654948pt;}
.h1_c00065{height:732.666667pt;}
.h0_c00065{height:732.933333pt;}
.w2_c00065{width:93.222667pt;}
.w1_c00065{width:498.666667pt;}
.w0_c00065{width:498.733333pt;}
.x0_c00065{left:0.000000pt;}
.xd_c00065{left:35.733333pt;}
.xb_c00065{left:38.133333pt;}
.xc_c00065{left:48.933333pt;}
.xe_c00065{left:50.933333pt;}
.x9_c00065{left:64.266667pt;}
.xf_c00065{left:90.933333pt;}
.x12_c00065{left:92.000000pt;}
.x10_c00065{left:92.933333pt;}
.xa_c00065{left:94.000000pt;}
.x8_c00065{left:95.066667pt;}
.x5_c00065{left:96.000000pt;}
.x3_c00065{left:97.466667pt;}
.x2_c00065{left:98.400000pt;}
.x11_c00065{left:108.266667pt;}
.x4_c00065{left:112.800000pt;}
.x7_c00065{left:117.600000pt;}
.x1_c00065{left:120.266667pt;}
.x6_c00065{left:135.333333pt;}
.x14_c00065{left:206.534871pt;}
.x13_c00065{left:416.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_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_4033310af6725fb24761618f.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_d9c7cd3a08ce53ef24f56a96.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_e500f39a5b6785d79016d726.woff2')format("woff");}.ff3_c00066{font-family:ff3_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:ff4_c00066;src:url('chunks/assets/font_3b9a2d8474aafbe298581963.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_7ea5c8fb208860a184173028.woff2')format("woff");}.ff5_c00066{font-family:ff5_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:ff6_c00066;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00066{font-family:ff6_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;}
.ls3_c00066{letter-spacing:0.000000px;}
.ls1_c00066{letter-spacing:2.691000px;}
.ls2_c00066{letter-spacing:3.000000px;}
.ls0_c00066{letter-spacing:6.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00066{word-spacing:-21.906000px;}
.wsa_c00066{word-spacing:-19.629000px;}
.ws6_c00066{word-spacing:-19.500000px;}
.ws5_c00066{word-spacing:-16.629000px;}
.wsb_c00066{word-spacing:-13.014000px;}
.ws0_c00066{word-spacing:-6.396000px;}
.wsc_c00066{word-spacing:-0.828000px;}
.ws3_c00066{word-spacing:-0.759000px;}
.ws8_c00066{word-spacing:-0.690000px;}
.wsd_c00066{word-spacing:-0.414000px;}
.wse_c00066{word-spacing:0.000000px;}
.ws2_c00066{word-spacing:0.138000px;}
.ws7_c00066{word-spacing:1.035000px;}
.ws4_c00066{word-spacing:2.553000px;}
.ws9_c00066{word-spacing:8.556000px;}
._2f_c00066{margin-left:-38.727000px;}
._23_c00066{margin-left:-22.653000px;}
._17_c00066{margin-left:-20.508000px;}
._1c_c00066{margin-left:-17.547000px;}
._4_c00066{margin-left:-16.422000px;}
._11_c00066{margin-left:-13.386000px;}
._8_c00066{margin-left:-12.213000px;}
._27_c00066{margin-left:-10.485000px;}
._2_c00066{margin-left:-9.039000px;}
._15_c00066{margin-left:-7.869000px;}
._3_c00066{margin-left:-6.348000px;}
._7_c00066{margin-left:-5.313000px;}
._c_c00066{margin-left:-3.744000px;}
._14_c00066{margin-left:-2.631000px;}
._5_c00066{margin-left:-1.587000px;}
._10_c00066{width:1.653000px;}
._1_c00066{width:3.519000px;}
._19_c00066{width:4.854000px;}
._f_c00066{width:5.874000px;}
._0_c00066{width:7.245000px;}
._25_c00066{width:8.592000px;}
._e_c00066{width:9.636000px;}
._d_c00066{width:10.641000px;}
._9_c00066{width:12.276000px;}
._24_c00066{width:13.725000px;}
._12_c00066{width:14.844000px;}
._18_c00066{width:16.041000px;}
._a_c00066{width:17.754000px;}
._2d_c00066{width:18.867000px;}
._b_c00066{width:20.922000px;}
._1a_c00066{width:22.680000px;}
._1d_c00066{width:24.303000px;}
._2e_c00066{width:25.995000px;}
._13_c00066{width:30.309000px;}
._21_c00066{width:31.989000px;}
._28_c00066{width:34.449000px;}
._1b_c00066{width:39.429000px;}
._29_c00066{width:41.703000px;}
._2c_c00066{width:45.003000px;}
._1f_c00066{width:47.847000px;}
._20_c00066{width:51.135000px;}
._16_c00066{width:72.666000px;}
._2a_c00066{width:96.246000px;}
._22_c00066{width:158.226000px;}
._1e_c00066{width:161.094000px;}
._2b_c00066{width:166.590000px;}
._26_c00066{width:181.812000px;}
._30_c00066{width:486.588000px;}
._6_c00066{width:488.205000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(128,128,128);}
.fc0_c00066{color:rgb(0,0,0);}
.fs6_c00066{font-size:48.000000px;}
.fs4_c00066{font-size:54.000000px;}
.fs3_c00066{font-size:57.000000px;}
.fs1_c00066{font-size:66.000000px;}
.fs0_c00066{font-size:69.000000px;}
.fs2_c00066{font-size:78.000000px;}
.fs5_c00066{font-size:117.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1f_c00066{bottom:3.105000px;}
.y1e_c00066{bottom:7.228371px;}
.y1d_c00066{bottom:61.515000px;}
.y1c_c00066{bottom:87.165000px;}
.y1b_c00066{bottom:116.865000px;}
.y1a_c00066{bottom:157.365000px;}
.y19_c00066{bottom:175.215000px;}
.y18_c00066{bottom:192.765000px;}
.y17_c00066{bottom:213.615000px;}
.y16_c00066{bottom:237.615000px;}
.y15_c00066{bottom:263.265000px;}
.y14_c00066{bottom:287.865000px;}
.y13_c00066{bottom:313.215000px;}
.y12_c00066{bottom:338.865000px;}
.y11_c00066{bottom:362.865000px;}
.y10_c00066{bottom:387.915000px;}
.yf_c00066{bottom:412.515000px;}
.ye_c00066{bottom:437.865000px;}
.yd_c00066{bottom:462.465000px;}
.yc_c00066{bottom:487.065000px;}
.yb_c00066{bottom:511.665000px;}
.ya_c00066{bottom:535.965000px;}
.y9_c00066{bottom:560.565000px;}
.y8_c00066{bottom:586.665000px;}
.y7_c00066{bottom:610.215000px;}
.y6_c00066{bottom:635.265000px;}
.y5_c00066{bottom:661.515000px;}
.y4_c00066{bottom:685.515000px;}
.y3_c00066{bottom:710.565000px;}
.y2_c00066{bottom:747.915000px;}
.y1_c00066{bottom:784.365000px;}
.h9_c00066{height:13.200074px;}
.ha_c00066{height:43.804688px;}
.h5_c00066{height:66.713379px;}
.h7_c00066{height:68.370117px;}
.h6_c00066{height:69.539062px;}
.h4_c00066{height:80.758301px;}
.h2_c00066{height:87.361816px;}
.h3_c00066{height:98.756836px;}
.h8_c00066{height:148.135254px;}
.h1_c00066{height:831.000000px;}
.h0_c00066{height:831.075000px;}
.w1_c00066{width:104.875500px;}
.w0_c00066{width:557.250000px;}
.x0_c00066{left:0.000000px;}
.x6_c00066{left:39.150000px;}
.x8_c00066{left:40.200000px;}
.x4_c00066{left:42.300000px;}
.x9_c00066{left:43.950000px;}
.x7_c00066{left:64.200000px;}
.x3_c00066{left:65.550000px;}
.xb_c00066{left:68.850000px;}
.x2_c00066{left:81.450000px;}
.xa_c00066{left:100.200000px;}
.x5_c00066{left:101.700000px;}
.x1_c00066{left:198.900000px;}
.xd_c00066{left:230.439240px;}
.xc_c00066{left:322.650000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls3_c00066{letter-spacing:0.000000pt;}
.ls1_c00066{letter-spacing:2.392000pt;}
.ls2_c00066{letter-spacing:2.666667pt;}
.ls0_c00066{letter-spacing:5.333333pt;}
.ws1_c00066{word-spacing:-19.472000pt;}
.wsa_c00066{word-spacing:-17.448000pt;}
.ws6_c00066{word-spacing:-17.333333pt;}
.ws5_c00066{word-spacing:-14.781333pt;}
.wsb_c00066{word-spacing:-11.568000pt;}
.ws0_c00066{word-spacing:-5.685333pt;}
.wsc_c00066{word-spacing:-0.736000pt;}
.ws3_c00066{word-spacing:-0.674667pt;}
.ws8_c00066{word-spacing:-0.613333pt;}
.wsd_c00066{word-spacing:-0.368000pt;}
.wse_c00066{word-spacing:0.000000pt;}
.ws2_c00066{word-spacing:0.122667pt;}
.ws7_c00066{word-spacing:0.920000pt;}
.ws4_c00066{word-spacing:2.269333pt;}
.ws9_c00066{word-spacing:7.605333pt;}
._2f_c00066{margin-left:-34.424000pt;}
._23_c00066{margin-left:-20.136000pt;}
._17_c00066{margin-left:-18.229333pt;}
._1c_c00066{margin-left:-15.597333pt;}
._4_c00066{margin-left:-14.597333pt;}
._11_c00066{margin-left:-11.898667pt;}
._8_c00066{margin-left:-10.856000pt;}
._27_c00066{margin-left:-9.320000pt;}
._2_c00066{margin-left:-8.034667pt;}
._15_c00066{margin-left:-6.994667pt;}
._3_c00066{margin-left:-5.642667pt;}
._7_c00066{margin-left:-4.722667pt;}
._c_c00066{margin-left:-3.328000pt;}
._14_c00066{margin-left:-2.338667pt;}
._5_c00066{margin-left:-1.410667pt;}
._10_c00066{width:1.469333pt;}
._1_c00066{width:3.128000pt;}
._19_c00066{width:4.314667pt;}
._f_c00066{width:5.221333pt;}
._0_c00066{width:6.440000pt;}
._25_c00066{width:7.637333pt;}
._e_c00066{width:8.565333pt;}
._d_c00066{width:9.458667pt;}
._9_c00066{width:10.912000pt;}
._24_c00066{width:12.200000pt;}
._12_c00066{width:13.194667pt;}
._18_c00066{width:14.258667pt;}
._a_c00066{width:15.781333pt;}
._2d_c00066{width:16.770667pt;}
._b_c00066{width:18.597333pt;}
._1a_c00066{width:20.160000pt;}
._1d_c00066{width:21.602667pt;}
._2e_c00066{width:23.106667pt;}
._13_c00066{width:26.941333pt;}
._21_c00066{width:28.434667pt;}
._28_c00066{width:30.621333pt;}
._1b_c00066{width:35.048000pt;}
._29_c00066{width:37.069333pt;}
._2c_c00066{width:40.002667pt;}
._1f_c00066{width:42.530667pt;}
._20_c00066{width:45.453333pt;}
._16_c00066{width:64.592000pt;}
._2a_c00066{width:85.552000pt;}
._22_c00066{width:140.645333pt;}
._1e_c00066{width:143.194667pt;}
._2b_c00066{width:148.080000pt;}
._26_c00066{width:161.610667pt;}
._30_c00066{width:432.522667pt;}
._6_c00066{width:433.960000pt;}
.fs6_c00066{font-size:42.666667pt;}
.fs4_c00066{font-size:48.000000pt;}
.fs3_c00066{font-size:50.666667pt;}
.fs1_c00066{font-size:58.666667pt;}
.fs0_c00066{font-size:61.333333pt;}
.fs2_c00066{font-size:69.333333pt;}
.fs5_c00066{font-size:104.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y1f_c00066{bottom:2.760000pt;}
.y1e_c00066{bottom:6.425219pt;}
.y1d_c00066{bottom:54.680000pt;}
.y1c_c00066{bottom:77.480000pt;}
.y1b_c00066{bottom:103.880000pt;}
.y1a_c00066{bottom:139.880000pt;}
.y19_c00066{bottom:155.746667pt;}
.y18_c00066{bottom:171.346667pt;}
.y17_c00066{bottom:189.880000pt;}
.y16_c00066{bottom:211.213333pt;}
.y15_c00066{bottom:234.013333pt;}
.y14_c00066{bottom:255.880000pt;}
.y13_c00066{bottom:278.413333pt;}
.y12_c00066{bottom:301.213333pt;}
.y11_c00066{bottom:322.546667pt;}
.y10_c00066{bottom:344.813333pt;}
.yf_c00066{bottom:366.680000pt;}
.ye_c00066{bottom:389.213333pt;}
.yd_c00066{bottom:411.080000pt;}
.yc_c00066{bottom:432.946667pt;}
.yb_c00066{bottom:454.813333pt;}
.ya_c00066{bottom:476.413333pt;}
.y9_c00066{bottom:498.280000pt;}
.y8_c00066{bottom:521.480000pt;}
.y7_c00066{bottom:542.413333pt;}
.y6_c00066{bottom:564.680000pt;}
.y5_c00066{bottom:588.013333pt;}
.y4_c00066{bottom:609.346667pt;}
.y3_c00066{bottom:631.613333pt;}
.y2_c00066{bottom:664.813333pt;}
.y1_c00066{bottom:697.213333pt;}
.h9_c00066{height:11.733399pt;}
.ha_c00066{height:38.937500pt;}
.h5_c00066{height:59.300781pt;}
.h7_c00066{height:60.773438pt;}
.h6_c00066{height:61.812500pt;}
.h4_c00066{height:71.785156pt;}
.h2_c00066{height:77.654948pt;}
.h3_c00066{height:87.783854pt;}
.h8_c00066{height:131.675781pt;}
.h1_c00066{height:738.666667pt;}
.h0_c00066{height:738.733333pt;}
.w1_c00066{width:93.222667pt;}
.w0_c00066{width:495.333333pt;}
.x0_c00066{left:0.000000pt;}
.x6_c00066{left:34.800000pt;}
.x8_c00066{left:35.733333pt;}
.x4_c00066{left:37.600000pt;}
.x9_c00066{left:39.066667pt;}
.x7_c00066{left:57.066667pt;}
.x3_c00066{left:58.266667pt;}
.xb_c00066{left:61.200000pt;}
.x2_c00066{left:72.400000pt;}
.xa_c00066{left:89.066667pt;}
.x5_c00066{left:90.400000pt;}
.x1_c00066{left:176.800000pt;}
.xd_c00066{left:204.834880pt;}
.xc_c00066{left:286.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_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_81710b766d78cb6474cc8399.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_a4d95e392b1d1045fc50f68a.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_77a88cdee8e9a42b41c7fd2f.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00067{font-family:ff4_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;}
.ls4_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:3.000000px;}
.ls1_c00067{letter-spacing:4.800000px;}
.ls2_c00067{letter-spacing:16.125000px;}
.ls3_c00067{letter-spacing:17.325000px;}
.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;}
}
.ws1_c00067{word-spacing:-47.022000px;}
.ws2_c00067{word-spacing:-19.629000px;}
.ws0_c00067{word-spacing:-16.629000px;}
.ws3_c00067{word-spacing:0.000000px;}
._9_c00067{margin-left:-20.010000px;}
._10_c00067{margin-left:-16.698000px;}
._0_c00067{margin-left:-15.594000px;}
._13_c00067{margin-left:-14.145000px;}
._11_c00067{margin-left:-12.558000px;}
._8_c00067{margin-left:-10.695000px;}
._12_c00067{margin-left:-9.177000px;}
._1_c00067{margin-left:-7.935000px;}
._c_c00067{margin-left:-6.555000px;}
._1f_c00067{margin-left:-5.451000px;}
._5_c00067{margin-left:-3.933000px;}
._7_c00067{margin-left:-2.553000px;}
._4_c00067{margin-left:-1.242000px;}
._2_c00067{width:1.518000px;}
._e_c00067{width:2.967000px;}
._6_c00067{width:4.071000px;}
._15_c00067{width:5.175000px;}
._18_c00067{width:6.210000px;}
._1c_c00067{width:7.278000px;}
._d_c00067{width:9.039000px;}
._a_c00067{width:10.350000px;}
._21_c00067{width:11.877000px;}
._b_c00067{width:12.903000px;}
._1b_c00067{width:14.490000px;}
._16_c00067{width:15.732000px;}
._17_c00067{width:17.043000px;}
._28_c00067{width:18.276000px;}
._1a_c00067{width:21.150000px;}
._19_c00067{width:22.356000px;}
._2b_c00067{width:24.048000px;}
._20_c00067{width:30.498000px;}
._26_c00067{width:32.682000px;}
._25_c00067{width:34.155000px;}
._22_c00067{width:38.847000px;}
._1d_c00067{width:40.365000px;}
._24_c00067{width:58.236000px;}
._29_c00067{width:93.387000px;}
._1e_c00067{width:96.000000px;}
._f_c00067{width:103.293000px;}
._27_c00067{width:113.436000px;}
._23_c00067{width:150.075000px;}
._2a_c00067{width:264.510000px;}
._14_c00067{width:266.166000px;}
._2c_c00067{width:328.230000px;}
._3_c00067{width:361.632000px;}
.fc2_c00067{color:transparent;}
.fc1_c00067{color:rgb(128,128,128);}
.fc0_c00067{color:rgb(0,0,0);}
.fs4_c00067{font-size:48.000000px;}
.fs3_c00067{font-size:54.000000px;}
.fs1_c00067{font-size:66.000000px;}
.fs0_c00067{font-size:69.000000px;}
.fs2_c00067{font-size:84.000000px;}
.y0_c00067{bottom:0.000000px;}
.y21_c00067{bottom:3.105000px;}
.y20_c00067{bottom:7.228369px;}
.y1f_c00067{bottom:73.620000px;}
.y1e_c00067{bottom:90.720000px;}
.y1d_c00067{bottom:99.120000px;}
.y1c_c00067{bottom:124.920000px;}
.y1b_c00067{bottom:149.820000px;}
.y1a_c00067{bottom:174.870000px;}
.y19_c00067{bottom:200.520000px;}
.y18_c00067{bottom:225.120000px;}
.y17_c00067{bottom:250.320000px;}
.y16_c00067{bottom:275.370000px;}
.y15_c00067{bottom:299.970000px;}
.y14_c00067{bottom:325.020000px;}
.y13_c00067{bottom:349.620000px;}
.y12_c00067{bottom:374.220000px;}
.y11_c00067{bottom:399.270000px;}
.y10_c00067{bottom:423.570000px;}
.yf_c00067{bottom:448.170000px;}
.ye_c00067{bottom:473.820000px;}
.yd_c00067{bottom:498.870000px;}
.yc_c00067{bottom:523.770000px;}
.yb_c00067{bottom:548.370000px;}
.ya_c00067{bottom:573.120000px;}
.y9_c00067{bottom:597.420000px;}
.y8_c00067{bottom:623.070000px;}
.y7_c00067{bottom:647.370000px;}
.y6_c00067{bottom:673.020000px;}
.y5_c00067{bottom:697.320000px;}
.y4_c00067{bottom:722.520000px;}
.y3_c00067{bottom:747.870000px;}
.y2_c00067{bottom:773.220000px;}
.y1_c00067{bottom:798.570000px;}
.h6_c00067{height:13.200073px;}
.h7_c00067{height:43.804688px;}
.h5_c00067{height:68.370117px;}
.h3_c00067{height:80.758301px;}
.h2_c00067{height:87.361816px;}
.h4_c00067{height:106.353516px;}
.h0_c00067{height:842.100000px;}
.h1_c00067{height:842.250000px;}
.w2_c00067{width:104.875500px;}
.w0_c00067{width:572.925000px;}
.w1_c00067{width:573.000000px;}
.x0_c00067{left:0.000000px;}
.xf_c00067{left:45.900000px;}
.xb_c00067{left:46.950000px;}
.x8_c00067{left:51.000000px;}
.xd_c00067{left:59.850000px;}
.xe_c00067{left:61.500000px;}
.x7_c00067{left:66.450000px;}
.x3_c00067{left:85.950000px;}
.x10_c00067{left:111.150000px;}
.xc_c00067{left:112.350000px;}
.xa_c00067{left:113.700000px;}
.x9_c00067{left:115.200000px;}
.x6_c00067{left:116.400000px;}
.x5_c00067{left:117.450000px;}
.x2_c00067{left:121.200000px;}
.x1_c00067{left:135.600000px;}
.x4_c00067{left:159.600000px;}
.x13_c00067{left:238.276749px;}
.x11_c00067{left:416.100000px;}
.x12_c00067{left:509.400000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls4_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:2.666667pt;}
.ls1_c00067{letter-spacing:4.266667pt;}
.ls2_c00067{letter-spacing:14.333333pt;}
.ls3_c00067{letter-spacing:15.400000pt;}
.ws1_c00067{word-spacing:-41.797333pt;}
.ws2_c00067{word-spacing:-17.448000pt;}
.ws0_c00067{word-spacing:-14.781333pt;}
.ws3_c00067{word-spacing:0.000000pt;}
._9_c00067{margin-left:-17.786667pt;}
._10_c00067{margin-left:-14.842667pt;}
._0_c00067{margin-left:-13.861333pt;}
._13_c00067{margin-left:-12.573333pt;}
._11_c00067{margin-left:-11.162667pt;}
._8_c00067{margin-left:-9.506667pt;}
._12_c00067{margin-left:-8.157333pt;}
._1_c00067{margin-left:-7.053333pt;}
._c_c00067{margin-left:-5.826667pt;}
._1f_c00067{margin-left:-4.845333pt;}
._5_c00067{margin-left:-3.496000pt;}
._7_c00067{margin-left:-2.269333pt;}
._4_c00067{margin-left:-1.104000pt;}
._2_c00067{width:1.349333pt;}
._e_c00067{width:2.637333pt;}
._6_c00067{width:3.618667pt;}
._15_c00067{width:4.600000pt;}
._18_c00067{width:5.520000pt;}
._1c_c00067{width:6.469333pt;}
._d_c00067{width:8.034667pt;}
._a_c00067{width:9.200000pt;}
._21_c00067{width:10.557333pt;}
._b_c00067{width:11.469333pt;}
._1b_c00067{width:12.880000pt;}
._16_c00067{width:13.984000pt;}
._17_c00067{width:15.149333pt;}
._28_c00067{width:16.245333pt;}
._1a_c00067{width:18.800000pt;}
._19_c00067{width:19.872000pt;}
._2b_c00067{width:21.376000pt;}
._20_c00067{width:27.109333pt;}
._26_c00067{width:29.050667pt;}
._25_c00067{width:30.360000pt;}
._22_c00067{width:34.530667pt;}
._1d_c00067{width:35.880000pt;}
._24_c00067{width:51.765333pt;}
._29_c00067{width:83.010667pt;}
._1e_c00067{width:85.333333pt;}
._f_c00067{width:91.816000pt;}
._27_c00067{width:100.832000pt;}
._23_c00067{width:133.400000pt;}
._2a_c00067{width:235.120000pt;}
._14_c00067{width:236.592000pt;}
._2c_c00067{width:291.760000pt;}
._3_c00067{width:321.450667pt;}
.fs4_c00067{font-size:42.666667pt;}
.fs3_c00067{font-size:48.000000pt;}
.fs1_c00067{font-size:58.666667pt;}
.fs0_c00067{font-size:61.333333pt;}
.fs2_c00067{font-size:74.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y21_c00067{bottom:2.760000pt;}
.y20_c00067{bottom:6.425217pt;}
.y1f_c00067{bottom:65.440000pt;}
.y1e_c00067{bottom:80.640000pt;}
.y1d_c00067{bottom:88.106667pt;}
.y1c_c00067{bottom:111.040000pt;}
.y1b_c00067{bottom:133.173333pt;}
.y1a_c00067{bottom:155.440000pt;}
.y19_c00067{bottom:178.240000pt;}
.y18_c00067{bottom:200.106667pt;}
.y17_c00067{bottom:222.506667pt;}
.y16_c00067{bottom:244.773333pt;}
.y15_c00067{bottom:266.640000pt;}
.y14_c00067{bottom:288.906667pt;}
.y13_c00067{bottom:310.773333pt;}
.y12_c00067{bottom:332.640000pt;}
.y11_c00067{bottom:354.906667pt;}
.y10_c00067{bottom:376.506667pt;}
.yf_c00067{bottom:398.373333pt;}
.ye_c00067{bottom:421.173333pt;}
.yd_c00067{bottom:443.440000pt;}
.yc_c00067{bottom:465.573333pt;}
.yb_c00067{bottom:487.440000pt;}
.ya_c00067{bottom:509.440000pt;}
.y9_c00067{bottom:531.040000pt;}
.y8_c00067{bottom:553.840000pt;}
.y7_c00067{bottom:575.440000pt;}
.y6_c00067{bottom:598.240000pt;}
.y5_c00067{bottom:619.840000pt;}
.y4_c00067{bottom:642.240000pt;}
.y3_c00067{bottom:664.773333pt;}
.y2_c00067{bottom:687.306667pt;}
.y1_c00067{bottom:709.840000pt;}
.h6_c00067{height:11.733399pt;}
.h7_c00067{height:38.937500pt;}
.h5_c00067{height:60.773438pt;}
.h3_c00067{height:71.785156pt;}
.h2_c00067{height:77.654948pt;}
.h4_c00067{height:94.536458pt;}
.h0_c00067{height:748.533333pt;}
.h1_c00067{height:748.666667pt;}
.w2_c00067{width:93.222667pt;}
.w0_c00067{width:509.266667pt;}
.w1_c00067{width:509.333333pt;}
.x0_c00067{left:0.000000pt;}
.xf_c00067{left:40.800000pt;}
.xb_c00067{left:41.733333pt;}
.x8_c00067{left:45.333333pt;}
.xd_c00067{left:53.200000pt;}
.xe_c00067{left:54.666667pt;}
.x7_c00067{left:59.066667pt;}
.x3_c00067{left:76.400000pt;}
.x10_c00067{left:98.800000pt;}
.xc_c00067{left:99.866667pt;}
.xa_c00067{left:101.066667pt;}
.x9_c00067{left:102.400000pt;}
.x6_c00067{left:103.466667pt;}
.x5_c00067{left:104.400000pt;}
.x2_c00067{left:107.733333pt;}
.x1_c00067{left:120.533333pt;}
.x4_c00067{left:141.866667pt;}
.x13_c00067{left:211.801554pt;}
.x11_c00067{left:369.866667pt;}
.x12_c00067{left:452.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_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_6673925e77ec2f354da32296.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_59be52c34720efca16232f6b.woff2')format("woff");}.ff2_c00068{font-family:ff2_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:ff3_c00068;src:url('chunks/assets/font_28fd8bf8143d6c477678e1af.woff2')format("woff");}.ff3_c00068{font-family:ff3_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:ff4_c00068;src:url('chunks/assets/font_a5c09d1687cdc1b91ca94929.woff2')format("woff");}.ff4_c00068{font-family:ff4_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:ff5_c00068;src:url('chunks/assets/font_cd1a5137f7263e7faa9d06d8.woff2')format("woff");}.ff5_c00068{font-family:ff5_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:ff6_c00068;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00068;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00068{font-family:ff7_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;}
.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);}
.v1_c00068{vertical-align:-70.800000px;}
.v0_c00068{vertical-align:0.000000px;}
.ls2_c00068{letter-spacing:0.000000px;}
.ls4_c00068{letter-spacing:3.000000px;}
.ls6_c00068{letter-spacing:6.000000px;}
.ls3_c00068{letter-spacing:9.000000px;}
.ls1_c00068{letter-spacing:20.400000px;}
.ls5_c00068{letter-spacing:24.000000px;}
.ls0_c00068{letter-spacing:500.550000px;}
.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;}
}
.ws4_c00068{word-spacing:-56.235000px;}
.ws3_c00068{word-spacing:-44.988000px;}
.ws7_c00068{word-spacing:-34.845000px;}
.ws0_c00068{word-spacing:-27.000000px;}
.ws1_c00068{word-spacing:-19.629000px;}
.ws2_c00068{word-spacing:-16.629000px;}
.ws8_c00068{word-spacing:-15.906000px;}
.ws5_c00068{word-spacing:-13.014000px;}
.ws9_c00068{word-spacing:-6.396000px;}
.wsa_c00068{word-spacing:-5.604000px;}
.wsb_c00068{word-spacing:0.000000px;}
.ws6_c00068{word-spacing:329.253000px;}
._11_c00068{margin-left:-24.492000px;}
._1d_c00068{margin-left:-12.642000px;}
._1a_c00068{margin-left:-10.114800px;}
._16_c00068{margin-left:-8.455200px;}
._d_c00068{margin-left:-7.176000px;}
._12_c00068{margin-left:-5.142000px;}
._2_c00068{margin-left:-3.657000px;}
._9_c00068{margin-left:-2.622000px;}
._8_c00068{margin-left:-1.242000px;}
._3_c00068{width:1.380000px;}
._1_c00068{width:3.036000px;}
._7_c00068{width:4.692000px;}
._0_c00068{width:5.727000px;}
._5_c00068{width:6.969000px;}
._c_c00068{width:8.106000px;}
._4_c00068{width:9.591000px;}
._f_c00068{width:10.731000px;}
._6_c00068{width:11.766000px;}
._13_c00068{width:13.938000px;}
._b_c00068{width:15.456000px;}
._a_c00068{width:16.629000px;}
._e_c00068{width:18.390000px;}
._10_c00068{width:21.975000px;}
._17_c00068{width:23.859000px;}
._14_c00068{width:24.912000px;}
._1b_c00068{width:29.187000px;}
._15_c00068{width:34.905000px;}
._1c_c00068{width:39.126000px;}
._18_c00068{width:62.040000px;}
._19_c00068{width:211.071000px;}
._1e_c00068{width:507.792000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(128,128,128);}
.fc0_c00068{color:rgb(0,0,0);}
.fs4_c00068{font-size:45.000000px;}
.fs5_c00068{font-size:48.000000px;}
.fs3_c00068{font-size:54.000000px;}
.fs2_c00068{font-size:55.200000px;}
.fs6_c00068{font-size:66.000000px;}
.fs0_c00068{font-size:69.000000px;}
.fs1_c00068{font-size:72.000000px;}
.fs7_c00068{font-size:78.000000px;}
.y0_c00068{bottom:0.000000px;}
.y21_c00068{bottom:3.105000px;}
.y20_c00068{bottom:7.228371px;}
.y1f_c00068{bottom:69.165000px;}
.y1e_c00068{bottom:94.815000px;}
.y1d_c00068{bottom:119.865000px;}
.y1c_c00068{bottom:168.465000px;}
.y1b_c00068{bottom:214.965000px;}
.y1a_c00068{bottom:232.215000px;}
.y19_c00068{bottom:250.065000px;}
.y18_c00068{bottom:267.615000px;}
.y17_c00068{bottom:285.315000px;}
.y16_c00068{bottom:304.515000px;}
.y15_c00068{bottom:320.265000px;}
.y14_c00068{bottom:337.965000px;}
.y13_c00068{bottom:356.115000px;}
.y12_c00068{bottom:372.915000px;}
.y11_c00068{bottom:390.465000px;}
.y10_c00068{bottom:443.265000px;}
.yf_c00068{bottom:460.665000px;}
.ye_c00068{bottom:477.915000px;}
.yd_c00068{bottom:495.165000px;}
.yc_c00068{bottom:515.115000px;}
.yb_c00068{bottom:539.115000px;}
.ya_c00068{bottom:565.365000px;}
.y9_c00068{bottom:588.915000px;}
.y8_c00068{bottom:614.265000px;}
.y7_c00068{bottom:638.565000px;}
.y6_c00068{bottom:663.315000px;}
.y5_c00068{bottom:688.065000px;}
.y4_c00068{bottom:712.815000px;}
.y3_c00068{bottom:737.565000px;}
.y2_c00068{bottom:762.465000px;}
.y1_c00068{bottom:786.465000px;}
.h8_c00068{height:13.200074px;}
.h9_c00068{height:43.804688px;}
.h4_c00068{height:68.370117px;}
.h2_c00068{height:72.562500px;}
.h5_c00068{height:80.758301px;}
.h6_c00068{height:83.563477px;}
.h3_c00068{height:87.361816px;}
.h7_c00068{height:98.756836px;}
.h1_c00068{height:831.000000px;}
.h0_c00068{height:831.075000px;}
.w1_c00068{width:104.875500px;}
.w0_c00068{width:557.250000px;}
.x0_c00068{left:0.000000px;}
.x2_c00068{left:40.200000px;}
.x3_c00068{left:41.850000px;}
.x4_c00068{left:42.900000px;}
.x5_c00068{left:43.950000px;}
.x7_c00068{left:45.000000px;}
.xd_c00068{left:49.050000px;}
.xc_c00068{left:61.500000px;}
.x6_c00068{left:62.850000px;}
.x8_c00068{left:64.200000px;}
.xa_c00068{left:66.900000px;}
.x9_c00068{left:67.950000px;}
.xb_c00068{left:101.250000px;}
.x1_c00068{left:198.150000px;}
.xf_c00068{left:230.439240px;}
.xe_c00068{left:283.500000px;}
@media print{
.v1_c00068{vertical-align:-62.933333pt;}
.v0_c00068{vertical-align:0.000000pt;}
.ls2_c00068{letter-spacing:0.000000pt;}
.ls4_c00068{letter-spacing:2.666667pt;}
.ls6_c00068{letter-spacing:5.333333pt;}
.ls3_c00068{letter-spacing:8.000000pt;}
.ls1_c00068{letter-spacing:18.133333pt;}
.ls5_c00068{letter-spacing:21.333333pt;}
.ls0_c00068{letter-spacing:444.933333pt;}
.ws4_c00068{word-spacing:-49.986667pt;}
.ws3_c00068{word-spacing:-39.989333pt;}
.ws7_c00068{word-spacing:-30.973333pt;}
.ws0_c00068{word-spacing:-24.000000pt;}
.ws1_c00068{word-spacing:-17.448000pt;}
.ws2_c00068{word-spacing:-14.781333pt;}
.ws8_c00068{word-spacing:-14.138667pt;}
.ws5_c00068{word-spacing:-11.568000pt;}
.ws9_c00068{word-spacing:-5.685333pt;}
.wsa_c00068{word-spacing:-4.981333pt;}
.wsb_c00068{word-spacing:0.000000pt;}
.ws6_c00068{word-spacing:292.669333pt;}
._11_c00068{margin-left:-21.770667pt;}
._1d_c00068{margin-left:-11.237333pt;}
._1a_c00068{margin-left:-8.990933pt;}
._16_c00068{margin-left:-7.515733pt;}
._d_c00068{margin-left:-6.378667pt;}
._12_c00068{margin-left:-4.570667pt;}
._2_c00068{margin-left:-3.250667pt;}
._9_c00068{margin-left:-2.330667pt;}
._8_c00068{margin-left:-1.104000pt;}
._3_c00068{width:1.226667pt;}
._1_c00068{width:2.698667pt;}
._7_c00068{width:4.170667pt;}
._0_c00068{width:5.090667pt;}
._5_c00068{width:6.194667pt;}
._c_c00068{width:7.205333pt;}
._4_c00068{width:8.525333pt;}
._f_c00068{width:9.538667pt;}
._6_c00068{width:10.458667pt;}
._13_c00068{width:12.389333pt;}
._b_c00068{width:13.738667pt;}
._a_c00068{width:14.781333pt;}
._e_c00068{width:16.346667pt;}
._10_c00068{width:19.533333pt;}
._17_c00068{width:21.208000pt;}
._14_c00068{width:22.144000pt;}
._1b_c00068{width:25.944000pt;}
._15_c00068{width:31.026667pt;}
._1c_c00068{width:34.778667pt;}
._18_c00068{width:55.146667pt;}
._19_c00068{width:187.618667pt;}
._1e_c00068{width:451.370667pt;}
.fs4_c00068{font-size:40.000000pt;}
.fs5_c00068{font-size:42.666667pt;}
.fs3_c00068{font-size:48.000000pt;}
.fs2_c00068{font-size:49.066667pt;}
.fs6_c00068{font-size:58.666667pt;}
.fs0_c00068{font-size:61.333333pt;}
.fs1_c00068{font-size:64.000000pt;}
.fs7_c00068{font-size:69.333333pt;}
.y0_c00068{bottom:0.000000pt;}
.y21_c00068{bottom:2.760000pt;}
.y20_c00068{bottom:6.425219pt;}
.y1f_c00068{bottom:61.480000pt;}
.y1e_c00068{bottom:84.280000pt;}
.y1d_c00068{bottom:106.546667pt;}
.y1c_c00068{bottom:149.746667pt;}
.y1b_c00068{bottom:191.080000pt;}
.y1a_c00068{bottom:206.413333pt;}
.y19_c00068{bottom:222.280000pt;}
.y18_c00068{bottom:237.880000pt;}
.y17_c00068{bottom:253.613333pt;}
.y16_c00068{bottom:270.680000pt;}
.y15_c00068{bottom:284.680000pt;}
.y14_c00068{bottom:300.413333pt;}
.y13_c00068{bottom:316.546667pt;}
.y12_c00068{bottom:331.480000pt;}
.y11_c00068{bottom:347.080000pt;}
.y10_c00068{bottom:394.013333pt;}
.yf_c00068{bottom:409.480000pt;}
.ye_c00068{bottom:424.813333pt;}
.yd_c00068{bottom:440.146667pt;}
.yc_c00068{bottom:457.880000pt;}
.yb_c00068{bottom:479.213333pt;}
.ya_c00068{bottom:502.546667pt;}
.y9_c00068{bottom:523.480000pt;}
.y8_c00068{bottom:546.013333pt;}
.y7_c00068{bottom:567.613333pt;}
.y6_c00068{bottom:589.613333pt;}
.y5_c00068{bottom:611.613333pt;}
.y4_c00068{bottom:633.613333pt;}
.y3_c00068{bottom:655.613333pt;}
.y2_c00068{bottom:677.746667pt;}
.y1_c00068{bottom:699.080000pt;}
.h8_c00068{height:11.733399pt;}
.h9_c00068{height:38.937500pt;}
.h4_c00068{height:60.773438pt;}
.h2_c00068{height:64.500000pt;}
.h5_c00068{height:71.785156pt;}
.h6_c00068{height:74.278646pt;}
.h3_c00068{height:77.654948pt;}
.h7_c00068{height:87.783854pt;}
.h1_c00068{height:738.666667pt;}
.h0_c00068{height:738.733333pt;}
.w1_c00068{width:93.222667pt;}
.w0_c00068{width:495.333333pt;}
.x0_c00068{left:0.000000pt;}
.x2_c00068{left:35.733333pt;}
.x3_c00068{left:37.200000pt;}
.x4_c00068{left:38.133333pt;}
.x5_c00068{left:39.066667pt;}
.x7_c00068{left:40.000000pt;}
.xd_c00068{left:43.600000pt;}
.xc_c00068{left:54.666667pt;}
.x6_c00068{left:55.866667pt;}
.x8_c00068{left:57.066667pt;}
.xa_c00068{left:59.466667pt;}
.x9_c00068{left:60.400000pt;}
.xb_c00068{left:90.000000pt;}
.x1_c00068{left:176.133333pt;}
.xf_c00068{left:204.834880pt;}
.xe_c00068{left:252.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_d35f9086348f41f684531088.woff2')format("woff");}.ff1_c00069{font-family:ff1_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:ff2_c00069;src:url('chunks/assets/font_217e791dbf7e504b9b878905.woff2')format("woff");}.ff2_c00069{font-family:ff2_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:ff3_c00069;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00069{font-family:ff3_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls2_c00069{letter-spacing:3.000000px;}
.ls3_c00069{letter-spacing:6.000000px;}
.ls0_c00069{letter-spacing:17.325000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-24.075000px;}
.ws0_c00069{word-spacing:-16.629000px;}
.ws2_c00069{word-spacing:0.000000px;}
._18_c00069{margin-left:-31.464000px;}
._1a_c00069{margin-left:-20.700000px;}
._25_c00069{margin-left:-14.973000px;}
._1e_c00069{margin-left:-12.489000px;}
._2_c00069{margin-left:-10.404000px;}
._23_c00069{margin-left:-9.228000px;}
._1_c00069{margin-left:-7.797000px;}
._0_c00069{margin-left:-6.210000px;}
._8_c00069{margin-left:-4.899000px;}
._a_c00069{margin-left:-3.795000px;}
._7_c00069{margin-left:-2.277000px;}
._5_c00069{margin-left:-1.242000px;}
._10_c00069{width:1.449000px;}
._9_c00069{width:2.967000px;}
._6_c00069{width:4.554000px;}
._f_c00069{width:6.072000px;}
._14_c00069{width:7.107000px;}
._e_c00069{width:8.349000px;}
._17_c00069{width:9.453000px;}
._11_c00069{width:10.695000px;}
._3_c00069{width:11.730000px;}
._1c_c00069{width:13.248000px;}
._12_c00069{width:14.352000px;}
._d_c00069{width:15.393000px;}
._c_c00069{width:17.244000px;}
._b_c00069{width:18.561000px;}
._15_c00069{width:21.702000px;}
._27_c00069{width:23.139000px;}
._13_c00069{width:24.495000px;}
._16_c00069{width:26.013000px;}
._20_c00069{width:28.290000px;}
._22_c00069{width:36.000000px;}
._21_c00069{width:38.088000px;}
._28_c00069{width:47.625000px;}
._19_c00069{width:55.959000px;}
._1d_c00069{width:63.165000px;}
._1f_c00069{width:71.001000px;}
._29_c00069{width:94.065000px;}
._1b_c00069{width:200.583000px;}
._2a_c00069{width:275.937000px;}
._4_c00069{width:378.345000px;}
._24_c00069{width:622.035000px;}
._26_c00069{width:876.783000px;}
.fc2_c00069{color:transparent;}
.fc1_c00069{color:rgb(128,128,128);}
.fc0_c00069{color:rgb(0,0,0);}
.fs3_c00069{font-size:48.000000px;}
.fs0_c00069{font-size:69.000000px;}
.fs1_c00069{font-size:72.000000px;}
.fs2_c00069{font-size:75.000000px;}
.y0_c00069{bottom:0.000000px;}
.y21_c00069{bottom:3.105000px;}
.y20_c00069{bottom:7.228369px;}
.y1f_c00069{bottom:65.070000px;}
.y1e_c00069{bottom:88.770000px;}
.y1d_c00069{bottom:114.420000px;}
.y1c_c00069{bottom:139.620000px;}
.y1b_c00069{bottom:164.070000px;}
.y1a_c00069{bottom:190.920000px;}
.y19_c00069{bottom:215.220000px;}
.y18_c00069{bottom:240.870000px;}
.y17_c00069{bottom:265.170000px;}
.y16_c00069{bottom:290.970000px;}
.y15_c00069{bottom:316.170000px;}
.y14_c00069{bottom:335.370000px;}
.y13_c00069{bottom:365.820000px;}
.y12_c00069{bottom:389.820000px;}
.y11_c00069{bottom:415.470000px;}
.y10_c00069{bottom:441.120000px;}
.yf_c00069{bottom:466.320000px;}
.ye_c00069{bottom:490.770000px;}
.yd_c00069{bottom:515.970000px;}
.yc_c00069{bottom:541.020000px;}
.yb_c00069{bottom:566.220000px;}
.ya_c00069{bottom:591.270000px;}
.y9_c00069{bottom:616.170000px;}
.y8_c00069{bottom:640.920000px;}
.y7_c00069{bottom:665.820000px;}
.y6_c00069{bottom:690.870000px;}
.y5_c00069{bottom:716.520000px;}
.y1_c00069{bottom:727.320000px;}
.y4_c00069{bottom:741.420000px;}
.y3_c00069{bottom:766.470000px;}
.y2_c00069{bottom:791.370000px;}
.h6_c00069{height:13.200073px;}
.h7_c00069{height:43.804688px;}
.h2_c00069{height:80.758301px;}
.h3_c00069{height:87.361816px;}
.h5_c00069{height:87.780762px;}
.h4_c00069{height:91.160156px;}
.h0_c00069{height:842.100000px;}
.h1_c00069{height:842.250000px;}
.w2_c00069{width:104.875500px;}
.w0_c00069{width:572.925000px;}
.w1_c00069{width:573.000000px;}
.x0_c00069{left:0.000000px;}
.xb_c00069{left:48.000000px;}
.x1_c00069{left:49.500000px;}
.x9_c00069{left:52.200000px;}
.xc_c00069{left:64.800000px;}
.xa_c00069{left:72.900000px;}
.x8_c00069{left:91.350000px;}
.x3_c00069{left:111.750000px;}
.x6_c00069{left:114.000000px;}
.x4_c00069{left:115.350000px;}
.x2_c00069{left:126.150000px;}
.x5_c00069{left:138.750000px;}
.x7_c00069{left:163.050000px;}
.xe_c00069{left:238.276749px;}
.xd_c00069{left:539.700000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls1_c00069{letter-spacing:0.000000pt;}
.ls2_c00069{letter-spacing:2.666667pt;}
.ls3_c00069{letter-spacing:5.333333pt;}
.ls0_c00069{letter-spacing:15.400000pt;}
.ws1_c00069{word-spacing:-21.400000pt;}
.ws0_c00069{word-spacing:-14.781333pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._18_c00069{margin-left:-27.968000pt;}
._1a_c00069{margin-left:-18.400000pt;}
._25_c00069{margin-left:-13.309333pt;}
._1e_c00069{margin-left:-11.101333pt;}
._2_c00069{margin-left:-9.248000pt;}
._23_c00069{margin-left:-8.202667pt;}
._1_c00069{margin-left:-6.930667pt;}
._0_c00069{margin-left:-5.520000pt;}
._8_c00069{margin-left:-4.354667pt;}
._a_c00069{margin-left:-3.373333pt;}
._7_c00069{margin-left:-2.024000pt;}
._5_c00069{margin-left:-1.104000pt;}
._10_c00069{width:1.288000pt;}
._9_c00069{width:2.637333pt;}
._6_c00069{width:4.048000pt;}
._f_c00069{width:5.397333pt;}
._14_c00069{width:6.317333pt;}
._e_c00069{width:7.421333pt;}
._17_c00069{width:8.402667pt;}
._11_c00069{width:9.506667pt;}
._3_c00069{width:10.426667pt;}
._1c_c00069{width:11.776000pt;}
._12_c00069{width:12.757333pt;}
._d_c00069{width:13.682667pt;}
._c_c00069{width:15.328000pt;}
._b_c00069{width:16.498667pt;}
._15_c00069{width:19.290667pt;}
._27_c00069{width:20.568000pt;}
._13_c00069{width:21.773333pt;}
._16_c00069{width:23.122667pt;}
._20_c00069{width:25.146667pt;}
._22_c00069{width:32.000000pt;}
._21_c00069{width:33.856000pt;}
._28_c00069{width:42.333333pt;}
._19_c00069{width:49.741333pt;}
._1d_c00069{width:56.146667pt;}
._1f_c00069{width:63.112000pt;}
._29_c00069{width:83.613333pt;}
._1b_c00069{width:178.296000pt;}
._2a_c00069{width:245.277333pt;}
._4_c00069{width:336.306667pt;}
._24_c00069{width:552.920000pt;}
._26_c00069{width:779.362667pt;}
.fs3_c00069{font-size:42.666667pt;}
.fs0_c00069{font-size:61.333333pt;}
.fs1_c00069{font-size:64.000000pt;}
.fs2_c00069{font-size:66.666667pt;}
.y0_c00069{bottom:0.000000pt;}
.y21_c00069{bottom:2.760000pt;}
.y20_c00069{bottom:6.425217pt;}
.y1f_c00069{bottom:57.840000pt;}
.y1e_c00069{bottom:78.906667pt;}
.y1d_c00069{bottom:101.706667pt;}
.y1c_c00069{bottom:124.106667pt;}
.y1b_c00069{bottom:145.840000pt;}
.y1a_c00069{bottom:169.706667pt;}
.y19_c00069{bottom:191.306667pt;}
.y18_c00069{bottom:214.106667pt;}
.y17_c00069{bottom:235.706667pt;}
.y16_c00069{bottom:258.640000pt;}
.y15_c00069{bottom:281.040000pt;}
.y14_c00069{bottom:298.106667pt;}
.y13_c00069{bottom:325.173333pt;}
.y12_c00069{bottom:346.506667pt;}
.y11_c00069{bottom:369.306667pt;}
.y10_c00069{bottom:392.106667pt;}
.yf_c00069{bottom:414.506667pt;}
.ye_c00069{bottom:436.240000pt;}
.yd_c00069{bottom:458.640000pt;}
.yc_c00069{bottom:480.906667pt;}
.yb_c00069{bottom:503.306667pt;}
.ya_c00069{bottom:525.573333pt;}
.y9_c00069{bottom:547.706667pt;}
.y8_c00069{bottom:569.706667pt;}
.y7_c00069{bottom:591.840000pt;}
.y6_c00069{bottom:614.106667pt;}
.y5_c00069{bottom:636.906667pt;}
.y1_c00069{bottom:646.506667pt;}
.y4_c00069{bottom:659.040000pt;}
.y3_c00069{bottom:681.306667pt;}
.y2_c00069{bottom:703.440000pt;}
.h6_c00069{height:11.733399pt;}
.h7_c00069{height:38.937500pt;}
.h2_c00069{height:71.785156pt;}
.h3_c00069{height:77.654948pt;}
.h5_c00069{height:78.027344pt;}
.h4_c00069{height:81.031250pt;}
.h0_c00069{height:748.533333pt;}
.h1_c00069{height:748.666667pt;}
.w2_c00069{width:93.222667pt;}
.w0_c00069{width:509.266667pt;}
.w1_c00069{width:509.333333pt;}
.x0_c00069{left:0.000000pt;}
.xb_c00069{left:42.666667pt;}
.x1_c00069{left:44.000000pt;}
.x9_c00069{left:46.400000pt;}
.xc_c00069{left:57.600000pt;}
.xa_c00069{left:64.800000pt;}
.x8_c00069{left:81.200000pt;}
.x3_c00069{left:99.333333pt;}
.x6_c00069{left:101.333333pt;}
.x4_c00069{left:102.533333pt;}
.x2_c00069{left:112.133333pt;}
.x5_c00069{left:123.333333pt;}
.x7_c00069{left:144.933333pt;}
.xe_c00069{left:211.801554pt;}
.xd_c00069{left:479.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_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_317d866467fdf7985d86d6fb.woff2')format("woff");}.ff1_c00070{font-family:ff1_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:ff2_c00070;src:url('chunks/assets/font_95a2ad6b36c44df82c641d43.woff2')format("woff");}.ff2_c00070{font-family:ff2_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:ff3_c00070;src:url('chunks/assets/font_94d1c5efb2ce5a80e56aad67.woff2')format("woff");}.ff3_c00070{font-family:ff3_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:ff4_c00070;src:url('chunks/assets/font_94feb703d54c606a1538d329.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_8928f98f87c3132e1cc3f21f.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;}
.m1_c00070{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_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;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:3.000000px;}
.ls0_c00070{letter-spacing:8.370000px;}
.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:-19.629000px;}
.ws2_c00070{word-spacing:-16.629000px;}
.ws1_c00070{word-spacing:-13.737000px;}
.ws3_c00070{word-spacing:0.000000px;}
._2_c00070{margin-left:-16.629000px;}
._1a_c00070{margin-left:-15.180000px;}
._1c_c00070{margin-left:-13.179000px;}
._13_c00070{margin-left:-11.592000px;}
._12_c00070{margin-left:-8.694000px;}
._1b_c00070{margin-left:-6.831000px;}
._f_c00070{margin-left:-4.899000px;}
._6_c00070{margin-left:-3.726000px;}
._7_c00070{margin-left:-2.346000px;}
._10_c00070{margin-left:-1.242000px;}
._1_c00070{width:1.035000px;}
._0_c00070{width:2.139000px;}
._9_c00070{width:3.450000px;}
._a_c00070{width:4.485000px;}
._4_c00070{width:5.865000px;}
._8_c00070{width:7.314000px;}
._11_c00070{width:9.039000px;}
._d_c00070{width:10.419000px;}
._e_c00070{width:11.868000px;}
._19_c00070{width:13.110000px;}
._b_c00070{width:14.490000px;}
._c_c00070{width:15.870000px;}
._16_c00070{width:17.454000px;}
._5_c00070{width:18.492000px;}
._15_c00070{width:19.698000px;}
._1d_c00070{width:21.075000px;}
._1e_c00070{width:22.533000px;}
._17_c00070{width:25.707000px;}
._22_c00070{width:27.246000px;}
._1f_c00070{width:30.960000px;}
._21_c00070{width:32.709000px;}
._18_c00070{width:37.950000px;}
._14_c00070{width:66.069000px;}
._20_c00070{width:106.536000px;}
._3_c00070{width:538.683000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(128,128,128);}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:48.000000px;}
.fs2_c00070{font-size:54.000000px;}
.fs1_c00070{font-size:57.000000px;}
.fs0_c00070{font-size:69.000000px;}
.y0_c00070{bottom:0.000000px;}
.y20_c00070{bottom:3.105000px;}
.y1f_c00070{bottom:7.228355px;}
.y1e_c00070{bottom:59.085000px;}
.y1d_c00070{bottom:81.285000px;}
.y1c_c00070{bottom:106.935000px;}
.y1b_c00070{bottom:131.985000px;}
.y1a_c00070{bottom:156.285000px;}
.y19_c00070{bottom:181.485000px;}
.y18_c00070{bottom:206.835000px;}
.y17_c00070{bottom:231.135000px;}
.y16_c00070{bottom:256.185000px;}
.y15_c00070{bottom:280.785000px;}
.y14_c00070{bottom:306.135000px;}
.y13_c00070{bottom:331.335000px;}
.y12_c00070{bottom:356.385000px;}
.y11_c00070{bottom:381.735000px;}
.y10_c00070{bottom:406.935000px;}
.yf_c00070{bottom:431.985000px;}
.ye_c00070{bottom:481.185000px;}
.yd_c00070{bottom:520.335000px;}
.yc_c00070{bottom:538.185000px;}
.yb_c00070{bottom:556.185000px;}
.ya_c00070{bottom:573.735000px;}
.y9_c00070{bottom:591.885000px;}
.y8_c00070{bottom:609.135000px;}
.y7_c00070{bottom:629.085000px;}
.y6_c00070{bottom:653.985000px;}
.y5_c00070{bottom:679.035000px;}
.y4_c00070{bottom:704.385000px;}
.y3_c00070{bottom:728.985000px;}
.y2_c00070{bottom:754.335000px;}
.y1_c00070{bottom:779.235000px;}
.h6_c00070{height:13.200074px;}
.h7_c00070{height:43.804688px;}
.h5_c00070{height:56.592000px;}
.h4_c00070{height:66.713379px;}
.h2_c00070{height:80.758301px;}
.h3_c00070{height:87.361816px;}
.h0_c00070{height:805.125000px;}
.h1_c00070{height:805.500000px;}
.w2_c00070{width:104.875500px;}
.w1_c00070{width:539.250000px;}
.w0_c00070{width:539.475000px;}
.x0_c00070{left:0.000000px;}
.x2_c00070{left:33.450000px;}
.x3_c00070{left:34.500000px;}
.xa_c00070{left:36.150000px;}
.xc_c00070{left:37.500000px;}
.xd_c00070{left:39.150000px;}
.x4_c00070{left:52.950000px;}
.x9_c00070{left:60.450000px;}
.xb_c00070{left:61.500000px;}
.x8_c00070{left:79.950000px;}
.x6_c00070{left:103.650000px;}
.x7_c00070{left:115.050000px;}
.x5_c00070{left:122.550000px;}
.x1_c00070{left:184.350000px;}
.xf_c00070{left:221.551758px;}
.xe_c00070{left:439.800000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:2.666667pt;}
.ls0_c00070{letter-spacing:7.440000pt;}
.ws0_c00070{word-spacing:-17.448000pt;}
.ws2_c00070{word-spacing:-14.781333pt;}
.ws1_c00070{word-spacing:-12.210667pt;}
.ws3_c00070{word-spacing:0.000000pt;}
._2_c00070{margin-left:-14.781333pt;}
._1a_c00070{margin-left:-13.493333pt;}
._1c_c00070{margin-left:-11.714667pt;}
._13_c00070{margin-left:-10.304000pt;}
._12_c00070{margin-left:-7.728000pt;}
._1b_c00070{margin-left:-6.072000pt;}
._f_c00070{margin-left:-4.354667pt;}
._6_c00070{margin-left:-3.312000pt;}
._7_c00070{margin-left:-2.085333pt;}
._10_c00070{margin-left:-1.104000pt;}
._1_c00070{width:0.920000pt;}
._0_c00070{width:1.901333pt;}
._9_c00070{width:3.066667pt;}
._a_c00070{width:3.986667pt;}
._4_c00070{width:5.213333pt;}
._8_c00070{width:6.501333pt;}
._11_c00070{width:8.034667pt;}
._d_c00070{width:9.261333pt;}
._e_c00070{width:10.549333pt;}
._19_c00070{width:11.653333pt;}
._b_c00070{width:12.880000pt;}
._c_c00070{width:14.106667pt;}
._16_c00070{width:15.514667pt;}
._5_c00070{width:16.437333pt;}
._15_c00070{width:17.509333pt;}
._1d_c00070{width:18.733333pt;}
._1e_c00070{width:20.029333pt;}
._17_c00070{width:22.850667pt;}
._22_c00070{width:24.218667pt;}
._1f_c00070{width:27.520000pt;}
._21_c00070{width:29.074667pt;}
._18_c00070{width:33.733333pt;}
._14_c00070{width:58.728000pt;}
._20_c00070{width:94.698667pt;}
._3_c00070{width:478.829333pt;}
.fs3_c00070{font-size:42.666667pt;}
.fs2_c00070{font-size:48.000000pt;}
.fs1_c00070{font-size:50.666667pt;}
.fs0_c00070{font-size:61.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y20_c00070{bottom:2.760000pt;}
.y1f_c00070{bottom:6.425204pt;}
.y1e_c00070{bottom:52.520000pt;}
.y1d_c00070{bottom:72.253333pt;}
.y1c_c00070{bottom:95.053333pt;}
.y1b_c00070{bottom:117.320000pt;}
.y1a_c00070{bottom:138.920000pt;}
.y19_c00070{bottom:161.320000pt;}
.y18_c00070{bottom:183.853333pt;}
.y17_c00070{bottom:205.453333pt;}
.y16_c00070{bottom:227.720000pt;}
.y15_c00070{bottom:249.586667pt;}
.y14_c00070{bottom:272.120000pt;}
.y13_c00070{bottom:294.520000pt;}
.y12_c00070{bottom:316.786667pt;}
.y11_c00070{bottom:339.320000pt;}
.y10_c00070{bottom:361.720000pt;}
.yf_c00070{bottom:383.986667pt;}
.ye_c00070{bottom:427.720000pt;}
.yd_c00070{bottom:462.520000pt;}
.yc_c00070{bottom:478.386667pt;}
.yb_c00070{bottom:494.386667pt;}
.ya_c00070{bottom:509.986667pt;}
.y9_c00070{bottom:526.120000pt;}
.y8_c00070{bottom:541.453333pt;}
.y7_c00070{bottom:559.186667pt;}
.y6_c00070{bottom:581.320000pt;}
.y5_c00070{bottom:603.586667pt;}
.y4_c00070{bottom:626.120000pt;}
.y3_c00070{bottom:647.986667pt;}
.y2_c00070{bottom:670.520000pt;}
.y1_c00070{bottom:692.653333pt;}
.h6_c00070{height:11.733399pt;}
.h7_c00070{height:38.937500pt;}
.h5_c00070{height:50.304000pt;}
.h4_c00070{height:59.300781pt;}
.h2_c00070{height:71.785156pt;}
.h3_c00070{height:77.654948pt;}
.h0_c00070{height:715.666667pt;}
.h1_c00070{height:716.000000pt;}
.w2_c00070{width:93.222667pt;}
.w1_c00070{width:479.333333pt;}
.w0_c00070{width:479.533333pt;}
.x0_c00070{left:0.000000pt;}
.x2_c00070{left:29.733333pt;}
.x3_c00070{left:30.666667pt;}
.xa_c00070{left:32.133333pt;}
.xc_c00070{left:33.333333pt;}
.xd_c00070{left:34.800000pt;}
.x4_c00070{left:47.066667pt;}
.x9_c00070{left:53.733333pt;}
.xb_c00070{left:54.666667pt;}
.x8_c00070{left:71.066667pt;}
.x6_c00070{left:92.133333pt;}
.x7_c00070{left:102.266667pt;}
.x5_c00070{left:108.933333pt;}
.x1_c00070{left:163.866667pt;}
.xf_c00070{left:196.934896pt;}
.xe_c00070{left:390.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_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_481ee1c78b8ac8f953583097.woff2')format("woff");}.ff1_c00071{font-family:ff1_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:ff2_c00071;src:url('chunks/assets/font_963313ca018e8cfedd4d39bf.woff2')format("woff");}.ff2_c00071{font-family:ff2_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:ff3_c00071;src:url('chunks/assets/font_1b908ee94895baa21785bd92.woff2')format("woff");}.ff3_c00071{font-family:ff3_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:ff4_c00071;src:url('chunks/assets/font_0d859c1f72f0436445b179ef.woff2')format("woff");}.ff4_c00071{font-family:ff4_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:ff5_c00071;src:url('chunks/assets/font_a828150b219cf90aa367627d.woff2')format("woff");}.ff5_c00071{font-family:ff5_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:ff6_c00071;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00071{font-family:ff6_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;}
.m1_c00071{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_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;}
.lsd_c00071{letter-spacing:-6.000000px;}
.lsc_c00071{letter-spacing:0.000000px;}
.ls8_c00071{letter-spacing:0.102000px;}
.lsb_c00071{letter-spacing:3.000000px;}
.ls1_c00071{letter-spacing:6.000000px;}
.ls2_c00071{letter-spacing:6.063000px;}
.ls7_c00071{letter-spacing:7.800000px;}
.ls6_c00071{letter-spacing:13.491000px;}
.lsa_c00071{letter-spacing:18.000000px;}
.ls5_c00071{letter-spacing:18.600000px;}
.ls3_c00071{letter-spacing:21.000000px;}
.ls4_c00071{letter-spacing:22.149000px;}
.ls9_c00071{letter-spacing:48.114000px;}
.ls0_c00071{letter-spacing:99.525000px;}
.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:-18.876000px;}
.ws1_c00071{word-spacing:-16.629000px;}
.ws2_c00071{word-spacing:-13.737000px;}
.ws0_c00071{word-spacing:-12.075000px;}
.ws4_c00071{word-spacing:0.000000px;}
._d_c00071{margin-left:-25.116000px;}
._c_c00071{margin-left:-19.368000px;}
._26_c00071{margin-left:-17.412000px;}
._25_c00071{margin-left:-13.797000px;}
._e_c00071{margin-left:-12.627000px;}
._a_c00071{margin-left:-10.488000px;}
._17_c00071{margin-left:-9.384000px;}
._16_c00071{margin-left:-7.797000px;}
._b_c00071{margin-left:-5.589000px;}
._18_c00071{margin-left:-4.554000px;}
._14_c00071{margin-left:-3.495000px;}
._4_c00071{margin-left:-1.863000px;}
._7_c00071{width:1.014000px;}
._6_c00071{width:2.058000px;}
._2_c00071{width:3.243000px;}
._1_c00071{width:5.106000px;}
._0_c00071{width:6.279000px;}
._5_c00071{width:7.590000px;}
._13_c00071{width:8.634000px;}
._9_c00071{width:10.617000px;}
._10_c00071{width:12.711000px;}
._23_c00071{width:13.803000px;}
._1c_c00071{width:15.180000px;}
._8_c00071{width:16.431000px;}
._1b_c00071{width:17.904000px;}
._1a_c00071{width:21.141000px;}
._11_c00071{width:22.332000px;}
._21_c00071{width:24.273000px;}
._22_c00071{width:25.563000px;}
._1d_c00071{width:28.092000px;}
._1e_c00071{width:31.119000px;}
._19_c00071{width:37.266000px;}
._f_c00071{width:41.814000px;}
._24_c00071{width:64.296000px;}
._20_c00071{width:67.068000px;}
._27_c00071{width:68.217000px;}
._28_c00071{width:78.198000px;}
._15_c00071{width:96.525000px;}
._1f_c00071{width:99.429000px;}
._12_c00071{width:268.410000px;}
._3_c00071{width:376.989000px;}
._29_c00071{width:1529.988000px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(128,128,128);}
.fc0_c00071{color:rgb(0,0,0);}
.fs5_c00071{font-size:48.000000px;}
.fs2_c00071{font-size:54.000000px;}
.fs3_c00071{font-size:57.000000px;}
.fs4_c00071{font-size:66.000000px;}
.fs0_c00071{font-size:69.000000px;}
.fs1_c00071{font-size:75.000000px;}
.y0_c00071{bottom:0.000000px;}
.y20_c00071{bottom:3.105000px;}
.y1f_c00071{bottom:7.228369px;}
.y1e_c00071{bottom:63.120000px;}
.y1d_c00071{bottom:87.120000px;}
.y1c_c00071{bottom:112.770000px;}
.y1b_c00071{bottom:138.270000px;}
.y1a_c00071{bottom:163.620000px;}
.y19_c00071{bottom:201.420000px;}
.y18_c00071{bottom:236.820000px;}
.y17_c00071{bottom:254.520000px;}
.y16_c00071{bottom:272.370000px;}
.y15_c00071{bottom:290.220000px;}
.y14_c00071{bottom:315.120000px;}
.y13_c00071{bottom:339.420000px;}
.y12_c00071{bottom:363.870000px;}
.y11_c00071{bottom:389.370000px;}
.y10_c00071{bottom:413.820000px;}
.yf_c00071{bottom:439.320000px;}
.ye_c00071{bottom:464.370000px;}
.yd_c00071{bottom:489.270000px;}
.yc_c00071{bottom:514.020000px;}
.yb_c00071{bottom:539.670000px;}
.ya_c00071{bottom:563.670000px;}
.y9_c00071{bottom:588.870000px;}
.y8_c00071{bottom:614.220000px;}
.y7_c00071{bottom:639.270000px;}
.y6_c00071{bottom:665.820000px;}
.y5_c00071{bottom:689.070000px;}
.y4_c00071{bottom:713.820000px;}
.y3_c00071{bottom:739.770000px;}
.y2_c00071{bottom:764.370000px;}
.y1_c00071{bottom:789.720000px;}
.h7_c00071{height:13.200073px;}
.h8_c00071{height:43.804688px;}
.h5_c00071{height:56.592000px;}
.h4_c00071{height:66.713379px;}
.h6_c00071{height:80.758301px;}
.h2_c00071{height:87.361816px;}
.h3_c00071{height:94.958496px;}
.h1_c00071{height:824.250000px;}
.h0_c00071{height:824.550000px;}
.w2_c00071{width:104.875500px;}
.w1_c00071{width:561.000000px;}
.w0_c00071{width:561.075000px;}
.x0_c00071{left:0.000000px;}
.x3_c00071{left:27.300000px;}
.x4_c00071{left:29.100000px;}
.x7_c00071{left:41.550000px;}
.x5_c00071{left:43.500000px;}
.x2_c00071{left:46.200000px;}
.x10_c00071{left:84.000000px;}
.xc_c00071{left:86.700000px;}
.x9_c00071{left:88.050000px;}
.x8_c00071{left:89.400000px;}
.x6_c00071{left:91.500000px;}
.xd_c00071{left:99.150000px;}
.x1_c00071{left:104.250000px;}
.xa_c00071{left:105.600000px;}
.xf_c00071{left:110.700000px;}
.xe_c00071{left:141.750000px;}
.xb_c00071{left:175.050000px;}
.x11_c00071{left:232.351730px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.lsd_c00071{letter-spacing:-5.333333pt;}
.lsc_c00071{letter-spacing:0.000000pt;}
.ls8_c00071{letter-spacing:0.090667pt;}
.lsb_c00071{letter-spacing:2.666667pt;}
.ls1_c00071{letter-spacing:5.333333pt;}
.ls2_c00071{letter-spacing:5.389333pt;}
.ls7_c00071{letter-spacing:6.933333pt;}
.ls6_c00071{letter-spacing:11.992000pt;}
.lsa_c00071{letter-spacing:16.000000pt;}
.ls5_c00071{letter-spacing:16.533333pt;}
.ls3_c00071{letter-spacing:18.666667pt;}
.ls4_c00071{letter-spacing:19.688000pt;}
.ls9_c00071{letter-spacing:42.768000pt;}
.ls0_c00071{letter-spacing:88.466667pt;}
.ws3_c00071{word-spacing:-16.778667pt;}
.ws1_c00071{word-spacing:-14.781333pt;}
.ws2_c00071{word-spacing:-12.210667pt;}
.ws0_c00071{word-spacing:-10.733333pt;}
.ws4_c00071{word-spacing:0.000000pt;}
._d_c00071{margin-left:-22.325333pt;}
._c_c00071{margin-left:-17.216000pt;}
._26_c00071{margin-left:-15.477333pt;}
._25_c00071{margin-left:-12.264000pt;}
._e_c00071{margin-left:-11.224000pt;}
._a_c00071{margin-left:-9.322667pt;}
._17_c00071{margin-left:-8.341333pt;}
._16_c00071{margin-left:-6.930667pt;}
._b_c00071{margin-left:-4.968000pt;}
._18_c00071{margin-left:-4.048000pt;}
._14_c00071{margin-left:-3.106667pt;}
._4_c00071{margin-left:-1.656000pt;}
._7_c00071{width:0.901333pt;}
._6_c00071{width:1.829333pt;}
._2_c00071{width:2.882667pt;}
._1_c00071{width:4.538667pt;}
._0_c00071{width:5.581333pt;}
._5_c00071{width:6.746667pt;}
._13_c00071{width:7.674667pt;}
._9_c00071{width:9.437333pt;}
._10_c00071{width:11.298667pt;}
._23_c00071{width:12.269333pt;}
._1c_c00071{width:13.493333pt;}
._8_c00071{width:14.605333pt;}
._1b_c00071{width:15.914667pt;}
._1a_c00071{width:18.792000pt;}
._11_c00071{width:19.850667pt;}
._21_c00071{width:21.576000pt;}
._22_c00071{width:22.722667pt;}
._1d_c00071{width:24.970667pt;}
._1e_c00071{width:27.661333pt;}
._19_c00071{width:33.125333pt;}
._f_c00071{width:37.168000pt;}
._24_c00071{width:57.152000pt;}
._20_c00071{width:59.616000pt;}
._27_c00071{width:60.637333pt;}
._28_c00071{width:69.509333pt;}
._15_c00071{width:85.800000pt;}
._1f_c00071{width:88.381333pt;}
._12_c00071{width:238.586667pt;}
._3_c00071{width:335.101333pt;}
._29_c00071{width:1359.989333pt;}
.fs5_c00071{font-size:42.666667pt;}
.fs2_c00071{font-size:48.000000pt;}
.fs3_c00071{font-size:50.666667pt;}
.fs4_c00071{font-size:58.666667pt;}
.fs0_c00071{font-size:61.333333pt;}
.fs1_c00071{font-size:66.666667pt;}
.y0_c00071{bottom:0.000000pt;}
.y20_c00071{bottom:2.760000pt;}
.y1f_c00071{bottom:6.425217pt;}
.y1e_c00071{bottom:56.106667pt;}
.y1d_c00071{bottom:77.440000pt;}
.y1c_c00071{bottom:100.240000pt;}
.y1b_c00071{bottom:122.906667pt;}
.y1a_c00071{bottom:145.440000pt;}
.y19_c00071{bottom:179.040000pt;}
.y18_c00071{bottom:210.506667pt;}
.y17_c00071{bottom:226.240000pt;}
.y16_c00071{bottom:242.106667pt;}
.y15_c00071{bottom:257.973333pt;}
.y14_c00071{bottom:280.106667pt;}
.y13_c00071{bottom:301.706667pt;}
.y12_c00071{bottom:323.440000pt;}
.y11_c00071{bottom:346.106667pt;}
.y10_c00071{bottom:367.840000pt;}
.yf_c00071{bottom:390.506667pt;}
.ye_c00071{bottom:412.773333pt;}
.yd_c00071{bottom:434.906667pt;}
.yc_c00071{bottom:456.906667pt;}
.yb_c00071{bottom:479.706667pt;}
.ya_c00071{bottom:501.040000pt;}
.y9_c00071{bottom:523.440000pt;}
.y8_c00071{bottom:545.973333pt;}
.y7_c00071{bottom:568.240000pt;}
.y6_c00071{bottom:591.840000pt;}
.y5_c00071{bottom:612.506667pt;}
.y4_c00071{bottom:634.506667pt;}
.y3_c00071{bottom:657.573333pt;}
.y2_c00071{bottom:679.440000pt;}
.y1_c00071{bottom:701.973333pt;}
.h7_c00071{height:11.733399pt;}
.h8_c00071{height:38.937500pt;}
.h5_c00071{height:50.304000pt;}
.h4_c00071{height:59.300781pt;}
.h6_c00071{height:71.785156pt;}
.h2_c00071{height:77.654948pt;}
.h3_c00071{height:84.407552pt;}
.h1_c00071{height:732.666667pt;}
.h0_c00071{height:732.933333pt;}
.w2_c00071{width:93.222667pt;}
.w1_c00071{width:498.666667pt;}
.w0_c00071{width:498.733333pt;}
.x0_c00071{left:0.000000pt;}
.x3_c00071{left:24.266667pt;}
.x4_c00071{left:25.866667pt;}
.x7_c00071{left:36.933333pt;}
.x5_c00071{left:38.666667pt;}
.x2_c00071{left:41.066667pt;}
.x10_c00071{left:74.666667pt;}
.xc_c00071{left:77.066667pt;}
.x9_c00071{left:78.266667pt;}
.x8_c00071{left:79.466667pt;}
.x6_c00071{left:81.333333pt;}
.xd_c00071{left:88.133333pt;}
.x1_c00071{left:92.666667pt;}
.xa_c00071{left:93.866667pt;}
.xf_c00071{left:98.400000pt;}
.xe_c00071{left:126.000000pt;}
.xb_c00071{left:155.600000pt;}
.x11_c00071{left:206.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_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_8ac42e5bfecb2882f100f6e1.woff2')format("woff");}.ff1_c00072{font-family:ff1_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:ff2_c00072;src:url('chunks/assets/font_45a9c5de1004079e0d72294e.woff2')format("woff");}.ff2_c00072{font-family:ff2_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:ff3_c00072;src:url('chunks/assets/font_d302b373c4bb2e2ee11242db.woff2')format("woff");}.ff3_c00072{font-family:ff3_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:ff4_c00072;src:url('chunks/assets/font_b6eb135609afd31e5bfb559e.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_3c944de4319d6c2389ca8f42.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00072;src:url('chunks/assets/font_555917a619567e73970168f2.woff2')format("woff");}.ff7_c00072{font-family:ff7_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:ff8_c00072;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00072{font-family:ff8_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;}
.m1_c00072{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_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;}
.ls5_c00072{letter-spacing:0.000000px;}
.ls2_c00072{letter-spacing:3.000000px;}
.ls3_c00072{letter-spacing:5.400000px;}
.ls1_c00072{letter-spacing:5.700000px;}
.ls4_c00072{letter-spacing:6.600000px;}
.ls0_c00072{letter-spacing:16.652400px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00072{word-spacing:-46.455000px;}
.ws7_c00072{word-spacing:-26.640000px;}
.ws0_c00072{word-spacing:-16.629000px;}
.ws6_c00072{word-spacing:-13.737000px;}
.ws2_c00072{word-spacing:-13.500000px;}
.ws9_c00072{word-spacing:0.000000px;}
.ws8_c00072{word-spacing:0.285000px;}
.ws4_c00072{word-spacing:0.414000px;}
.ws3_c00072{word-spacing:1.932000px;}
.ws5_c00072{word-spacing:3.036000px;}
._14_c00072{margin-left:-14.559000px;}
._7_c00072{margin-left:-8.763000px;}
._8_c00072{margin-left:-6.693000px;}
._2_c00072{margin-left:-5.382000px;}
._11_c00072{margin-left:-4.209000px;}
._4_c00072{margin-left:-3.105000px;}
._3_c00072{margin-left:-1.449000px;}
._0_c00072{width:1.518000px;}
._1_c00072{width:2.760000px;}
._b_c00072{width:4.692000px;}
._a_c00072{width:6.003000px;}
._9_c00072{width:7.314000px;}
._d_c00072{width:8.901000px;}
._c_c00072{width:9.936000px;}
._15_c00072{width:11.904000px;}
._f_c00072{width:13.074000px;}
._1e_c00072{width:14.421000px;}
._e_c00072{width:15.525000px;}
._17_c00072{width:17.076000px;}
._1d_c00072{width:18.828000px;}
._1a_c00072{width:19.965000px;}
._16_c00072{width:21.528000px;}
._1f_c00072{width:22.662000px;}
._20_c00072{width:23.880000px;}
._21_c00072{width:25.599000px;}
._19_c00072{width:43.548000px;}
._22_c00072{width:57.408000px;}
._23_c00072{width:88.404000px;}
._12_c00072{width:107.046000px;}
._18_c00072{width:118.992000px;}
._5_c00072{width:124.752000px;}
._1b_c00072{width:143.136000px;}
._1c_c00072{width:149.154000px;}
._10_c00072{width:168.636000px;}
._13_c00072{width:204.510000px;}
._6_c00072{width:371.220000px;}
._24_c00072{width:555.204000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(128,128,128);}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:45.600000px;}
.fs7_c00072{font-size:48.000000px;}
.fs3_c00072{font-size:54.000000px;}
.fs1_c00072{font-size:57.000000px;}
.fs5_c00072{font-size:60.000000px;}
.fs4_c00072{font-size:66.000000px;}
.fs0_c00072{font-size:69.000000px;}
.fs6_c00072{font-size:78.000000px;}
.y0_c00072{bottom:0.000000px;}
.y20_c00072{bottom:3.105000px;}
.y1f_c00072{bottom:7.228369px;}
.y1e_c00072{bottom:50.520000px;}
.y1d_c00072{bottom:95.820000px;}
.y1c_c00072{bottom:113.970000px;}
.y1b_c00072{bottom:132.570000px;}
.y1a_c00072{bottom:149.820000px;}
.y19_c00072{bottom:177.420000px;}
.y18_c00072{bottom:200.370000px;}
.y17_c00072{bottom:225.420000px;}
.y16_c00072{bottom:250.320000px;}
.y15_c00072{bottom:275.670000px;}
.y14_c00072{bottom:300.420000px;}
.y13_c00072{bottom:325.620000px;}
.y12_c00072{bottom:350.370000px;}
.y11_c00072{bottom:375.570000px;}
.y10_c00072{bottom:399.870000px;}
.yf_c00072{bottom:425.220000px;}
.ye_c00072{bottom:450.270000px;}
.yd_c00072{bottom:474.870000px;}
.yc_c00072{bottom:499.170000px;}
.yb_c00072{bottom:524.070000px;}
.ya_c00072{bottom:548.670000px;}
.y9_c00072{bottom:574.020000px;}
.y8_c00072{bottom:598.770000px;}
.y7_c00072{bottom:623.970000px;}
.y6_c00072{bottom:649.020000px;}
.y5_c00072{bottom:674.220000px;}
.y4_c00072{bottom:698.970000px;}
.y3_c00072{bottom:724.170000px;}
.y2_c00072{bottom:748.920000px;}
.y1_c00072{bottom:774.270000px;}
.h7_c00072{height:13.200073px;}
.h8_c00072{height:43.804688px;}
.h4_c00072{height:56.592000px;}
.h5_c00072{height:58.886719px;}
.h3_c00072{height:66.713379px;}
.h2_c00072{height:87.361816px;}
.h6_c00072{height:98.756836px;}
.h1_c00072{height:810.750000px;}
.h0_c00072{height:811.050000px;}
.w1_c00072{width:104.875500px;}
.w0_c00072{width:543.750000px;}
.x0_c00072{left:0.000000px;}
.x7_c00072{left:24.900000px;}
.x6_c00072{left:25.950000px;}
.x3_c00072{left:27.300000px;}
.x8_c00072{left:28.350000px;}
.x9_c00072{left:30.000000px;}
.x10_c00072{left:44.850000px;}
.xa_c00072{left:47.550000px;}
.x2_c00072{left:50.850000px;}
.x11_c00072{left:62.850000px;}
.xb_c00072{left:116.550000px;}
.x1_c00072{left:178.800000px;}
.x12_c00072{left:181.650000px;}
.x13_c00072{left:223.689240px;}
.xc_c00072{left:317.700000px;}
.x4_c00072{left:351.300000px;}
.xd_c00072{left:359.550000px;}
.x5_c00072{left:381.600000px;}
.xe_c00072{left:418.500000px;}
.xf_c00072{left:430.350000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls5_c00072{letter-spacing:0.000000pt;}
.ls2_c00072{letter-spacing:2.666667pt;}
.ls3_c00072{letter-spacing:4.800000pt;}
.ls1_c00072{letter-spacing:5.066667pt;}
.ls4_c00072{letter-spacing:5.866667pt;}
.ls0_c00072{letter-spacing:14.802133pt;}
.ws1_c00072{word-spacing:-41.293333pt;}
.ws7_c00072{word-spacing:-23.680000pt;}
.ws0_c00072{word-spacing:-14.781333pt;}
.ws6_c00072{word-spacing:-12.210667pt;}
.ws2_c00072{word-spacing:-12.000000pt;}
.ws9_c00072{word-spacing:0.000000pt;}
.ws8_c00072{word-spacing:0.253333pt;}
.ws4_c00072{word-spacing:0.368000pt;}
.ws3_c00072{word-spacing:1.717333pt;}
.ws5_c00072{word-spacing:2.698667pt;}
._14_c00072{margin-left:-12.941333pt;}
._7_c00072{margin-left:-7.789333pt;}
._8_c00072{margin-left:-5.949333pt;}
._2_c00072{margin-left:-4.784000pt;}
._11_c00072{margin-left:-3.741333pt;}
._4_c00072{margin-left:-2.760000pt;}
._3_c00072{margin-left:-1.288000pt;}
._0_c00072{width:1.349333pt;}
._1_c00072{width:2.453333pt;}
._b_c00072{width:4.170667pt;}
._a_c00072{width:5.336000pt;}
._9_c00072{width:6.501333pt;}
._d_c00072{width:7.912000pt;}
._c_c00072{width:8.832000pt;}
._15_c00072{width:10.581333pt;}
._f_c00072{width:11.621333pt;}
._1e_c00072{width:12.818667pt;}
._e_c00072{width:13.800000pt;}
._17_c00072{width:15.178667pt;}
._1d_c00072{width:16.736000pt;}
._1a_c00072{width:17.746667pt;}
._16_c00072{width:19.136000pt;}
._1f_c00072{width:20.144000pt;}
._20_c00072{width:21.226667pt;}
._21_c00072{width:22.754667pt;}
._19_c00072{width:38.709333pt;}
._22_c00072{width:51.029333pt;}
._23_c00072{width:78.581333pt;}
._12_c00072{width:95.152000pt;}
._18_c00072{width:105.770667pt;}
._5_c00072{width:110.890667pt;}
._1b_c00072{width:127.232000pt;}
._1c_c00072{width:132.581333pt;}
._10_c00072{width:149.898667pt;}
._13_c00072{width:181.786667pt;}
._6_c00072{width:329.973333pt;}
._24_c00072{width:493.514667pt;}
.fs2_c00072{font-size:40.533333pt;}
.fs7_c00072{font-size:42.666667pt;}
.fs3_c00072{font-size:48.000000pt;}
.fs1_c00072{font-size:50.666667pt;}
.fs5_c00072{font-size:53.333333pt;}
.fs4_c00072{font-size:58.666667pt;}
.fs0_c00072{font-size:61.333333pt;}
.fs6_c00072{font-size:69.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y20_c00072{bottom:2.760000pt;}
.y1f_c00072{bottom:6.425217pt;}
.y1e_c00072{bottom:44.906667pt;}
.y1d_c00072{bottom:85.173333pt;}
.y1c_c00072{bottom:101.306667pt;}
.y1b_c00072{bottom:117.840000pt;}
.y1a_c00072{bottom:133.173333pt;}
.y19_c00072{bottom:157.706667pt;}
.y18_c00072{bottom:178.106667pt;}
.y17_c00072{bottom:200.373333pt;}
.y16_c00072{bottom:222.506667pt;}
.y15_c00072{bottom:245.040000pt;}
.y14_c00072{bottom:267.040000pt;}
.y13_c00072{bottom:289.440000pt;}
.y12_c00072{bottom:311.440000pt;}
.y11_c00072{bottom:333.840000pt;}
.y10_c00072{bottom:355.440000pt;}
.yf_c00072{bottom:377.973333pt;}
.ye_c00072{bottom:400.240000pt;}
.yd_c00072{bottom:422.106667pt;}
.yc_c00072{bottom:443.706667pt;}
.yb_c00072{bottom:465.840000pt;}
.ya_c00072{bottom:487.706667pt;}
.y9_c00072{bottom:510.240000pt;}
.y8_c00072{bottom:532.240000pt;}
.y7_c00072{bottom:554.640000pt;}
.y6_c00072{bottom:576.906667pt;}
.y5_c00072{bottom:599.306667pt;}
.y4_c00072{bottom:621.306667pt;}
.y3_c00072{bottom:643.706667pt;}
.y2_c00072{bottom:665.706667pt;}
.y1_c00072{bottom:688.240000pt;}
.h7_c00072{height:11.733399pt;}
.h8_c00072{height:38.937500pt;}
.h4_c00072{height:50.304000pt;}
.h5_c00072{height:52.343750pt;}
.h3_c00072{height:59.300781pt;}
.h2_c00072{height:77.654948pt;}
.h6_c00072{height:87.783854pt;}
.h1_c00072{height:720.666667pt;}
.h0_c00072{height:720.933333pt;}
.w1_c00072{width:93.222667pt;}
.w0_c00072{width:483.333333pt;}
.x0_c00072{left:0.000000pt;}
.x7_c00072{left:22.133333pt;}
.x6_c00072{left:23.066667pt;}
.x3_c00072{left:24.266667pt;}
.x8_c00072{left:25.200000pt;}
.x9_c00072{left:26.666667pt;}
.x10_c00072{left:39.866667pt;}
.xa_c00072{left:42.266667pt;}
.x2_c00072{left:45.200000pt;}
.x11_c00072{left:55.866667pt;}
.xb_c00072{left:103.600000pt;}
.x1_c00072{left:158.933333pt;}
.x12_c00072{left:161.466667pt;}
.x13_c00072{left:198.834880pt;}
.xc_c00072{left:282.400000pt;}
.x4_c00072{left:312.266667pt;}
.xd_c00072{left:319.600000pt;}
.x5_c00072{left:339.200000pt;}
.xe_c00072{left:372.000000pt;}
.xf_c00072{left:382.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_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_d3c4700dfc672a06020ad89f.woff2')format("woff");}.ff1_c00073{font-family:ff1_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:ff2_c00073;src:url('chunks/assets/font_d1e5b1571c6ad0f0ddf5fdb0.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.568848;font-style:normal;font-weight:normal;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_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00073{font-family:ff3_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:ff4_c00073;src:url('chunks/assets/font_95ae6880bda0e736ea019579.woff2')format("woff");}.ff4_c00073{font-family:ff4_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:ff5_c00073;src:url('chunks/assets/font_6814a485e68a5cdffd86b71a.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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);}
.v1_c00073{vertical-align:-97.200000px;}
.v0_c00073{vertical-align:0.000000px;}
.lsb_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:0.930000px;}
.lsc_c00073{letter-spacing:3.000000px;}
.lsa_c00073{letter-spacing:6.672000px;}
.ls6_c00073{letter-spacing:7.200000px;}
.ls5_c00073{letter-spacing:12.291000px;}
.ls8_c00073{letter-spacing:14.325000px;}
.ls3_c00073{letter-spacing:14.889000px;}
.ls0_c00073{letter-spacing:15.489000px;}
.ls9_c00073{letter-spacing:16.770000px;}
.ls4_c00073{letter-spacing:19.800000px;}
.ls2_c00073{letter-spacing:20.400000px;}
.ls7_c00073{letter-spacing:28.314000px;}
.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;}
}
.ws6_c00073{word-spacing:-48.126000px;}
.ws5_c00073{word-spacing:-47.022000px;}
.ws7_c00073{word-spacing:-39.100800px;}
.ws1_c00073{word-spacing:-33.000000px;}
.ws8_c00073{word-spacing:-19.629000px;}
.ws3_c00073{word-spacing:-18.018000px;}
.ws2_c00073{word-spacing:-16.629000px;}
.ws0_c00073{word-spacing:-0.552000px;}
.ws9_c00073{word-spacing:0.000000px;}
.ws4_c00073{word-spacing:2.856000px;}
._10_c00073{margin-left:-22.080000px;}
._27_c00073{margin-left:-18.396000px;}
._12_c00073{margin-left:-14.835000px;}
._11_c00073{margin-left:-12.006000px;}
._f_c00073{margin-left:-10.557000px;}
._24_c00073{margin-left:-9.447000px;}
._d_c00073{margin-left:-8.424000px;}
._b_c00073{margin-left:-6.729000px;}
._9_c00073{margin-left:-5.658000px;}
._a_c00073{margin-left:-4.347000px;}
._c_c00073{margin-left:-3.174000px;}
._6_c00073{margin-left:-1.206000px;}
._5_c00073{width:1.704000px;}
._1d_c00073{width:2.760000px;}
._8_c00073{width:3.795000px;}
._7_c00073{width:5.382000px;}
._18_c00073{width:6.393000px;}
._2_c00073{width:7.590000px;}
._17_c00073{width:9.237000px;}
._e_c00073{width:10.824000px;}
._0_c00073{width:11.868000px;}
._3_c00073{width:12.972000px;}
._1_c00073{width:14.835000px;}
._19_c00073{width:16.806000px;}
._4_c00073{width:17.940000px;}
._15_c00073{width:19.773000px;}
._1c_c00073{width:21.432000px;}
._16_c00073{width:22.527000px;}
._1f_c00073{width:24.078000px;}
._1a_c00073{width:29.622000px;}
._1b_c00073{width:31.884000px;}
._14_c00073{width:33.195000px;}
._25_c00073{width:34.638000px;}
._21_c00073{width:38.757000px;}
._13_c00073{width:90.579000px;}
._1e_c00073{width:94.773000px;}
._23_c00073{width:98.817000px;}
._28_c00073{width:103.944000px;}
._20_c00073{width:192.855000px;}
._22_c00073{width:265.068000px;}
._26_c00073{width:400.200000px;}
.fc2_c00073{color:transparent;}
.fc1_c00073{color:rgb(128,128,128);}
.fc0_c00073{color:rgb(0,0,0);}
.fs3_c00073{font-size:48.000000px;}
.fs2_c00073{font-size:55.200000px;}
.fs1_c00073{font-size:66.000000px;}
.fs0_c00073{font-size:69.000000px;}
.y0_c00073{bottom:0.000000px;}
.y1c_c00073{bottom:3.105000px;}
.y1b_c00073{bottom:7.228369px;}
.y1a_c00073{bottom:68.070000px;}
.y19_c00073{bottom:93.120000px;}
.y18_c00073{bottom:117.420000px;}
.y17_c00073{bottom:143.070000px;}
.y16_c00073{bottom:167.970000px;}
.y15_c00073{bottom:193.020000px;}
.y14_c00073{bottom:219.420000px;}
.y13_c00073{bottom:244.020000px;}
.y12_c00073{bottom:268.320000px;}
.y11_c00073{bottom:293.670000px;}
.y10_c00073{bottom:319.170000px;}
.yf_c00073{bottom:343.920000px;}
.ye_c00073{bottom:368.520000px;}
.yd_c00073{bottom:393.570000px;}
.yc_c00073{bottom:417.720000px;}
.yb_c00073{bottom:443.820000px;}
.ya_c00073{bottom:469.170000px;}
.y9_c00073{bottom:493.020000px;}
.y8_c00073{bottom:518.970000px;}
.y7_c00073{bottom:543.420000px;}
.y6_c00073{bottom:593.220000px;}
.y5_c00073{bottom:619.320000px;}
.y4_c00073{bottom:644.520000px;}
.y3_c00073{bottom:669.570000px;}
.y2_c00073{bottom:694.920000px;}
.y1_c00073{bottom:744.870000px;}
.h4_c00073{height:13.200073px;}
.h5_c00073{height:43.804688px;}
.h3_c00073{height:80.758301px;}
.h2_c00073{height:87.361816px;}
.h0_c00073{height:842.100000px;}
.h1_c00073{height:842.250000px;}
.w2_c00073{width:104.875500px;}
.w0_c00073{width:572.925000px;}
.w1_c00073{width:573.000000px;}
.x0_c00073{left:0.000000px;}
.x7_c00073{left:40.200000px;}
.x6_c00073{left:41.550000px;}
.xa_c00073{left:42.600000px;}
.xd_c00073{left:43.650000px;}
.x9_c00073{left:57.450000px;}
.x5_c00073{left:58.800000px;}
.xb_c00073{left:98.550000px;}
.x8_c00073{left:105.600000px;}
.x4_c00073{left:106.950000px;}
.xc_c00073{left:108.000000px;}
.x3_c00073{left:109.800000px;}
.x2_c00073{left:146.550000px;}
.x1_c00073{left:163.350000px;}
.xf_c00073{left:238.276749px;}
.xe_c00073{left:516.000000px;}
@media print{
.v1_c00073{vertical-align:-86.400000pt;}
.v0_c00073{vertical-align:0.000000pt;}
.lsb_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:0.826667pt;}
.lsc_c00073{letter-spacing:2.666667pt;}
.lsa_c00073{letter-spacing:5.930667pt;}
.ls6_c00073{letter-spacing:6.400000pt;}
.ls5_c00073{letter-spacing:10.925333pt;}
.ls8_c00073{letter-spacing:12.733333pt;}
.ls3_c00073{letter-spacing:13.234667pt;}
.ls0_c00073{letter-spacing:13.768000pt;}
.ls9_c00073{letter-spacing:14.906667pt;}
.ls4_c00073{letter-spacing:17.600000pt;}
.ls2_c00073{letter-spacing:18.133333pt;}
.ls7_c00073{letter-spacing:25.168000pt;}
.ws6_c00073{word-spacing:-42.778667pt;}
.ws5_c00073{word-spacing:-41.797333pt;}
.ws7_c00073{word-spacing:-34.756267pt;}
.ws1_c00073{word-spacing:-29.333333pt;}
.ws8_c00073{word-spacing:-17.448000pt;}
.ws3_c00073{word-spacing:-16.016000pt;}
.ws2_c00073{word-spacing:-14.781333pt;}
.ws0_c00073{word-spacing:-0.490667pt;}
.ws9_c00073{word-spacing:0.000000pt;}
.ws4_c00073{word-spacing:2.538667pt;}
._10_c00073{margin-left:-19.626667pt;}
._27_c00073{margin-left:-16.352000pt;}
._12_c00073{margin-left:-13.186667pt;}
._11_c00073{margin-left:-10.672000pt;}
._f_c00073{margin-left:-9.384000pt;}
._24_c00073{margin-left:-8.397333pt;}
._d_c00073{margin-left:-7.488000pt;}
._b_c00073{margin-left:-5.981333pt;}
._9_c00073{margin-left:-5.029333pt;}
._a_c00073{margin-left:-3.864000pt;}
._c_c00073{margin-left:-2.821333pt;}
._6_c00073{margin-left:-1.072000pt;}
._5_c00073{width:1.514667pt;}
._1d_c00073{width:2.453333pt;}
._8_c00073{width:3.373333pt;}
._7_c00073{width:4.784000pt;}
._18_c00073{width:5.682667pt;}
._2_c00073{width:6.746667pt;}
._17_c00073{width:8.210667pt;}
._e_c00073{width:9.621333pt;}
._0_c00073{width:10.549333pt;}
._3_c00073{width:11.530667pt;}
._1_c00073{width:13.186667pt;}
._19_c00073{width:14.938667pt;}
._4_c00073{width:15.946667pt;}
._15_c00073{width:17.576000pt;}
._1c_c00073{width:19.050667pt;}
._16_c00073{width:20.024000pt;}
._1f_c00073{width:21.402667pt;}
._1a_c00073{width:26.330667pt;}
._1b_c00073{width:28.341333pt;}
._14_c00073{width:29.506667pt;}
._25_c00073{width:30.789333pt;}
._21_c00073{width:34.450667pt;}
._13_c00073{width:80.514667pt;}
._1e_c00073{width:84.242667pt;}
._23_c00073{width:87.837333pt;}
._28_c00073{width:92.394667pt;}
._20_c00073{width:171.426667pt;}
._22_c00073{width:235.616000pt;}
._26_c00073{width:355.733333pt;}
.fs3_c00073{font-size:42.666667pt;}
.fs2_c00073{font-size:49.066667pt;}
.fs1_c00073{font-size:58.666667pt;}
.fs0_c00073{font-size:61.333333pt;}
.y0_c00073{bottom:0.000000pt;}
.y1c_c00073{bottom:2.760000pt;}
.y1b_c00073{bottom:6.425217pt;}
.y1a_c00073{bottom:60.506667pt;}
.y19_c00073{bottom:82.773333pt;}
.y18_c00073{bottom:104.373333pt;}
.y17_c00073{bottom:127.173333pt;}
.y16_c00073{bottom:149.306667pt;}
.y15_c00073{bottom:171.573333pt;}
.y14_c00073{bottom:195.040000pt;}
.y13_c00073{bottom:216.906667pt;}
.y12_c00073{bottom:238.506667pt;}
.y11_c00073{bottom:261.040000pt;}
.y10_c00073{bottom:283.706667pt;}
.yf_c00073{bottom:305.706667pt;}
.ye_c00073{bottom:327.573333pt;}
.yd_c00073{bottom:349.840000pt;}
.yc_c00073{bottom:371.306667pt;}
.yb_c00073{bottom:394.506667pt;}
.ya_c00073{bottom:417.040000pt;}
.y9_c00073{bottom:438.240000pt;}
.y8_c00073{bottom:461.306667pt;}
.y7_c00073{bottom:483.040000pt;}
.y6_c00073{bottom:527.306667pt;}
.y5_c00073{bottom:550.506667pt;}
.y4_c00073{bottom:572.906667pt;}
.y3_c00073{bottom:595.173333pt;}
.y2_c00073{bottom:617.706667pt;}
.y1_c00073{bottom:662.106667pt;}
.h4_c00073{height:11.733399pt;}
.h5_c00073{height:38.937500pt;}
.h3_c00073{height:71.785156pt;}
.h2_c00073{height:77.654948pt;}
.h0_c00073{height:748.533333pt;}
.h1_c00073{height:748.666667pt;}
.w2_c00073{width:93.222667pt;}
.w0_c00073{width:509.266667pt;}
.w1_c00073{width:509.333333pt;}
.x0_c00073{left:0.000000pt;}
.x7_c00073{left:35.733333pt;}
.x6_c00073{left:36.933333pt;}
.xa_c00073{left:37.866667pt;}
.xd_c00073{left:38.800000pt;}
.x9_c00073{left:51.066667pt;}
.x5_c00073{left:52.266667pt;}
.xb_c00073{left:87.600000pt;}
.x8_c00073{left:93.866667pt;}
.x4_c00073{left:95.066667pt;}
.xc_c00073{left:96.000000pt;}
.x3_c00073{left:97.600000pt;}
.x2_c00073{left:130.266667pt;}
.x1_c00073{left:145.200000pt;}
.xf_c00073{left:211.801554pt;}
.xe_c00073{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_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_bfaa9d6fb514fd8f67212d0b.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_17b4e8b85621ae1624383054.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_cf3c917ae46452884f7489b6.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.437000;font-style:normal;font-weight:normal;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_a9d158984f273e7f4a349bbc.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.437000;font-style:normal;font-weight:normal;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_7bd0dac52a8c3e69b916cdc1.woff2')format("woff");}.ff5_c00074{font-family:ff5_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:ff6_c00074;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.m3_c00074{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);}
.m2_c00074{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_c00074{vertical-align:0.000000px;}
.ls3_c00074{letter-spacing:0.000000px;}
.ls2_c00074{letter-spacing:3.000000px;}
.ls0_c00074{letter-spacing:3.921000px;}
.ls1_c00074{letter-spacing:15.525000px;}
.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;}
}
.ws6_c00074{word-spacing:-29.718000px;}
.ws1_c00074{word-spacing:-19.629000px;}
.ws3_c00074{word-spacing:-16.629000px;}
.ws2_c00074{word-spacing:-13.737000px;}
.ws0_c00074{word-spacing:-0.528000px;}
.ws5_c00074{word-spacing:-0.396000px;}
.ws7_c00074{word-spacing:0.000000px;}
.ws4_c00074{word-spacing:1.584000px;}
._1c_c00074{margin-left:-18.603000px;}
._3_c00074{margin-left:-15.456000px;}
._19_c00074{margin-left:-13.422000px;}
._1a_c00074{margin-left:-11.694000px;}
._16_c00074{margin-left:-9.522000px;}
._c_c00074{margin-left:-7.590000px;}
._b_c00074{margin-left:-6.279000px;}
._0_c00074{margin-left:-4.623000px;}
._12_c00074{margin-left:-3.105000px;}
._4_c00074{margin-left:-1.863000px;}
._2_c00074{width:1.794000px;}
._7_c00074{width:2.967000px;}
._9_c00074{width:4.209000px;}
._8_c00074{width:5.727000px;}
._f_c00074{width:7.314000px;}
._d_c00074{width:8.349000px;}
._6_c00074{width:9.729000px;}
._e_c00074{width:11.523000px;}
._a_c00074{width:13.110000px;}
._11_c00074{width:14.697000px;}
._10_c00074{width:16.422000px;}
._17_c00074{width:18.798000px;}
._13_c00074{width:20.838000px;}
._14_c00074{width:22.977000px;}
._15_c00074{width:32.436000px;}
._18_c00074{width:39.294000px;}
._1_c00074{width:75.159000px;}
._1b_c00074{width:225.927000px;}
._5_c00074{width:496.938000px;}
._1d_c00074{width:534.858000px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(128,128,128);}
.fc0_c00074{color:rgb(0,0,0);}
.fs6_c00074{font-size:48.000000px;}
.fs1_c00074{font-size:54.000000px;}
.fs2_c00074{font-size:57.000000px;}
.fs3_c00074{font-size:66.000000px;}
.fs0_c00074{font-size:69.000000px;}
.fs4_c00074{font-size:72.000000px;}
.fs5_c00074{font-size:117.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1f_c00074{bottom:3.105000px;}
.y1e_c00074{bottom:7.228371px;}
.y1d_c00074{bottom:59.865000px;}
.y1c_c00074{bottom:84.765000px;}
.y1b_c00074{bottom:110.115000px;}
.y1a_c00074{bottom:159.765000px;}
.y19_c00074{bottom:206.265000px;}
.y18_c00074{bottom:225.165000px;}
.y17_c00074{bottom:243.315000px;}
.y16_c00074{bottom:260.865000px;}
.y15_c00074{bottom:286.965000px;}
.y14_c00074{bottom:311.565000px;}
.y13_c00074{bottom:336.915000px;}
.y12_c00074{bottom:362.115000px;}
.y11_c00074{bottom:387.165000px;}
.y10_c00074{bottom:411.765000px;}
.yf_c00074{bottom:436.815000px;}
.ye_c00074{bottom:462.015000px;}
.yd_c00074{bottom:486.465000px;}
.yc_c00074{bottom:510.315000px;}
.yb_c00074{bottom:535.965000px;}
.ya_c00074{bottom:560.565000px;}
.y9_c00074{bottom:585.915000px;}
.y8_c00074{bottom:610.515000px;}
.y7_c00074{bottom:635.565000px;}
.y6_c00074{bottom:660.165000px;}
.y5_c00074{bottom:685.215000px;}
.y4_c00074{bottom:710.415000px;}
.y3_c00074{bottom:735.165000px;}
.y2_c00074{bottom:760.065000px;}
.y1_c00074{bottom:784.815000px;}
.hb_c00074{height:13.200074px;}
.hc_c00074{height:43.804688px;}
.h3_c00074{height:56.592000px;}
.h5_c00074{height:66.713379px;}
.h4_c00074{height:72.168457px;}
.h9_c00074{height:77.247070px;}
.h6_c00074{height:80.758301px;}
.h8_c00074{height:83.563477px;}
.h2_c00074{height:87.361816px;}
.h7_c00074{height:91.160156px;}
.ha_c00074{height:148.135254px;}
.h0_c00074{height:828.375000px;}
.h1_c00074{height:828.750000px;}
.w2_c00074{width:104.875500px;}
.w1_c00074{width:555.000000px;}
.w0_c00074{width:555.150000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:8.400000px;}
.x3_c00074{left:9.900000px;}
.x4_c00074{left:11.250000px;}
.x5_c00074{left:12.600000px;}
.x6_c00074{left:13.800000px;}
.x7_c00074{left:17.250000px;}
.xa_c00074{left:18.600000px;}
.xd_c00074{left:19.950000px;}
.xf_c00074{left:42.900000px;}
.xe_c00074{left:63.000000px;}
.x8_c00074{left:108.300000px;}
.x10_c00074{left:123.150000px;}
.x1_c00074{left:138.750000px;}
.x11_c00074{left:160.950000px;}
.xb_c00074{left:201.150000px;}
.xc_c00074{left:218.700000px;}
.x12_c00074{left:226.950000px;}
.x13_c00074{left:229.389267px;}
.x9_c00074{left:445.500000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls3_c00074{letter-spacing:0.000000pt;}
.ls2_c00074{letter-spacing:2.666667pt;}
.ls0_c00074{letter-spacing:3.485333pt;}
.ls1_c00074{letter-spacing:13.800000pt;}
.ws6_c00074{word-spacing:-26.416000pt;}
.ws1_c00074{word-spacing:-17.448000pt;}
.ws3_c00074{word-spacing:-14.781333pt;}
.ws2_c00074{word-spacing:-12.210667pt;}
.ws0_c00074{word-spacing:-0.469333pt;}
.ws5_c00074{word-spacing:-0.352000pt;}
.ws7_c00074{word-spacing:0.000000pt;}
.ws4_c00074{word-spacing:1.408000pt;}
._1c_c00074{margin-left:-16.536000pt;}
._3_c00074{margin-left:-13.738667pt;}
._19_c00074{margin-left:-11.930667pt;}
._1a_c00074{margin-left:-10.394667pt;}
._16_c00074{margin-left:-8.464000pt;}
._c_c00074{margin-left:-6.746667pt;}
._b_c00074{margin-left:-5.581333pt;}
._0_c00074{margin-left:-4.109333pt;}
._12_c00074{margin-left:-2.760000pt;}
._4_c00074{margin-left:-1.656000pt;}
._2_c00074{width:1.594667pt;}
._7_c00074{width:2.637333pt;}
._9_c00074{width:3.741333pt;}
._8_c00074{width:5.090667pt;}
._f_c00074{width:6.501333pt;}
._d_c00074{width:7.421333pt;}
._6_c00074{width:8.648000pt;}
._e_c00074{width:10.242667pt;}
._a_c00074{width:11.653333pt;}
._11_c00074{width:13.064000pt;}
._10_c00074{width:14.597333pt;}
._17_c00074{width:16.709333pt;}
._13_c00074{width:18.522667pt;}
._14_c00074{width:20.424000pt;}
._15_c00074{width:28.832000pt;}
._18_c00074{width:34.928000pt;}
._1_c00074{width:66.808000pt;}
._1b_c00074{width:200.824000pt;}
._5_c00074{width:441.722667pt;}
._1d_c00074{width:475.429333pt;}
.fs6_c00074{font-size:42.666667pt;}
.fs1_c00074{font-size:48.000000pt;}
.fs2_c00074{font-size:50.666667pt;}
.fs3_c00074{font-size:58.666667pt;}
.fs0_c00074{font-size:61.333333pt;}
.fs4_c00074{font-size:64.000000pt;}
.fs5_c00074{font-size:104.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y1f_c00074{bottom:2.760000pt;}
.y1e_c00074{bottom:6.425219pt;}
.y1d_c00074{bottom:53.213333pt;}
.y1c_c00074{bottom:75.346667pt;}
.y1b_c00074{bottom:97.880000pt;}
.y1a_c00074{bottom:142.013333pt;}
.y19_c00074{bottom:183.346667pt;}
.y18_c00074{bottom:200.146667pt;}
.y17_c00074{bottom:216.280000pt;}
.y16_c00074{bottom:231.880000pt;}
.y15_c00074{bottom:255.080000pt;}
.y14_c00074{bottom:276.946667pt;}
.y13_c00074{bottom:299.480000pt;}
.y12_c00074{bottom:321.880000pt;}
.y11_c00074{bottom:344.146667pt;}
.y10_c00074{bottom:366.013333pt;}
.yf_c00074{bottom:388.280000pt;}
.ye_c00074{bottom:410.680000pt;}
.yd_c00074{bottom:432.413333pt;}
.yc_c00074{bottom:453.613333pt;}
.yb_c00074{bottom:476.413333pt;}
.ya_c00074{bottom:498.280000pt;}
.y9_c00074{bottom:520.813333pt;}
.y8_c00074{bottom:542.680000pt;}
.y7_c00074{bottom:564.946667pt;}
.y6_c00074{bottom:586.813333pt;}
.y5_c00074{bottom:609.080000pt;}
.y4_c00074{bottom:631.480000pt;}
.y3_c00074{bottom:653.480000pt;}
.y2_c00074{bottom:675.613333pt;}
.y1_c00074{bottom:697.613333pt;}
.hb_c00074{height:11.733399pt;}
.hc_c00074{height:38.937500pt;}
.h3_c00074{height:50.304000pt;}
.h5_c00074{height:59.300781pt;}
.h4_c00074{height:64.149740pt;}
.h9_c00074{height:68.664062pt;}
.h6_c00074{height:71.785156pt;}
.h8_c00074{height:74.278646pt;}
.h2_c00074{height:77.654948pt;}
.h7_c00074{height:81.031250pt;}
.ha_c00074{height:131.675781pt;}
.h0_c00074{height:736.333333pt;}
.h1_c00074{height:736.666667pt;}
.w2_c00074{width:93.222667pt;}
.w1_c00074{width:493.333333pt;}
.w0_c00074{width:493.466667pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:7.466667pt;}
.x3_c00074{left:8.800000pt;}
.x4_c00074{left:10.000000pt;}
.x5_c00074{left:11.200000pt;}
.x6_c00074{left:12.266667pt;}
.x7_c00074{left:15.333333pt;}
.xa_c00074{left:16.533333pt;}
.xd_c00074{left:17.733333pt;}
.xf_c00074{left:38.133333pt;}
.xe_c00074{left:56.000000pt;}
.x8_c00074{left:96.266667pt;}
.x10_c00074{left:109.466667pt;}
.x1_c00074{left:123.333333pt;}
.x11_c00074{left:143.066667pt;}
.xb_c00074{left:178.800000pt;}
.xc_c00074{left:194.400000pt;}
.x12_c00074{left:201.733333pt;}
.x13_c00074{left:203.901571pt;}
.x9_c00074{left:396.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_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_f41dc4029f39fa0a917cd835.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.311035;font-style:normal;font-weight:normal;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_b538ffe80de96aad75fb7626.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_7daa8cef02155f64e5705349.woff2')format("woff");}.ff3_c00075{font-family:ff3_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:ff4_c00075;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.m1_c00075{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);}
.v0_c00075{vertical-align:0.000000px;}
.ls2_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:3.000000px;}
.ls0_c00075{letter-spacing:25.125000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-47.022000px;}
.ws2_c00075{word-spacing:-28.197000px;}
.ws1_c00075{word-spacing:-16.629000px;}
.ws3_c00075{word-spacing:0.000000px;}
._27_c00075{margin-left:-17.442000px;}
._c_c00075{margin-left:-16.077000px;}
._15_c00075{margin-left:-14.985000px;}
._11_c00075{margin-left:-13.227000px;}
._f_c00075{margin-left:-11.559000px;}
._2_c00075{margin-left:-9.936000px;}
._1_c00075{margin-left:-8.196000px;}
._a_c00075{margin-left:-7.011000px;}
._10_c00075{margin-left:-5.796000px;}
._8_c00075{margin-left:-4.605000px;}
._5_c00075{margin-left:-2.931000px;}
._4_c00075{margin-left:-1.587000px;}
._7_c00075{width:1.584000px;}
._b_c00075{width:2.829000px;}
._9_c00075{width:4.071000px;}
._d_c00075{width:5.172000px;}
._14_c00075{width:6.384000px;}
._0_c00075{width:8.382000px;}
._1e_c00075{width:9.828000px;}
._6_c00075{width:11.109000px;}
._1f_c00075{width:12.462000px;}
._e_c00075{width:13.557000px;}
._24_c00075{width:14.667000px;}
._1a_c00075{width:15.681000px;}
._1d_c00075{width:16.740000px;}
._17_c00075{width:17.877000px;}
._20_c00075{width:21.120000px;}
._16_c00075{width:22.827000px;}
._21_c00075{width:24.324000px;}
._23_c00075{width:26.502000px;}
._18_c00075{width:28.551000px;}
._1b_c00075{width:30.051000px;}
._28_c00075{width:31.107000px;}
._2a_c00075{width:32.334000px;}
._19_c00075{width:34.080000px;}
._13_c00075{width:36.777000px;}
._12_c00075{width:59.682000px;}
._26_c00075{width:79.704000px;}
._22_c00075{width:96.534000px;}
._25_c00075{width:98.331000px;}
._1c_c00075{width:163.665000px;}
._29_c00075{width:218.853000px;}
._3_c00075{width:375.480000px;}
.fc2_c00075{color:transparent;}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs4_c00075{font-size:48.000000px;}
.fs2_c00075{font-size:60.000000px;}
.fs0_c00075{font-size:66.000000px;}
.fs1_c00075{font-size:69.000000px;}
.fs3_c00075{font-size:117.000000px;}
.y0_c00075{bottom:0.000000px;}
.y20_c00075{bottom:3.105000px;}
.y1f_c00075{bottom:7.228369px;}
.y1e_c00075{bottom:61.320000px;}
.y1d_c00075{bottom:92.520000px;}
.y1c_c00075{bottom:119.070000px;}
.y1b_c00075{bottom:144.120000px;}
.y1a_c00075{bottom:169.320000px;}
.y19_c00075{bottom:194.670000px;}
.y18_c00075{bottom:219.270000px;}
.y17_c00075{bottom:244.620000px;}
.y16_c00075{bottom:269.370000px;}
.y15_c00075{bottom:293.970000px;}
.y14_c00075{bottom:318.870000px;}
.y13_c00075{bottom:343.170000px;}
.y12_c00075{bottom:368.220000px;}
.y11_c00075{bottom:392.070000px;}
.y10_c00075{bottom:417.420000px;}
.yf_c00075{bottom:442.020000px;}
.ye_c00075{bottom:467.070000px;}
.yd_c00075{bottom:492.120000px;}
.yc_c00075{bottom:516.720000px;}
.yb_c00075{bottom:541.920000px;}
.ya_c00075{bottom:566.970000px;}
.y9_c00075{bottom:590.670000px;}
.y8_c00075{bottom:616.320000px;}
.y7_c00075{bottom:641.220000px;}
.y6_c00075{bottom:666.120000px;}
.y5_c00075{bottom:690.570000px;}
.y4_c00075{bottom:715.470000px;}
.y3_c00075{bottom:740.370000px;}
.y2_c00075{bottom:766.170000px;}
.y1_c00075{bottom:791.670000px;}
.h5_c00075{height:13.200073px;}
.h6_c00075{height:43.804688px;}
.h3_c00075{height:70.224609px;}
.h2_c00075{height:87.361816px;}
.h4_c00075{height:148.135254px;}
.h0_c00075{height:842.100000px;}
.h1_c00075{height:842.250000px;}
.w2_c00075{width:104.875500px;}
.w0_c00075{width:572.925000px;}
.w1_c00075{width:573.000000px;}
.x0_c00075{left:0.000000px;}
.xc_c00075{left:48.150000px;}
.xa_c00075{left:51.000000px;}
.x7_c00075{left:52.350000px;}
.xd_c00075{left:62.100000px;}
.x6_c00075{left:66.900000px;}
.x8_c00075{left:69.900000px;}
.x4_c00075{left:80.400000px;}
.x9_c00075{left:82.800000px;}
.xe_c00075{left:111.750000px;}
.x2_c00075{left:113.100000px;}
.xb_c00075{left:115.050000px;}
.x3_c00075{left:116.400000px;}
.x5_c00075{left:118.050000px;}
.x1_c00075{left:129.150000px;}
.x12_c00075{left:238.276749px;}
.xf_c00075{left:443.100000px;}
.x10_c00075{left:466.650000px;}
.x11_c00075{left:540.750000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls2_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:2.666667pt;}
.ls0_c00075{letter-spacing:22.333333pt;}
.ws0_c00075{word-spacing:-41.797333pt;}
.ws2_c00075{word-spacing:-25.064000pt;}
.ws1_c00075{word-spacing:-14.781333pt;}
.ws3_c00075{word-spacing:0.000000pt;}
._27_c00075{margin-left:-15.504000pt;}
._c_c00075{margin-left:-14.290667pt;}
._15_c00075{margin-left:-13.320000pt;}
._11_c00075{margin-left:-11.757333pt;}
._f_c00075{margin-left:-10.274667pt;}
._2_c00075{margin-left:-8.832000pt;}
._1_c00075{margin-left:-7.285333pt;}
._a_c00075{margin-left:-6.232000pt;}
._10_c00075{margin-left:-5.152000pt;}
._8_c00075{margin-left:-4.093333pt;}
._5_c00075{margin-left:-2.605333pt;}
._4_c00075{margin-left:-1.410667pt;}
._7_c00075{width:1.408000pt;}
._b_c00075{width:2.514667pt;}
._9_c00075{width:3.618667pt;}
._d_c00075{width:4.597333pt;}
._14_c00075{width:5.674667pt;}
._0_c00075{width:7.450667pt;}
._1e_c00075{width:8.736000pt;}
._6_c00075{width:9.874667pt;}
._1f_c00075{width:11.077333pt;}
._e_c00075{width:12.050667pt;}
._24_c00075{width:13.037333pt;}
._1a_c00075{width:13.938667pt;}
._1d_c00075{width:14.880000pt;}
._17_c00075{width:15.890667pt;}
._20_c00075{width:18.773333pt;}
._16_c00075{width:20.290667pt;}
._21_c00075{width:21.621333pt;}
._23_c00075{width:23.557333pt;}
._18_c00075{width:25.378667pt;}
._1b_c00075{width:26.712000pt;}
._28_c00075{width:27.650667pt;}
._2a_c00075{width:28.741333pt;}
._19_c00075{width:30.293333pt;}
._13_c00075{width:32.690667pt;}
._12_c00075{width:53.050667pt;}
._26_c00075{width:70.848000pt;}
._22_c00075{width:85.808000pt;}
._25_c00075{width:87.405333pt;}
._1c_c00075{width:145.480000pt;}
._29_c00075{width:194.536000pt;}
._3_c00075{width:333.760000pt;}
.fs4_c00075{font-size:42.666667pt;}
.fs2_c00075{font-size:53.333333pt;}
.fs0_c00075{font-size:58.666667pt;}
.fs1_c00075{font-size:61.333333pt;}
.fs3_c00075{font-size:104.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y20_c00075{bottom:2.760000pt;}
.y1f_c00075{bottom:6.425217pt;}
.y1e_c00075{bottom:54.506667pt;}
.y1d_c00075{bottom:82.240000pt;}
.y1c_c00075{bottom:105.840000pt;}
.y1b_c00075{bottom:128.106667pt;}
.y1a_c00075{bottom:150.506667pt;}
.y19_c00075{bottom:173.040000pt;}
.y18_c00075{bottom:194.906667pt;}
.y17_c00075{bottom:217.440000pt;}
.y16_c00075{bottom:239.440000pt;}
.y15_c00075{bottom:261.306667pt;}
.y14_c00075{bottom:283.440000pt;}
.y13_c00075{bottom:305.040000pt;}
.y12_c00075{bottom:327.306667pt;}
.y11_c00075{bottom:348.506667pt;}
.y10_c00075{bottom:371.040000pt;}
.yf_c00075{bottom:392.906667pt;}
.ye_c00075{bottom:415.173333pt;}
.yd_c00075{bottom:437.440000pt;}
.yc_c00075{bottom:459.306667pt;}
.yb_c00075{bottom:481.706667pt;}
.ya_c00075{bottom:503.973333pt;}
.y9_c00075{bottom:525.040000pt;}
.y8_c00075{bottom:547.840000pt;}
.y7_c00075{bottom:569.973333pt;}
.y6_c00075{bottom:592.106667pt;}
.y5_c00075{bottom:613.840000pt;}
.y4_c00075{bottom:635.973333pt;}
.y3_c00075{bottom:658.106667pt;}
.y2_c00075{bottom:681.040000pt;}
.y1_c00075{bottom:703.706667pt;}
.h5_c00075{height:11.733399pt;}
.h6_c00075{height:38.937500pt;}
.h3_c00075{height:62.421875pt;}
.h2_c00075{height:77.654948pt;}
.h4_c00075{height:131.675781pt;}
.h0_c00075{height:748.533333pt;}
.h1_c00075{height:748.666667pt;}
.w2_c00075{width:93.222667pt;}
.w0_c00075{width:509.266667pt;}
.w1_c00075{width:509.333333pt;}
.x0_c00075{left:0.000000pt;}
.xc_c00075{left:42.800000pt;}
.xa_c00075{left:45.333333pt;}
.x7_c00075{left:46.533333pt;}
.xd_c00075{left:55.200000pt;}
.x6_c00075{left:59.466667pt;}
.x8_c00075{left:62.133333pt;}
.x4_c00075{left:71.466667pt;}
.x9_c00075{left:73.600000pt;}
.xe_c00075{left:99.333333pt;}
.x2_c00075{left:100.533333pt;}
.xb_c00075{left:102.266667pt;}
.x3_c00075{left:103.466667pt;}
.x5_c00075{left:104.933333pt;}
.x1_c00075{left:114.800000pt;}
.x12_c00075{left:211.801554pt;}
.xf_c00075{left:393.866667pt;}
.x10_c00075{left:414.800000pt;}
.x11_c00075{left:480.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_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_7e8dbb7b5d29dc2a883f55f4.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_b357bc76d5f3e1777d64f4ea.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;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_c00076;src:url('chunks/assets/font_3be87f3170cdd9adc2a2cdd6.woff2')format("woff");}.ff3_c00076{font-family:ff3_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:ff4_c00076;src:url('chunks/assets/font_f2a2620a5da3e06ea34eb7d1.woff2')format("woff");}.ff4_c00076{font-family:ff4_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:ff5_c00076;src:url('chunks/assets/font_4a9c03c4f1eb8d55ebcf7731.woff2')format("woff");}.ff5_c00076{font-family:ff5_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:ff6_c00076;src:url('chunks/assets/font_3cefdc67f6aee0591c27cd38.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:1.437000;font-style:normal;font-weight:normal;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_d5efa620ab908269441f8e75.woff2')format("woff");}.ff7_c00076{font-family:ff7_c00076;line-height:1.437000;font-style:normal;font-weight: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_c00076;src:url('chunks/assets/font_eeb1ee21c9aafdc13c2088d3.woff2')format("woff");}.ff8_c00076{font-family:ff8_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:ff9_c00076;src:url('chunks/assets/font_cf258e753128061f89d0d5dd.woff2')format("woff");}.ff9_c00076{font-family:ff9_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:ffa_c00076;src:url('chunks/assets/font_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ffa_c00076{font-family:ffa_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:ffb_c00076;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00076{font-family:ffb_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;}
.m1_c00076{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_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;}
.ls4_c00076{letter-spacing:0.000000px;}
.ls5_c00076{letter-spacing:3.000000px;}
.ls2_c00076{letter-spacing:6.600000px;}
.ls1_c00076{letter-spacing:11.925000px;}
.ls0_c00076{letter-spacing:17.184000px;}
.ls3_c00076{letter-spacing:36.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00076{word-spacing:-56.235000px;}
.ws2_c00076{word-spacing:-47.022000px;}
.ws5_c00076{word-spacing:-44.988000px;}
.ws0_c00076{word-spacing:-17.250000px;}
.ws1_c00076{word-spacing:-16.629000px;}
.ws3_c00076{word-spacing:-13.737000px;}
.ws7_c00076{word-spacing:0.000000px;}
.ws6_c00076{word-spacing:4.278000px;}
._2e_c00076{margin-left:-40.638000px;}
._30_c00076{margin-left:-31.167000px;}
._2d_c00076{margin-left:-24.480000px;}
._1f_c00076{margin-left:-18.609000px;}
._22_c00076{margin-left:-12.942000px;}
._f_c00076{margin-left:-11.592000px;}
._10_c00076{margin-left:-9.729000px;}
._14_c00076{margin-left:-7.728000px;}
._20_c00076{margin-left:-5.520000px;}
._15_c00076{margin-left:-4.518000px;}
._2_c00076{margin-left:-3.312000px;}
._c_c00076{margin-left:-1.725000px;}
._3_c00076{width:1.449000px;}
._1_c00076{width:3.036000px;}
._7_c00076{width:4.692000px;}
._0_c00076{width:6.003000px;}
._5_c00076{width:7.176000px;}
._13_c00076{width:8.556000px;}
._6_c00076{width:9.660000px;}
._9_c00076{width:10.764000px;}
._d_c00076{width:12.627000px;}
._8_c00076{width:14.490000px;}
._b_c00076{width:15.594000px;}
._a_c00076{width:17.802000px;}
._12_c00076{width:20.736000px;}
._18_c00076{width:22.356000px;}
._19_c00076{width:24.840000px;}
._1e_c00076{width:33.240000px;}
._1c_c00076{width:34.914000px;}
._17_c00076{width:37.782000px;}
._1d_c00076{width:39.708000px;}
._16_c00076{width:40.884000px;}
._2c_c00076{width:44.040000px;}
._21_c00076{width:48.576000px;}
._11_c00076{width:54.408000px;}
._2a_c00076{width:55.938000px;}
._28_c00076{width:61.215000px;}
._23_c00076{width:64.308000px;}
._1b_c00076{width:77.178000px;}
._24_c00076{width:85.836000px;}
._25_c00076{width:88.449000px;}
._2f_c00076{width:90.528000px;}
._31_c00076{width:94.989000px;}
._26_c00076{width:97.215000px;}
._32_c00076{width:109.233000px;}
._29_c00076{width:117.732000px;}
._e_c00076{width:198.168000px;}
._2b_c00076{width:201.798000px;}
._1a_c00076{width:228.321000px;}
._33_c00076{width:320.283000px;}
._4_c00076{width:499.944000px;}
._27_c00076{width:766.716000px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs1_c00076{font-size:48.000000px;}
.fs5_c00076{font-size:51.000000px;}
.fs4_c00076{font-size:54.000000px;}
.fs6_c00076{font-size:55.200000px;}
.fs3_c00076{font-size:57.000000px;}
.fs2_c00076{font-size:66.000000px;}
.fs0_c00076{font-size:69.000000px;}
.y0_c00076{bottom:0.000000px;}
.y1f_c00076{bottom:3.105000px;}
.y1e_c00076{bottom:7.228357px;}
.y1d_c00076{bottom:70.230000px;}
.y1c_c00076{bottom:94.530000px;}
.y1b_c00076{bottom:169.530000px;}
.y1a_c00076{bottom:178.980000px;}
.y19_c00076{bottom:196.830000px;}
.y18_c00076{bottom:215.280000px;}
.y17_c00076{bottom:232.830000px;}
.y16_c00076{bottom:271.980000px;}
.y15_c00076{bottom:293.580000px;}
.y14_c00076{bottom:320.730000px;}
.y13_c00076{bottom:343.980000px;}
.y12_c00076{bottom:370.230000px;}
.y11_c00076{bottom:394.530000px;}
.y10_c00076{bottom:419.280000px;}
.yf_c00076{bottom:444.480000px;}
.ye_c00076{bottom:469.080000px;}
.yd_c00076{bottom:493.830000px;}
.yc_c00076{bottom:517.830000px;}
.yb_c00076{bottom:542.130000px;}
.ya_c00076{bottom:567.030000px;}
.y9_c00076{bottom:592.080000px;}
.y8_c00076{bottom:616.980000px;}
.y7_c00076{bottom:641.880000px;}
.y6_c00076{bottom:666.630000px;}
.y5_c00076{bottom:691.830000px;}
.y4_c00076{bottom:716.880000px;}
.y3_c00076{bottom:741.780000px;}
.y2_c00076{bottom:766.830000px;}
.y1_c00076{bottom:791.880000px;}
.h7_c00076{height:13.200074px;}
.h8_c00076{height:43.804688px;}
.h5_c00076{height:56.592000px;}
.h6_c00076{height:64.571777px;}
.h4_c00076{height:66.713379px;}
.h2_c00076{height:67.686035px;}
.h3_c00076{height:87.361816px;}
.h1_c00076{height:816.750000px;}
.h0_c00076{height:817.050000px;}
.w2_c00076{width:104.875500px;}
.w1_c00076{width:547.500000px;}
.w0_c00076{width:547.575000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:27.600000px;}
.x3_c00076{left:28.650000px;}
.x4_c00076{left:30.000000px;}
.xb_c00076{left:31.350000px;}
.x5_c00076{left:48.300000px;}
.x6_c00076{left:116.100000px;}
.x7_c00076{left:141.450000px;}
.x8_c00076{left:165.750000px;}
.x1_c00076{left:181.950000px;}
.xf_c00076{left:225.601730px;}
.xe_c00076{left:284.850000px;}
.xc_c00076{left:317.250000px;}
.xd_c00076{left:339.150000px;}
.x9_c00076{left:420.150000px;}
.xa_c00076{left:424.650000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls4_c00076{letter-spacing:0.000000pt;}
.ls5_c00076{letter-spacing:2.666667pt;}
.ls2_c00076{letter-spacing:5.866667pt;}
.ls1_c00076{letter-spacing:10.600000pt;}
.ls0_c00076{letter-spacing:15.274667pt;}
.ls3_c00076{letter-spacing:32.000000pt;}
.ws4_c00076{word-spacing:-49.986667pt;}
.ws2_c00076{word-spacing:-41.797333pt;}
.ws5_c00076{word-spacing:-39.989333pt;}
.ws0_c00076{word-spacing:-15.333333pt;}
.ws1_c00076{word-spacing:-14.781333pt;}
.ws3_c00076{word-spacing:-12.210667pt;}
.ws7_c00076{word-spacing:0.000000pt;}
.ws6_c00076{word-spacing:3.802667pt;}
._2e_c00076{margin-left:-36.122667pt;}
._30_c00076{margin-left:-27.704000pt;}
._2d_c00076{margin-left:-21.760000pt;}
._1f_c00076{margin-left:-16.541333pt;}
._22_c00076{margin-left:-11.504000pt;}
._f_c00076{margin-left:-10.304000pt;}
._10_c00076{margin-left:-8.648000pt;}
._14_c00076{margin-left:-6.869333pt;}
._20_c00076{margin-left:-4.906667pt;}
._15_c00076{margin-left:-4.016000pt;}
._2_c00076{margin-left:-2.944000pt;}
._c_c00076{margin-left:-1.533333pt;}
._3_c00076{width:1.288000pt;}
._1_c00076{width:2.698667pt;}
._7_c00076{width:4.170667pt;}
._0_c00076{width:5.336000pt;}
._5_c00076{width:6.378667pt;}
._13_c00076{width:7.605333pt;}
._6_c00076{width:8.586667pt;}
._9_c00076{width:9.568000pt;}
._d_c00076{width:11.224000pt;}
._8_c00076{width:12.880000pt;}
._b_c00076{width:13.861333pt;}
._a_c00076{width:15.824000pt;}
._12_c00076{width:18.432000pt;}
._18_c00076{width:19.872000pt;}
._19_c00076{width:22.080000pt;}
._1e_c00076{width:29.546667pt;}
._1c_c00076{width:31.034667pt;}
._17_c00076{width:33.584000pt;}
._1d_c00076{width:35.296000pt;}
._16_c00076{width:36.341333pt;}
._2c_c00076{width:39.146667pt;}
._21_c00076{width:43.178667pt;}
._11_c00076{width:48.362667pt;}
._2a_c00076{width:49.722667pt;}
._28_c00076{width:54.413333pt;}
._23_c00076{width:57.162667pt;}
._1b_c00076{width:68.602667pt;}
._24_c00076{width:76.298667pt;}
._25_c00076{width:78.621333pt;}
._2f_c00076{width:80.469333pt;}
._31_c00076{width:84.434667pt;}
._26_c00076{width:86.413333pt;}
._32_c00076{width:97.096000pt;}
._29_c00076{width:104.650667pt;}
._e_c00076{width:176.149333pt;}
._2b_c00076{width:179.376000pt;}
._1a_c00076{width:202.952000pt;}
._33_c00076{width:284.696000pt;}
._4_c00076{width:444.394667pt;}
._27_c00076{width:681.525333pt;}
.fs1_c00076{font-size:42.666667pt;}
.fs5_c00076{font-size:45.333333pt;}
.fs4_c00076{font-size:48.000000pt;}
.fs6_c00076{font-size:49.066667pt;}
.fs3_c00076{font-size:50.666667pt;}
.fs2_c00076{font-size:58.666667pt;}
.fs0_c00076{font-size:61.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y1f_c00076{bottom:2.760000pt;}
.y1e_c00076{bottom:6.425206pt;}
.y1d_c00076{bottom:62.426667pt;}
.y1c_c00076{bottom:84.026667pt;}
.y1b_c00076{bottom:150.693333pt;}
.y1a_c00076{bottom:159.093333pt;}
.y19_c00076{bottom:174.960000pt;}
.y18_c00076{bottom:191.360000pt;}
.y17_c00076{bottom:206.960000pt;}
.y16_c00076{bottom:241.760000pt;}
.y15_c00076{bottom:260.960000pt;}
.y14_c00076{bottom:285.093333pt;}
.y13_c00076{bottom:305.760000pt;}
.y12_c00076{bottom:329.093333pt;}
.y11_c00076{bottom:350.693333pt;}
.y10_c00076{bottom:372.693333pt;}
.yf_c00076{bottom:395.093333pt;}
.ye_c00076{bottom:416.960000pt;}
.yd_c00076{bottom:438.960000pt;}
.yc_c00076{bottom:460.293333pt;}
.yb_c00076{bottom:481.893333pt;}
.ya_c00076{bottom:504.026667pt;}
.y9_c00076{bottom:526.293333pt;}
.y8_c00076{bottom:548.426667pt;}
.y7_c00076{bottom:570.560000pt;}
.y6_c00076{bottom:592.560000pt;}
.y5_c00076{bottom:614.960000pt;}
.y4_c00076{bottom:637.226667pt;}
.y3_c00076{bottom:659.360000pt;}
.y2_c00076{bottom:681.626667pt;}
.y1_c00076{bottom:703.893333pt;}
.h7_c00076{height:11.733399pt;}
.h8_c00076{height:38.937500pt;}
.h5_c00076{height:50.304000pt;}
.h6_c00076{height:57.397135pt;}
.h4_c00076{height:59.300781pt;}
.h2_c00076{height:60.165365pt;}
.h3_c00076{height:77.654948pt;}
.h1_c00076{height:726.000000pt;}
.h0_c00076{height:726.266667pt;}
.w2_c00076{width:93.222667pt;}
.w1_c00076{width:486.666667pt;}
.w0_c00076{width:486.733333pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:24.533333pt;}
.x3_c00076{left:25.466667pt;}
.x4_c00076{left:26.666667pt;}
.xb_c00076{left:27.866667pt;}
.x5_c00076{left:42.933333pt;}
.x6_c00076{left:103.200000pt;}
.x7_c00076{left:125.733333pt;}
.x8_c00076{left:147.333333pt;}
.x1_c00076{left:161.733333pt;}
.xf_c00076{left:200.534871pt;}
.xe_c00076{left:253.200000pt;}
.xc_c00076{left:282.000000pt;}
.xd_c00076{left:301.466667pt;}
.x9_c00076{left:373.466667pt;}
.xa_c00076{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_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_da098d860b74778a5196c78b.woff2')format("woff");}.ff1_c00077{font-family:ff1_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:ff2_c00077;src:url('chunks/assets/font_5fc1668c314dd84b3f9f1cfd.woff2')format("woff");}.ff2_c00077{font-family:ff2_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:ff3_c00077;src:url('chunks/assets/font_a5bf651fce8415024c8116ee.woff2')format("woff");}.ff3_c00077{font-family:ff3_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:ff4_c00077;src:url('chunks/assets/font_aa60eef2ae38e707e63a0da6.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_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:2.400000px;}
.ls5_c00077{letter-spacing:3.000000px;}
.ls1_c00077{letter-spacing:4.800000px;}
.ls2_c00077{letter-spacing:6.000000px;}
.ls4_c00077{letter-spacing:9.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:-47.022000px;}
.ws1_c00077{word-spacing:-16.629000px;}
.ws2_c00077{word-spacing:-1.173000px;}
.ws3_c00077{word-spacing:0.000000px;}
._2e_c00077{margin-left:-32.637000px;}
._1_c00077{margin-left:-25.950000px;}
._2d_c00077{margin-left:-24.495000px;}
._1a_c00077{margin-left:-18.072000px;}
._13_c00077{margin-left:-15.948000px;}
._1f_c00077{margin-left:-13.836000px;}
._1d_c00077{margin-left:-11.967000px;}
._1c_c00077{margin-left:-10.425000px;}
._18_c00077{margin-left:-8.970000px;}
._16_c00077{margin-left:-7.839000px;}
._a_c00077{margin-left:-6.600000px;}
._17_c00077{margin-left:-5.277000px;}
._9_c00077{margin-left:-4.050000px;}
._f_c00077{margin-left:-2.895000px;}
._12_c00077{margin-left:-1.038000px;}
._15_c00077{width:1.623000px;}
._11_c00077{width:2.967000px;}
._22_c00077{width:4.047000px;}
._10_c00077{width:5.658000px;}
._14_c00077{width:6.693000px;}
._1e_c00077{width:7.866000px;}
._2_c00077{width:9.225000px;}
._e_c00077{width:10.824000px;}
._b_c00077{width:12.477000px;}
._2c_c00077{width:13.479000px;}
._19_c00077{width:14.499000px;}
._21_c00077{width:15.699000px;}
._20_c00077{width:17.097000px;}
._26_c00077{width:18.108000px;}
._1b_c00077{width:19.125000px;}
._28_c00077{width:20.664000px;}
._8_c00077{width:21.696000px;}
._c_c00077{width:23.460000px;}
._3_c00077{width:24.495000px;}
._5_c00077{width:26.082000px;}
._d_c00077{width:27.945000px;}
._6_c00077{width:29.118000px;}
._24_c00077{width:30.660000px;}
._4_c00077{width:32.844000px;}
._2a_c00077{width:35.133000px;}
._7_c00077{width:36.570000px;}
._27_c00077{width:49.797000px;}
._2b_c00077{width:64.188000px;}
._29_c00077{width:90.291000px;}
._25_c00077{width:101.442000px;}
._23_c00077{width:138.720000px;}
._0_c00077{width:149.025000px;}
._2f_c00077{width:1534.698000px;}
.fc2_c00077{color:transparent;}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs3_c00077{font-size:48.000000px;}
.fs2_c00077{font-size:66.000000px;}
.fs1_c00077{font-size:69.000000px;}
.fs0_c00077{font-size:75.000000px;}
.y0_c00077{bottom:0.000000px;}
.y1c_c00077{bottom:3.105000px;}
.y1b_c00077{bottom:7.228371px;}
.y1a_c00077{bottom:72.615000px;}
.y19_c00077{bottom:98.865000px;}
.y18_c00077{bottom:121.965000px;}
.y17_c00077{bottom:148.215000px;}
.y16_c00077{bottom:172.815000px;}
.y15_c00077{bottom:198.465000px;}
.y14_c00077{bottom:223.515000px;}
.y13_c00077{bottom:248.865000px;}
.y12_c00077{bottom:273.765000px;}
.y11_c00077{bottom:298.815000px;}
.y10_c00077{bottom:323.715000px;}
.yf_c00077{bottom:347.265000px;}
.ye_c00077{bottom:372.615000px;}
.yd_c00077{bottom:397.365000px;}
.yc_c00077{bottom:422.565000px;}
.yb_c00077{bottom:447.315000px;}
.ya_c00077{bottom:472.215000px;}
.y9_c00077{bottom:497.115000px;}
.y8_c00077{bottom:521.865000px;}
.y7_c00077{bottom:571.515000px;}
.y6_c00077{bottom:597.465000px;}
.y5_c00077{bottom:622.815000px;}
.y4_c00077{bottom:647.415000px;}
.y3_c00077{bottom:672.765000px;}
.y2_c00077{bottom:697.365000px;}
.y1_c00077{bottom:747.615000px;}
.h5_c00077{height:13.200074px;}
.h6_c00077{height:43.804688px;}
.h4_c00077{height:80.758301px;}
.h3_c00077{height:87.361816px;}
.h2_c00077{height:94.958496px;}
.h0_c00077{height:828.375000px;}
.h1_c00077{height:828.750000px;}
.w1_c00077{width:104.875500px;}
.w0_c00077{width:563.250000px;}
.x0_c00077{left:0.000000px;}
.xb_c00077{left:38.550000px;}
.xa_c00077{left:51.600000px;}
.xc_c00077{left:53.550000px;}
.x1_c00077{left:77.700000px;}
.x9_c00077{left:101.700000px;}
.x8_c00077{left:103.350000px;}
.x6_c00077{left:105.600000px;}
.x3_c00077{left:106.650000px;}
.x5_c00077{left:107.700000px;}
.x4_c00077{left:109.050000px;}
.x7_c00077{left:129.600000px;}
.x2_c00077{left:131.850000px;}
.xd_c00077{left:233.439240px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls3_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:2.133333pt;}
.ls5_c00077{letter-spacing:2.666667pt;}
.ls1_c00077{letter-spacing:4.266667pt;}
.ls2_c00077{letter-spacing:5.333333pt;}
.ls4_c00077{letter-spacing:8.000000pt;}
.ws0_c00077{word-spacing:-41.797333pt;}
.ws1_c00077{word-spacing:-14.781333pt;}
.ws2_c00077{word-spacing:-1.042667pt;}
.ws3_c00077{word-spacing:0.000000pt;}
._2e_c00077{margin-left:-29.010667pt;}
._1_c00077{margin-left:-23.066667pt;}
._2d_c00077{margin-left:-21.773333pt;}
._1a_c00077{margin-left:-16.064000pt;}
._13_c00077{margin-left:-14.176000pt;}
._1f_c00077{margin-left:-12.298667pt;}
._1d_c00077{margin-left:-10.637333pt;}
._1c_c00077{margin-left:-9.266667pt;}
._18_c00077{margin-left:-7.973333pt;}
._16_c00077{margin-left:-6.968000pt;}
._a_c00077{margin-left:-5.866667pt;}
._17_c00077{margin-left:-4.690667pt;}
._9_c00077{margin-left:-3.600000pt;}
._f_c00077{margin-left:-2.573333pt;}
._12_c00077{margin-left:-0.922667pt;}
._15_c00077{width:1.442667pt;}
._11_c00077{width:2.637333pt;}
._22_c00077{width:3.597333pt;}
._10_c00077{width:5.029333pt;}
._14_c00077{width:5.949333pt;}
._1e_c00077{width:6.992000pt;}
._2_c00077{width:8.200000pt;}
._e_c00077{width:9.621333pt;}
._b_c00077{width:11.090667pt;}
._2c_c00077{width:11.981333pt;}
._19_c00077{width:12.888000pt;}
._21_c00077{width:13.954667pt;}
._20_c00077{width:15.197333pt;}
._26_c00077{width:16.096000pt;}
._1b_c00077{width:17.000000pt;}
._28_c00077{width:18.368000pt;}
._8_c00077{width:19.285333pt;}
._c_c00077{width:20.853333pt;}
._3_c00077{width:21.773333pt;}
._5_c00077{width:23.184000pt;}
._d_c00077{width:24.840000pt;}
._6_c00077{width:25.882667pt;}
._24_c00077{width:27.253333pt;}
._4_c00077{width:29.194667pt;}
._2a_c00077{width:31.229333pt;}
._7_c00077{width:32.506667pt;}
._27_c00077{width:44.264000pt;}
._2b_c00077{width:57.056000pt;}
._29_c00077{width:80.258667pt;}
._25_c00077{width:90.170667pt;}
._23_c00077{width:123.306667pt;}
._0_c00077{width:132.466667pt;}
._2f_c00077{width:1364.176000pt;}
.fs3_c00077{font-size:42.666667pt;}
.fs2_c00077{font-size:58.666667pt;}
.fs1_c00077{font-size:61.333333pt;}
.fs0_c00077{font-size:66.666667pt;}
.y0_c00077{bottom:0.000000pt;}
.y1c_c00077{bottom:2.760000pt;}
.y1b_c00077{bottom:6.425219pt;}
.y1a_c00077{bottom:64.546667pt;}
.y19_c00077{bottom:87.880000pt;}
.y18_c00077{bottom:108.413333pt;}
.y17_c00077{bottom:131.746667pt;}
.y16_c00077{bottom:153.613333pt;}
.y15_c00077{bottom:176.413333pt;}
.y14_c00077{bottom:198.680000pt;}
.y13_c00077{bottom:221.213333pt;}
.y12_c00077{bottom:243.346667pt;}
.y11_c00077{bottom:265.613333pt;}
.y10_c00077{bottom:287.746667pt;}
.yf_c00077{bottom:308.680000pt;}
.ye_c00077{bottom:331.213333pt;}
.yd_c00077{bottom:353.213333pt;}
.yc_c00077{bottom:375.613333pt;}
.yb_c00077{bottom:397.613333pt;}
.ya_c00077{bottom:419.746667pt;}
.y9_c00077{bottom:441.880000pt;}
.y8_c00077{bottom:463.880000pt;}
.y7_c00077{bottom:508.013333pt;}
.y6_c00077{bottom:531.080000pt;}
.y5_c00077{bottom:553.613333pt;}
.y4_c00077{bottom:575.480000pt;}
.y3_c00077{bottom:598.013333pt;}
.y2_c00077{bottom:619.880000pt;}
.y1_c00077{bottom:664.546667pt;}
.h5_c00077{height:11.733399pt;}
.h6_c00077{height:38.937500pt;}
.h4_c00077{height:71.785156pt;}
.h3_c00077{height:77.654948pt;}
.h2_c00077{height:84.407552pt;}
.h0_c00077{height:736.333333pt;}
.h1_c00077{height:736.666667pt;}
.w1_c00077{width:93.222667pt;}
.w0_c00077{width:500.666667pt;}
.x0_c00077{left:0.000000pt;}
.xb_c00077{left:34.266667pt;}
.xa_c00077{left:45.866667pt;}
.xc_c00077{left:47.600000pt;}
.x1_c00077{left:69.066667pt;}
.x9_c00077{left:90.400000pt;}
.x8_c00077{left:91.866667pt;}
.x6_c00077{left:93.866667pt;}
.x3_c00077{left:94.800000pt;}
.x5_c00077{left:95.733333pt;}
.x4_c00077{left:96.933333pt;}
.x7_c00077{left:115.200000pt;}
.x2_c00077{left:117.200000pt;}
.xd_c00077{left:207.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_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_cd2cf0f7967298c5f390dc84.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_92ff40106f5b5c257173ad94.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.568848;font-style:normal;font-weight:normal;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_3a4d02ed284a014105dcc2e4.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00078{letter-spacing:0.000000px;}
.ls3_c00078{letter-spacing:3.000000px;}
.ls1_c00078{letter-spacing:4.725000px;}
.ls0_c00078{letter-spacing:13.725000px;}
.ls4_c00078{letter-spacing:24.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:-47.022000px;}
.ws4_c00078{word-spacing:-34.845000px;}
.ws5_c00078{word-spacing:-19.629000px;}
.ws2_c00078{word-spacing:-16.629000px;}
.ws3_c00078{word-spacing:-0.387000px;}
.ws8_c00078{word-spacing:-0.084000px;}
.wsb_c00078{word-spacing:0.000000px;}
.wsa_c00078{word-spacing:0.966000px;}
.ws1_c00078{word-spacing:1.932000px;}
.ws6_c00078{word-spacing:2.415000px;}
.ws7_c00078{word-spacing:4.002000px;}
.ws9_c00078{word-spacing:6.996000px;}
._1e_c00078{margin-left:-30.255000px;}
._1d_c00078{margin-left:-23.667000px;}
._25_c00078{margin-left:-20.457000px;}
._27_c00078{margin-left:-19.110000px;}
._23_c00078{margin-left:-17.106000px;}
._13_c00078{margin-left:-16.077000px;}
._26_c00078{margin-left:-14.550000px;}
._12_c00078{margin-left:-13.455000px;}
._2d_c00078{margin-left:-11.910000px;}
._14_c00078{margin-left:-9.867000px;}
._15_c00078{margin-left:-8.763000px;}
._f_c00078{margin-left:-6.864000px;}
._16_c00078{margin-left:-5.421000px;}
._1_c00078{margin-left:-3.657000px;}
._17_c00078{margin-left:-2.484000px;}
._2_c00078{margin-left:-1.104000px;}
._e_c00078{width:1.035000px;}
._0_c00078{width:2.139000px;}
._4_c00078{width:3.174000px;}
._7_c00078{width:4.761000px;}
._5_c00078{width:6.003000px;}
._6_c00078{width:7.866000px;}
._d_c00078{width:9.078000px;}
._c_c00078{width:10.488000px;}
._9_c00078{width:12.387000px;}
._b_c00078{width:13.662000px;}
._19_c00078{width:15.204000px;}
._8_c00078{width:16.698000px;}
._21_c00078{width:17.913000px;}
._2a_c00078{width:19.236000px;}
._22_c00078{width:21.513000px;}
._a_c00078{width:23.802000px;}
._1b_c00078{width:26.220000px;}
._28_c00078{width:27.828000px;}
._18_c00078{width:28.911000px;}
._24_c00078{width:31.842000px;}
._1a_c00078{width:32.865000px;}
._1c_c00078{width:34.617000px;}
._10_c00078{width:35.916000px;}
._1f_c00078{width:37.170000px;}
._11_c00078{width:43.194000px;}
._20_c00078{width:64.677000px;}
._29_c00078{width:98.823000px;}
._2b_c00078{width:165.456000px;}
._2c_c00078{width:185.166000px;}
._3_c00078{width:524.079000px;}
.fc2_c00078{color:transparent;}
.fc1_c00078{color:rgb(128,128,128);}
.fc0_c00078{color:rgb(0,0,0);}
.fs2_c00078{font-size:45.000000px;}
.fs4_c00078{font-size:48.000000px;}
.fs1_c00078{font-size:66.000000px;}
.fs0_c00078{font-size:69.000000px;}
.fs3_c00078{font-size:78.000000px;}
.y0_c00078{bottom:0.000000px;}
.y20_c00078{bottom:3.105000px;}
.y1f_c00078{bottom:7.228371px;}
.y1e_c00078{bottom:68.865000px;}
.y1d_c00078{bottom:95.865000px;}
.y1c_c00078{bottom:121.515000px;}
.y1b_c00078{bottom:146.565000px;}
.y1a_c00078{bottom:171.165000px;}
.y19_c00078{bottom:196.215000px;}
.y18_c00078{bottom:221.415000px;}
.y17_c00078{bottom:246.165000px;}
.y16_c00078{bottom:271.065000px;}
.y15_c00078{bottom:296.115000px;}
.y14_c00078{bottom:321.315000px;}
.y13_c00078{bottom:346.065000px;}
.y12_c00078{bottom:370.365000px;}
.y11_c00078{bottom:395.265000px;}
.y10_c00078{bottom:419.865000px;}
.yf_c00078{bottom:444.915000px;}
.ye_c00078{bottom:469.815000px;}
.yd_c00078{bottom:494.415000px;}
.yc_c00078{bottom:518.415000px;}
.yb_c00078{bottom:542.715000px;}
.ya_c00078{bottom:567.465000px;}
.y9_c00078{bottom:592.665000px;}
.y8_c00078{bottom:617.415000px;}
.y7_c00078{bottom:642.315000px;}
.y6_c00078{bottom:667.665000px;}
.y5_c00078{bottom:691.965000px;}
.y4_c00078{bottom:716.865000px;}
.y3_c00078{bottom:741.915000px;}
.y2_c00078{bottom:767.115000px;}
.y1_c00078{bottom:791.865000px;}
.h4_c00078{height:13.200074px;}
.h5_c00078{height:43.804688px;}
.h2_c00078{height:87.361816px;}
.h3_c00078{height:98.756836px;}
.h1_c00078{height:831.000000px;}
.h0_c00078{height:831.075000px;}
.w1_c00078{width:104.875500px;}
.w0_c00078{width:557.250000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:29.700000px;}
.x3_c00078{left:31.350000px;}
.x4_c00078{left:32.700000px;}
.x5_c00078{left:34.500000px;}
.x6_c00078{left:35.550000px;}
.x7_c00078{left:37.200000px;}
.x8_c00078{left:38.550000px;}
.x9_c00078{left:39.600000px;}
.xa_c00078{left:40.950000px;}
.xb_c00078{left:42.600000px;}
.xc_c00078{left:44.550000px;}
.x1_c00078{left:182.700000px;}
.xe_c00078{left:230.439240px;}
.xd_c00078{left:465.150000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls2_c00078{letter-spacing:0.000000pt;}
.ls3_c00078{letter-spacing:2.666667pt;}
.ls1_c00078{letter-spacing:4.200000pt;}
.ls0_c00078{letter-spacing:12.200000pt;}
.ls4_c00078{letter-spacing:21.333333pt;}
.ws0_c00078{word-spacing:-41.797333pt;}
.ws4_c00078{word-spacing:-30.973333pt;}
.ws5_c00078{word-spacing:-17.448000pt;}
.ws2_c00078{word-spacing:-14.781333pt;}
.ws3_c00078{word-spacing:-0.344000pt;}
.ws8_c00078{word-spacing:-0.074667pt;}
.wsb_c00078{word-spacing:0.000000pt;}
.wsa_c00078{word-spacing:0.858667pt;}
.ws1_c00078{word-spacing:1.717333pt;}
.ws6_c00078{word-spacing:2.146667pt;}
.ws7_c00078{word-spacing:3.557333pt;}
.ws9_c00078{word-spacing:6.218667pt;}
._1e_c00078{margin-left:-26.893333pt;}
._1d_c00078{margin-left:-21.037333pt;}
._25_c00078{margin-left:-18.184000pt;}
._27_c00078{margin-left:-16.986667pt;}
._23_c00078{margin-left:-15.205333pt;}
._13_c00078{margin-left:-14.290667pt;}
._26_c00078{margin-left:-12.933333pt;}
._12_c00078{margin-left:-11.960000pt;}
._2d_c00078{margin-left:-10.586667pt;}
._14_c00078{margin-left:-8.770667pt;}
._15_c00078{margin-left:-7.789333pt;}
._f_c00078{margin-left:-6.101333pt;}
._16_c00078{margin-left:-4.818667pt;}
._1_c00078{margin-left:-3.250667pt;}
._17_c00078{margin-left:-2.208000pt;}
._2_c00078{margin-left:-0.981333pt;}
._e_c00078{width:0.920000pt;}
._0_c00078{width:1.901333pt;}
._4_c00078{width:2.821333pt;}
._7_c00078{width:4.232000pt;}
._5_c00078{width:5.336000pt;}
._6_c00078{width:6.992000pt;}
._d_c00078{width:8.069333pt;}
._c_c00078{width:9.322667pt;}
._9_c00078{width:11.010667pt;}
._b_c00078{width:12.144000pt;}
._19_c00078{width:13.514667pt;}
._8_c00078{width:14.842667pt;}
._21_c00078{width:15.922667pt;}
._2a_c00078{width:17.098667pt;}
._22_c00078{width:19.122667pt;}
._a_c00078{width:21.157333pt;}
._1b_c00078{width:23.306667pt;}
._28_c00078{width:24.736000pt;}
._18_c00078{width:25.698667pt;}
._24_c00078{width:28.304000pt;}
._1a_c00078{width:29.213333pt;}
._1c_c00078{width:30.770667pt;}
._10_c00078{width:31.925333pt;}
._1f_c00078{width:33.040000pt;}
._11_c00078{width:38.394667pt;}
._20_c00078{width:57.490667pt;}
._29_c00078{width:87.842667pt;}
._2b_c00078{width:147.072000pt;}
._2c_c00078{width:164.592000pt;}
._3_c00078{width:465.848000pt;}
.fs2_c00078{font-size:40.000000pt;}
.fs4_c00078{font-size:42.666667pt;}
.fs1_c00078{font-size:58.666667pt;}
.fs0_c00078{font-size:61.333333pt;}
.fs3_c00078{font-size:69.333333pt;}
.y0_c00078{bottom:0.000000pt;}
.y20_c00078{bottom:2.760000pt;}
.y1f_c00078{bottom:6.425219pt;}
.y1e_c00078{bottom:61.213333pt;}
.y1d_c00078{bottom:85.213333pt;}
.y1c_c00078{bottom:108.013333pt;}
.y1b_c00078{bottom:130.280000pt;}
.y1a_c00078{bottom:152.146667pt;}
.y19_c00078{bottom:174.413333pt;}
.y18_c00078{bottom:196.813333pt;}
.y17_c00078{bottom:218.813333pt;}
.y16_c00078{bottom:240.946667pt;}
.y15_c00078{bottom:263.213333pt;}
.y14_c00078{bottom:285.613333pt;}
.y13_c00078{bottom:307.613333pt;}
.y12_c00078{bottom:329.213333pt;}
.y11_c00078{bottom:351.346667pt;}
.y10_c00078{bottom:373.213333pt;}
.yf_c00078{bottom:395.480000pt;}
.ye_c00078{bottom:417.613333pt;}
.yd_c00078{bottom:439.480000pt;}
.yc_c00078{bottom:460.813333pt;}
.yb_c00078{bottom:482.413333pt;}
.ya_c00078{bottom:504.413333pt;}
.y9_c00078{bottom:526.813333pt;}
.y8_c00078{bottom:548.813333pt;}
.y7_c00078{bottom:570.946667pt;}
.y6_c00078{bottom:593.480000pt;}
.y5_c00078{bottom:615.080000pt;}
.y4_c00078{bottom:637.213333pt;}
.y3_c00078{bottom:659.480000pt;}
.y2_c00078{bottom:681.880000pt;}
.y1_c00078{bottom:703.880000pt;}
.h4_c00078{height:11.733399pt;}
.h5_c00078{height:38.937500pt;}
.h2_c00078{height:77.654948pt;}
.h3_c00078{height:87.783854pt;}
.h1_c00078{height:738.666667pt;}
.h0_c00078{height:738.733333pt;}
.w1_c00078{width:93.222667pt;}
.w0_c00078{width:495.333333pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:26.400000pt;}
.x3_c00078{left:27.866667pt;}
.x4_c00078{left:29.066667pt;}
.x5_c00078{left:30.666667pt;}
.x6_c00078{left:31.600000pt;}
.x7_c00078{left:33.066667pt;}
.x8_c00078{left:34.266667pt;}
.x9_c00078{left:35.200000pt;}
.xa_c00078{left:36.400000pt;}
.xb_c00078{left:37.866667pt;}
.xc_c00078{left:39.600000pt;}
.x1_c00078{left:162.400000pt;}
.xe_c00078{left:204.834880pt;}
.xd_c00078{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_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_3afb26b493c984e15d85876a.woff2')format("woff");}.ff1_c00079{font-family:ff1_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:ff2_c00079;src:url('chunks/assets/font_8fcb09bb6b3f918d5cca98a3.woff2')format("woff");}.ff2_c00079{font-family:ff2_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:ff3_c00079;src:url('chunks/assets/font_1953826dae4e54366b202aad.woff2')format("woff");}.ff3_c00079{font-family:ff3_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:ff4_c00079;src:url('chunks/assets/font_46d802921f3eb560f9cd060f.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.437000;font-style:normal;font-weight:normal;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_5d0e34a0bacc415a41d71b6e.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.437000;font-style:normal;font-weight:normal;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_95ae6880bda0e736ea019579.woff2')format("woff");}.ff6_c00079{font-family:ff6_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:ff7_c00079;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m1_c00079{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_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;}
.ls4_c00079{letter-spacing:0.000000px;}
.ls2_c00079{letter-spacing:3.000000px;}
.ls0_c00079{letter-spacing:6.555000px;}
.ls1_c00079{letter-spacing:12.525000px;}
.ls3_c00079{letter-spacing:17.400000px;}
.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;}
}
.ws8_c00079{word-spacing:-47.022000px;}
.ws7_c00079{word-spacing:-19.629000px;}
.ws0_c00079{word-spacing:-16.629000px;}
.ws2_c00079{word-spacing:-13.737000px;}
.ws5_c00079{word-spacing:-0.528000px;}
.ws9_c00079{word-spacing:0.000000px;}
.ws4_c00079{word-spacing:0.966000px;}
.ws6_c00079{word-spacing:1.125000px;}
.ws1_c00079{word-spacing:3.099000px;}
.ws3_c00079{word-spacing:8.004000px;}
._1c_c00079{margin-left:-17.595000px;}
._1f_c00079{margin-left:-14.628000px;}
._1e_c00079{margin-left:-12.144000px;}
._1d_c00079{margin-left:-10.764000px;}
._1_c00079{margin-left:-9.108000px;}
._1b_c00079{margin-left:-7.797000px;}
._2a_c00079{margin-left:-6.750000px;}
._10_c00079{margin-left:-5.451000px;}
._11_c00079{margin-left:-4.278000px;}
._7_c00079{margin-left:-2.829000px;}
._3_c00079{margin-left:-1.587000px;}
._5_c00079{width:2.001000px;}
._0_c00079{width:3.174000px;}
._4_c00079{width:4.347000px;}
._6_c00079{width:5.451000px;}
._d_c00079{width:7.038000px;}
._8_c00079{width:8.349000px;}
._e_c00079{width:9.579000px;}
._c_c00079{width:11.307000px;}
._19_c00079{width:12.351000px;}
._f_c00079{width:13.938000px;}
._b_c00079{width:15.249000px;}
._14_c00079{width:16.644000px;}
._12_c00079{width:18.219000px;}
._15_c00079{width:19.707000px;}
._18_c00079{width:21.057000px;}
._16_c00079{width:23.253000px;}
._a_c00079{width:25.047000px;}
._9_c00079{width:28.980000px;}
._21_c00079{width:32.085000px;}
._27_c00079{width:33.879000px;}
._17_c00079{width:36.156000px;}
._1a_c00079{width:37.416000px;}
._2c_c00079{width:38.841000px;}
._2d_c00079{width:39.939000px;}
._23_c00079{width:42.120000px;}
._28_c00079{width:43.362000px;}
._13_c00079{width:65.964000px;}
._24_c00079{width:68.586000px;}
._20_c00079{width:95.757000px;}
._2b_c00079{width:97.893000px;}
._22_c00079{width:101.019000px;}
._2e_c00079{width:194.703000px;}
._25_c00079{width:199.410000px;}
._29_c00079{width:203.067000px;}
._26_c00079{width:223.353000px;}
._2_c00079{width:361.443000px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs1_c00079{font-size:45.000000px;}
.fs5_c00079{font-size:48.000000px;}
.fs2_c00079{font-size:54.000000px;}
.fs3_c00079{font-size:57.000000px;}
.fs4_c00079{font-size:66.000000px;}
.fs0_c00079{font-size:69.000000px;}
.y0_c00079{bottom:0.000000px;}
.y22_c00079{bottom:3.105000px;}
.y21_c00079{bottom:7.228369px;}
.y20_c00079{bottom:51.270000px;}
.y1f_c00079{bottom:77.520000px;}
.y1e_c00079{bottom:103.620000px;}
.y1d_c00079{bottom:128.520000px;}
.y1c_c00079{bottom:153.570000px;}
.y1b_c00079{bottom:178.170000px;}
.y1a_c00079{bottom:203.520000px;}
.y19_c00079{bottom:228.870000px;}
.y18_c00079{bottom:253.770000px;}
.y17_c00079{bottom:279.120000px;}
.y16_c00079{bottom:303.720000px;}
.y15_c00079{bottom:329.070000px;}
.y14_c00079{bottom:353.070000px;}
.y13_c00079{bottom:379.020000px;}
.y12_c00079{bottom:402.270000px;}
.y11_c00079{bottom:427.620000px;}
.y10_c00079{bottom:452.520000px;}
.yf_c00079{bottom:477.870000px;}
.ye_c00079{bottom:503.220000px;}
.yd_c00079{bottom:527.520000px;}
.yc_c00079{bottom:552.420000px;}
.yb_c00079{bottom:577.470000px;}
.ya_c00079{bottom:606.120000px;}
.y9_c00079{bottom:623.970000px;}
.y8_c00079{bottom:641.820000px;}
.y7_c00079{bottom:659.370000px;}
.y6_c00079{bottom:679.320000px;}
.y5_c00079{bottom:704.670000px;}
.y4_c00079{bottom:729.270000px;}
.y3_c00079{bottom:754.320000px;}
.y2_c00079{bottom:779.520000px;}
.y1_c00079{bottom:804.870000px;}
.h7_c00079{height:13.200073px;}
.h8_c00079{height:43.804688px;}
.h5_c00079{height:56.592000px;}
.h3_c00079{height:56.975098px;}
.h4_c00079{height:66.713379px;}
.h6_c00079{height:80.758301px;}
.h2_c00079{height:87.361816px;}
.h0_c00079{height:842.100000px;}
.h1_c00079{height:842.250000px;}
.w2_c00079{width:104.875500px;}
.w0_c00079{width:572.925000px;}
.w1_c00079{width:573.000000px;}
.x0_c00079{left:0.000000px;}
.x11_c00079{left:43.950000px;}
.x10_c00079{left:46.350000px;}
.xd_c00079{left:47.700000px;}
.xe_c00079{left:49.050000px;}
.x13_c00079{left:59.400000px;}
.xc_c00079{left:63.450000px;}
.x12_c00079{left:108.450000px;}
.xf_c00079{left:112.500000px;}
.xb_c00079{left:114.150000px;}
.x6_c00079{left:115.500000px;}
.x5_c00079{left:116.550000px;}
.x2_c00079{left:118.500000px;}
.x3_c00079{left:119.550000px;}
.x1_c00079{left:131.550000px;}
.x4_c00079{left:134.400000px;}
.x9_c00079{left:140.700000px;}
.x7_c00079{left:150.150000px;}
.x8_c00079{left:160.350000px;}
.xa_c00079{left:173.250000px;}
.x15_c00079{left:238.276749px;}
.x14_c00079{left:519.450000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls4_c00079{letter-spacing:0.000000pt;}
.ls2_c00079{letter-spacing:2.666667pt;}
.ls0_c00079{letter-spacing:5.826667pt;}
.ls1_c00079{letter-spacing:11.133333pt;}
.ls3_c00079{letter-spacing:15.466667pt;}
.ws8_c00079{word-spacing:-41.797333pt;}
.ws7_c00079{word-spacing:-17.448000pt;}
.ws0_c00079{word-spacing:-14.781333pt;}
.ws2_c00079{word-spacing:-12.210667pt;}
.ws5_c00079{word-spacing:-0.469333pt;}
.ws9_c00079{word-spacing:0.000000pt;}
.ws4_c00079{word-spacing:0.858667pt;}
.ws6_c00079{word-spacing:1.000000pt;}
.ws1_c00079{word-spacing:2.754667pt;}
.ws3_c00079{word-spacing:7.114667pt;}
._1c_c00079{margin-left:-15.640000pt;}
._1f_c00079{margin-left:-13.002667pt;}
._1e_c00079{margin-left:-10.794667pt;}
._1d_c00079{margin-left:-9.568000pt;}
._1_c00079{margin-left:-8.096000pt;}
._1b_c00079{margin-left:-6.930667pt;}
._2a_c00079{margin-left:-6.000000pt;}
._10_c00079{margin-left:-4.845333pt;}
._11_c00079{margin-left:-3.802667pt;}
._7_c00079{margin-left:-2.514667pt;}
._3_c00079{margin-left:-1.410667pt;}
._5_c00079{width:1.778667pt;}
._0_c00079{width:2.821333pt;}
._4_c00079{width:3.864000pt;}
._6_c00079{width:4.845333pt;}
._d_c00079{width:6.256000pt;}
._8_c00079{width:7.421333pt;}
._e_c00079{width:8.514667pt;}
._c_c00079{width:10.050667pt;}
._19_c00079{width:10.978667pt;}
._f_c00079{width:12.389333pt;}
._b_c00079{width:13.554667pt;}
._14_c00079{width:14.794667pt;}
._12_c00079{width:16.194667pt;}
._15_c00079{width:17.517333pt;}
._18_c00079{width:18.717333pt;}
._16_c00079{width:20.669333pt;}
._a_c00079{width:22.264000pt;}
._9_c00079{width:25.760000pt;}
._21_c00079{width:28.520000pt;}
._27_c00079{width:30.114667pt;}
._17_c00079{width:32.138667pt;}
._1a_c00079{width:33.258667pt;}
._2c_c00079{width:34.525333pt;}
._2d_c00079{width:35.501333pt;}
._23_c00079{width:37.440000pt;}
._28_c00079{width:38.544000pt;}
._13_c00079{width:58.634667pt;}
._24_c00079{width:60.965333pt;}
._20_c00079{width:85.117333pt;}
._2b_c00079{width:87.016000pt;}
._22_c00079{width:89.794667pt;}
._2e_c00079{width:173.069333pt;}
._25_c00079{width:177.253333pt;}
._29_c00079{width:180.504000pt;}
._26_c00079{width:198.536000pt;}
._2_c00079{width:321.282667pt;}
.fs1_c00079{font-size:40.000000pt;}
.fs5_c00079{font-size:42.666667pt;}
.fs2_c00079{font-size:48.000000pt;}
.fs3_c00079{font-size:50.666667pt;}
.fs4_c00079{font-size:58.666667pt;}
.fs0_c00079{font-size:61.333333pt;}
.y0_c00079{bottom:0.000000pt;}
.y22_c00079{bottom:2.760000pt;}
.y21_c00079{bottom:6.425217pt;}
.y20_c00079{bottom:45.573333pt;}
.y1f_c00079{bottom:68.906667pt;}
.y1e_c00079{bottom:92.106667pt;}
.y1d_c00079{bottom:114.240000pt;}
.y1c_c00079{bottom:136.506667pt;}
.y1b_c00079{bottom:158.373333pt;}
.y1a_c00079{bottom:180.906667pt;}
.y19_c00079{bottom:203.440000pt;}
.y18_c00079{bottom:225.573333pt;}
.y17_c00079{bottom:248.106667pt;}
.y16_c00079{bottom:269.973333pt;}
.y15_c00079{bottom:292.506667pt;}
.y14_c00079{bottom:313.840000pt;}
.y13_c00079{bottom:336.906667pt;}
.y12_c00079{bottom:357.573333pt;}
.y11_c00079{bottom:380.106667pt;}
.y10_c00079{bottom:402.240000pt;}
.yf_c00079{bottom:424.773333pt;}
.ye_c00079{bottom:447.306667pt;}
.yd_c00079{bottom:468.906667pt;}
.yc_c00079{bottom:491.040000pt;}
.yb_c00079{bottom:513.306667pt;}
.ya_c00079{bottom:538.773333pt;}
.y9_c00079{bottom:554.640000pt;}
.y8_c00079{bottom:570.506667pt;}
.y7_c00079{bottom:586.106667pt;}
.y6_c00079{bottom:603.840000pt;}
.y5_c00079{bottom:626.373333pt;}
.y4_c00079{bottom:648.240000pt;}
.y3_c00079{bottom:670.506667pt;}
.y2_c00079{bottom:692.906667pt;}
.y1_c00079{bottom:715.440000pt;}
.h7_c00079{height:11.733399pt;}
.h8_c00079{height:38.937500pt;}
.h5_c00079{height:50.304000pt;}
.h3_c00079{height:50.644531pt;}
.h4_c00079{height:59.300781pt;}
.h6_c00079{height:71.785156pt;}
.h2_c00079{height:77.654948pt;}
.h0_c00079{height:748.533333pt;}
.h1_c00079{height:748.666667pt;}
.w2_c00079{width:93.222667pt;}
.w0_c00079{width:509.266667pt;}
.w1_c00079{width:509.333333pt;}
.x0_c00079{left:0.000000pt;}
.x11_c00079{left:39.066667pt;}
.x10_c00079{left:41.200000pt;}
.xd_c00079{left:42.400000pt;}
.xe_c00079{left:43.600000pt;}
.x13_c00079{left:52.800000pt;}
.xc_c00079{left:56.400000pt;}
.x12_c00079{left:96.400000pt;}
.xf_c00079{left:100.000000pt;}
.xb_c00079{left:101.466667pt;}
.x6_c00079{left:102.666667pt;}
.x5_c00079{left:103.600000pt;}
.x2_c00079{left:105.333333pt;}
.x3_c00079{left:106.266667pt;}
.x1_c00079{left:116.933333pt;}
.x4_c00079{left:119.466667pt;}
.x9_c00079{left:125.066667pt;}
.x7_c00079{left:133.466667pt;}
.x8_c00079{left:142.533333pt;}
.xa_c00079{left:154.000000pt;}
.x15_c00079{left:211.801554pt;}
.x14_c00079{left:461.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_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_6b959cc20e25bea67e0e9ff4.woff2')format("woff");}.ff1_c00080{font-family:ff1_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:ff2_c00080;src:url('chunks/assets/font_3cdbbd7a63f84c86851a7154.woff2')format("woff");}.ff2_c00080{font-family:ff2_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:ff3_c00080;src:url('chunks/assets/font_e6ab95eeebd8e4a13539d090.woff2')format("woff");}.ff3_c00080{font-family:ff3_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:ff4_c00080;src:url('chunks/assets/font_670a2049b62ba394679cd4b0.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.437000;font-style:normal;font-weight:normal;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_c7618e7dd70ab167f00e9cc2.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.437000;font-style:normal;font-weight:normal;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_f2e84d59b0bfa4a156d88942.woff2')format("woff");}.ff6_c00080{font-family:ff6_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:ff7_c00080;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00080{font-family:ff7_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;}
.m1_c00080{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_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);}
.v1_c00080{vertical-align:-87.600000px;}
.v0_c00080{vertical-align:0.000000px;}
.ls4_c00080{letter-spacing:0.000000px;}
.ls3_c00080{letter-spacing:3.000000px;}
.ls2_c00080{letter-spacing:3.600000px;}
.ls5_c00080{letter-spacing:6.000000px;}
.ls1_c00080{letter-spacing:6.486000px;}
.ls0_c00080{letter-spacing:7.200000px;}
.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;}
}
.ws5_c00080{word-spacing:-47.022000px;}
.ws1_c00080{word-spacing:-44.022000px;}
.ws2_c00080{word-spacing:-23.115000px;}
.ws9_c00080{word-spacing:-19.629000px;}
.ws0_c00080{word-spacing:-16.629000px;}
.ws7_c00080{word-spacing:-13.737000px;}
.wsa_c00080{word-spacing:-11.568000px;}
.ws6_c00080{word-spacing:-0.957000px;}
.ws8_c00080{word-spacing:-0.414000px;}
.wsb_c00080{word-spacing:0.000000px;}
.ws4_c00080{word-spacing:6.072000px;}
.ws3_c00080{word-spacing:8.487000px;}
._26_c00080{margin-left:-18.906000px;}
._1d_c00080{margin-left:-17.868000px;}
._19_c00080{margin-left:-16.629000px;}
._5_c00080{margin-left:-15.456000px;}
._3_c00080{margin-left:-13.386000px;}
._0_c00080{margin-left:-9.246000px;}
._1_c00080{margin-left:-8.142000px;}
._12_c00080{margin-left:-6.693000px;}
._2_c00080{margin-left:-4.899000px;}
._10_c00080{margin-left:-2.970000px;}
._6_c00080{margin-left:-1.587000px;}
._4_c00080{width:1.794000px;}
._9_c00080{width:2.829000px;}
._8_c00080{width:4.692000px;}
._a_c00080{width:6.624000px;}
._e_c00080{width:8.625000px;}
._1a_c00080{width:9.867000px;}
._c_c00080{width:11.040000px;}
._17_c00080{width:12.765000px;}
._d_c00080{width:14.352000px;}
._b_c00080{width:15.357000px;}
._f_c00080{width:17.181000px;}
._14_c00080{width:18.492000px;}
._22_c00080{width:19.527000px;}
._13_c00080{width:20.730000px;}
._16_c00080{width:22.425000px;}
._20_c00080{width:24.180000px;}
._24_c00080{width:26.676000px;}
._23_c00080{width:29.754000px;}
._1c_c00080{width:32.748000px;}
._15_c00080{width:40.614000px;}
._11_c00080{width:106.641000px;}
._21_c00080{width:110.448000px;}
._1f_c00080{width:142.692000px;}
._1b_c00080{width:144.354000px;}
._1e_c00080{width:168.843000px;}
._18_c00080{width:310.818000px;}
._25_c00080{width:371.373000px;}
._7_c00080{width:523.473000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs5_c00080{font-size:48.000000px;}
.fs6_c00080{font-size:51.000000px;}
.fs2_c00080{font-size:54.000000px;}
.fs4_c00080{font-size:57.000000px;}
.fs3_c00080{font-size:63.000000px;}
.fs1_c00080{font-size:66.000000px;}
.fs0_c00080{font-size:69.000000px;}
.y0_c00080{bottom:0.000000px;}
.y26_c00080{bottom:3.105000px;}
.y25_c00080{bottom:7.228363px;}
.y22_c00080{bottom:57.000000px;}
.y21_c00080{bottom:75.000000px;}
.y20_c00080{bottom:92.550000px;}
.y1f_c00080{bottom:110.700000px;}
.y1e_c00080{bottom:128.250000px;}
.y1d_c00080{bottom:145.800000px;}
.y1c_c00080{bottom:163.350000px;}
.y1b_c00080{bottom:181.200000px;}
.y1a_c00080{bottom:198.450000px;}
.y19_c00080{bottom:216.300000px;}
.y18_c00080{bottom:237.300000px;}
.y17_c00080{bottom:261.900000px;}
.y16_c00080{bottom:287.250000px;}
.y15_c00080{bottom:311.850000px;}
.y24_c00080{bottom:324.000000px;}
.y23_c00080{bottom:332.550000px;}
.y14_c00080{bottom:336.600000px;}
.y13_c00080{bottom:361.200000px;}
.y12_c00080{bottom:385.800000px;}
.y11_c00080{bottom:410.850000px;}
.y10_c00080{bottom:435.450000px;}
.yf_c00080{bottom:460.350000px;}
.ye_c00080{bottom:484.350000px;}
.yd_c00080{bottom:509.250000px;}
.y1_c00080{bottom:526.500000px;}
.yc_c00080{bottom:533.700000px;}
.yb_c00080{bottom:559.200000px;}
.ya_c00080{bottom:583.200000px;}
.y9_c00080{bottom:607.950000px;}
.y8_c00080{bottom:632.850000px;}
.y7_c00080{bottom:657.150000px;}
.y6_c00080{bottom:682.500000px;}
.y5_c00080{bottom:706.500000px;}
.y4_c00080{bottom:732.000000px;}
.y3_c00080{bottom:756.450000px;}
.y2_c00080{bottom:780.600000px;}
.h7_c00080{height:13.200074px;}
.h8_c00080{height:43.804688px;}
.h3_c00080{height:56.592000px;}
.h6_c00080{height:64.571777px;}
.h4_c00080{height:66.713379px;}
.h5_c00080{height:72.168457px;}
.h1_c00080{height:80.758301px;}
.h2_c00080{height:87.361816px;}
.h0_c00080{height:823.500000px;}
.w2_c00080{width:104.875500px;}
.w0_c00080{width:551.850000px;}
.w1_c00080{width:552.000000px;}
.x0_c00080{left:0.000000px;}
.x3_c00080{left:22.950000px;}
.x4_c00080{left:24.000000px;}
.x5_c00080{left:25.650000px;}
.x6_c00080{left:27.300000px;}
.x8_c00080{left:28.650000px;}
.xa_c00080{left:30.000000px;}
.xd_c00080{left:31.050000px;}
.x11_c00080{left:32.700000px;}
.xe_c00080{left:40.800000px;}
.x9_c00080{left:46.350000px;}
.x7_c00080{left:70.950000px;}
.xb_c00080{left:146.550000px;}
.xc_c00080{left:161.100000px;}
.x2_c00080{left:172.500000px;}
.x14_c00080{left:227.739258px;}
.xf_c00080{left:270.300000px;}
.x10_c00080{left:276.150000px;}
.x1_c00080{left:479.850000px;}
.x13_c00080{left:483.300000px;}
.x12_c00080{left:532.200000px;}
@media print{
.v1_c00080{vertical-align:-77.866667pt;}
.v0_c00080{vertical-align:0.000000pt;}
.ls4_c00080{letter-spacing:0.000000pt;}
.ls3_c00080{letter-spacing:2.666667pt;}
.ls2_c00080{letter-spacing:3.200000pt;}
.ls5_c00080{letter-spacing:5.333333pt;}
.ls1_c00080{letter-spacing:5.765333pt;}
.ls0_c00080{letter-spacing:6.400000pt;}
.ws5_c00080{word-spacing:-41.797333pt;}
.ws1_c00080{word-spacing:-39.130667pt;}
.ws2_c00080{word-spacing:-20.546667pt;}
.ws9_c00080{word-spacing:-17.448000pt;}
.ws0_c00080{word-spacing:-14.781333pt;}
.ws7_c00080{word-spacing:-12.210667pt;}
.wsa_c00080{word-spacing:-10.282667pt;}
.ws6_c00080{word-spacing:-0.850667pt;}
.ws8_c00080{word-spacing:-0.368000pt;}
.wsb_c00080{word-spacing:0.000000pt;}
.ws4_c00080{word-spacing:5.397333pt;}
.ws3_c00080{word-spacing:7.544000pt;}
._26_c00080{margin-left:-16.805333pt;}
._1d_c00080{margin-left:-15.882667pt;}
._19_c00080{margin-left:-14.781333pt;}
._5_c00080{margin-left:-13.738667pt;}
._3_c00080{margin-left:-11.898667pt;}
._0_c00080{margin-left:-8.218667pt;}
._1_c00080{margin-left:-7.237333pt;}
._12_c00080{margin-left:-5.949333pt;}
._2_c00080{margin-left:-4.354667pt;}
._10_c00080{margin-left:-2.640000pt;}
._6_c00080{margin-left:-1.410667pt;}
._4_c00080{width:1.594667pt;}
._9_c00080{width:2.514667pt;}
._8_c00080{width:4.170667pt;}
._a_c00080{width:5.888000pt;}
._e_c00080{width:7.666667pt;}
._1a_c00080{width:8.770667pt;}
._c_c00080{width:9.813333pt;}
._17_c00080{width:11.346667pt;}
._d_c00080{width:12.757333pt;}
._b_c00080{width:13.650667pt;}
._f_c00080{width:15.272000pt;}
._14_c00080{width:16.437333pt;}
._22_c00080{width:17.357333pt;}
._13_c00080{width:18.426667pt;}
._16_c00080{width:19.933333pt;}
._20_c00080{width:21.493333pt;}
._24_c00080{width:23.712000pt;}
._23_c00080{width:26.448000pt;}
._1c_c00080{width:29.109333pt;}
._15_c00080{width:36.101333pt;}
._11_c00080{width:94.792000pt;}
._21_c00080{width:98.176000pt;}
._1f_c00080{width:126.837333pt;}
._1b_c00080{width:128.314667pt;}
._1e_c00080{width:150.082667pt;}
._18_c00080{width:276.282667pt;}
._25_c00080{width:330.109333pt;}
._7_c00080{width:465.309333pt;}
.fs5_c00080{font-size:42.666667pt;}
.fs6_c00080{font-size:45.333333pt;}
.fs2_c00080{font-size:48.000000pt;}
.fs4_c00080{font-size:50.666667pt;}
.fs3_c00080{font-size:56.000000pt;}
.fs1_c00080{font-size:58.666667pt;}
.fs0_c00080{font-size:61.333333pt;}
.y0_c00080{bottom:0.000000pt;}
.y26_c00080{bottom:2.760000pt;}
.y25_c00080{bottom:6.425212pt;}
.y22_c00080{bottom:50.666667pt;}
.y21_c00080{bottom:66.666667pt;}
.y20_c00080{bottom:82.266667pt;}
.y1f_c00080{bottom:98.400000pt;}
.y1e_c00080{bottom:114.000000pt;}
.y1d_c00080{bottom:129.600000pt;}
.y1c_c00080{bottom:145.200000pt;}
.y1b_c00080{bottom:161.066667pt;}
.y1a_c00080{bottom:176.400000pt;}
.y19_c00080{bottom:192.266667pt;}
.y18_c00080{bottom:210.933333pt;}
.y17_c00080{bottom:232.800000pt;}
.y16_c00080{bottom:255.333333pt;}
.y15_c00080{bottom:277.200000pt;}
.y24_c00080{bottom:288.000000pt;}
.y23_c00080{bottom:295.600000pt;}
.y14_c00080{bottom:299.200000pt;}
.y13_c00080{bottom:321.066667pt;}
.y12_c00080{bottom:342.933333pt;}
.y11_c00080{bottom:365.200000pt;}
.y10_c00080{bottom:387.066667pt;}
.yf_c00080{bottom:409.200000pt;}
.ye_c00080{bottom:430.533333pt;}
.yd_c00080{bottom:452.666667pt;}
.y1_c00080{bottom:468.000000pt;}
.yc_c00080{bottom:474.400000pt;}
.yb_c00080{bottom:497.066667pt;}
.ya_c00080{bottom:518.400000pt;}
.y9_c00080{bottom:540.400000pt;}
.y8_c00080{bottom:562.533333pt;}
.y7_c00080{bottom:584.133333pt;}
.y6_c00080{bottom:606.666667pt;}
.y5_c00080{bottom:628.000000pt;}
.y4_c00080{bottom:650.666667pt;}
.y3_c00080{bottom:672.400000pt;}
.y2_c00080{bottom:693.866667pt;}
.h7_c00080{height:11.733399pt;}
.h8_c00080{height:38.937500pt;}
.h3_c00080{height:50.304000pt;}
.h6_c00080{height:57.397135pt;}
.h4_c00080{height:59.300781pt;}
.h5_c00080{height:64.149740pt;}
.h1_c00080{height:71.785156pt;}
.h2_c00080{height:77.654948pt;}
.h0_c00080{height:732.000000pt;}
.w2_c00080{width:93.222667pt;}
.w0_c00080{width:490.533333pt;}
.w1_c00080{width:490.666667pt;}
.x0_c00080{left:0.000000pt;}
.x3_c00080{left:20.400000pt;}
.x4_c00080{left:21.333333pt;}
.x5_c00080{left:22.800000pt;}
.x6_c00080{left:24.266667pt;}
.x8_c00080{left:25.466667pt;}
.xa_c00080{left:26.666667pt;}
.xd_c00080{left:27.600000pt;}
.x11_c00080{left:29.066667pt;}
.xe_c00080{left:36.266667pt;}
.x9_c00080{left:41.200000pt;}
.x7_c00080{left:63.066667pt;}
.xb_c00080{left:130.266667pt;}
.xc_c00080{left:143.200000pt;}
.x2_c00080{left:153.333333pt;}
.x14_c00080{left:202.434896pt;}
.xf_c00080{left:240.266667pt;}
.x10_c00080{left:245.466667pt;}
.x1_c00080{left:426.533333pt;}
.x13_c00080{left:429.600000pt;}
.x12_c00080{left:473.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_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_26233c4f03f00f93d0187cdc.woff2')format("woff");}.ff1_c00081{font-family:ff1_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:ff2_c00081;src:url('chunks/assets/font_6d1df223fa70f68a340d7a01.woff2')format("woff");}.ff2_c00081{font-family:ff2_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:ff3_c00081;src:url('chunks/assets/font_1d9802895af8c7ed85992acc.woff2')format("woff");}.ff3_c00081{font-family:ff3_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:ff4_c00081;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00081{font-family:ff4_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:3.000000px;}
.ls0_c00081{letter-spacing:15.525000px;}
.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;}
}
.ws3_c00081{word-spacing:-56.235000px;}
.ws2_c00081{word-spacing:-44.988000px;}
.ws0_c00081{word-spacing:-19.629000px;}
.ws1_c00081{word-spacing:-16.629000px;}
.ws4_c00081{word-spacing:0.000000px;}
.ws5_c00081{word-spacing:3.093000px;}
.ws6_c00081{word-spacing:7.038000px;}
._27_c00081{margin-left:-24.837000px;}
._14_c00081{margin-left:-16.722000px;}
._29_c00081{margin-left:-13.800000px;}
._12_c00081{margin-left:-12.669000px;}
._17_c00081{margin-left:-9.795600px;}
._e_c00081{margin-left:-8.178000px;}
._10_c00081{margin-left:-6.840000px;}
._6_c00081{margin-left:-5.451000px;}
._c_c00081{margin-left:-4.347000px;}
._b_c00081{margin-left:-2.463000px;}
._d_c00081{margin-left:-1.401000px;}
._a_c00081{width:1.380000px;}
._15_c00081{width:2.484000px;}
._5_c00081{width:4.026000px;}
._1b_c00081{width:5.196000px;}
._11_c00081{width:6.243000px;}
._16_c00081{width:7.707000px;}
._13_c00081{width:8.784000px;}
._1a_c00081{width:10.275000px;}
._8_c00081{width:12.075000px;}
._4_c00081{width:13.179000px;}
._1f_c00081{width:14.370000px;}
._0_c00081{width:15.456000px;}
._1e_c00081{width:16.782000px;}
._2_c00081{width:18.423000px;}
._f_c00081{width:19.656000px;}
._1_c00081{width:20.907000px;}
._3_c00081{width:22.977000px;}
._7_c00081{width:25.479000px;}
._9_c00081{width:27.600000px;}
._2c_c00081{width:29.295000px;}
._2b_c00081{width:30.390000px;}
._28_c00081{width:33.189000px;}
._24_c00081{width:34.320000px;}
._1c_c00081{width:36.069000px;}
._26_c00081{width:39.354000px;}
._23_c00081{width:96.786000px;}
._19_c00081{width:98.745600px;}
._1d_c00081{width:129.384000px;}
._20_c00081{width:151.413000px;}
._21_c00081{width:157.797000px;}
._2a_c00081{width:162.366000px;}
._25_c00081{width:176.817000px;}
._22_c00081{width:210.759600px;}
._18_c00081{width:365.907000px;}
.fc2_c00081{color:transparent;}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:48.000000px;}
.fs1_c00081{font-size:55.200000px;}
.fs0_c00081{font-size:69.000000px;}
.y0_c00081{bottom:0.000000px;}
.y1d_c00081{bottom:3.105000px;}
.y1c_c00081{bottom:7.228369px;}
.y1b_c00081{bottom:66.720000px;}
.y1a_c00081{bottom:90.420000px;}
.y19_c00081{bottom:116.070000px;}
.y18_c00081{bottom:141.420000px;}
.y17_c00081{bottom:167.070000px;}
.y16_c00081{bottom:191.970000px;}
.y15_c00081{bottom:217.020000px;}
.y14_c00081{bottom:242.220000px;}
.y13_c00081{bottom:267.270000px;}
.y12_c00081{bottom:292.320000px;}
.y11_c00081{bottom:317.820000px;}
.y10_c00081{bottom:342.870000px;}
.yf_c00081{bottom:366.870000px;}
.ye_c00081{bottom:392.220000px;}
.yd_c00081{bottom:417.120000px;}
.yc_c00081{bottom:442.170000px;}
.yb_c00081{bottom:468.720000px;}
.ya_c00081{bottom:492.120000px;}
.y9_c00081{bottom:516.270000px;}
.y8_c00081{bottom:541.320000px;}
.y7_c00081{bottom:566.970000px;}
.y6_c00081{bottom:592.020000px;}
.y5_c00081{bottom:617.520000px;}
.y4_c00081{bottom:642.270000px;}
.y3_c00081{bottom:667.620000px;}
.y2_c00081{bottom:692.520000px;}
.y1_c00081{bottom:742.170000px;}
.h4_c00081{height:13.200073px;}
.h5_c00081{height:43.804688px;}
.h3_c00081{height:80.758301px;}
.h2_c00081{height:87.361816px;}
.h1_c00081{height:832.500000px;}
.h0_c00081{height:832.650000px;}
.w2_c00081{width:104.875500px;}
.w1_c00081{width:566.250000px;}
.w0_c00081{width:566.475000px;}
.x0_c00081{left:0.000000px;}
.x5_c00081{left:46.950000px;}
.x7_c00081{left:48.600000px;}
.x6_c00081{left:62.850000px;}
.x9_c00081{left:63.900000px;}
.xa_c00081{left:67.800000px;}
.x8_c00081{left:112.050000px;}
.x3_c00081{left:113.400000px;}
.x4_c00081{left:114.750000px;}
.x2_c00081{left:150.150000px;}
.x1_c00081{left:154.800000px;}
.xc_c00081{left:235.051758px;}
.xb_c00081{left:531.600000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:2.666667pt;}
.ls0_c00081{letter-spacing:13.800000pt;}
.ws3_c00081{word-spacing:-49.986667pt;}
.ws2_c00081{word-spacing:-39.989333pt;}
.ws0_c00081{word-spacing:-17.448000pt;}
.ws1_c00081{word-spacing:-14.781333pt;}
.ws4_c00081{word-spacing:0.000000pt;}
.ws5_c00081{word-spacing:2.749333pt;}
.ws6_c00081{word-spacing:6.256000pt;}
._27_c00081{margin-left:-22.077333pt;}
._14_c00081{margin-left:-14.864000pt;}
._29_c00081{margin-left:-12.266667pt;}
._12_c00081{margin-left:-11.261333pt;}
._17_c00081{margin-left:-8.707200pt;}
._e_c00081{margin-left:-7.269333pt;}
._10_c00081{margin-left:-6.080000pt;}
._6_c00081{margin-left:-4.845333pt;}
._c_c00081{margin-left:-3.864000pt;}
._b_c00081{margin-left:-2.189333pt;}
._d_c00081{margin-left:-1.245333pt;}
._a_c00081{width:1.226667pt;}
._15_c00081{width:2.208000pt;}
._5_c00081{width:3.578667pt;}
._1b_c00081{width:4.618667pt;}
._11_c00081{width:5.549333pt;}
._16_c00081{width:6.850667pt;}
._13_c00081{width:7.808000pt;}
._1a_c00081{width:9.133333pt;}
._8_c00081{width:10.733333pt;}
._4_c00081{width:11.714667pt;}
._1f_c00081{width:12.773333pt;}
._0_c00081{width:13.738667pt;}
._1e_c00081{width:14.917333pt;}
._2_c00081{width:16.376000pt;}
._f_c00081{width:17.472000pt;}
._1_c00081{width:18.584000pt;}
._3_c00081{width:20.424000pt;}
._7_c00081{width:22.648000pt;}
._9_c00081{width:24.533333pt;}
._2c_c00081{width:26.040000pt;}
._2b_c00081{width:27.013333pt;}
._28_c00081{width:29.501333pt;}
._24_c00081{width:30.506667pt;}
._1c_c00081{width:32.061333pt;}
._26_c00081{width:34.981333pt;}
._23_c00081{width:86.032000pt;}
._19_c00081{width:87.773867pt;}
._1d_c00081{width:115.008000pt;}
._20_c00081{width:134.589333pt;}
._21_c00081{width:140.264000pt;}
._2a_c00081{width:144.325333pt;}
._25_c00081{width:157.170667pt;}
._22_c00081{width:187.341867pt;}
._18_c00081{width:325.250667pt;}
.fs2_c00081{font-size:42.666667pt;}
.fs1_c00081{font-size:49.066667pt;}
.fs0_c00081{font-size:61.333333pt;}
.y0_c00081{bottom:0.000000pt;}
.y1d_c00081{bottom:2.760000pt;}
.y1c_c00081{bottom:6.425217pt;}
.y1b_c00081{bottom:59.306667pt;}
.y1a_c00081{bottom:80.373333pt;}
.y19_c00081{bottom:103.173333pt;}
.y18_c00081{bottom:125.706667pt;}
.y17_c00081{bottom:148.506667pt;}
.y16_c00081{bottom:170.640000pt;}
.y15_c00081{bottom:192.906667pt;}
.y14_c00081{bottom:215.306667pt;}
.y13_c00081{bottom:237.573333pt;}
.y12_c00081{bottom:259.840000pt;}
.y11_c00081{bottom:282.506667pt;}
.y10_c00081{bottom:304.773333pt;}
.yf_c00081{bottom:326.106667pt;}
.ye_c00081{bottom:348.640000pt;}
.yd_c00081{bottom:370.773333pt;}
.yc_c00081{bottom:393.040000pt;}
.yb_c00081{bottom:416.640000pt;}
.ya_c00081{bottom:437.440000pt;}
.y9_c00081{bottom:458.906667pt;}
.y8_c00081{bottom:481.173333pt;}
.y7_c00081{bottom:503.973333pt;}
.y6_c00081{bottom:526.240000pt;}
.y5_c00081{bottom:548.906667pt;}
.y4_c00081{bottom:570.906667pt;}
.y3_c00081{bottom:593.440000pt;}
.y2_c00081{bottom:615.573333pt;}
.y1_c00081{bottom:659.706667pt;}
.h4_c00081{height:11.733399pt;}
.h5_c00081{height:38.937500pt;}
.h3_c00081{height:71.785156pt;}
.h2_c00081{height:77.654948pt;}
.h1_c00081{height:740.000000pt;}
.h0_c00081{height:740.133333pt;}
.w2_c00081{width:93.222667pt;}
.w1_c00081{width:503.333333pt;}
.w0_c00081{width:503.533333pt;}
.x0_c00081{left:0.000000pt;}
.x5_c00081{left:41.733333pt;}
.x7_c00081{left:43.200000pt;}
.x6_c00081{left:55.866667pt;}
.x9_c00081{left:56.800000pt;}
.xa_c00081{left:60.266667pt;}
.x8_c00081{left:99.600000pt;}
.x3_c00081{left:100.800000pt;}
.x4_c00081{left:102.000000pt;}
.x2_c00081{left:133.466667pt;}
.x1_c00081{left:137.600000pt;}
.xc_c00081{left:208.934896pt;}
.xb_c00081{left:472.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_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_723ab3ee44286244b8568e07.woff2')format("woff");}.ff1_c00082{font-family:ff1_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:ff2_c00082;src:url('chunks/assets/font_86857bfa3d04b6b1386a9441.woff2')format("woff");}.ff2_c00082{font-family:ff2_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:ff3_c00082;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.311035;font-style:normal;font-weight:normal;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_4bb3fafde99a9be7e79faa6c.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_47f2f11e3c17465442bacaa5.woff2')format("woff");}.ff5_c00082{font-family:ff5_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:ff6_c00082;src:url('chunks/assets/font_1e59707103da481729e2a4ca.woff2')format("woff");}.ff6_c00082{font-family:ff6_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:ff7_c00082;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff7_c00082{font-family:ff7_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00082;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00082{font-family:ff8_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;}
.m1_c00082{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_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;}
.ls0_c00082{letter-spacing:0.000000px;}
.ls1_c00082{letter-spacing:3.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-47.022000px;}
.ws3_c00082{word-spacing:-33.000000px;}
.ws4_c00082{word-spacing:-16.629000px;}
.ws1_c00082{word-spacing:-13.737000px;}
.ws5_c00082{word-spacing:0.000000px;}
.ws2_c00082{word-spacing:4.554000px;}
._27_c00082{margin-left:-24.771000px;}
._12_c00082{margin-left:-22.914000px;}
._29_c00082{margin-left:-20.142000px;}
._23_c00082{margin-left:-18.636000px;}
._20_c00082{margin-left:-14.766000px;}
._21_c00082{margin-left:-13.731000px;}
._16_c00082{margin-left:-12.276000px;}
._25_c00082{margin-left:-10.173000px;}
._e_c00082{margin-left:-8.970000px;}
._1e_c00082{margin-left:-7.728000px;}
._9_c00082{margin-left:-6.624000px;}
._11_c00082{margin-left:-5.382000px;}
._1d_c00082{margin-left:-4.347000px;}
._8_c00082{margin-left:-3.105000px;}
._1_c00082{margin-left:-1.725000px;}
._0_c00082{width:1.518000px;}
._4_c00082{width:2.553000px;}
._a_c00082{width:3.588000px;}
._3_c00082{width:4.692000px;}
._6_c00082{width:6.417000px;}
._18_c00082{width:7.506000px;}
._7_c00082{width:8.625000px;}
._13_c00082{width:9.867000px;}
._b_c00082{width:11.799000px;}
._1b_c00082{width:13.596000px;}
._5_c00082{width:15.042000px;}
._c_c00082{width:16.422000px;}
._d_c00082{width:17.871000px;}
._1a_c00082{width:19.818000px;}
._19_c00082{width:21.585000px;}
._10_c00082{width:22.839000px;}
._15_c00082{width:24.300000px;}
._17_c00082{width:27.372000px;}
._22_c00082{width:29.187000px;}
._1f_c00082{width:30.981000px;}
._28_c00082{width:32.292000px;}
._f_c00082{width:34.362000px;}
._14_c00082{width:39.573000px;}
._1c_c00082{width:42.573000px;}
._26_c00082{width:103.716000px;}
._2a_c00082{width:464.370000px;}
._2_c00082{width:496.221000px;}
._24_c00082{width:585.204000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs5_c00082{font-size:24.000000px;}
.fs6_c00082{font-size:48.000000px;}
.fs4_c00082{font-size:54.000000px;}
.fs3_c00082{font-size:57.000000px;}
.fs1_c00082{font-size:66.000000px;}
.fs0_c00082{font-size:69.000000px;}
.fs2_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y22_c00082{bottom:3.105000px;}
.y21_c00082{bottom:7.228363px;}
.y20_c00082{bottom:63.750000px;}
.y1f_c00082{bottom:88.050000px;}
.y1e_c00082{bottom:112.800000px;}
.y1d_c00082{bottom:138.000000px;}
.y1c_c00082{bottom:162.750000px;}
.y1b_c00082{bottom:187.950000px;}
.y1a_c00082{bottom:212.850000px;}
.y19_c00082{bottom:238.500000px;}
.y18_c00082{bottom:263.550000px;}
.y17_c00082{bottom:288.600000px;}
.y16_c00082{bottom:313.500000px;}
.y15_c00082{bottom:338.550000px;}
.y14_c00082{bottom:362.850000px;}
.y13_c00082{bottom:411.750000px;}
.y12_c00082{bottom:444.900000px;}
.y11_c00082{bottom:459.300000px;}
.y10_c00082{bottom:476.850000px;}
.yf_c00082{bottom:494.400000px;}
.ye_c00082{bottom:511.350000px;}
.yd_c00082{bottom:528.600000px;}
.yc_c00082{bottom:545.850000px;}
.yb_c00082{bottom:563.250000px;}
.ya_c00082{bottom:580.950000px;}
.y9_c00082{bottom:598.500000px;}
.y8_c00082{bottom:616.050000px;}
.y7_c00082{bottom:635.550000px;}
.y6_c00082{bottom:660.900000px;}
.y5_c00082{bottom:686.100000px;}
.y4_c00082{bottom:710.850000px;}
.y3_c00082{bottom:736.050000px;}
.y2_c00082{bottom:760.500000px;}
.y1_c00082{bottom:785.700000px;}
.h7_c00082{height:13.200074px;}
.h5_c00082{height:24.668218px;}
.h8_c00082{height:43.804688px;}
.h4_c00082{height:56.592000px;}
.h3_c00082{height:66.713379px;}
.h6_c00082{height:80.758301px;}
.h1_c00082{height:87.361816px;}
.h2_c00082{height:91.160156px;}
.h0_c00082{height:823.500000px;}
.w2_c00082{width:104.875500px;}
.w0_c00082{width:551.850000px;}
.w1_c00082{width:552.000000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:20.250000px;}
.x3_c00082{left:21.300000px;}
.x4_c00082{left:23.400000px;}
.xd_c00082{left:27.000000px;}
.xe_c00082{left:28.050000px;}
.x10_c00082{left:30.000000px;}
.x11_c00082{left:31.350000px;}
.x12_c00082{left:32.700000px;}
.x7_c00082{left:34.800000px;}
.x5_c00082{left:41.250000px;}
.xc_c00082{left:51.000000px;}
.xb_c00082{left:58.350000px;}
.xf_c00082{left:65.250000px;}
.x6_c00082{left:108.300000px;}
.x8_c00082{left:116.850000px;}
.x9_c00082{left:143.550000px;}
.x1_c00082{left:179.250000px;}
.x14_c00082{left:227.739258px;}
.x13_c00082{left:309.600000px;}
.xa_c00082{left:396.300000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:2.666667pt;}
.ws0_c00082{word-spacing:-41.797333pt;}
.ws3_c00082{word-spacing:-29.333333pt;}
.ws4_c00082{word-spacing:-14.781333pt;}
.ws1_c00082{word-spacing:-12.210667pt;}
.ws5_c00082{word-spacing:0.000000pt;}
.ws2_c00082{word-spacing:4.048000pt;}
._27_c00082{margin-left:-22.018667pt;}
._12_c00082{margin-left:-20.368000pt;}
._29_c00082{margin-left:-17.904000pt;}
._23_c00082{margin-left:-16.565333pt;}
._20_c00082{margin-left:-13.125333pt;}
._21_c00082{margin-left:-12.205333pt;}
._16_c00082{margin-left:-10.912000pt;}
._25_c00082{margin-left:-9.042667pt;}
._e_c00082{margin-left:-7.973333pt;}
._1e_c00082{margin-left:-6.869333pt;}
._9_c00082{margin-left:-5.888000pt;}
._11_c00082{margin-left:-4.784000pt;}
._1d_c00082{margin-left:-3.864000pt;}
._8_c00082{margin-left:-2.760000pt;}
._1_c00082{margin-left:-1.533333pt;}
._0_c00082{width:1.349333pt;}
._4_c00082{width:2.269333pt;}
._a_c00082{width:3.189333pt;}
._3_c00082{width:4.170667pt;}
._6_c00082{width:5.704000pt;}
._18_c00082{width:6.672000pt;}
._7_c00082{width:7.666667pt;}
._13_c00082{width:8.770667pt;}
._b_c00082{width:10.488000pt;}
._1b_c00082{width:12.085333pt;}
._5_c00082{width:13.370667pt;}
._c_c00082{width:14.597333pt;}
._d_c00082{width:15.885333pt;}
._1a_c00082{width:17.616000pt;}
._19_c00082{width:19.186667pt;}
._10_c00082{width:20.301333pt;}
._15_c00082{width:21.600000pt;}
._17_c00082{width:24.330667pt;}
._22_c00082{width:25.944000pt;}
._1f_c00082{width:27.538667pt;}
._28_c00082{width:28.704000pt;}
._f_c00082{width:30.544000pt;}
._14_c00082{width:35.176000pt;}
._1c_c00082{width:37.842667pt;}
._26_c00082{width:92.192000pt;}
._2a_c00082{width:412.773333pt;}
._2_c00082{width:441.085333pt;}
._24_c00082{width:520.181333pt;}
.fs5_c00082{font-size:21.333333pt;}
.fs6_c00082{font-size:42.666667pt;}
.fs4_c00082{font-size:48.000000pt;}
.fs3_c00082{font-size:50.666667pt;}
.fs1_c00082{font-size:58.666667pt;}
.fs0_c00082{font-size:61.333333pt;}
.fs2_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y22_c00082{bottom:2.760000pt;}
.y21_c00082{bottom:6.425212pt;}
.y20_c00082{bottom:56.666667pt;}
.y1f_c00082{bottom:78.266667pt;}
.y1e_c00082{bottom:100.266667pt;}
.y1d_c00082{bottom:122.666667pt;}
.y1c_c00082{bottom:144.666667pt;}
.y1b_c00082{bottom:167.066667pt;}
.y1a_c00082{bottom:189.200000pt;}
.y19_c00082{bottom:212.000000pt;}
.y18_c00082{bottom:234.266667pt;}
.y17_c00082{bottom:256.533333pt;}
.y16_c00082{bottom:278.666667pt;}
.y15_c00082{bottom:300.933333pt;}
.y14_c00082{bottom:322.533333pt;}
.y13_c00082{bottom:366.000000pt;}
.y12_c00082{bottom:395.466667pt;}
.y11_c00082{bottom:408.266667pt;}
.y10_c00082{bottom:423.866667pt;}
.yf_c00082{bottom:439.466667pt;}
.ye_c00082{bottom:454.533333pt;}
.yd_c00082{bottom:469.866667pt;}
.yc_c00082{bottom:485.200000pt;}
.yb_c00082{bottom:500.666667pt;}
.ya_c00082{bottom:516.400000pt;}
.y9_c00082{bottom:532.000000pt;}
.y8_c00082{bottom:547.600000pt;}
.y7_c00082{bottom:564.933333pt;}
.y6_c00082{bottom:587.466667pt;}
.y5_c00082{bottom:609.866667pt;}
.y4_c00082{bottom:631.866667pt;}
.y3_c00082{bottom:654.266667pt;}
.y2_c00082{bottom:676.000000pt;}
.y1_c00082{bottom:698.400000pt;}
.h7_c00082{height:11.733399pt;}
.h5_c00082{height:21.927305pt;}
.h8_c00082{height:38.937500pt;}
.h4_c00082{height:50.304000pt;}
.h3_c00082{height:59.300781pt;}
.h6_c00082{height:71.785156pt;}
.h1_c00082{height:77.654948pt;}
.h2_c00082{height:81.031250pt;}
.h0_c00082{height:732.000000pt;}
.w2_c00082{width:93.222667pt;}
.w0_c00082{width:490.533333pt;}
.w1_c00082{width:490.666667pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:18.000000pt;}
.x3_c00082{left:18.933333pt;}
.x4_c00082{left:20.800000pt;}
.xd_c00082{left:24.000000pt;}
.xe_c00082{left:24.933333pt;}
.x10_c00082{left:26.666667pt;}
.x11_c00082{left:27.866667pt;}
.x12_c00082{left:29.066667pt;}
.x7_c00082{left:30.933333pt;}
.x5_c00082{left:36.666667pt;}
.xc_c00082{left:45.333333pt;}
.xb_c00082{left:51.866667pt;}
.xf_c00082{left:58.000000pt;}
.x6_c00082{left:96.266667pt;}
.x8_c00082{left:103.866667pt;}
.x9_c00082{left:127.600000pt;}
.x1_c00082{left:159.333333pt;}
.x14_c00082{left:202.434896pt;}
.x13_c00082{left:275.200000pt;}
.xa_c00082{left:352.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_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_f4e34569072d4677e0190d25.woff2')format("woff");}.ff1_c00083{font-family:ff1_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:ff2_c00083;src:url('chunks/assets/font_68790585567136f9042a72b9.woff2')format("woff");}.ff2_c00083{font-family:ff2_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:ff3_c00083;src:url('chunks/assets/font_f389b5d05d432055b97a145b.woff2')format("woff");}.ff3_c00083{font-family:ff3_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:ff4_c00083;src:url('chunks/assets/font_b75534f52a34fb388b793df5.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.437000;font-style:normal;font-weight:normal;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_159ffaa71c2554610ab8c539.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.437000;font-style:normal;font-weight:normal;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_a8eff58ac4567bc9c67448c1.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.437000;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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;}
.m1_c00083{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_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;}
.ls6_c00083{letter-spacing:0.000000px;}
.ls1_c00083{letter-spacing:2.400000px;}
.ls5_c00083{letter-spacing:3.000000px;}
.ls3_c00083{letter-spacing:8.395200px;}
.ls7_c00083{letter-spacing:9.000000px;}
.ls4_c00083{letter-spacing:9.600000px;}
.ls2_c00083{letter-spacing:16.725000px;}
.ls0_c00083{letter-spacing:67.233000px;}
.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;}
}
.ws4_c00083{word-spacing:-22.737000px;}
.ws1_c00083{word-spacing:-19.629000px;}
.ws2_c00083{word-spacing:-13.737000px;}
.ws3_c00083{word-spacing:-0.043200px;}
.ws5_c00083{word-spacing:0.000000px;}
.ws0_c00083{word-spacing:3.519000px;}
._27_c00083{margin-left:-21.561000px;}
._1c_c00083{margin-left:-19.389000px;}
._1d_c00083{margin-left:-15.939000px;}
._2a_c00083{margin-left:-12.972000px;}
._a_c00083{margin-left:-11.937000px;}
._9_c00083{margin-left:-10.488000px;}
._1e_c00083{margin-left:-8.142000px;}
._18_c00083{margin-left:-6.486000px;}
._28_c00083{margin-left:-5.175000px;}
._d_c00083{margin-left:-3.933000px;}
._6_c00083{margin-left:-2.760000px;}
._2_c00083{margin-left:-1.242000px;}
._0_c00083{width:1.932000px;}
._5_c00083{width:3.657000px;}
._3_c00083{width:5.037000px;}
._e_c00083{width:6.072000px;}
._11_c00083{width:7.314000px;}
._7_c00083{width:8.625000px;}
._c_c00083{width:10.626000px;}
._12_c00083{width:11.730000px;}
._1a_c00083{width:13.065000px;}
._10_c00083{width:14.628000px;}
._20_c00083{width:15.732000px;}
._8_c00083{width:17.112000px;}
._f_c00083{width:18.285000px;}
._30_c00083{width:19.470000px;}
._13_c00083{width:21.564000px;}
._15_c00083{width:23.184000px;}
._14_c00083{width:24.564000px;}
._25_c00083{width:26.979000px;}
._26_c00083{width:29.118000px;}
._21_c00083{width:30.462000px;}
._22_c00083{width:32.223000px;}
._24_c00083{width:33.570000px;}
._2c_c00083{width:34.983000px;}
._29_c00083{width:36.189000px;}
._2f_c00083{width:37.743000px;}
._2d_c00083{width:39.537000px;}
._16_c00083{width:44.721000px;}
._2e_c00083{width:51.267000px;}
._1b_c00083{width:63.822000px;}
._1f_c00083{width:69.828000px;}
._19_c00083{width:97.359000px;}
._23_c00083{width:105.501000px;}
._17_c00083{width:126.201000px;}
._31_c00083{width:257.796000px;}
._4_c00083{width:331.338000px;}
._b_c00083{width:369.150000px;}
._1_c00083{width:374.946000px;}
._2b_c00083{width:458.022000px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fs4_c00083{font-size:43.200000px;}
.fs5_c00083{font-size:45.000000px;}
.fs6_c00083{font-size:48.000000px;}
.fs2_c00083{font-size:54.000000px;}
.fs3_c00083{font-size:57.000000px;}
.fs1_c00083{font-size:66.000000px;}
.fs0_c00083{font-size:69.000000px;}
.y0_c00083{bottom:0.000000px;}
.y20_c00083{bottom:3.105000px;}
.y1f_c00083{bottom:7.228369px;}
.y1e_c00083{bottom:98.520000px;}
.y1d_c00083{bottom:116.670000px;}
.y1c_c00083{bottom:134.370000px;}
.y1b_c00083{bottom:151.770000px;}
.y1a_c00083{bottom:169.770000px;}
.y19_c00083{bottom:203.070000px;}
.y18_c00083{bottom:226.020000px;}
.y17_c00083{bottom:251.070000px;}
.y16_c00083{bottom:276.720000px;}
.y15_c00083{bottom:301.770000px;}
.y14_c00083{bottom:326.370000px;}
.y13_c00083{bottom:350.970000px;}
.y12_c00083{bottom:375.870000px;}
.y11_c00083{bottom:400.620000px;}
.y10_c00083{bottom:425.220000px;}
.yf_c00083{bottom:450.570000px;}
.ye_c00083{bottom:475.920000px;}
.yd_c00083{bottom:500.220000px;}
.yc_c00083{bottom:525.420000px;}
.yb_c00083{bottom:550.020000px;}
.ya_c00083{bottom:575.070000px;}
.y9_c00083{bottom:599.970000px;}
.y8_c00083{bottom:625.020000px;}
.y7_c00083{bottom:650.070000px;}
.y6_c00083{bottom:676.020000px;}
.y5_c00083{bottom:700.020000px;}
.y4_c00083{bottom:725.520000px;}
.y3_c00083{bottom:749.970000px;}
.y2_c00083{bottom:775.170000px;}
.y1_c00083{bottom:799.920000px;}
.h6_c00083{height:13.200073px;}
.h7_c00083{height:43.804688px;}
.h3_c00083{height:56.592000px;}
.h5_c00083{height:56.975098px;}
.h4_c00083{height:66.713379px;}
.h2_c00083{height:87.361816px;}
.h0_c00083{height:842.100000px;}
.h1_c00083{height:842.250000px;}
.w2_c00083{width:104.875500px;}
.w0_c00083{width:592.950000px;}
.w1_c00083{width:593.250000px;}
.x0_c00083{left:0.000000px;}
.xc_c00083{left:4.350000px;}
.x5_c00083{left:6.150000px;}
.x6_c00083{left:16.200000px;}
.x2_c00083{left:22.350000px;}
.x3_c00083{left:24.000000px;}
.x9_c00083{left:66.900000px;}
.x8_c00083{left:84.150000px;}
.xe_c00083{left:111.150000px;}
.x12_c00083{left:126.600000px;}
.xf_c00083{left:129.300000px;}
.xd_c00083{left:130.350000px;}
.xb_c00083{left:131.400000px;}
.xa_c00083{left:132.600000px;}
.x7_c00083{left:135.750000px;}
.x4_c00083{left:137.100000px;}
.x10_c00083{left:146.100000px;}
.x1_c00083{left:150.450000px;}
.x15_c00083{left:204.600000px;}
.x11_c00083{left:213.900000px;}
.x13_c00083{left:246.000000px;}
.x17_c00083{left:248.289230px;}
.x16_c00083{left:254.850000px;}
.x14_c00083{left:293.400000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls6_c00083{letter-spacing:0.000000pt;}
.ls1_c00083{letter-spacing:2.133333pt;}
.ls5_c00083{letter-spacing:2.666667pt;}
.ls3_c00083{letter-spacing:7.462400pt;}
.ls7_c00083{letter-spacing:8.000000pt;}
.ls4_c00083{letter-spacing:8.533333pt;}
.ls2_c00083{letter-spacing:14.866667pt;}
.ls0_c00083{letter-spacing:59.762667pt;}
.ws4_c00083{word-spacing:-20.210667pt;}
.ws1_c00083{word-spacing:-17.448000pt;}
.ws2_c00083{word-spacing:-12.210667pt;}
.ws3_c00083{word-spacing:-0.038400pt;}
.ws5_c00083{word-spacing:0.000000pt;}
.ws0_c00083{word-spacing:3.128000pt;}
._27_c00083{margin-left:-19.165333pt;}
._1c_c00083{margin-left:-17.234667pt;}
._1d_c00083{margin-left:-14.168000pt;}
._2a_c00083{margin-left:-11.530667pt;}
._a_c00083{margin-left:-10.610667pt;}
._9_c00083{margin-left:-9.322667pt;}
._1e_c00083{margin-left:-7.237333pt;}
._18_c00083{margin-left:-5.765333pt;}
._28_c00083{margin-left:-4.600000pt;}
._d_c00083{margin-left:-3.496000pt;}
._6_c00083{margin-left:-2.453333pt;}
._2_c00083{margin-left:-1.104000pt;}
._0_c00083{width:1.717333pt;}
._5_c00083{width:3.250667pt;}
._3_c00083{width:4.477333pt;}
._e_c00083{width:5.397333pt;}
._11_c00083{width:6.501333pt;}
._7_c00083{width:7.666667pt;}
._c_c00083{width:9.445333pt;}
._12_c00083{width:10.426667pt;}
._1a_c00083{width:11.613333pt;}
._10_c00083{width:13.002667pt;}
._20_c00083{width:13.984000pt;}
._8_c00083{width:15.210667pt;}
._f_c00083{width:16.253333pt;}
._30_c00083{width:17.306667pt;}
._13_c00083{width:19.168000pt;}
._15_c00083{width:20.608000pt;}
._14_c00083{width:21.834667pt;}
._25_c00083{width:23.981333pt;}
._26_c00083{width:25.882667pt;}
._21_c00083{width:27.077333pt;}
._22_c00083{width:28.642667pt;}
._24_c00083{width:29.840000pt;}
._2c_c00083{width:31.096000pt;}
._29_c00083{width:32.168000pt;}
._2f_c00083{width:33.549333pt;}
._2d_c00083{width:35.144000pt;}
._16_c00083{width:39.752000pt;}
._2e_c00083{width:45.570667pt;}
._1b_c00083{width:56.730667pt;}
._1f_c00083{width:62.069333pt;}
._19_c00083{width:86.541333pt;}
._23_c00083{width:93.778667pt;}
._17_c00083{width:112.178667pt;}
._31_c00083{width:229.152000pt;}
._4_c00083{width:294.522667pt;}
._b_c00083{width:328.133333pt;}
._1_c00083{width:333.285333pt;}
._2b_c00083{width:407.130667pt;}
.fs4_c00083{font-size:38.400000pt;}
.fs5_c00083{font-size:40.000000pt;}
.fs6_c00083{font-size:42.666667pt;}
.fs2_c00083{font-size:48.000000pt;}
.fs3_c00083{font-size:50.666667pt;}
.fs1_c00083{font-size:58.666667pt;}
.fs0_c00083{font-size:61.333333pt;}
.y0_c00083{bottom:0.000000pt;}
.y20_c00083{bottom:2.760000pt;}
.y1f_c00083{bottom:6.425217pt;}
.y1e_c00083{bottom:87.573333pt;}
.y1d_c00083{bottom:103.706667pt;}
.y1c_c00083{bottom:119.440000pt;}
.y1b_c00083{bottom:134.906667pt;}
.y1a_c00083{bottom:150.906667pt;}
.y19_c00083{bottom:180.506667pt;}
.y18_c00083{bottom:200.906667pt;}
.y17_c00083{bottom:223.173333pt;}
.y16_c00083{bottom:245.973333pt;}
.y15_c00083{bottom:268.240000pt;}
.y14_c00083{bottom:290.106667pt;}
.y13_c00083{bottom:311.973333pt;}
.y12_c00083{bottom:334.106667pt;}
.y11_c00083{bottom:356.106667pt;}
.y10_c00083{bottom:377.973333pt;}
.yf_c00083{bottom:400.506667pt;}
.ye_c00083{bottom:423.040000pt;}
.yd_c00083{bottom:444.640000pt;}
.yc_c00083{bottom:467.040000pt;}
.yb_c00083{bottom:488.906667pt;}
.ya_c00083{bottom:511.173333pt;}
.y9_c00083{bottom:533.306667pt;}
.y8_c00083{bottom:555.573333pt;}
.y7_c00083{bottom:577.840000pt;}
.y6_c00083{bottom:600.906667pt;}
.y5_c00083{bottom:622.240000pt;}
.y4_c00083{bottom:644.906667pt;}
.y3_c00083{bottom:666.640000pt;}
.y2_c00083{bottom:689.040000pt;}
.y1_c00083{bottom:711.040000pt;}
.h6_c00083{height:11.733399pt;}
.h7_c00083{height:38.937500pt;}
.h3_c00083{height:50.304000pt;}
.h5_c00083{height:50.644531pt;}
.h4_c00083{height:59.300781pt;}
.h2_c00083{height:77.654948pt;}
.h0_c00083{height:748.533333pt;}
.h1_c00083{height:748.666667pt;}
.w2_c00083{width:93.222667pt;}
.w0_c00083{width:527.066667pt;}
.w1_c00083{width:527.333333pt;}
.x0_c00083{left:0.000000pt;}
.xc_c00083{left:3.866667pt;}
.x5_c00083{left:5.466667pt;}
.x6_c00083{left:14.400000pt;}
.x2_c00083{left:19.866667pt;}
.x3_c00083{left:21.333333pt;}
.x9_c00083{left:59.466667pt;}
.x8_c00083{left:74.800000pt;}
.xe_c00083{left:98.800000pt;}
.x12_c00083{left:112.533333pt;}
.xf_c00083{left:114.933333pt;}
.xd_c00083{left:115.866667pt;}
.xb_c00083{left:116.800000pt;}
.xa_c00083{left:117.866667pt;}
.x7_c00083{left:120.666667pt;}
.x4_c00083{left:121.866667pt;}
.x10_c00083{left:129.866667pt;}
.x1_c00083{left:133.733333pt;}
.x15_c00083{left:181.866667pt;}
.x11_c00083{left:190.133333pt;}
.x13_c00083{left:218.666667pt;}
.x17_c00083{left:220.701538pt;}
.x16_c00083{left:226.533333pt;}
.x14_c00083{left:260.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_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_acf74329d1206f34d5e7e362.woff2')format("woff");}.ff1_c00084{font-family:ff1_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:ff2_c00084;src:url('chunks/assets/font_ae66971c7ff8ba757e685b66.woff2')format("woff");}.ff2_c00084{font-family:ff2_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:ff3_c00084;src:url('chunks/assets/font_969c2b2253968828c1cbe501.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.437000;font-style:normal;font-weight:normal;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_abc8f005ca9e26509f563c64.woff2')format("woff");}.ff4_c00084{font-family:ff4_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:ff5_c00084;src:url('chunks/assets/font_24cbe7edc505b2faa4439df1.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.437000;font-style:normal;font-weight:normal;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_12576ad72145eceea8198bbd.woff2')format("woff");}.ff6_c00084{font-family:ff6_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:ff7_c00084;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff7_c00084{font-family:ff7_c00084;line-height:1.311035;font-style:normal;font-weight: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_c00084;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00084{font-family:ff8_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;}
.m1_c00084{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_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;}
.v1_c00084{vertical-align:10.800000px;}
.ls4_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.816000px;}
.ls3_c00084{letter-spacing:1.800000px;}
.ls5_c00084{letter-spacing:3.000000px;}
.ls1_c00084{letter-spacing:6.000000px;}
.ls2_c00084{letter-spacing:13.125000px;}
.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;}
}
.ws2_c00084{word-spacing:-56.235000px;}
.ws3_c00084{word-spacing:-44.988000px;}
.ws4_c00084{word-spacing:-16.629000px;}
.ws1_c00084{word-spacing:-13.737000px;}
.ws0_c00084{word-spacing:-13.500000px;}
.ws5_c00084{word-spacing:0.000000px;}
._29_c00084{margin-left:-26.676000px;}
._22_c00084{margin-left:-25.620000px;}
._12_c00084{margin-left:-17.136000px;}
._13_c00084{margin-left:-15.387000px;}
._25_c00084{margin-left:-13.110000px;}
._14_c00084{margin-left:-11.247000px;}
._11_c00084{margin-left:-9.456000px;}
._5_c00084{margin-left:-8.142000px;}
._4_c00084{margin-left:-6.762000px;}
._8_c00084{margin-left:-5.706000px;}
._9_c00084{margin-left:-4.374000px;}
._a_c00084{margin-left:-3.372000px;}
._1_c00084{margin-left:-1.863000px;}
._0_c00084{width:1.242000px;}
._6_c00084{width:2.700000px;}
._7_c00084{width:4.599000px;}
._f_c00084{width:5.739000px;}
._b_c00084{width:7.197000px;}
._e_c00084{width:9.126000px;}
._19_c00084{width:10.143000px;}
._c_c00084{width:12.405000px;}
._20_c00084{width:14.100000px;}
._1c_c00084{width:15.594000px;}
._1f_c00084{width:16.731000px;}
._10_c00084{width:18.432000px;}
._1d_c00084{width:19.560000px;}
._3_c00084{width:21.000000px;}
._d_c00084{width:22.023000px;}
._18_c00084{width:24.162000px;}
._16_c00084{width:25.311000px;}
._1b_c00084{width:26.751000px;}
._24_c00084{width:30.342000px;}
._1e_c00084{width:32.919000px;}
._17_c00084{width:34.914000px;}
._21_c00084{width:36.879000px;}
._26_c00084{width:40.608000px;}
._1a_c00084{width:44.022000px;}
._28_c00084{width:90.099000px;}
._23_c00084{width:92.649000px;}
._15_c00084{width:111.039000px;}
._27_c00084{width:182.367000px;}
._2a_c00084{width:417.513000px;}
._2_c00084{width:502.044000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs2_c00084{font-size:48.000000px;}
.fs1_c00084{font-size:54.000000px;}
.fs4_c00084{font-size:55.200000px;}
.fs3_c00084{font-size:57.000000px;}
.fs5_c00084{font-size:66.000000px;}
.fs0_c00084{font-size:69.000000px;}
.y0_c00084{bottom:0.000000px;}
.y1f_c00084{bottom:3.105000px;}
.y1e_c00084{bottom:7.228371px;}
.y1d_c00084{bottom:63.915000px;}
.y1c_c00084{bottom:90.465000px;}
.y1b_c00084{bottom:115.815000px;}
.y1a_c00084{bottom:140.415000px;}
.y19_c00084{bottom:164.715000px;}
.y18_c00084{bottom:190.065000px;}
.y17_c00084{bottom:215.115000px;}
.y16_c00084{bottom:240.015000px;}
.y15_c00084{bottom:264.915000px;}
.y14_c00084{bottom:289.815000px;}
.y13_c00084{bottom:314.865000px;}
.y11_c00084{bottom:332.115000px;}
.y12_c00084{bottom:339.915000px;}
.y10_c00084{bottom:364.515000px;}
.yf_c00084{bottom:388.815000px;}
.ye_c00084{bottom:413.865000px;}
.yd_c00084{bottom:438.765000px;}
.yc_c00084{bottom:463.365000px;}
.yb_c00084{bottom:488.115000px;}
.ya_c00084{bottom:511.965000px;}
.y9_c00084{bottom:561.315000px;}
.y8_c00084{bottom:618.015000px;}
.y7_c00084{bottom:677.415000px;}
.y6_c00084{bottom:695.265000px;}
.y5_c00084{bottom:713.265000px;}
.y4_c00084{bottom:730.815000px;}
.y3_c00084{bottom:748.665000px;}
.y2_c00084{bottom:765.915000px;}
.y1_c00084{bottom:786.015000px;}
.h7_c00084{height:13.200074px;}
.h8_c00084{height:43.804688px;}
.h3_c00084{height:60.773438px;}
.h4_c00084{height:66.713379px;}
.h5_c00084{height:80.758301px;}
.h2_c00084{height:87.361816px;}
.h6_c00084{height:98.161816px;}
.h1_c00084{height:831.000000px;}
.h0_c00084{height:831.075000px;}
.w1_c00084{width:104.875500px;}
.w0_c00084{width:557.250000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:25.200000px;}
.x5_c00084{left:26.700000px;}
.x9_c00084{left:27.900000px;}
.xb_c00084{left:29.250000px;}
.x6_c00084{left:30.750000px;}
.x8_c00084{left:50.550000px;}
.x7_c00084{left:66.450000px;}
.x1_c00084{left:183.150000px;}
.x3_c00084{left:209.850000px;}
.x4_c00084{left:230.550000px;}
.xc_c00084{left:284.550000px;}
.xa_c00084{left:485.550000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.v1_c00084{vertical-align:9.600000pt;}
.ls4_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.725333pt;}
.ls3_c00084{letter-spacing:1.600000pt;}
.ls5_c00084{letter-spacing:2.666667pt;}
.ls1_c00084{letter-spacing:5.333333pt;}
.ls2_c00084{letter-spacing:11.666667pt;}
.ws2_c00084{word-spacing:-49.986667pt;}
.ws3_c00084{word-spacing:-39.989333pt;}
.ws4_c00084{word-spacing:-14.781333pt;}
.ws1_c00084{word-spacing:-12.210667pt;}
.ws0_c00084{word-spacing:-12.000000pt;}
.ws5_c00084{word-spacing:0.000000pt;}
._29_c00084{margin-left:-23.712000pt;}
._22_c00084{margin-left:-22.773333pt;}
._12_c00084{margin-left:-15.232000pt;}
._13_c00084{margin-left:-13.677333pt;}
._25_c00084{margin-left:-11.653333pt;}
._14_c00084{margin-left:-9.997333pt;}
._11_c00084{margin-left:-8.405333pt;}
._5_c00084{margin-left:-7.237333pt;}
._4_c00084{margin-left:-6.010667pt;}
._8_c00084{margin-left:-5.072000pt;}
._9_c00084{margin-left:-3.888000pt;}
._a_c00084{margin-left:-2.997333pt;}
._1_c00084{margin-left:-1.656000pt;}
._0_c00084{width:1.104000pt;}
._6_c00084{width:2.400000pt;}
._7_c00084{width:4.088000pt;}
._f_c00084{width:5.101333pt;}
._b_c00084{width:6.397333pt;}
._e_c00084{width:8.112000pt;}
._19_c00084{width:9.016000pt;}
._c_c00084{width:11.026667pt;}
._20_c00084{width:12.533333pt;}
._1c_c00084{width:13.861333pt;}
._1f_c00084{width:14.872000pt;}
._10_c00084{width:16.384000pt;}
._1d_c00084{width:17.386667pt;}
._3_c00084{width:18.666667pt;}
._d_c00084{width:19.576000pt;}
._18_c00084{width:21.477333pt;}
._16_c00084{width:22.498667pt;}
._1b_c00084{width:23.778667pt;}
._24_c00084{width:26.970667pt;}
._1e_c00084{width:29.261333pt;}
._17_c00084{width:31.034667pt;}
._21_c00084{width:32.781333pt;}
._26_c00084{width:36.096000pt;}
._1a_c00084{width:39.130667pt;}
._28_c00084{width:80.088000pt;}
._23_c00084{width:82.354667pt;}
._15_c00084{width:98.701333pt;}
._27_c00084{width:162.104000pt;}
._2a_c00084{width:371.122667pt;}
._2_c00084{width:446.261333pt;}
.fs2_c00084{font-size:42.666667pt;}
.fs1_c00084{font-size:48.000000pt;}
.fs4_c00084{font-size:49.066667pt;}
.fs3_c00084{font-size:50.666667pt;}
.fs5_c00084{font-size:58.666667pt;}
.fs0_c00084{font-size:61.333333pt;}
.y0_c00084{bottom:0.000000pt;}
.y1f_c00084{bottom:2.760000pt;}
.y1e_c00084{bottom:6.425219pt;}
.y1d_c00084{bottom:56.813333pt;}
.y1c_c00084{bottom:80.413333pt;}
.y1b_c00084{bottom:102.946667pt;}
.y1a_c00084{bottom:124.813333pt;}
.y19_c00084{bottom:146.413333pt;}
.y18_c00084{bottom:168.946667pt;}
.y17_c00084{bottom:191.213333pt;}
.y16_c00084{bottom:213.346667pt;}
.y15_c00084{bottom:235.480000pt;}
.y14_c00084{bottom:257.613333pt;}
.y13_c00084{bottom:279.880000pt;}
.y11_c00084{bottom:295.213333pt;}
.y12_c00084{bottom:302.146667pt;}
.y10_c00084{bottom:324.013333pt;}
.yf_c00084{bottom:345.613333pt;}
.ye_c00084{bottom:367.880000pt;}
.yd_c00084{bottom:390.013333pt;}
.yc_c00084{bottom:411.880000pt;}
.yb_c00084{bottom:433.880000pt;}
.ya_c00084{bottom:455.080000pt;}
.y9_c00084{bottom:498.946667pt;}
.y8_c00084{bottom:549.346667pt;}
.y7_c00084{bottom:602.146667pt;}
.y6_c00084{bottom:618.013333pt;}
.y5_c00084{bottom:634.013333pt;}
.y4_c00084{bottom:649.613333pt;}
.y3_c00084{bottom:665.480000pt;}
.y2_c00084{bottom:680.813333pt;}
.y1_c00084{bottom:698.680000pt;}
.h7_c00084{height:11.733399pt;}
.h8_c00084{height:38.937500pt;}
.h3_c00084{height:54.020833pt;}
.h4_c00084{height:59.300781pt;}
.h5_c00084{height:71.785156pt;}
.h2_c00084{height:77.654948pt;}
.h6_c00084{height:87.254948pt;}
.h1_c00084{height:738.666667pt;}
.h0_c00084{height:738.733333pt;}
.w1_c00084{width:93.222667pt;}
.w0_c00084{width:495.333333pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:22.400000pt;}
.x5_c00084{left:23.733333pt;}
.x9_c00084{left:24.800000pt;}
.xb_c00084{left:26.000000pt;}
.x6_c00084{left:27.333333pt;}
.x8_c00084{left:44.933333pt;}
.x7_c00084{left:59.066667pt;}
.x1_c00084{left:162.800000pt;}
.x3_c00084{left:186.533333pt;}
.x4_c00084{left:204.933333pt;}
.xc_c00084{left:252.933333pt;}
.xa_c00084{left:431.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_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_23b797b0dc6234b883b7645f.woff2')format("woff");}.ff1_c00085{font-family:ff1_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:ff2_c00085;src:url('chunks/assets/font_a70786786e2db14ccabb3c00.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_41df7c64157b18ae258f554c.woff2')format("woff");}.ff3_c00085{font-family:ff3_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:ff4_c00085;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00085{font-family:ff4_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);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.ls1_c00085{letter-spacing:3.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:-80.523000px;}
.ws1_c00085{word-spacing:0.000000px;}
._1c_c00085{margin-left:-17.007000px;}
._8_c00085{margin-left:-10.971000px;}
._6_c00085{margin-left:-9.522000px;}
._9_c00085{margin-left:-8.487000px;}
._1_c00085{margin-left:-7.038000px;}
._a_c00085{margin-left:-5.658000px;}
._7_c00085{margin-left:-4.416000px;}
._1b_c00085{margin-left:-3.312000px;}
._d_c00085{margin-left:-2.277000px;}
._15_c00085{margin-left:-1.035000px;}
._3_c00085{width:1.173000px;}
._2_c00085{width:2.622000px;}
._5_c00085{width:4.140000px;}
._14_c00085{width:5.175000px;}
._0_c00085{width:6.417000px;}
._1d_c00085{width:8.418000px;}
._11_c00085{width:10.488000px;}
._18_c00085{width:12.075000px;}
._12_c00085{width:13.938000px;}
._e_c00085{width:15.042000px;}
._16_c00085{width:16.974000px;}
._19_c00085{width:17.976000px;}
._1a_c00085{width:20.907000px;}
._10_c00085{width:22.908000px;}
._13_c00085{width:24.303000px;}
._f_c00085{width:26.151000px;}
._1e_c00085{width:27.393000px;}
._17_c00085{width:30.291000px;}
._1f_c00085{width:33.018000px;}
._b_c00085{width:94.668000px;}
._c_c00085{width:141.381000px;}
._4_c00085{width:379.707000px;}
.fc2_c00085{color:transparent;}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs3_c00085{font-size:48.000000px;}
.fs0_c00085{font-size:69.000000px;}
.fs1_c00085{font-size:72.000000px;}
.fs2_c00085{font-size:207.000000px;}
.y0_c00085{bottom:0.000000px;}
.y11_c00085{bottom:3.105000px;}
.y10_c00085{bottom:7.228369px;}
.yf_c00085{bottom:65.520000px;}
.ye_c00085{bottom:442.470000px;}
.yd_c00085{bottom:493.320000px;}
.yc_c00085{bottom:518.070000px;}
.yb_c00085{bottom:543.270000px;}
.ya_c00085{bottom:568.020000px;}
.y9_c00085{bottom:592.920000px;}
.y8_c00085{bottom:617.970000px;}
.y7_c00085{bottom:643.170000px;}
.y6_c00085{bottom:667.920000px;}
.y5_c00085{bottom:692.520000px;}
.y4_c00085{bottom:718.170000px;}
.y3_c00085{bottom:743.220000px;}
.y2_c00085{bottom:767.820000px;}
.y1_c00085{bottom:793.170000px;}
.h6_c00085{height:13.200073px;}
.h7_c00085{height:43.804688px;}
.h2_c00085{height:80.758301px;}
.h4_c00085{height:87.361816px;}
.h3_c00085{height:91.160156px;}
.h5_c00085{height:216.936000px;}
.h0_c00085{height:842.100000px;}
.h1_c00085{height:842.250000px;}
.w2_c00085{width:104.875500px;}
.w1_c00085{width:564.750000px;}
.w0_c00085{width:564.825000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:59.700000px;}
.x3_c00085{left:109.050000px;}
.x4_c00085{left:110.250000px;}
.x1_c00085{left:120.600000px;}
.x5_c00085{left:134.700000px;}
.x8_c00085{left:167.400000px;}
.x6_c00085{left:171.750000px;}
.xa_c00085{left:234.226730px;}
.x7_c00085{left:268.200000px;}
.x9_c00085{left:487.650000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ls1_c00085{letter-spacing:2.666667pt;}
.ws0_c00085{word-spacing:-71.576000pt;}
.ws1_c00085{word-spacing:0.000000pt;}
._1c_c00085{margin-left:-15.117333pt;}
._8_c00085{margin-left:-9.752000pt;}
._6_c00085{margin-left:-8.464000pt;}
._9_c00085{margin-left:-7.544000pt;}
._1_c00085{margin-left:-6.256000pt;}
._a_c00085{margin-left:-5.029333pt;}
._7_c00085{margin-left:-3.925333pt;}
._1b_c00085{margin-left:-2.944000pt;}
._d_c00085{margin-left:-2.024000pt;}
._15_c00085{margin-left:-0.920000pt;}
._3_c00085{width:1.042667pt;}
._2_c00085{width:2.330667pt;}
._5_c00085{width:3.680000pt;}
._14_c00085{width:4.600000pt;}
._0_c00085{width:5.704000pt;}
._1d_c00085{width:7.482667pt;}
._11_c00085{width:9.322667pt;}
._18_c00085{width:10.733333pt;}
._12_c00085{width:12.389333pt;}
._e_c00085{width:13.370667pt;}
._16_c00085{width:15.088000pt;}
._19_c00085{width:15.978667pt;}
._1a_c00085{width:18.584000pt;}
._10_c00085{width:20.362667pt;}
._13_c00085{width:21.602667pt;}
._f_c00085{width:23.245333pt;}
._1e_c00085{width:24.349333pt;}
._17_c00085{width:26.925333pt;}
._1f_c00085{width:29.349333pt;}
._b_c00085{width:84.149333pt;}
._c_c00085{width:125.672000pt;}
._4_c00085{width:337.517333pt;}
.fs3_c00085{font-size:42.666667pt;}
.fs0_c00085{font-size:61.333333pt;}
.fs1_c00085{font-size:64.000000pt;}
.fs2_c00085{font-size:184.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y11_c00085{bottom:2.760000pt;}
.y10_c00085{bottom:6.425217pt;}
.yf_c00085{bottom:58.240000pt;}
.ye_c00085{bottom:393.306667pt;}
.yd_c00085{bottom:438.506667pt;}
.yc_c00085{bottom:460.506667pt;}
.yb_c00085{bottom:482.906667pt;}
.ya_c00085{bottom:504.906667pt;}
.y9_c00085{bottom:527.040000pt;}
.y8_c00085{bottom:549.306667pt;}
.y7_c00085{bottom:571.706667pt;}
.y6_c00085{bottom:593.706667pt;}
.y5_c00085{bottom:615.573333pt;}
.y4_c00085{bottom:638.373333pt;}
.y3_c00085{bottom:660.640000pt;}
.y2_c00085{bottom:682.506667pt;}
.y1_c00085{bottom:705.040000pt;}
.h6_c00085{height:11.733399pt;}
.h7_c00085{height:38.937500pt;}
.h2_c00085{height:71.785156pt;}
.h4_c00085{height:77.654948pt;}
.h3_c00085{height:81.031250pt;}
.h5_c00085{height:192.832000pt;}
.h0_c00085{height:748.533333pt;}
.h1_c00085{height:748.666667pt;}
.w2_c00085{width:93.222667pt;}
.w1_c00085{width:502.000000pt;}
.w0_c00085{width:502.066667pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:53.066667pt;}
.x3_c00085{left:96.933333pt;}
.x4_c00085{left:98.000000pt;}
.x1_c00085{left:107.200000pt;}
.x5_c00085{left:119.733333pt;}
.x8_c00085{left:148.800000pt;}
.x6_c00085{left:152.666667pt;}
.xa_c00085{left:208.201538pt;}
.x7_c00085{left:238.400000pt;}
.x9_c00085{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_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_bc57fd9bf4883f2648a9e657.woff2')format("woff");}.ff1_c00086{font-family:ff1_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:ff2_c00086;src:url('chunks/assets/font_b7c215ec70c9db2f49fe71cb.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.437000;font-style:normal;font-weight:normal;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_4a3c231f859541398260be55.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_0f168f4861b783e1d2ebcd95.woff2')format("woff");}.ff4_c00086{font-family:ff4_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:ff5_c00086;src:url('chunks/assets/font_dcb298cf75ee3a042f405299.woff2')format("woff");}.ff5_c00086{font-family:ff5_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:ff6_c00086;src:url('chunks/assets/font_0aebcb0a6770970da957a79f.woff2')format("woff");}.ff6_c00086{font-family:ff6_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:ff7_c00086;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00086{font-family:ff7_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;}
.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);}
.v1_c00086{vertical-align:-264.000000px;}
.v0_c00086{vertical-align:0.000000px;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls2_c00086{letter-spacing:3.000000px;}
.ls4_c00086{letter-spacing:21.000000px;}
.ls3_c00086{letter-spacing:27.000000px;}
.ls0_c00086{letter-spacing:70.860000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-80.523000px;}
.ws1_c00086{word-spacing:-40.500000px;}
.ws2_c00086{word-spacing:-31.296000px;}
.ws3_c00086{word-spacing:0.000000px;}
._a_c00086{margin-left:-17.739000px;}
._b_c00086{margin-left:-16.605000px;}
._1d_c00086{margin-left:-10.737000px;}
._d_c00086{margin-left:-8.829000px;}
._e_c00086{margin-left:-5.832000px;}
._1b_c00086{margin-left:-4.706400px;}
._1a_c00086{margin-left:-3.414000px;}
._1f_c00086{margin-left:-2.202000px;}
._15_c00086{margin-left:-1.173000px;}
._12_c00086{width:1.794000px;}
._10_c00086{width:2.964000px;}
._1_c00086{width:4.761000px;}
._0_c00086{width:6.003000px;}
._f_c00086{width:7.020000px;}
._11_c00086{width:8.658000px;}
._1e_c00086{width:9.762000px;}
._9_c00086{width:10.965000px;}
._4_c00086{width:12.006000px;}
._5_c00086{width:14.352000px;}
._6_c00086{width:15.630000px;}
._2_c00086{width:16.803000px;}
._8_c00086{width:18.492000px;}
._7_c00086{width:21.528000px;}
._c_c00086{width:25.758000px;}
._16_c00086{width:28.014000px;}
._3_c00086{width:31.119000px;}
._13_c00086{width:32.466000px;}
._19_c00086{width:33.657000px;}
._14_c00086{width:36.846000px;}
._17_c00086{width:55.350000px;}
._1c_c00086{width:156.789000px;}
._18_c00086{width:840.615000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs6_c00086{font-size:38.400000px;}
.fs5_c00086{font-size:48.000000px;}
.fs7_c00086{font-size:51.000000px;}
.fs2_c00086{font-size:69.000000px;}
.fs4_c00086{font-size:78.000000px;}
.fs3_c00086{font-size:81.000000px;}
.fs1_c00086{font-size:207.000000px;}
.fs0_c00086{font-size:390.000000px;}
.y0_c00086{bottom:0.000000px;}
.y16_c00086{bottom:3.105000px;}
.y15_c00086{bottom:7.228369px;}
.y14_c00086{bottom:85.620000px;}
.y13_c00086{bottom:111.270000px;}
.y12_c00086{bottom:136.020000px;}
.y11_c00086{bottom:160.620000px;}
.y10_c00086{bottom:185.520000px;}
.yf_c00086{bottom:210.870000px;}
.ye_c00086{bottom:239.970000px;}
.yd_c00086{bottom:263.220000px;}
.yc_c00086{bottom:289.470000px;}
.yb_c00086{bottom:313.920000px;}
.ya_c00086{bottom:339.120000px;}
.y9_c00086{bottom:363.420000px;}
.y8_c00086{bottom:388.770000px;}
.y7_c00086{bottom:413.370000px;}
.y6_c00086{bottom:438.120000px;}
.y5_c00086{bottom:463.320000px;}
.y4_c00086{bottom:511.320000px;}
.y3_c00086{bottom:558.870000px;}
.y2_c00086{bottom:591.870000px;}
.y1_c00086{bottom:694.470000px;}
.h8_c00086{height:13.200073px;}
.h9_c00086{height:43.804688px;}
.h7_c00086{height:56.179688px;}
.h6_c00086{height:64.571777px;}
.h5_c00086{height:76.514648px;}
.h3_c00086{height:87.361816px;}
.h4_c00086{height:102.555176px;}
.h2_c00086{height:493.784180px;}
.h0_c00086{height:821.850000px;}
.h1_c00086{height:822.000000px;}
.w2_c00086{width:104.875500px;}
.w1_c00086{width:550.500000px;}
.w0_c00086{width:550.800000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:24.600000px;}
.x8_c00086{left:27.300000px;}
.x1_c00086{left:29.250000px;}
.x9_c00086{left:45.600000px;}
.xa_c00086{left:52.350000px;}
.xb_c00086{left:54.000000px;}
.x4_c00086{left:136.800000px;}
.x3_c00086{left:143.850000px;}
.x5_c00086{left:213.600000px;}
.x7_c00086{left:227.250000px;}
.x6_c00086{left:238.050000px;}
@media print{
.v1_c00086{vertical-align:-234.666667pt;}
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls2_c00086{letter-spacing:2.666667pt;}
.ls4_c00086{letter-spacing:18.666667pt;}
.ls3_c00086{letter-spacing:24.000000pt;}
.ls0_c00086{letter-spacing:62.986667pt;}
.ws0_c00086{word-spacing:-71.576000pt;}
.ws1_c00086{word-spacing:-36.000000pt;}
.ws2_c00086{word-spacing:-27.818667pt;}
.ws3_c00086{word-spacing:0.000000pt;}
._a_c00086{margin-left:-15.768000pt;}
._b_c00086{margin-left:-14.760000pt;}
._1d_c00086{margin-left:-9.544000pt;}
._d_c00086{margin-left:-7.848000pt;}
._e_c00086{margin-left:-5.184000pt;}
._1b_c00086{margin-left:-4.183467pt;}
._1a_c00086{margin-left:-3.034667pt;}
._1f_c00086{margin-left:-1.957333pt;}
._15_c00086{margin-left:-1.042667pt;}
._12_c00086{width:1.594667pt;}
._10_c00086{width:2.634667pt;}
._1_c00086{width:4.232000pt;}
._0_c00086{width:5.336000pt;}
._f_c00086{width:6.240000pt;}
._11_c00086{width:7.696000pt;}
._1e_c00086{width:8.677333pt;}
._9_c00086{width:9.746667pt;}
._4_c00086{width:10.672000pt;}
._5_c00086{width:12.757333pt;}
._6_c00086{width:13.893333pt;}
._2_c00086{width:14.936000pt;}
._8_c00086{width:16.437333pt;}
._7_c00086{width:19.136000pt;}
._c_c00086{width:22.896000pt;}
._16_c00086{width:24.901333pt;}
._3_c00086{width:27.661333pt;}
._13_c00086{width:28.858667pt;}
._19_c00086{width:29.917333pt;}
._14_c00086{width:32.752000pt;}
._17_c00086{width:49.200000pt;}
._1c_c00086{width:139.368000pt;}
._18_c00086{width:747.213333pt;}
.fs6_c00086{font-size:34.133333pt;}
.fs5_c00086{font-size:42.666667pt;}
.fs7_c00086{font-size:45.333333pt;}
.fs2_c00086{font-size:61.333333pt;}
.fs4_c00086{font-size:69.333333pt;}
.fs3_c00086{font-size:72.000000pt;}
.fs1_c00086{font-size:184.000000pt;}
.fs0_c00086{font-size:346.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y16_c00086{bottom:2.760000pt;}
.y15_c00086{bottom:6.425217pt;}
.y14_c00086{bottom:76.106667pt;}
.y13_c00086{bottom:98.906667pt;}
.y12_c00086{bottom:120.906667pt;}
.y11_c00086{bottom:142.773333pt;}
.y10_c00086{bottom:164.906667pt;}
.yf_c00086{bottom:187.440000pt;}
.ye_c00086{bottom:213.306667pt;}
.yd_c00086{bottom:233.973333pt;}
.yc_c00086{bottom:257.306667pt;}
.yb_c00086{bottom:279.040000pt;}
.ya_c00086{bottom:301.440000pt;}
.y9_c00086{bottom:323.040000pt;}
.y8_c00086{bottom:345.573333pt;}
.y7_c00086{bottom:367.440000pt;}
.y6_c00086{bottom:389.440000pt;}
.y5_c00086{bottom:411.840000pt;}
.y4_c00086{bottom:454.506667pt;}
.y3_c00086{bottom:496.773333pt;}
.y2_c00086{bottom:526.106667pt;}
.y1_c00086{bottom:617.306667pt;}
.h8_c00086{height:11.733399pt;}
.h9_c00086{height:38.937500pt;}
.h7_c00086{height:49.937500pt;}
.h6_c00086{height:57.397135pt;}
.h5_c00086{height:68.013021pt;}
.h3_c00086{height:77.654948pt;}
.h4_c00086{height:91.160156pt;}
.h2_c00086{height:438.919271pt;}
.h0_c00086{height:730.533333pt;}
.h1_c00086{height:730.666667pt;}
.w2_c00086{width:93.222667pt;}
.w1_c00086{width:489.333333pt;}
.w0_c00086{width:489.600000pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:21.866667pt;}
.x8_c00086{left:24.266667pt;}
.x1_c00086{left:26.000000pt;}
.x9_c00086{left:40.533333pt;}
.xa_c00086{left:46.533333pt;}
.xb_c00086{left:48.000000pt;}
.x4_c00086{left:121.600000pt;}
.x3_c00086{left:127.866667pt;}
.x5_c00086{left:189.866667pt;}
.x7_c00086{left:202.000000pt;}
.x6_c00086{left:211.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_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_4e49c5409e9a79e2cd1d591a.woff2')format("woff");}.ff1_c00087{font-family:ff1_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:ff2_c00087;src:url('chunks/assets/font_383e68ca26a275361bc78183.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_fb8245cbdfb76850a64b4ea3.woff2')format("woff");}.ff3_c00087{font-family:ff3_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:ff4_c00087;src:url('chunks/assets/font_fd15807296d8383e47543e69.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00087{font-family:ff5_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;}
.ls3_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:0.072000px;}
.ls2_c00087{letter-spacing:3.000000px;}
.ls0_c00087{letter-spacing:5.961600px;}
.ls4_c00087{letter-spacing:24.000000px;}
.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;}
}
.ws3_c00087{word-spacing:-56.235000px;}
.ws2_c00087{word-spacing:-47.022000px;}
.ws0_c00087{word-spacing:-44.988000px;}
.ws1_c00087{word-spacing:-16.629000px;}
.ws4_c00087{word-spacing:0.000000px;}
._2e_c00087{margin-left:-34.095000px;}
._1a_c00087{margin-left:-25.866000px;}
._2c_c00087{margin-left:-23.667000px;}
._30_c00087{margin-left:-22.275000px;}
._11_c00087{margin-left:-20.493000px;}
._1b_c00087{margin-left:-19.059000px;}
._c_c00087{margin-left:-17.676000px;}
._19_c00087{margin-left:-15.327000px;}
._14_c00087{margin-left:-13.476000px;}
._10_c00087{margin-left:-12.420000px;}
._16_c00087{margin-left:-11.247000px;}
._f_c00087{margin-left:-9.888000px;}
._13_c00087{margin-left:-8.121000px;}
._9_c00087{margin-left:-7.107000px;}
._15_c00087{margin-left:-5.808000px;}
._8_c00087{margin-left:-4.002000px;}
._18_c00087{margin-left:-2.865000px;}
._3_c00087{margin-left:-1.794000px;}
._4_c00087{width:1.311000px;}
._5_c00087{width:2.484000px;}
._1_c00087{width:3.657000px;}
._0_c00087{width:4.692000px;}
._e_c00087{width:5.796000px;}
._6_c00087{width:7.245000px;}
._20_c00087{width:8.844000px;}
._1c_c00087{width:10.362000px;}
._27_c00087{width:11.385000px;}
._12_c00087{width:12.420000px;}
._23_c00087{width:14.628000px;}
._7_c00087{width:15.870000px;}
._25_c00087{width:17.688000px;}
._1d_c00087{width:21.357000px;}
._22_c00087{width:23.622000px;}
._d_c00087{width:27.186000px;}
._a_c00087{width:28.773000px;}
._2d_c00087{width:30.183000px;}
._29_c00087{width:31.326000px;}
._24_c00087{width:32.390400px;}
._2b_c00087{width:34.227000px;}
._2a_c00087{width:40.227000px;}
._28_c00087{width:41.562000px;}
._21_c00087{width:50.877000px;}
._b_c00087{width:72.657000px;}
._2f_c00087{width:94.647000px;}
._26_c00087{width:108.081000px;}
._17_c00087{width:111.093000px;}
._1e_c00087{width:140.835000px;}
._1f_c00087{width:144.318000px;}
._31_c00087{width:206.604000px;}
._2_c00087{width:358.338000px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(128,128,128);}
.fc0_c00087{color:rgb(0,0,0);}
.fs3_c00087{font-size:45.000000px;}
.fs4_c00087{font-size:48.000000px;}
.fs1_c00087{font-size:55.200000px;}
.fs2_c00087{font-size:66.000000px;}
.fs0_c00087{font-size:69.000000px;}
.y0_c00087{bottom:0.000000px;}
.y20_c00087{bottom:3.105000px;}
.y1f_c00087{bottom:7.228369px;}
.y1e_c00087{bottom:89.070000px;}
.y1d_c00087{bottom:107.370000px;}
.y1c_c00087{bottom:125.220000px;}
.y1b_c00087{bottom:145.470000px;}
.y1a_c00087{bottom:169.770000px;}
.y19_c00087{bottom:195.120000px;}
.y18_c00087{bottom:220.020000px;}
.y17_c00087{bottom:245.070000px;}
.y16_c00087{bottom:270.270000px;}
.y15_c00087{bottom:295.020000px;}
.y14_c00087{bottom:320.220000px;}
.y13_c00087{bottom:344.520000px;}
.y12_c00087{bottom:371.520000px;}
.y11_c00087{bottom:394.770000px;}
.y10_c00087{bottom:419.820000px;}
.yf_c00087{bottom:445.170000px;}
.ye_c00087{bottom:469.770000px;}
.yd_c00087{bottom:494.820000px;}
.yc_c00087{bottom:519.720000px;}
.yb_c00087{bottom:544.020000px;}
.ya_c00087{bottom:569.670000px;}
.y9_c00087{bottom:594.720000px;}
.y8_c00087{bottom:620.970000px;}
.y7_c00087{bottom:643.920000px;}
.y6_c00087{bottom:672.570000px;}
.y5_c00087{bottom:695.970000px;}
.y4_c00087{bottom:720.120000px;}
.y3_c00087{bottom:744.570000px;}
.y2_c00087{bottom:771.120000px;}
.y1_c00087{bottom:797.070000px;}
.h4_c00087{height:13.200073px;}
.h5_c00087{height:43.804688px;}
.h3_c00087{height:80.758301px;}
.h2_c00087{height:87.361816px;}
.h0_c00087{height:842.100000px;}
.h1_c00087{height:842.250000px;}
.w2_c00087{width:104.875500px;}
.w1_c00087{width:564.750000px;}
.w0_c00087{width:564.825000px;}
.x0_c00087{left:0.000000px;}
.x7_c00087{left:33.450000px;}
.x3_c00087{left:35.400000px;}
.xf_c00087{left:61.350000px;}
.xd_c00087{left:93.750000px;}
.xa_c00087{left:95.400000px;}
.xb_c00087{left:99.750000px;}
.x4_c00087{left:113.700000px;}
.x1_c00087{left:115.650000px;}
.xe_c00087{left:117.150000px;}
.xc_c00087{left:118.350000px;}
.x9_c00087{left:119.400000px;}
.x2_c00087{left:120.450000px;}
.x8_c00087{left:122.100000px;}
.x6_c00087{left:128.550000px;}
.x5_c00087{left:141.300000px;}
.x10_c00087{left:234.226730px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls3_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:0.064000pt;}
.ls2_c00087{letter-spacing:2.666667pt;}
.ls0_c00087{letter-spacing:5.299200pt;}
.ls4_c00087{letter-spacing:21.333333pt;}
.ws3_c00087{word-spacing:-49.986667pt;}
.ws2_c00087{word-spacing:-41.797333pt;}
.ws0_c00087{word-spacing:-39.989333pt;}
.ws1_c00087{word-spacing:-14.781333pt;}
.ws4_c00087{word-spacing:0.000000pt;}
._2e_c00087{margin-left:-30.306667pt;}
._1a_c00087{margin-left:-22.992000pt;}
._2c_c00087{margin-left:-21.037333pt;}
._30_c00087{margin-left:-19.800000pt;}
._11_c00087{margin-left:-18.216000pt;}
._1b_c00087{margin-left:-16.941333pt;}
._c_c00087{margin-left:-15.712000pt;}
._19_c00087{margin-left:-13.624000pt;}
._14_c00087{margin-left:-11.978667pt;}
._10_c00087{margin-left:-11.040000pt;}
._16_c00087{margin-left:-9.997333pt;}
._f_c00087{margin-left:-8.789333pt;}
._13_c00087{margin-left:-7.218667pt;}
._9_c00087{margin-left:-6.317333pt;}
._15_c00087{margin-left:-5.162667pt;}
._8_c00087{margin-left:-3.557333pt;}
._18_c00087{margin-left:-2.546667pt;}
._3_c00087{margin-left:-1.594667pt;}
._4_c00087{width:1.165333pt;}
._5_c00087{width:2.208000pt;}
._1_c00087{width:3.250667pt;}
._0_c00087{width:4.170667pt;}
._e_c00087{width:5.152000pt;}
._6_c00087{width:6.440000pt;}
._20_c00087{width:7.861333pt;}
._1c_c00087{width:9.210667pt;}
._27_c00087{width:10.120000pt;}
._12_c00087{width:11.040000pt;}
._23_c00087{width:13.002667pt;}
._7_c00087{width:14.106667pt;}
._25_c00087{width:15.722667pt;}
._1d_c00087{width:18.984000pt;}
._22_c00087{width:20.997333pt;}
._d_c00087{width:24.165333pt;}
._a_c00087{width:25.576000pt;}
._2d_c00087{width:26.829333pt;}
._29_c00087{width:27.845333pt;}
._24_c00087{width:28.791467pt;}
._2b_c00087{width:30.424000pt;}
._2a_c00087{width:35.757333pt;}
._28_c00087{width:36.944000pt;}
._21_c00087{width:45.224000pt;}
._b_c00087{width:64.584000pt;}
._2f_c00087{width:84.130667pt;}
._26_c00087{width:96.072000pt;}
._17_c00087{width:98.749333pt;}
._1e_c00087{width:125.186667pt;}
._1f_c00087{width:128.282667pt;}
._31_c00087{width:183.648000pt;}
._2_c00087{width:318.522667pt;}
.fs3_c00087{font-size:40.000000pt;}
.fs4_c00087{font-size:42.666667pt;}
.fs1_c00087{font-size:49.066667pt;}
.fs2_c00087{font-size:58.666667pt;}
.fs0_c00087{font-size:61.333333pt;}
.y0_c00087{bottom:0.000000pt;}
.y20_c00087{bottom:2.760000pt;}
.y1f_c00087{bottom:6.425217pt;}
.y1e_c00087{bottom:79.173333pt;}
.y1d_c00087{bottom:95.440000pt;}
.y1c_c00087{bottom:111.306667pt;}
.y1b_c00087{bottom:129.306667pt;}
.y1a_c00087{bottom:150.906667pt;}
.y19_c00087{bottom:173.440000pt;}
.y18_c00087{bottom:195.573333pt;}
.y17_c00087{bottom:217.840000pt;}
.y16_c00087{bottom:240.240000pt;}
.y15_c00087{bottom:262.240000pt;}
.y14_c00087{bottom:284.640000pt;}
.y13_c00087{bottom:306.240000pt;}
.y12_c00087{bottom:330.240000pt;}
.y11_c00087{bottom:350.906667pt;}
.y10_c00087{bottom:373.173333pt;}
.yf_c00087{bottom:395.706667pt;}
.ye_c00087{bottom:417.573333pt;}
.yd_c00087{bottom:439.840000pt;}
.yc_c00087{bottom:461.973333pt;}
.yb_c00087{bottom:483.573333pt;}
.ya_c00087{bottom:506.373333pt;}
.y9_c00087{bottom:528.640000pt;}
.y8_c00087{bottom:551.973333pt;}
.y7_c00087{bottom:572.373333pt;}
.y6_c00087{bottom:597.840000pt;}
.y5_c00087{bottom:618.640000pt;}
.y4_c00087{bottom:640.106667pt;}
.y3_c00087{bottom:661.840000pt;}
.y2_c00087{bottom:685.440000pt;}
.y1_c00087{bottom:708.506667pt;}
.h4_c00087{height:11.733399pt;}
.h5_c00087{height:38.937500pt;}
.h3_c00087{height:71.785156pt;}
.h2_c00087{height:77.654948pt;}
.h0_c00087{height:748.533333pt;}
.h1_c00087{height:748.666667pt;}
.w2_c00087{width:93.222667pt;}
.w1_c00087{width:502.000000pt;}
.w0_c00087{width:502.066667pt;}
.x0_c00087{left:0.000000pt;}
.x7_c00087{left:29.733333pt;}
.x3_c00087{left:31.466667pt;}
.xf_c00087{left:54.533333pt;}
.xd_c00087{left:83.333333pt;}
.xa_c00087{left:84.800000pt;}
.xb_c00087{left:88.666667pt;}
.x4_c00087{left:101.066667pt;}
.x1_c00087{left:102.800000pt;}
.xe_c00087{left:104.133333pt;}
.xc_c00087{left:105.200000pt;}
.x9_c00087{left:106.133333pt;}
.x2_c00087{left:107.066667pt;}
.x8_c00087{left:108.533333pt;}
.x6_c00087{left:114.266667pt;}
.x5_c00087{left:125.600000pt;}
.x10_c00087{left:208.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_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_cb8260d88d009b43d8ad3222.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_e4da7468d6d8e7eb76024c61.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_f31c4f490ef340daf6893e51.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_82b613f0c11c7da846baa2d4.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_00d258845149929bf1b2b6ea.woff2')format("woff");}.ff5_c00088{font-family:ff5_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:ff6_c00088;src:url('chunks/assets/font_14fd59eedf503780523f5305.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00088;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00088{font-family:ff7_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:ff8_c00088;src:url('chunks/assets/font_68e39f5affaed4593f6488d0.woff2')format("woff");}.ff8_c00088{font-family:ff8_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00088;src:url('chunks/assets/font_5deda3f00cdae212a28b37bc.woff2')format("woff");}.ff9_c00088{font-family:ff9_c00088;line-height:1.437000;font-style:normal;font-weight: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_c00088;src:url('chunks/assets/font_9d64bce5b6d0b97b660fef10.woff2')format("woff");}.ffa_c00088{font-family:ffa_c00088;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_c00088;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00088{font-family:ffb_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;}
.ls4_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.708000px;}
.ls2_c00088{letter-spacing:3.000000px;}
.ls0_c00088{letter-spacing:13.800000px;}
.ls3_c00088{letter-spacing:38.400000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00088{word-spacing:-47.022000px;}
.ws3_c00088{word-spacing:-25.116000px;}
.ws0_c00088{word-spacing:-16.629000px;}
.ws1_c00088{word-spacing:-0.045600px;}
.ws4_c00088{word-spacing:0.000000px;}
._21_c00088{margin-left:-20.505000px;}
._24_c00088{margin-left:-17.319000px;}
._10_c00088{margin-left:-14.640000px;}
._23_c00088{margin-left:-13.398000px;}
._2_c00088{margin-left:-11.799000px;}
._12_c00088{margin-left:-10.557000px;}
._1c_c00088{margin-left:-9.507000px;}
._16_c00088{margin-left:-8.172000px;}
._11_c00088{margin-left:-7.041000px;}
._f_c00088{margin-left:-5.418000px;}
._1f_c00088{margin-left:-4.227000px;}
._4_c00088{margin-left:-3.174000px;}
._3_c00088{margin-left:-1.242000px;}
._c_c00088{width:1.170000px;}
._1_c00088{width:2.553000px;}
._6_c00088{width:4.416000px;}
._0_c00088{width:5.451000px;}
._9_c00088{width:6.642000px;}
._d_c00088{width:7.671000px;}
._a_c00088{width:9.297000px;}
._18_c00088{width:11.328000px;}
._e_c00088{width:12.357000px;}
._22_c00088{width:13.380000px;}
._1b_c00088{width:14.568000px;}
._8_c00088{width:16.056000px;}
._1d_c00088{width:17.640000px;}
._19_c00088{width:19.689000px;}
._13_c00088{width:21.366000px;}
._14_c00088{width:23.253000px;}
._1a_c00088{width:30.813000px;}
._15_c00088{width:34.101000px;}
._7_c00088{width:35.922000px;}
._b_c00088{width:37.329000px;}
._1e_c00088{width:39.249000px;}
._17_c00088{width:65.148000px;}
._20_c00088{width:100.251000px;}
._5_c00088{width:490.446000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(128,128,128);}
.fc0_c00088{color:rgb(0,0,0);}
.fs1_c00088{font-size:45.000000px;}
.fs4_c00088{font-size:45.600000px;}
.fs7_c00088{font-size:48.000000px;}
.fs6_c00088{font-size:54.000000px;}
.fs3_c00088{font-size:57.000000px;}
.fs5_c00088{font-size:60.000000px;}
.fs2_c00088{font-size:66.000000px;}
.fs0_c00088{font-size:69.000000px;}
.y0_c00088{bottom:0.000000px;}
.y21_c00088{bottom:3.105000px;}
.y20_c00088{bottom:7.228357px;}
.y1d_c00088{bottom:54.780000px;}
.y1c_c00088{bottom:81.780000px;}
.y1b_c00088{bottom:106.680000px;}
.y1a_c00088{bottom:132.030000px;}
.y19_c00088{bottom:156.630000px;}
.y18_c00088{bottom:181.230000px;}
.y17_c00088{bottom:206.580000px;}
.y16_c00088{bottom:231.630000px;}
.y15_c00088{bottom:256.830000px;}
.y1f_c00088{bottom:273.480000px;}
.y14_c00088{bottom:281.580000px;}
.y13_c00088{bottom:306.480000px;}
.y1e_c00088{bottom:309.480000px;}
.y12_c00088{bottom:331.080000px;}
.y11_c00088{bottom:355.830000px;}
.y10_c00088{bottom:380.130000px;}
.yf_c00088{bottom:405.630000px;}
.ye_c00088{bottom:429.030000px;}
.yd_c00088{bottom:453.330000px;}
.yc_c00088{bottom:470.580000px;}
.yb_c00088{bottom:487.980000px;}
.ya_c00088{bottom:507.630000px;}
.y9_c00088{bottom:531.180000px;}
.y8_c00088{bottom:556.230000px;}
.y7_c00088{bottom:580.830000px;}
.y6_c00088{bottom:605.880000px;}
.y5_c00088{bottom:630.780000px;}
.y4_c00088{bottom:656.880000px;}
.y3_c00088{bottom:680.430000px;}
.y2_c00088{bottom:702.780000px;}
.y1_c00088{bottom:775.530000px;}
.h9_c00088{height:13.200074px;}
.ha_c00088{height:43.804688px;}
.h6_c00088{height:55.914551px;}
.h4_c00088{height:55.942383px;}
.h3_c00088{height:56.975098px;}
.h8_c00088{height:73.623000px;}
.h5_c00088{height:75.966797px;}
.h7_c00088{height:80.758301px;}
.h2_c00088{height:87.361816px;}
.h1_c00088{height:816.750000px;}
.h0_c00088{height:817.050000px;}
.w2_c00088{width:104.875500px;}
.w1_c00088{width:547.500000px;}
.w0_c00088{width:547.575000px;}
.x0_c00088{left:0.000000px;}
.x7_c00088{left:24.600000px;}
.x2_c00088{left:25.950000px;}
.x3_c00088{left:48.600000px;}
.x4_c00088{left:49.650000px;}
.x5_c00088{left:78.300000px;}
.x6_c00088{left:108.900000px;}
.x1_c00088{left:186.900000px;}
.xa_c00088{left:225.601730px;}
.x8_c00088{left:424.950000px;}
.x9_c00088{left:480.600000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls4_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.629333pt;}
.ls2_c00088{letter-spacing:2.666667pt;}
.ls0_c00088{letter-spacing:12.266667pt;}
.ls3_c00088{letter-spacing:34.133333pt;}
.ws2_c00088{word-spacing:-41.797333pt;}
.ws3_c00088{word-spacing:-22.325333pt;}
.ws0_c00088{word-spacing:-14.781333pt;}
.ws1_c00088{word-spacing:-0.040533pt;}
.ws4_c00088{word-spacing:0.000000pt;}
._21_c00088{margin-left:-18.226667pt;}
._24_c00088{margin-left:-15.394667pt;}
._10_c00088{margin-left:-13.013333pt;}
._23_c00088{margin-left:-11.909333pt;}
._2_c00088{margin-left:-10.488000pt;}
._12_c00088{margin-left:-9.384000pt;}
._1c_c00088{margin-left:-8.450667pt;}
._16_c00088{margin-left:-7.264000pt;}
._11_c00088{margin-left:-6.258667pt;}
._f_c00088{margin-left:-4.816000pt;}
._1f_c00088{margin-left:-3.757333pt;}
._4_c00088{margin-left:-2.821333pt;}
._3_c00088{margin-left:-1.104000pt;}
._c_c00088{width:1.040000pt;}
._1_c00088{width:2.269333pt;}
._6_c00088{width:3.925333pt;}
._0_c00088{width:4.845333pt;}
._9_c00088{width:5.904000pt;}
._d_c00088{width:6.818667pt;}
._a_c00088{width:8.264000pt;}
._18_c00088{width:10.069333pt;}
._e_c00088{width:10.984000pt;}
._22_c00088{width:11.893333pt;}
._1b_c00088{width:12.949333pt;}
._8_c00088{width:14.272000pt;}
._1d_c00088{width:15.680000pt;}
._19_c00088{width:17.501333pt;}
._13_c00088{width:18.992000pt;}
._14_c00088{width:20.669333pt;}
._1a_c00088{width:27.389333pt;}
._15_c00088{width:30.312000pt;}
._7_c00088{width:31.930667pt;}
._b_c00088{width:33.181333pt;}
._1e_c00088{width:34.888000pt;}
._17_c00088{width:57.909333pt;}
._20_c00088{width:89.112000pt;}
._5_c00088{width:435.952000pt;}
.fs1_c00088{font-size:40.000000pt;}
.fs4_c00088{font-size:40.533333pt;}
.fs7_c00088{font-size:42.666667pt;}
.fs6_c00088{font-size:48.000000pt;}
.fs3_c00088{font-size:50.666667pt;}
.fs5_c00088{font-size:53.333333pt;}
.fs2_c00088{font-size:58.666667pt;}
.fs0_c00088{font-size:61.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y21_c00088{bottom:2.760000pt;}
.y20_c00088{bottom:6.425206pt;}
.y1d_c00088{bottom:48.693333pt;}
.y1c_c00088{bottom:72.693333pt;}
.y1b_c00088{bottom:94.826667pt;}
.y1a_c00088{bottom:117.360000pt;}
.y19_c00088{bottom:139.226667pt;}
.y18_c00088{bottom:161.093333pt;}
.y17_c00088{bottom:183.626667pt;}
.y16_c00088{bottom:205.893333pt;}
.y15_c00088{bottom:228.293333pt;}
.y1f_c00088{bottom:243.093333pt;}
.y14_c00088{bottom:250.293333pt;}
.y13_c00088{bottom:272.426667pt;}
.y1e_c00088{bottom:275.093333pt;}
.y12_c00088{bottom:294.293333pt;}
.y11_c00088{bottom:316.293333pt;}
.y10_c00088{bottom:337.893333pt;}
.yf_c00088{bottom:360.560000pt;}
.ye_c00088{bottom:381.360000pt;}
.yd_c00088{bottom:402.960000pt;}
.yc_c00088{bottom:418.293333pt;}
.yb_c00088{bottom:433.760000pt;}
.ya_c00088{bottom:451.226667pt;}
.y9_c00088{bottom:472.160000pt;}
.y8_c00088{bottom:494.426667pt;}
.y7_c00088{bottom:516.293333pt;}
.y6_c00088{bottom:538.560000pt;}
.y5_c00088{bottom:560.693333pt;}
.y4_c00088{bottom:583.893333pt;}
.y3_c00088{bottom:604.826667pt;}
.y2_c00088{bottom:624.693333pt;}
.y1_c00088{bottom:689.360000pt;}
.h9_c00088{height:11.733399pt;}
.ha_c00088{height:38.937500pt;}
.h6_c00088{height:49.701823pt;}
.h4_c00088{height:49.726562pt;}
.h3_c00088{height:50.644531pt;}
.h8_c00088{height:65.442667pt;}
.h5_c00088{height:67.526042pt;}
.h7_c00088{height:71.785156pt;}
.h2_c00088{height:77.654948pt;}
.h1_c00088{height:726.000000pt;}
.h0_c00088{height:726.266667pt;}
.w2_c00088{width:93.222667pt;}
.w1_c00088{width:486.666667pt;}
.w0_c00088{width:486.733333pt;}
.x0_c00088{left:0.000000pt;}
.x7_c00088{left:21.866667pt;}
.x2_c00088{left:23.066667pt;}
.x3_c00088{left:43.200000pt;}
.x4_c00088{left:44.133333pt;}
.x5_c00088{left:69.600000pt;}
.x6_c00088{left:96.800000pt;}
.x1_c00088{left:166.133333pt;}
.xa_c00088{left:200.534871pt;}
.x8_c00088{left:377.733333pt;}
.x9_c00088{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_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_cf280b32127e0f9d7e4917d6.woff2')format("woff");}.ff1_c00089{font-family:ff1_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:ff2_c00089;src:url('chunks/assets/font_1cecbfb80b2670f4eb169a2f.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.568848;font-style:normal;font-weight:normal;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_01d77ecada4edaef4fd25fc6.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00089{font-family:ff4_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);}
.v0_c00089{vertical-align:0.000000px;}
.ls1_c00089{letter-spacing:0.000000px;}
.ls2_c00089{letter-spacing:3.000000px;}
.ls0_c00089{letter-spacing:14.325000px;}
.ls3_c00089{letter-spacing:33.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00089{word-spacing:-49.629000px;}
.ws2_c00089{word-spacing:-19.629000px;}
.ws0_c00089{word-spacing:-16.629000px;}
.ws3_c00089{word-spacing:0.000000px;}
._1_c00089{margin-left:-32.361000px;}
._23_c00089{margin-left:-30.024000px;}
._1d_c00089{margin-left:-22.863000px;}
._28_c00089{margin-left:-21.114000px;}
._3_c00089{margin-left:-17.943000px;}
._2_c00089{margin-left:-15.663000px;}
._b_c00089{margin-left:-13.800000px;}
._0_c00089{margin-left:-11.799000px;}
._1c_c00089{margin-left:-10.074000px;}
._a_c00089{margin-left:-8.970000px;}
._d_c00089{margin-left:-7.659000px;}
._c_c00089{margin-left:-6.624000px;}
._f_c00089{margin-left:-5.520000px;}
._e_c00089{margin-left:-3.933000px;}
._1a_c00089{margin-left:-2.691000px;}
._11_c00089{margin-left:-1.449000px;}
._5_c00089{width:1.380000px;}
._7_c00089{width:2.415000px;}
._1b_c00089{width:3.450000px;}
._6_c00089{width:4.485000px;}
._8_c00089{width:6.210000px;}
._9_c00089{width:7.521000px;}
._14_c00089{width:8.970000px;}
._19_c00089{width:10.005000px;}
._12_c00089{width:11.454000px;}
._13_c00089{width:13.110000px;}
._22_c00089{width:14.214000px;}
._17_c00089{width:15.249000px;}
._2e_c00089{width:16.560000px;}
._1f_c00089{width:18.078000px;}
._1e_c00089{width:19.320000px;}
._20_c00089{width:21.183000px;}
._21_c00089{width:22.701000px;}
._29_c00089{width:23.736000px;}
._24_c00089{width:25.185000px;}
._25_c00089{width:30.912000px;}
._2f_c00089{width:32.844000px;}
._2b_c00089{width:40.689000px;}
._2c_c00089{width:52.992000px;}
._2a_c00089{width:70.833000px;}
._26_c00089{width:77.280000px;}
._4_c00089{width:93.771000px;}
._18_c00089{width:96.876000px;}
._2d_c00089{width:114.057000px;}
._16_c00089{width:137.427000px;}
._10_c00089{width:166.083000px;}
._27_c00089{width:195.822000px;}
._15_c00089{width:262.200000px;}
.fc2_c00089{color:transparent;}
.fc1_c00089{color:rgb(128,128,128);}
.fc0_c00089{color:rgb(0,0,0);}
.fs3_c00089{font-size:48.000000px;}
.fs2_c00089{font-size:54.000000px;}
.fs0_c00089{font-size:69.000000px;}
.fs1_c00089{font-size:117.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1d_c00089{bottom:3.105000px;}
.y1c_c00089{bottom:7.228369px;}
.y1b_c00089{bottom:77.670000px;}
.y1a_c00089{bottom:103.620000px;}
.y19_c00089{bottom:130.170000px;}
.y18_c00089{bottom:154.920000px;}
.y17_c00089{bottom:179.220000px;}
.y16_c00089{bottom:205.770000px;}
.y15_c00089{bottom:230.070000px;}
.y14_c00089{bottom:255.420000px;}
.y13_c00089{bottom:280.770000px;}
.y12_c00089{bottom:303.720000px;}
.y11_c00089{bottom:329.970000px;}
.y10_c00089{bottom:356.070000px;}
.yf_c00089{bottom:379.620000px;}
.ye_c00089{bottom:405.720000px;}
.yd_c00089{bottom:455.670000px;}
.yc_c00089{bottom:494.820000px;}
.yb_c00089{bottom:513.570000px;}
.ya_c00089{bottom:531.570000px;}
.y9_c00089{bottom:566.970000px;}
.y8_c00089{bottom:604.320000px;}
.y7_c00089{bottom:629.370000px;}
.y6_c00089{bottom:654.420000px;}
.y5_c00089{bottom:679.770000px;}
.y4_c00089{bottom:704.070000px;}
.y3_c00089{bottom:727.920000px;}
.y2_c00089{bottom:754.920000px;}
.y1_c00089{bottom:779.670000px;}
.h5_c00089{height:13.200073px;}
.h6_c00089{height:43.804688px;}
.h3_c00089{height:80.758301px;}
.h2_c00089{height:87.361816px;}
.h4_c00089{height:148.135254px;}
.h0_c00089{height:842.100000px;}
.h1_c00089{height:842.250000px;}
.w2_c00089{width:104.875500px;}
.w1_c00089{width:564.750000px;}
.w0_c00089{width:564.825000px;}
.x0_c00089{left:0.000000px;}
.xc_c00089{left:35.400000px;}
.xb_c00089{left:37.050000px;}
.x2_c00089{left:39.150000px;}
.x3_c00089{left:41.850000px;}
.x4_c00089{left:50.550000px;}
.x1_c00089{left:54.450000px;}
.xa_c00089{left:102.150000px;}
.x8_c00089{left:103.650000px;}
.x5_c00089{left:104.850000px;}
.x7_c00089{left:128.550000px;}
.x9_c00089{left:154.800000px;}
.xe_c00089{left:234.226730px;}
.x6_c00089{left:247.650000px;}
.xd_c00089{left:507.300000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls1_c00089{letter-spacing:0.000000pt;}
.ls2_c00089{letter-spacing:2.666667pt;}
.ls0_c00089{letter-spacing:12.733333pt;}
.ls3_c00089{letter-spacing:29.333333pt;}
.ws1_c00089{word-spacing:-44.114667pt;}
.ws2_c00089{word-spacing:-17.448000pt;}
.ws0_c00089{word-spacing:-14.781333pt;}
.ws3_c00089{word-spacing:0.000000pt;}
._1_c00089{margin-left:-28.765333pt;}
._23_c00089{margin-left:-26.688000pt;}
._1d_c00089{margin-left:-20.322667pt;}
._28_c00089{margin-left:-18.768000pt;}
._3_c00089{margin-left:-15.949333pt;}
._2_c00089{margin-left:-13.922667pt;}
._b_c00089{margin-left:-12.266667pt;}
._0_c00089{margin-left:-10.488000pt;}
._1c_c00089{margin-left:-8.954667pt;}
._a_c00089{margin-left:-7.973333pt;}
._d_c00089{margin-left:-6.808000pt;}
._c_c00089{margin-left:-5.888000pt;}
._f_c00089{margin-left:-4.906667pt;}
._e_c00089{margin-left:-3.496000pt;}
._1a_c00089{margin-left:-2.392000pt;}
._11_c00089{margin-left:-1.288000pt;}
._5_c00089{width:1.226667pt;}
._7_c00089{width:2.146667pt;}
._1b_c00089{width:3.066667pt;}
._6_c00089{width:3.986667pt;}
._8_c00089{width:5.520000pt;}
._9_c00089{width:6.685333pt;}
._14_c00089{width:7.973333pt;}
._19_c00089{width:8.893333pt;}
._12_c00089{width:10.181333pt;}
._13_c00089{width:11.653333pt;}
._22_c00089{width:12.634667pt;}
._17_c00089{width:13.554667pt;}
._2e_c00089{width:14.720000pt;}
._1f_c00089{width:16.069333pt;}
._1e_c00089{width:17.173333pt;}
._20_c00089{width:18.829333pt;}
._21_c00089{width:20.178667pt;}
._29_c00089{width:21.098667pt;}
._24_c00089{width:22.386667pt;}
._25_c00089{width:27.477333pt;}
._2f_c00089{width:29.194667pt;}
._2b_c00089{width:36.168000pt;}
._2c_c00089{width:47.104000pt;}
._2a_c00089{width:62.962667pt;}
._26_c00089{width:68.693333pt;}
._4_c00089{width:83.352000pt;}
._18_c00089{width:86.112000pt;}
._2d_c00089{width:101.384000pt;}
._16_c00089{width:122.157333pt;}
._10_c00089{width:147.629333pt;}
._27_c00089{width:174.064000pt;}
._15_c00089{width:233.066667pt;}
.fs3_c00089{font-size:42.666667pt;}
.fs2_c00089{font-size:48.000000pt;}
.fs0_c00089{font-size:61.333333pt;}
.fs1_c00089{font-size:104.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y1d_c00089{bottom:2.760000pt;}
.y1c_c00089{bottom:6.425217pt;}
.y1b_c00089{bottom:69.040000pt;}
.y1a_c00089{bottom:92.106667pt;}
.y19_c00089{bottom:115.706667pt;}
.y18_c00089{bottom:137.706667pt;}
.y17_c00089{bottom:159.306667pt;}
.y16_c00089{bottom:182.906667pt;}
.y15_c00089{bottom:204.506667pt;}
.y14_c00089{bottom:227.040000pt;}
.y13_c00089{bottom:249.573333pt;}
.y12_c00089{bottom:269.973333pt;}
.y11_c00089{bottom:293.306667pt;}
.y10_c00089{bottom:316.506667pt;}
.yf_c00089{bottom:337.440000pt;}
.ye_c00089{bottom:360.640000pt;}
.yd_c00089{bottom:405.040000pt;}
.yc_c00089{bottom:439.840000pt;}
.yb_c00089{bottom:456.506667pt;}
.ya_c00089{bottom:472.506667pt;}
.y9_c00089{bottom:503.973333pt;}
.y8_c00089{bottom:537.173333pt;}
.y7_c00089{bottom:559.440000pt;}
.y6_c00089{bottom:581.706667pt;}
.y5_c00089{bottom:604.240000pt;}
.y4_c00089{bottom:625.840000pt;}
.y3_c00089{bottom:647.040000pt;}
.y2_c00089{bottom:671.040000pt;}
.y1_c00089{bottom:693.040000pt;}
.h5_c00089{height:11.733399pt;}
.h6_c00089{height:38.937500pt;}
.h3_c00089{height:71.785156pt;}
.h2_c00089{height:77.654948pt;}
.h4_c00089{height:131.675781pt;}
.h0_c00089{height:748.533333pt;}
.h1_c00089{height:748.666667pt;}
.w2_c00089{width:93.222667pt;}
.w1_c00089{width:502.000000pt;}
.w0_c00089{width:502.066667pt;}
.x0_c00089{left:0.000000pt;}
.xc_c00089{left:31.466667pt;}
.xb_c00089{left:32.933333pt;}
.x2_c00089{left:34.800000pt;}
.x3_c00089{left:37.200000pt;}
.x4_c00089{left:44.933333pt;}
.x1_c00089{left:48.400000pt;}
.xa_c00089{left:90.800000pt;}
.x8_c00089{left:92.133333pt;}
.x5_c00089{left:93.200000pt;}
.x7_c00089{left:114.266667pt;}
.x9_c00089{left:137.600000pt;}
.xe_c00089{left:208.201538pt;}
.x6_c00089{left:220.133333pt;}
.xd_c00089{left:450.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_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_841b41cbf525bf54d9e9249a.woff2')format("woff");}.ff1_c00090{font-family:ff1_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:ff2_c00090;src:url('chunks/assets/font_722b99f2167fe82fcd1c500e.woff2')format("woff");}.ff2_c00090{font-family:ff2_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:ff3_c00090;src:url('chunks/assets/font_6c690a52c5d477e995b66e7c.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;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_c00090;src:url('chunks/assets/font_7ff87343d112f724b07bc3c2.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.437000;font-style:normal;font-weight:normal;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_6ee41153400c93b4dcdd3a40.woff2')format("woff");}.ff5_c00090{font-family:ff5_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:ff6_c00090;src:url('chunks/assets/font_836f7f27aa422ee0cec06b20.woff2')format("woff");}.ff6_c00090{font-family:ff6_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:ff7_c00090;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00090{font-family:ff7_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);}
.v0_c00090{vertical-align:0.000000px;}
.ls2_c00090{letter-spacing:0.000000px;}
.ls5_c00090{letter-spacing:3.000000px;}
.ls0_c00090{letter-spacing:5.100000px;}
.ls6_c00090{letter-spacing:9.000000px;}
.ls3_c00090{letter-spacing:12.000000px;}
.ls1_c00090{letter-spacing:19.902000px;}
.ls4_c00090{letter-spacing:30.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00090{word-spacing:-49.182000px;}
.ws6_c00090{word-spacing:-33.288000px;}
.ws2_c00090{word-spacing:-30.798000px;}
.ws7_c00090{word-spacing:-24.288000px;}
.ws5_c00090{word-spacing:-19.629000px;}
.ws0_c00090{word-spacing:-18.798000px;}
.ws4_c00090{word-spacing:-15.906000px;}
.ws8_c00090{word-spacing:-0.081000px;}
.ws9_c00090{word-spacing:0.000000px;}
.ws1_c00090{word-spacing:4.692000px;}
._24_c00090{margin-left:-50.025000px;}
._2a_c00090{margin-left:-38.088000px;}
._13_c00090{margin-left:-26.154000px;}
._2b_c00090{margin-left:-22.152000px;}
._a_c00090{margin-left:-19.776000px;}
._1c_c00090{margin-left:-18.567000px;}
._1e_c00090{margin-left:-16.623000px;}
._5_c00090{margin-left:-15.030000px;}
._c_c00090{margin-left:-13.455000px;}
._17_c00090{margin-left:-12.300000px;}
._16_c00090{margin-left:-11.040000px;}
._1b_c00090{margin-left:-9.930000px;}
._12_c00090{margin-left:-8.655000px;}
._4_c00090{margin-left:-6.960000px;}
._9_c00090{margin-left:-5.847000px;}
._15_c00090{margin-left:-4.830000px;}
._6_c00090{margin-left:-3.567000px;}
._21_c00090{margin-left:-2.520000px;}
._2_c00090{margin-left:-1.518000px;}
._1_c00090{width:1.980000px;}
._0_c00090{width:3.960000px;}
._18_c00090{width:5.043000px;}
._7_c00090{width:6.045000px;}
._8_c00090{width:7.245000px;}
._e_c00090{width:8.820000px;}
._f_c00090{width:10.683000px;}
._10_c00090{width:12.213000px;}
._19_c00090{width:13.431000px;}
._b_c00090{width:15.249000px;}
._1d_c00090{width:16.491000px;}
._d_c00090{width:17.703000px;}
._26_c00090{width:19.398000px;}
._20_c00090{width:20.928000px;}
._22_c00090{width:23.427000px;}
._25_c00090{width:26.481000px;}
._1a_c00090{width:28.161000px;}
._28_c00090{width:31.704000px;}
._27_c00090{width:33.381000px;}
._29_c00090{width:34.503000px;}
._11_c00090{width:35.532000px;}
._23_c00090{width:58.170000px;}
._14_c00090{width:95.538000px;}
._1f_c00090{width:100.053000px;}
._3_c00090{width:486.816000px;}
._2c_c00090{width:533.232000px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs6_c00090{font-size:48.000000px;}
.fs5_c00090{font-size:54.000000px;}
.fs0_c00090{font-size:66.000000px;}
.fs2_c00090{font-size:69.000000px;}
.fs3_c00090{font-size:78.000000px;}
.fs4_c00090{font-size:81.000000px;}
.fs1_c00090{font-size:87.000000px;}
.y0_c00090{bottom:0.000000px;}
.y1e_c00090{bottom:3.105000px;}
.y1d_c00090{bottom:7.228369px;}
.y1c_c00090{bottom:49.620000px;}
.y1b_c00090{bottom:73.620000px;}
.y1a_c00090{bottom:100.170000px;}
.y19_c00090{bottom:124.770000px;}
.y18_c00090{bottom:149.070000px;}
.y17_c00090{bottom:173.820000px;}
.y16_c00090{bottom:199.170000px;}
.y15_c00090{bottom:226.470000px;}
.y14_c00090{bottom:250.320000px;}
.y13_c00090{bottom:275.370000px;}
.y12_c00090{bottom:300.270000px;}
.y11_c00090{bottom:349.320000px;}
.y10_c00090{bottom:395.520000px;}
.yf_c00090{bottom:412.470000px;}
.ye_c00090{bottom:429.870000px;}
.yd_c00090{bottom:464.070000px;}
.yc_c00090{bottom:501.870000px;}
.yb_c00090{bottom:526.170000px;}
.ya_c00090{bottom:551.370000px;}
.y9_c00090{bottom:575.820000px;}
.y8_c00090{bottom:600.720000px;}
.y7_c00090{bottom:625.320000px;}
.y6_c00090{bottom:650.370000px;}
.y5_c00090{bottom:675.270000px;}
.y4_c00090{bottom:700.320000px;}
.y3_c00090{bottom:724.920000px;}
.y2_c00090{bottom:749.220000px;}
.y1_c00090{bottom:774.270000px;}
.ha_c00090{height:13.200073px;}
.hb_c00090{height:43.804688px;}
.h6_c00090{height:67.686035px;}
.h7_c00090{height:68.370117px;}
.h3_c00090{height:73.623000px;}
.h8_c00090{height:77.247070px;}
.h4_c00090{height:84.888000px;}
.h9_c00090{height:87.361816px;}
.h2_c00090{height:91.291992px;}
.h5_c00090{height:98.756836px;}
.h1_c00090{height:110.151855px;}
.h0_c00090{height:813.750000px;}
.w2_c00090{width:104.875500px;}
.w1_c00090{width:545.250000px;}
.w0_c00090{width:545.400000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:22.350000px;}
.x4_c00090{left:24.600000px;}
.x3_c00090{left:26.100000px;}
.x7_c00090{left:28.650000px;}
.xb_c00090{left:30.000000px;}
.x9_c00090{left:39.900000px;}
.x6_c00090{left:46.200000px;}
.xa_c00090{left:51.000000px;}
.x8_c00090{left:72.300000px;}
.x5_c00090{left:167.100000px;}
.x1_c00090{left:184.200000px;}
.xd_c00090{left:224.514267px;}
.xc_c00090{left:285.900000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls2_c00090{letter-spacing:0.000000pt;}
.ls5_c00090{letter-spacing:2.666667pt;}
.ls0_c00090{letter-spacing:4.533333pt;}
.ls6_c00090{letter-spacing:8.000000pt;}
.ls3_c00090{letter-spacing:10.666667pt;}
.ls1_c00090{letter-spacing:17.690667pt;}
.ls4_c00090{letter-spacing:26.666667pt;}
.ws3_c00090{word-spacing:-43.717333pt;}
.ws6_c00090{word-spacing:-29.589333pt;}
.ws2_c00090{word-spacing:-27.376000pt;}
.ws7_c00090{word-spacing:-21.589333pt;}
.ws5_c00090{word-spacing:-17.448000pt;}
.ws0_c00090{word-spacing:-16.709333pt;}
.ws4_c00090{word-spacing:-14.138667pt;}
.ws8_c00090{word-spacing:-0.072000pt;}
.ws9_c00090{word-spacing:0.000000pt;}
.ws1_c00090{word-spacing:4.170667pt;}
._24_c00090{margin-left:-44.466667pt;}
._2a_c00090{margin-left:-33.856000pt;}
._13_c00090{margin-left:-23.248000pt;}
._2b_c00090{margin-left:-19.690667pt;}
._a_c00090{margin-left:-17.578667pt;}
._1c_c00090{margin-left:-16.504000pt;}
._1e_c00090{margin-left:-14.776000pt;}
._5_c00090{margin-left:-13.360000pt;}
._c_c00090{margin-left:-11.960000pt;}
._17_c00090{margin-left:-10.933333pt;}
._16_c00090{margin-left:-9.813333pt;}
._1b_c00090{margin-left:-8.826667pt;}
._12_c00090{margin-left:-7.693333pt;}
._4_c00090{margin-left:-6.186667pt;}
._9_c00090{margin-left:-5.197333pt;}
._15_c00090{margin-left:-4.293333pt;}
._6_c00090{margin-left:-3.170667pt;}
._21_c00090{margin-left:-2.240000pt;}
._2_c00090{margin-left:-1.349333pt;}
._1_c00090{width:1.760000pt;}
._0_c00090{width:3.520000pt;}
._18_c00090{width:4.482667pt;}
._7_c00090{width:5.373333pt;}
._8_c00090{width:6.440000pt;}
._e_c00090{width:7.840000pt;}
._f_c00090{width:9.496000pt;}
._10_c00090{width:10.856000pt;}
._19_c00090{width:11.938667pt;}
._b_c00090{width:13.554667pt;}
._1d_c00090{width:14.658667pt;}
._d_c00090{width:15.736000pt;}
._26_c00090{width:17.242667pt;}
._20_c00090{width:18.602667pt;}
._22_c00090{width:20.824000pt;}
._25_c00090{width:23.538667pt;}
._1a_c00090{width:25.032000pt;}
._28_c00090{width:28.181333pt;}
._27_c00090{width:29.672000pt;}
._29_c00090{width:30.669333pt;}
._11_c00090{width:31.584000pt;}
._23_c00090{width:51.706667pt;}
._14_c00090{width:84.922667pt;}
._1f_c00090{width:88.936000pt;}
._3_c00090{width:432.725333pt;}
._2c_c00090{width:473.984000pt;}
.fs6_c00090{font-size:42.666667pt;}
.fs5_c00090{font-size:48.000000pt;}
.fs0_c00090{font-size:58.666667pt;}
.fs2_c00090{font-size:61.333333pt;}
.fs3_c00090{font-size:69.333333pt;}
.fs4_c00090{font-size:72.000000pt;}
.fs1_c00090{font-size:77.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y1e_c00090{bottom:2.760000pt;}
.y1d_c00090{bottom:6.425217pt;}
.y1c_c00090{bottom:44.106667pt;}
.y1b_c00090{bottom:65.440000pt;}
.y1a_c00090{bottom:89.040000pt;}
.y19_c00090{bottom:110.906667pt;}
.y18_c00090{bottom:132.506667pt;}
.y17_c00090{bottom:154.506667pt;}
.y16_c00090{bottom:177.040000pt;}
.y15_c00090{bottom:201.306667pt;}
.y14_c00090{bottom:222.506667pt;}
.y13_c00090{bottom:244.773333pt;}
.y12_c00090{bottom:266.906667pt;}
.y11_c00090{bottom:310.506667pt;}
.y10_c00090{bottom:351.573333pt;}
.yf_c00090{bottom:366.640000pt;}
.ye_c00090{bottom:382.106667pt;}
.yd_c00090{bottom:412.506667pt;}
.yc_c00090{bottom:446.106667pt;}
.yb_c00090{bottom:467.706667pt;}
.ya_c00090{bottom:490.106667pt;}
.y9_c00090{bottom:511.840000pt;}
.y8_c00090{bottom:533.973333pt;}
.y7_c00090{bottom:555.840000pt;}
.y6_c00090{bottom:578.106667pt;}
.y5_c00090{bottom:600.240000pt;}
.y4_c00090{bottom:622.506667pt;}
.y3_c00090{bottom:644.373333pt;}
.y2_c00090{bottom:665.973333pt;}
.y1_c00090{bottom:688.240000pt;}
.ha_c00090{height:11.733399pt;}
.hb_c00090{height:38.937500pt;}
.h6_c00090{height:60.165365pt;}
.h7_c00090{height:60.773438pt;}
.h3_c00090{height:65.442667pt;}
.h8_c00090{height:68.664062pt;}
.h4_c00090{height:75.456000pt;}
.h9_c00090{height:77.654948pt;}
.h2_c00090{height:81.148438pt;}
.h5_c00090{height:87.783854pt;}
.h1_c00090{height:97.912760pt;}
.h0_c00090{height:723.333333pt;}
.w2_c00090{width:93.222667pt;}
.w1_c00090{width:484.666667pt;}
.w0_c00090{width:484.800000pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:19.866667pt;}
.x4_c00090{left:21.866667pt;}
.x3_c00090{left:23.200000pt;}
.x7_c00090{left:25.466667pt;}
.xb_c00090{left:26.666667pt;}
.x9_c00090{left:35.466667pt;}
.x6_c00090{left:41.066667pt;}
.xa_c00090{left:45.333333pt;}
.x8_c00090{left:64.266667pt;}
.x5_c00090{left:148.533333pt;}
.x1_c00090{left:163.733333pt;}
.xd_c00090{left:199.568237pt;}
.xc_c00090{left:254.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_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_25e8fff26b3144b7cca0764b.woff2')format("woff");}.ff1_c00091{font-family:ff1_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:ff2_c00091;src:url('chunks/assets/font_6938c8e20f5fb82e71e8a8d5.woff2')format("woff");}.ff2_c00091{font-family:ff2_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:ff3_c00091;src:url('chunks/assets/font_5230a85e2a82d8a8d4f081ab.woff2')format("woff");}.ff3_c00091{font-family:ff3_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:ff4_c00091;src:url('chunks/assets/font_1c286338fc54a4d25c667a27.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_65000e4cff94b930be796f28.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.437000;font-style:normal;font-weight:normal;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_cc783a18a12e3ecdd89f61e2.woff2')format("woff");}.ff6_c00091{font-family:ff6_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:ff7_c00091;src:url('chunks/assets/font_dc409e6da9808517f838c976.woff2')format("woff");}.ff7_c00091{font-family:ff7_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:ff8_c00091;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00091{font-family:ff8_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;}
.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;}
.lsb_c00091{letter-spacing:-3.000000px;}
.ls7_c00091{letter-spacing:0.000000px;}
.ls6_c00091{letter-spacing:3.000000px;}
.ls8_c00091{letter-spacing:6.000000px;}
.ls5_c00091{letter-spacing:6.600000px;}
.ls9_c00091{letter-spacing:9.000000px;}
.ls2_c00091{letter-spacing:9.168000px;}
.ls3_c00091{letter-spacing:13.302000px;}
.ls4_c00091{letter-spacing:15.510000px;}
.ls1_c00091{letter-spacing:16.902000px;}
.ls0_c00091{letter-spacing:17.100000px;}
.lsa_c00091{letter-spacing:27.000000px;}
.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;}
}
.ws5_c00091{word-spacing:-43.629000px;}
.wse_c00091{word-spacing:-42.825000px;}
.ws9_c00091{word-spacing:-34.500000px;}
.wsa_c00091{word-spacing:-24.906000px;}
.wsc_c00091{word-spacing:-16.629000px;}
.ws8_c00091{word-spacing:-15.906000px;}
.ws6_c00091{word-spacing:-11.568000px;}
.wsd_c00091{word-spacing:-11.460000px;}
.ws3_c00091{word-spacing:-11.250000px;}
.ws4_c00091{word-spacing:-5.220000px;}
.ws0_c00091{word-spacing:-2.340000px;}
.wsf_c00091{word-spacing:0.000000px;}
.wsb_c00091{word-spacing:0.528000px;}
.ws1_c00091{word-spacing:0.540000px;}
.ws2_c00091{word-spacing:6.525000px;}
.ws7_c00091{word-spacing:7.128000px;}
._2e_c00091{margin-left:-86.457000px;}
._27_c00091{margin-left:-29.280000px;}
._31_c00091{margin-left:-23.160000px;}
._2c_c00091{margin-left:-15.978000px;}
._9_c00091{margin-left:-14.880000px;}
._19_c00091{margin-left:-13.380000px;}
._23_c00091{margin-left:-11.907000px;}
._8_c00091{margin-left:-10.800000px;}
._7_c00091{margin-left:-9.300000px;}
._a_c00091{margin-left:-7.800000px;}
._2_c00091{margin-left:-6.762000px;}
._15_c00091{margin-left:-5.331000px;}
._16_c00091{margin-left:-4.062000px;}
._0_c00091{margin-left:-3.036000px;}
._1_c00091{margin-left:-1.311000px;}
._6_c00091{width:1.104000px;}
._5_c00091{width:2.277000px;}
._c_c00091{width:3.303000px;}
._4_c00091{width:4.761000px;}
._d_c00091{width:5.976000px;}
._12_c00091{width:7.560000px;}
._18_c00091{width:8.580000px;}
._13_c00091{width:9.780000px;}
._1f_c00091{width:11.700000px;}
._17_c00091{width:13.080000px;}
._e_c00091{width:14.361000px;}
._11_c00091{width:16.119000px;}
._14_c00091{width:18.240000px;}
._26_c00091{width:19.299000px;}
._1b_c00091{width:20.385000px;}
._20_c00091{width:21.867000px;}
._10_c00091{width:25.860000px;}
._21_c00091{width:27.450000px;}
._1d_c00091{width:29.895000px;}
._f_c00091{width:31.260000px;}
._30_c00091{width:32.580000px;}
._2a_c00091{width:37.968000px;}
._2f_c00091{width:53.613000px;}
._22_c00091{width:69.942000px;}
._b_c00091{width:76.740000px;}
._25_c00091{width:90.966000px;}
._24_c00091{width:93.033000px;}
._1a_c00091{width:97.380000px;}
._1e_c00091{width:99.546000px;}
._1c_c00091{width:134.115000px;}
._28_c00091{width:136.140000px;}
._32_c00091{width:161.940000px;}
._33_c00091{width:350.439000px;}
._3_c00091{width:376.962000px;}
._29_c00091{width:498.768000px;}
._2b_c00091{width:808.878000px;}
._34_c00091{width:923.745000px;}
._2d_c00091{width:952.848000px;}
.fc2_c00091{color:transparent;}
.fc1_c00091{color:rgb(128,128,128);}
.fc0_c00091{color:rgb(0,0,0);}
.fs2_c00091{font-size:45.000000px;}
.fs4_c00091{font-size:48.000000px;}
.fs3_c00091{font-size:51.000000px;}
.fs1_c00091{font-size:60.000000px;}
.fs5_c00091{font-size:66.000000px;}
.fs0_c00091{font-size:69.000000px;}
.fs7_c00091{font-size:75.000000px;}
.fs6_c00091{font-size:87.000000px;}
.y0_c00091{bottom:0.000000px;}
.y1e_c00091{bottom:3.105000px;}
.y1d_c00091{bottom:7.228369px;}
.y1c_c00091{bottom:68.220000px;}
.y1b_c00091{bottom:91.770000px;}
.y1a_c00091{bottom:117.420000px;}
.y19_c00091{bottom:143.820000px;}
.y18_c00091{bottom:169.320000px;}
.y17_c00091{bottom:194.970000px;}
.y16_c00091{bottom:251.070000px;}
.y15_c00091{bottom:300.270000px;}
.y14_c00091{bottom:317.220000px;}
.y13_c00091{bottom:335.070000px;}
.y12_c00091{bottom:352.320000px;}
.y11_c00091{bottom:386.370000px;}
.y10_c00091{bottom:424.470000px;}
.yf_c00091{bottom:450.120000px;}
.ye_c00091{bottom:474.870000px;}
.yd_c00091{bottom:499.470000px;}
.yc_c00091{bottom:524.820000px;}
.yb_c00091{bottom:549.420000px;}
.ya_c00091{bottom:574.020000px;}
.y9_c00091{bottom:599.070000px;}
.y8_c00091{bottom:623.970000px;}
.y7_c00091{bottom:649.020000px;}
.y6_c00091{bottom:674.370000px;}
.y5_c00091{bottom:697.920000px;}
.y4_c00091{bottom:724.170000px;}
.y3_c00091{bottom:748.920000px;}
.y2_c00091{bottom:773.220000px;}
.y1_c00091{bottom:798.420000px;}
.h7_c00091{height:13.200073px;}
.h8_c00091{height:43.804688px;}
.h4_c00091{height:64.571777px;}
.h3_c00091{height:75.966797px;}
.h2_c00091{height:87.361816px;}
.h6_c00091{height:94.958496px;}
.h5_c00091{height:110.151855px;}
.h0_c00091{height:842.100000px;}
.h1_c00091{height:842.250000px;}
.w2_c00091{width:104.875500px;}
.w1_c00091{width:564.750000px;}
.w0_c00091{width:564.825000px;}
.x0_c00091{left:0.000000px;}
.x12_c00091{left:42.600000px;}
.x8_c00091{left:50.250000px;}
.x3_c00091{left:53.700000px;}
.x5_c00091{left:54.750000px;}
.x9_c00091{left:64.800000px;}
.x7_c00091{left:67.200000px;}
.x2_c00091{left:69.150000px;}
.x11_c00091{left:108.300000px;}
.xe_c00091{left:112.350000px;}
.xb_c00091{left:113.700000px;}
.xa_c00091{left:115.050000px;}
.x6_c00091{left:116.550000px;}
.x4_c00091{left:118.800000px;}
.xd_c00091{left:129.900000px;}
.x1_c00091{left:130.950000px;}
.x10_c00091{left:133.950000px;}
.xf_c00091{left:166.350000px;}
.x14_c00091{left:234.226730px;}
.xc_c00091{left:257.100000px;}
.x13_c00091{left:278.550000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.lsb_c00091{letter-spacing:-2.666667pt;}
.ls7_c00091{letter-spacing:0.000000pt;}
.ls6_c00091{letter-spacing:2.666667pt;}
.ls8_c00091{letter-spacing:5.333333pt;}
.ls5_c00091{letter-spacing:5.866667pt;}
.ls9_c00091{letter-spacing:8.000000pt;}
.ls2_c00091{letter-spacing:8.149333pt;}
.ls3_c00091{letter-spacing:11.824000pt;}
.ls4_c00091{letter-spacing:13.786667pt;}
.ls1_c00091{letter-spacing:15.024000pt;}
.ls0_c00091{letter-spacing:15.200000pt;}
.lsa_c00091{letter-spacing:24.000000pt;}
.ws5_c00091{word-spacing:-38.781333pt;}
.wse_c00091{word-spacing:-38.066667pt;}
.ws9_c00091{word-spacing:-30.666667pt;}
.wsa_c00091{word-spacing:-22.138667pt;}
.wsc_c00091{word-spacing:-14.781333pt;}
.ws8_c00091{word-spacing:-14.138667pt;}
.ws6_c00091{word-spacing:-10.282667pt;}
.wsd_c00091{word-spacing:-10.186667pt;}
.ws3_c00091{word-spacing:-10.000000pt;}
.ws4_c00091{word-spacing:-4.640000pt;}
.ws0_c00091{word-spacing:-2.080000pt;}
.wsf_c00091{word-spacing:0.000000pt;}
.wsb_c00091{word-spacing:0.469333pt;}
.ws1_c00091{word-spacing:0.480000pt;}
.ws2_c00091{word-spacing:5.800000pt;}
.ws7_c00091{word-spacing:6.336000pt;}
._2e_c00091{margin-left:-76.850667pt;}
._27_c00091{margin-left:-26.026667pt;}
._31_c00091{margin-left:-20.586667pt;}
._2c_c00091{margin-left:-14.202667pt;}
._9_c00091{margin-left:-13.226667pt;}
._19_c00091{margin-left:-11.893333pt;}
._23_c00091{margin-left:-10.584000pt;}
._8_c00091{margin-left:-9.600000pt;}
._7_c00091{margin-left:-8.266667pt;}
._a_c00091{margin-left:-6.933333pt;}
._2_c00091{margin-left:-6.010667pt;}
._15_c00091{margin-left:-4.738667pt;}
._16_c00091{margin-left:-3.610667pt;}
._0_c00091{margin-left:-2.698667pt;}
._1_c00091{margin-left:-1.165333pt;}
._6_c00091{width:0.981333pt;}
._5_c00091{width:2.024000pt;}
._c_c00091{width:2.936000pt;}
._4_c00091{width:4.232000pt;}
._d_c00091{width:5.312000pt;}
._12_c00091{width:6.720000pt;}
._18_c00091{width:7.626667pt;}
._13_c00091{width:8.693333pt;}
._1f_c00091{width:10.400000pt;}
._17_c00091{width:11.626667pt;}
._e_c00091{width:12.765333pt;}
._11_c00091{width:14.328000pt;}
._14_c00091{width:16.213333pt;}
._26_c00091{width:17.154667pt;}
._1b_c00091{width:18.120000pt;}
._20_c00091{width:19.437333pt;}
._10_c00091{width:22.986667pt;}
._21_c00091{width:24.400000pt;}
._1d_c00091{width:26.573333pt;}
._f_c00091{width:27.786667pt;}
._30_c00091{width:28.960000pt;}
._2a_c00091{width:33.749333pt;}
._2f_c00091{width:47.656000pt;}
._22_c00091{width:62.170667pt;}
._b_c00091{width:68.213333pt;}
._25_c00091{width:80.858667pt;}
._24_c00091{width:82.696000pt;}
._1a_c00091{width:86.560000pt;}
._1e_c00091{width:88.485333pt;}
._1c_c00091{width:119.213333pt;}
._28_c00091{width:121.013333pt;}
._32_c00091{width:143.946667pt;}
._33_c00091{width:311.501333pt;}
._3_c00091{width:335.077333pt;}
._29_c00091{width:443.349333pt;}
._2b_c00091{width:719.002667pt;}
._34_c00091{width:821.106667pt;}
._2d_c00091{width:846.976000pt;}
.fs2_c00091{font-size:40.000000pt;}
.fs4_c00091{font-size:42.666667pt;}
.fs3_c00091{font-size:45.333333pt;}
.fs1_c00091{font-size:53.333333pt;}
.fs5_c00091{font-size:58.666667pt;}
.fs0_c00091{font-size:61.333333pt;}
.fs7_c00091{font-size:66.666667pt;}
.fs6_c00091{font-size:77.333333pt;}
.y0_c00091{bottom:0.000000pt;}
.y1e_c00091{bottom:2.760000pt;}
.y1d_c00091{bottom:6.425217pt;}
.y1c_c00091{bottom:60.640000pt;}
.y1b_c00091{bottom:81.573333pt;}
.y1a_c00091{bottom:104.373333pt;}
.y19_c00091{bottom:127.840000pt;}
.y18_c00091{bottom:150.506667pt;}
.y17_c00091{bottom:173.306667pt;}
.y16_c00091{bottom:223.173333pt;}
.y15_c00091{bottom:266.906667pt;}
.y14_c00091{bottom:281.973333pt;}
.y13_c00091{bottom:297.840000pt;}
.y12_c00091{bottom:313.173333pt;}
.y11_c00091{bottom:343.440000pt;}
.y10_c00091{bottom:377.306667pt;}
.yf_c00091{bottom:400.106667pt;}
.ye_c00091{bottom:422.106667pt;}
.yd_c00091{bottom:443.973333pt;}
.yc_c00091{bottom:466.506667pt;}
.yb_c00091{bottom:488.373333pt;}
.ya_c00091{bottom:510.240000pt;}
.y9_c00091{bottom:532.506667pt;}
.y8_c00091{bottom:554.640000pt;}
.y7_c00091{bottom:576.906667pt;}
.y6_c00091{bottom:599.440000pt;}
.y5_c00091{bottom:620.373333pt;}
.y4_c00091{bottom:643.706667pt;}
.y3_c00091{bottom:665.706667pt;}
.y2_c00091{bottom:687.306667pt;}
.y1_c00091{bottom:709.706667pt;}
.h7_c00091{height:11.733399pt;}
.h8_c00091{height:38.937500pt;}
.h4_c00091{height:57.397135pt;}
.h3_c00091{height:67.526042pt;}
.h2_c00091{height:77.654948pt;}
.h6_c00091{height:84.407552pt;}
.h5_c00091{height:97.912760pt;}
.h0_c00091{height:748.533333pt;}
.h1_c00091{height:748.666667pt;}
.w2_c00091{width:93.222667pt;}
.w1_c00091{width:502.000000pt;}
.w0_c00091{width:502.066667pt;}
.x0_c00091{left:0.000000pt;}
.x12_c00091{left:37.866667pt;}
.x8_c00091{left:44.666667pt;}
.x3_c00091{left:47.733333pt;}
.x5_c00091{left:48.666667pt;}
.x9_c00091{left:57.600000pt;}
.x7_c00091{left:59.733333pt;}
.x2_c00091{left:61.466667pt;}
.x11_c00091{left:96.266667pt;}
.xe_c00091{left:99.866667pt;}
.xb_c00091{left:101.066667pt;}
.xa_c00091{left:102.266667pt;}
.x6_c00091{left:103.600000pt;}
.x4_c00091{left:105.600000pt;}
.xd_c00091{left:115.466667pt;}
.x1_c00091{left:116.400000pt;}
.x10_c00091{left:119.066667pt;}
.xf_c00091{left:147.866667pt;}
.x14_c00091{left:208.201538pt;}
.xc_c00091{left:228.533333pt;}
.x13_c00091{left:247.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_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_96c58bbb53e7dcfcf25c4d23.woff2')format("woff");}.ff1_c00092{font-family:ff1_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:ff2_c00092;src:url('chunks/assets/font_95eb1116e782f037380f9b7d.woff2')format("woff");}.ff2_c00092{font-family:ff2_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:ff3_c00092;src:url('chunks/assets/font_12576ad72145eceea8198bbd.woff2')format("woff");}.ff3_c00092{font-family:ff3_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:ff4_c00092;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00092{font-family:ff4_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;}
.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:1.560000px;}
.ls2_c00092{letter-spacing:3.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00092{word-spacing:-56.235000px;}
.ws4_c00092{word-spacing:-44.988000px;}
.ws0_c00092{word-spacing:-16.629000px;}
.ws1_c00092{word-spacing:-1.104000px;}
.ws5_c00092{word-spacing:0.000000px;}
.ws2_c00092{word-spacing:4.140000px;}
._13_c00092{margin-left:-31.188000px;}
._25_c00092{margin-left:-29.049000px;}
._14_c00092{margin-left:-18.078000px;}
._22_c00092{margin-left:-16.770000px;}
._16_c00092{margin-left:-14.973000px;}
._26_c00092{margin-left:-13.662000px;}
._11_c00092{margin-left:-11.592000px;}
._1d_c00092{margin-left:-9.807000px;}
._17_c00092{margin-left:-7.797000px;}
._3_c00092{margin-left:-6.132000px;}
._18_c00092{margin-left:-4.980000px;}
._1e_c00092{margin-left:-3.501000px;}
._1_c00092{margin-left:-2.484000px;}
._2_c00092{margin-left:-1.449000px;}
._b_c00092{width:1.035000px;}
._0_c00092{width:2.139000px;}
._5_c00092{width:3.726000px;}
._e_c00092{width:4.830000px;}
._6_c00092{width:6.210000px;}
._a_c00092{width:7.314000px;}
._7_c00092{width:8.970000px;}
._9_c00092{width:10.143000px;}
._8_c00092{width:11.385000px;}
._f_c00092{width:13.317000px;}
._c_c00092{width:14.352000px;}
._19_c00092{width:16.248000px;}
._10_c00092{width:17.700000px;}
._1f_c00092{width:19.596000px;}
._1b_c00092{width:23.058000px;}
._1a_c00092{width:24.558000px;}
._21_c00092{width:34.161000px;}
._15_c00092{width:35.673000px;}
._1c_c00092{width:36.777000px;}
._12_c00092{width:47.607000px;}
._23_c00092{width:49.200000px;}
._20_c00092{width:53.265000px;}
._29_c00092{width:77.901000px;}
._27_c00092{width:105.636000px;}
._24_c00092{width:154.113000px;}
._28_c00092{width:178.011000px;}
._2a_c00092{width:274.068000px;}
._4_c00092{width:490.038000px;}
._d_c00092{width:503.631000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(128,128,128);}
.fc0_c00092{color:rgb(0,0,0);}
.fs2_c00092{font-size:48.000000px;}
.fs1_c00092{font-size:55.200000px;}
.fs0_c00092{font-size:69.000000px;}
.y0_c00092{bottom:0.000000px;}
.y1e_c00092{bottom:3.105000px;}
.y1d_c00092{bottom:7.228371px;}
.y1c_c00092{bottom:69.915000px;}
.y1b_c00092{bottom:93.615000px;}
.y1a_c00092{bottom:119.565000px;}
.y19_c00092{bottom:144.165000px;}
.y18_c00092{bottom:166.515000px;}
.y17_c00092{bottom:193.515000px;}
.y16_c00092{bottom:218.415000px;}
.y15_c00092{bottom:243.315000px;}
.y14_c00092{bottom:267.015000px;}
.y13_c00092{bottom:295.665000px;}
.y12_c00092{bottom:317.715000px;}
.y11_c00092{bottom:366.615000px;}
.y10_c00092{bottom:417.165000px;}
.yf_c00092{bottom:441.915000px;}
.ye_c00092{bottom:466.065000px;}
.yd_c00092{bottom:491.115000px;}
.yc_c00092{bottom:514.365000px;}
.yb_c00092{bottom:540.015000px;}
.ya_c00092{bottom:564.765000px;}
.y9_c00092{bottom:589.665000px;}
.y8_c00092{bottom:614.565000px;}
.y7_c00092{bottom:639.615000px;}
.y6_c00092{bottom:664.215000px;}
.y5_c00092{bottom:689.265000px;}
.y4_c00092{bottom:714.465000px;}
.y3_c00092{bottom:738.915000px;}
.y2_c00092{bottom:763.815000px;}
.y1_c00092{bottom:789.165000px;}
.h4_c00092{height:13.200074px;}
.h5_c00092{height:43.804688px;}
.h3_c00092{height:80.758301px;}
.h2_c00092{height:87.361816px;}
.h1_c00092{height:831.000000px;}
.h0_c00092{height:831.075000px;}
.w1_c00092{width:104.875500px;}
.w0_c00092{width:557.250000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:25.350000px;}
.x2_c00092{left:26.400000px;}
.x4_c00092{left:27.750000px;}
.x7_c00092{left:29.400000px;}
.x6_c00092{left:51.300000px;}
.x5_c00092{left:72.000000px;}
.x1_c00092{left:192.150000px;}
.x9_c00092{left:230.439240px;}
.x8_c00092{left:259.200000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:1.386667pt;}
.ls2_c00092{letter-spacing:2.666667pt;}
.ws3_c00092{word-spacing:-49.986667pt;}
.ws4_c00092{word-spacing:-39.989333pt;}
.ws0_c00092{word-spacing:-14.781333pt;}
.ws1_c00092{word-spacing:-0.981333pt;}
.ws5_c00092{word-spacing:0.000000pt;}
.ws2_c00092{word-spacing:3.680000pt;}
._13_c00092{margin-left:-27.722667pt;}
._25_c00092{margin-left:-25.821333pt;}
._14_c00092{margin-left:-16.069333pt;}
._22_c00092{margin-left:-14.906667pt;}
._16_c00092{margin-left:-13.309333pt;}
._26_c00092{margin-left:-12.144000pt;}
._11_c00092{margin-left:-10.304000pt;}
._1d_c00092{margin-left:-8.717333pt;}
._17_c00092{margin-left:-6.930667pt;}
._3_c00092{margin-left:-5.450667pt;}
._18_c00092{margin-left:-4.426667pt;}
._1e_c00092{margin-left:-3.112000pt;}
._1_c00092{margin-left:-2.208000pt;}
._2_c00092{margin-left:-1.288000pt;}
._b_c00092{width:0.920000pt;}
._0_c00092{width:1.901333pt;}
._5_c00092{width:3.312000pt;}
._e_c00092{width:4.293333pt;}
._6_c00092{width:5.520000pt;}
._a_c00092{width:6.501333pt;}
._7_c00092{width:7.973333pt;}
._9_c00092{width:9.016000pt;}
._8_c00092{width:10.120000pt;}
._f_c00092{width:11.837333pt;}
._c_c00092{width:12.757333pt;}
._19_c00092{width:14.442667pt;}
._10_c00092{width:15.733333pt;}
._1f_c00092{width:17.418667pt;}
._1b_c00092{width:20.496000pt;}
._1a_c00092{width:21.829333pt;}
._21_c00092{width:30.365333pt;}
._15_c00092{width:31.709333pt;}
._1c_c00092{width:32.690667pt;}
._12_c00092{width:42.317333pt;}
._23_c00092{width:43.733333pt;}
._20_c00092{width:47.346667pt;}
._29_c00092{width:69.245333pt;}
._27_c00092{width:93.898667pt;}
._24_c00092{width:136.989333pt;}
._28_c00092{width:158.232000pt;}
._2a_c00092{width:243.616000pt;}
._4_c00092{width:435.589333pt;}
._d_c00092{width:447.672000pt;}
.fs2_c00092{font-size:42.666667pt;}
.fs1_c00092{font-size:49.066667pt;}
.fs0_c00092{font-size:61.333333pt;}
.y0_c00092{bottom:0.000000pt;}
.y1e_c00092{bottom:2.760000pt;}
.y1d_c00092{bottom:6.425219pt;}
.y1c_c00092{bottom:62.146667pt;}
.y1b_c00092{bottom:83.213333pt;}
.y1a_c00092{bottom:106.280000pt;}
.y19_c00092{bottom:128.146667pt;}
.y18_c00092{bottom:148.013333pt;}
.y17_c00092{bottom:172.013333pt;}
.y16_c00092{bottom:194.146667pt;}
.y15_c00092{bottom:216.280000pt;}
.y14_c00092{bottom:237.346667pt;}
.y13_c00092{bottom:262.813333pt;}
.y12_c00092{bottom:282.413333pt;}
.y11_c00092{bottom:325.880000pt;}
.y10_c00092{bottom:370.813333pt;}
.yf_c00092{bottom:392.813333pt;}
.ye_c00092{bottom:414.280000pt;}
.yd_c00092{bottom:436.546667pt;}
.yc_c00092{bottom:457.213333pt;}
.yb_c00092{bottom:480.013333pt;}
.ya_c00092{bottom:502.013333pt;}
.y9_c00092{bottom:524.146667pt;}
.y8_c00092{bottom:546.280000pt;}
.y7_c00092{bottom:568.546667pt;}
.y6_c00092{bottom:590.413333pt;}
.y5_c00092{bottom:612.680000pt;}
.y4_c00092{bottom:635.080000pt;}
.y3_c00092{bottom:656.813333pt;}
.y2_c00092{bottom:678.946667pt;}
.y1_c00092{bottom:701.480000pt;}
.h4_c00092{height:11.733399pt;}
.h5_c00092{height:38.937500pt;}
.h3_c00092{height:71.785156pt;}
.h2_c00092{height:77.654948pt;}
.h1_c00092{height:738.666667pt;}
.h0_c00092{height:738.733333pt;}
.w1_c00092{width:93.222667pt;}
.w0_c00092{width:495.333333pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:22.533333pt;}
.x2_c00092{left:23.466667pt;}
.x4_c00092{left:24.666667pt;}
.x7_c00092{left:26.133333pt;}
.x6_c00092{left:45.600000pt;}
.x5_c00092{left:64.000000pt;}
.x1_c00092{left:170.800000pt;}
.x9_c00092{left:204.834880pt;}
.x8_c00092{left:230.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62daaf596b3172a6e85dfd89.woff2')format("woff");}.ff1_c00093{font-family:ff1_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:ff2_c00093;src:url('chunks/assets/font_548615e13bd447ae160364cf.woff2')format("woff");}.ff2_c00093{font-family:ff2_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:ff3_c00093;src:url('chunks/assets/font_5bba5aedf5c5c573f10764bf.woff2')format("woff");}.ff3_c00093{font-family:ff3_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:ff4_c00093;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00093{font-family:ff4_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:ff5_c00093;src:url('chunks/assets/font_26e43583e5082a7b5cd77235.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;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_c00093;src:url('chunks/assets/font_3cbf88420cd2c86266c97502.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_a4102fd19ea0a259f33431d1.woff2')format("woff");}.ff7_c00093{font-family:ff7_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:ff8_c00093;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00093{font-family:ff8_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;}
.ls8_c00093{letter-spacing:0.000000px;}
.ls4_c00093{letter-spacing:3.000000px;}
.ls3_c00093{letter-spacing:4.971000px;}
.ls5_c00093{letter-spacing:7.584000px;}
.ls0_c00093{letter-spacing:12.291000px;}
.ls7_c00093{letter-spacing:16.800000px;}
.ls2_c00093{letter-spacing:17.325000px;}
.ls1_c00093{letter-spacing:18.600000px;}
.ls6_c00093{letter-spacing:21.000000px;}
.ls9_c00093{letter-spacing:30.000000px;}
.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:-49.182000px;}
.ws1_c00093{word-spacing:-20.250000px;}
.ws0_c00093{word-spacing:-16.629000px;}
.ws6_c00093{word-spacing:0.000000px;}
.ws5_c00093{word-spacing:0.966000px;}
.ws3_c00093{word-spacing:1.311000px;}
.ws4_c00093{word-spacing:9.384000px;}
._14_c00093{margin-left:-43.377000px;}
._1f_c00093{margin-left:-32.082000px;}
._0_c00093{margin-left:-18.906000px;}
._a_c00093{margin-left:-15.870000px;}
._2b_c00093{margin-left:-14.829000px;}
._12_c00093{margin-left:-13.197000px;}
._21_c00093{margin-left:-11.613000px;}
._6_c00093{margin-left:-10.557000px;}
._5_c00093{margin-left:-8.142000px;}
._9_c00093{margin-left:-6.921000px;}
._20_c00093{margin-left:-5.880000px;}
._10_c00093{margin-left:-4.563000px;}
._c_c00093{margin-left:-3.312000px;}
._2_c00093{margin-left:-2.208000px;}
._13_c00093{margin-left:-1.092000px;}
._3_c00093{width:1.311000px;}
._8_c00093{width:2.967000px;}
._16_c00093{width:4.044000px;}
._e_c00093{width:5.106000px;}
._11_c00093{width:6.849000px;}
._4_c00093{width:7.935000px;}
._d_c00093{width:8.979000px;}
._f_c00093{width:10.434000px;}
._1e_c00093{width:12.012000px;}
._18_c00093{width:13.074000px;}
._1d_c00093{width:14.259000px;}
._17_c00093{width:16.017000px;}
._23_c00093{width:17.592000px;}
._29_c00093{width:18.630000px;}
._1b_c00093{width:19.680000px;}
._26_c00093{width:20.988000px;}
._19_c00093{width:22.134000px;}
._2f_c00093{width:23.184000px;}
._28_c00093{width:24.675000px;}
._1c_c00093{width:26.547000px;}
._25_c00093{width:28.443000px;}
._2c_c00093{width:29.493000px;}
._2a_c00093{width:45.687000px;}
._27_c00093{width:47.604000px;}
._24_c00093{width:58.125000px;}
._b_c00093{width:74.556000px;}
._2e_c00093{width:78.792000px;}
._2d_c00093{width:82.554000px;}
._15_c00093{width:106.950000px;}
._7_c00093{width:117.741000px;}
._22_c00093{width:183.267000px;}
._1_c00093{width:376.671000px;}
._1a_c00093{width:838.152000px;}
._30_c00093{width:1451.298000px;}
.fc2_c00093{color:transparent;}
.fc1_c00093{color:rgb(128,128,128);}
.fc0_c00093{color:rgb(0,0,0);}
.fs2_c00093{font-size:48.000000px;}
.fs1_c00093{font-size:66.000000px;}
.fs0_c00093{font-size:69.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1d_c00093{bottom:3.105000px;}
.y1c_c00093{bottom:7.228371px;}
.y1b_c00093{bottom:71.565000px;}
.y1a_c00093{bottom:98.565000px;}
.y19_c00093{bottom:123.315000px;}
.y18_c00093{bottom:148.965000px;}
.y17_c00093{bottom:173.865000px;}
.y16_c00093{bottom:198.915000px;}
.y15_c00093{bottom:217.665000px;}
.y14_c00093{bottom:248.865000px;}
.y13_c00093{bottom:299.115000px;}
.y12_c00093{bottom:323.415000px;}
.y11_c00093{bottom:348.765000px;}
.y10_c00093{bottom:372.315000px;}
.yf_c00093{bottom:397.665000px;}
.ye_c00093{bottom:423.015000px;}
.yd_c00093{bottom:448.515000px;}
.yc_c00093{bottom:473.565000px;}
.yb_c00093{bottom:498.165000px;}
.ya_c00093{bottom:522.915000px;}
.y9_c00093{bottom:548.115000px;}
.y8_c00093{bottom:572.715000px;}
.y7_c00093{bottom:598.815000px;}
.y6_c00093{bottom:623.415000px;}
.y5_c00093{bottom:673.665000px;}
.y4_c00093{bottom:723.915000px;}
.y3_c00093{bottom:748.215000px;}
.y2_c00093{bottom:773.565000px;}
.y1_c00093{bottom:798.615000px;}
.h5_c00093{height:13.200074px;}
.h6_c00093{height:43.804688px;}
.h3_c00093{height:69.539062px;}
.h4_c00093{height:80.758301px;}
.h2_c00093{height:87.361816px;}
.h0_c00093{height:839.175000px;}
.h1_c00093{height:839.250000px;}
.w2_c00093{width:104.875500px;}
.w1_c00093{width:562.500000px;}
.w0_c00093{width:562.650000px;}
.x0_c00093{left:0.000000px;}
.xb_c00093{left:34.050000px;}
.x8_c00093{left:39.150000px;}
.x2_c00093{left:54.000000px;}
.x3_c00093{left:62.400000px;}
.x11_c00093{left:68.400000px;}
.x10_c00093{left:92.100000px;}
.xd_c00093{left:97.800000px;}
.xc_c00093{left:99.450000px;}
.xa_c00093{left:100.500000px;}
.x9_c00093{left:101.550000px;}
.x7_c00093{left:102.900000px;}
.x4_c00093{left:104.850000px;}
.x1_c00093{left:118.500000px;}
.x12_c00093{left:123.900000px;}
.x6_c00093{left:128.250000px;}
.xe_c00093{left:141.000000px;}
.x5_c00093{left:159.000000px;}
.x13_c00093{left:233.139267px;}
.xf_c00093{left:392.100000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls8_c00093{letter-spacing:0.000000pt;}
.ls4_c00093{letter-spacing:2.666667pt;}
.ls3_c00093{letter-spacing:4.418667pt;}
.ls5_c00093{letter-spacing:6.741333pt;}
.ls0_c00093{letter-spacing:10.925333pt;}
.ls7_c00093{letter-spacing:14.933333pt;}
.ls2_c00093{letter-spacing:15.400000pt;}
.ls1_c00093{letter-spacing:16.533333pt;}
.ls6_c00093{letter-spacing:18.666667pt;}
.ls9_c00093{letter-spacing:26.666667pt;}
.ws2_c00093{word-spacing:-43.717333pt;}
.ws1_c00093{word-spacing:-18.000000pt;}
.ws0_c00093{word-spacing:-14.781333pt;}
.ws6_c00093{word-spacing:0.000000pt;}
.ws5_c00093{word-spacing:0.858667pt;}
.ws3_c00093{word-spacing:1.165333pt;}
.ws4_c00093{word-spacing:8.341333pt;}
._14_c00093{margin-left:-38.557333pt;}
._1f_c00093{margin-left:-28.517333pt;}
._0_c00093{margin-left:-16.805333pt;}
._a_c00093{margin-left:-14.106667pt;}
._2b_c00093{margin-left:-13.181333pt;}
._12_c00093{margin-left:-11.730667pt;}
._21_c00093{margin-left:-10.322667pt;}
._6_c00093{margin-left:-9.384000pt;}
._5_c00093{margin-left:-7.237333pt;}
._9_c00093{margin-left:-6.152000pt;}
._20_c00093{margin-left:-5.226667pt;}
._10_c00093{margin-left:-4.056000pt;}
._c_c00093{margin-left:-2.944000pt;}
._2_c00093{margin-left:-1.962667pt;}
._13_c00093{margin-left:-0.970667pt;}
._3_c00093{width:1.165333pt;}
._8_c00093{width:2.637333pt;}
._16_c00093{width:3.594667pt;}
._e_c00093{width:4.538667pt;}
._11_c00093{width:6.088000pt;}
._4_c00093{width:7.053333pt;}
._d_c00093{width:7.981333pt;}
._f_c00093{width:9.274667pt;}
._1e_c00093{width:10.677333pt;}
._18_c00093{width:11.621333pt;}
._1d_c00093{width:12.674667pt;}
._17_c00093{width:14.237333pt;}
._23_c00093{width:15.637333pt;}
._29_c00093{width:16.560000pt;}
._1b_c00093{width:17.493333pt;}
._26_c00093{width:18.656000pt;}
._19_c00093{width:19.674667pt;}
._2f_c00093{width:20.608000pt;}
._28_c00093{width:21.933333pt;}
._1c_c00093{width:23.597333pt;}
._25_c00093{width:25.282667pt;}
._2c_c00093{width:26.216000pt;}
._2a_c00093{width:40.610667pt;}
._27_c00093{width:42.314667pt;}
._24_c00093{width:51.666667pt;}
._b_c00093{width:66.272000pt;}
._2e_c00093{width:70.037333pt;}
._2d_c00093{width:73.381333pt;}
._15_c00093{width:95.066667pt;}
._7_c00093{width:104.658667pt;}
._22_c00093{width:162.904000pt;}
._1_c00093{width:334.818667pt;}
._1a_c00093{width:745.024000pt;}
._30_c00093{width:1290.042667pt;}
.fs2_c00093{font-size:42.666667pt;}
.fs1_c00093{font-size:58.666667pt;}
.fs0_c00093{font-size:61.333333pt;}
.y0_c00093{bottom:0.000000pt;}
.y1d_c00093{bottom:2.760000pt;}
.y1c_c00093{bottom:6.425219pt;}
.y1b_c00093{bottom:63.613333pt;}
.y1a_c00093{bottom:87.613333pt;}
.y19_c00093{bottom:109.613333pt;}
.y18_c00093{bottom:132.413333pt;}
.y17_c00093{bottom:154.546667pt;}
.y16_c00093{bottom:176.813333pt;}
.y15_c00093{bottom:193.480000pt;}
.y14_c00093{bottom:221.213333pt;}
.y13_c00093{bottom:265.880000pt;}
.y12_c00093{bottom:287.480000pt;}
.y11_c00093{bottom:310.013333pt;}
.y10_c00093{bottom:330.946667pt;}
.yf_c00093{bottom:353.480000pt;}
.ye_c00093{bottom:376.013333pt;}
.yd_c00093{bottom:398.680000pt;}
.yc_c00093{bottom:420.946667pt;}
.yb_c00093{bottom:442.813333pt;}
.ya_c00093{bottom:464.813333pt;}
.y9_c00093{bottom:487.213333pt;}
.y8_c00093{bottom:509.080000pt;}
.y7_c00093{bottom:532.280000pt;}
.y6_c00093{bottom:554.146667pt;}
.y5_c00093{bottom:598.813333pt;}
.y4_c00093{bottom:643.480000pt;}
.y3_c00093{bottom:665.080000pt;}
.y2_c00093{bottom:687.613333pt;}
.y1_c00093{bottom:709.880000pt;}
.h5_c00093{height:11.733399pt;}
.h6_c00093{height:38.937500pt;}
.h3_c00093{height:61.812500pt;}
.h4_c00093{height:71.785156pt;}
.h2_c00093{height:77.654948pt;}
.h0_c00093{height:745.933333pt;}
.h1_c00093{height:746.000000pt;}
.w2_c00093{width:93.222667pt;}
.w1_c00093{width:500.000000pt;}
.w0_c00093{width:500.133333pt;}
.x0_c00093{left:0.000000pt;}
.xb_c00093{left:30.266667pt;}
.x8_c00093{left:34.800000pt;}
.x2_c00093{left:48.000000pt;}
.x3_c00093{left:55.466667pt;}
.x11_c00093{left:60.800000pt;}
.x10_c00093{left:81.866667pt;}
.xd_c00093{left:86.933333pt;}
.xc_c00093{left:88.400000pt;}
.xa_c00093{left:89.333333pt;}
.x9_c00093{left:90.266667pt;}
.x7_c00093{left:91.466667pt;}
.x4_c00093{left:93.200000pt;}
.x1_c00093{left:105.333333pt;}
.x12_c00093{left:110.133333pt;}
.x6_c00093{left:114.000000pt;}
.xe_c00093{left:125.333333pt;}
.x5_c00093{left:141.333333pt;}
.x13_c00093{left:207.234904pt;}
.xf_c00093{left:348.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_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_daab20dc658f8de335391fdf.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_74ee081782b1d7005732bbc0.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_d8fe2281806f353144fc9b82.woff2')format("woff");}.ff3_c00094{font-family:ff3_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:ff4_c00094;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00094{font-family:ff5_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;}
.ls3_c00094{letter-spacing:0.000000px;}
.ls4_c00094{letter-spacing:3.000000px;}
.ls0_c00094{letter-spacing:3.921000px;}
.ls1_c00094{letter-spacing:10.725000px;}
.ls2_c00094{letter-spacing:11.400000px;}
.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:-33.825000px;}
.ws2_c00094{word-spacing:-19.629000px;}
.ws1_c00094{word-spacing:-16.629000px;}
.ws3_c00094{word-spacing:0.000000px;}
._22_c00094{margin-left:-26.427000px;}
._5_c00094{margin-left:-21.321000px;}
._9_c00094{margin-left:-16.629000px;}
._f_c00094{margin-left:-14.490000px;}
._e_c00094{margin-left:-12.909000px;}
._b_c00094{margin-left:-11.454000px;}
._c_c00094{margin-left:-9.660000px;}
._10_c00094{margin-left:-7.935000px;}
._a_c00094{margin-left:-6.831000px;}
._6_c00094{margin-left:-4.830000px;}
._3_c00094{margin-left:-3.450000px;}
._2_c00094{margin-left:-2.346000px;}
._d_c00094{margin-left:-1.311000px;}
._0_c00094{width:1.587000px;}
._12_c00094{width:2.622000px;}
._8_c00094{width:3.657000px;}
._11_c00094{width:4.692000px;}
._15_c00094{width:6.141000px;}
._7_c00094{width:7.659000px;}
._1b_c00094{width:8.661000px;}
._16_c00094{width:9.798000px;}
._18_c00094{width:10.902000px;}
._1f_c00094{width:11.937000px;}
._14_c00094{width:12.972000px;}
._13_c00094{width:14.076000px;}
._1a_c00094{width:15.456000px;}
._19_c00094{width:17.181000px;}
._1_c00094{width:18.837000px;}
._20_c00094{width:21.216000px;}
._23_c00094{width:23.940000px;}
._26_c00094{width:25.599000px;}
._24_c00094{width:28.911000px;}
._1e_c00094{width:30.912000px;}
._17_c00094{width:33.534000px;}
._28_c00094{width:36.342000px;}
._27_c00094{width:41.916000px;}
._25_c00094{width:93.822000px;}
._4_c00094{width:117.033000px;}
._21_c00094{width:168.015000px;}
._1d_c00094{width:180.918000px;}
._1c_c00094{width:394.710000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(128,128,128);}
.fc0_c00094{color:rgb(0,0,0);}
.fs3_c00094{font-size:48.000000px;}
.fs2_c00094{font-size:66.000000px;}
.fs0_c00094{font-size:69.000000px;}
.fs1_c00094{font-size:75.000000px;}
.y0_c00094{bottom:0.000000px;}
.y21_c00094{bottom:3.105000px;}
.y20_c00094{bottom:7.228371px;}
.y1e_c00094{bottom:69.315000px;}
.y1d_c00094{bottom:93.165000px;}
.y1c_c00094{bottom:118.515000px;}
.y1b_c00094{bottom:143.415000px;}
.y1a_c00094{bottom:168.465000px;}
.y19_c00094{bottom:193.365000px;}
.y1f_c00094{bottom:200.115000px;}
.y18_c00094{bottom:218.715000px;}
.y17_c00094{bottom:244.065000px;}
.y16_c00094{bottom:268.665000px;}
.y15_c00094{bottom:293.265000px;}
.y14_c00094{bottom:318.615000px;}
.y13_c00094{bottom:343.365000px;}
.y12_c00094{bottom:368.265000px;}
.y11_c00094{bottom:393.165000px;}
.y10_c00094{bottom:417.615000px;}
.yf_c00094{bottom:442.815000px;}
.ye_c00094{bottom:467.565000px;}
.yd_c00094{bottom:492.465000px;}
.yc_c00094{bottom:516.765000px;}
.yb_c00094{bottom:541.065000px;}
.ya_c00094{bottom:566.115000px;}
.y9_c00094{bottom:590.715000px;}
.y8_c00094{bottom:615.765000px;}
.y7_c00094{bottom:640.665000px;}
.y6_c00094{bottom:665.565000px;}
.y5_c00094{bottom:690.615000px;}
.y4_c00094{bottom:715.815000px;}
.y3_c00094{bottom:741.165000px;}
.y2_c00094{bottom:766.215000px;}
.y1_c00094{bottom:791.115000px;}
.h7_c00094{height:13.200074px;}
.h8_c00094{height:43.804688px;}
.h6_c00094{height:56.179688px;}
.h4_c00094{height:80.758301px;}
.h2_c00094{height:87.361816px;}
.h3_c00094{height:87.780762px;}
.h5_c00094{height:87.961816px;}
.h1_c00094{height:831.000000px;}
.h0_c00094{height:831.075000px;}
.w1_c00094{width:104.875500px;}
.w0_c00094{width:557.250000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:28.650000px;}
.x4_c00094{left:30.750000px;}
.x5_c00094{left:31.800000px;}
.x6_c00094{left:33.450000px;}
.x8_c00094{left:35.100000px;}
.x9_c00094{left:36.150000px;}
.x3_c00094{left:53.400000px;}
.x7_c00094{left:57.150000px;}
.xa_c00094{left:59.700000px;}
.x1_c00094{left:188.700000px;}
.xd_c00094{left:230.439240px;}
.xb_c00094{left:458.100000px;}
.xc_c00094{left:490.500000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls3_c00094{letter-spacing:0.000000pt;}
.ls4_c00094{letter-spacing:2.666667pt;}
.ls0_c00094{letter-spacing:3.485333pt;}
.ls1_c00094{letter-spacing:9.533333pt;}
.ls2_c00094{letter-spacing:10.133333pt;}
.ws0_c00094{word-spacing:-30.066667pt;}
.ws2_c00094{word-spacing:-17.448000pt;}
.ws1_c00094{word-spacing:-14.781333pt;}
.ws3_c00094{word-spacing:0.000000pt;}
._22_c00094{margin-left:-23.490667pt;}
._5_c00094{margin-left:-18.952000pt;}
._9_c00094{margin-left:-14.781333pt;}
._f_c00094{margin-left:-12.880000pt;}
._e_c00094{margin-left:-11.474667pt;}
._b_c00094{margin-left:-10.181333pt;}
._c_c00094{margin-left:-8.586667pt;}
._10_c00094{margin-left:-7.053333pt;}
._a_c00094{margin-left:-6.072000pt;}
._6_c00094{margin-left:-4.293333pt;}
._3_c00094{margin-left:-3.066667pt;}
._2_c00094{margin-left:-2.085333pt;}
._d_c00094{margin-left:-1.165333pt;}
._0_c00094{width:1.410667pt;}
._12_c00094{width:2.330667pt;}
._8_c00094{width:3.250667pt;}
._11_c00094{width:4.170667pt;}
._15_c00094{width:5.458667pt;}
._7_c00094{width:6.808000pt;}
._1b_c00094{width:7.698667pt;}
._16_c00094{width:8.709333pt;}
._18_c00094{width:9.690667pt;}
._1f_c00094{width:10.610667pt;}
._14_c00094{width:11.530667pt;}
._13_c00094{width:12.512000pt;}
._1a_c00094{width:13.738667pt;}
._19_c00094{width:15.272000pt;}
._1_c00094{width:16.744000pt;}
._20_c00094{width:18.858667pt;}
._23_c00094{width:21.280000pt;}
._26_c00094{width:22.754667pt;}
._24_c00094{width:25.698667pt;}
._1e_c00094{width:27.477333pt;}
._17_c00094{width:29.808000pt;}
._28_c00094{width:32.304000pt;}
._27_c00094{width:37.258667pt;}
._25_c00094{width:83.397333pt;}
._4_c00094{width:104.029333pt;}
._21_c00094{width:149.346667pt;}
._1d_c00094{width:160.816000pt;}
._1c_c00094{width:350.853333pt;}
.fs3_c00094{font-size:42.666667pt;}
.fs2_c00094{font-size:58.666667pt;}
.fs0_c00094{font-size:61.333333pt;}
.fs1_c00094{font-size:66.666667pt;}
.y0_c00094{bottom:0.000000pt;}
.y21_c00094{bottom:2.760000pt;}
.y20_c00094{bottom:6.425219pt;}
.y1e_c00094{bottom:61.613333pt;}
.y1d_c00094{bottom:82.813333pt;}
.y1c_c00094{bottom:105.346667pt;}
.y1b_c00094{bottom:127.480000pt;}
.y1a_c00094{bottom:149.746667pt;}
.y19_c00094{bottom:171.880000pt;}
.y1f_c00094{bottom:177.880000pt;}
.y18_c00094{bottom:194.413333pt;}
.y17_c00094{bottom:216.946667pt;}
.y16_c00094{bottom:238.813333pt;}
.y15_c00094{bottom:260.680000pt;}
.y14_c00094{bottom:283.213333pt;}
.y13_c00094{bottom:305.213333pt;}
.y12_c00094{bottom:327.346667pt;}
.y11_c00094{bottom:349.480000pt;}
.y10_c00094{bottom:371.213333pt;}
.yf_c00094{bottom:393.613333pt;}
.ye_c00094{bottom:415.613333pt;}
.yd_c00094{bottom:437.746667pt;}
.yc_c00094{bottom:459.346667pt;}
.yb_c00094{bottom:480.946667pt;}
.ya_c00094{bottom:503.213333pt;}
.y9_c00094{bottom:525.080000pt;}
.y8_c00094{bottom:547.346667pt;}
.y7_c00094{bottom:569.480000pt;}
.y6_c00094{bottom:591.613333pt;}
.y5_c00094{bottom:613.880000pt;}
.y4_c00094{bottom:636.280000pt;}
.y3_c00094{bottom:658.813333pt;}
.y2_c00094{bottom:681.080000pt;}
.y1_c00094{bottom:703.213333pt;}
.h7_c00094{height:11.733399pt;}
.h8_c00094{height:38.937500pt;}
.h6_c00094{height:49.937500pt;}
.h4_c00094{height:71.785156pt;}
.h2_c00094{height:77.654948pt;}
.h3_c00094{height:78.027344pt;}
.h5_c00094{height:78.188281pt;}
.h1_c00094{height:738.666667pt;}
.h0_c00094{height:738.733333pt;}
.w1_c00094{width:93.222667pt;}
.w0_c00094{width:495.333333pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:25.466667pt;}
.x4_c00094{left:27.333333pt;}
.x5_c00094{left:28.266667pt;}
.x6_c00094{left:29.733333pt;}
.x8_c00094{left:31.200000pt;}
.x9_c00094{left:32.133333pt;}
.x3_c00094{left:47.466667pt;}
.x7_c00094{left:50.800000pt;}
.xa_c00094{left:53.066667pt;}
.x1_c00094{left:167.733333pt;}
.xd_c00094{left:204.834880pt;}
.xb_c00094{left:407.200000pt;}
.xc_c00094{left:436.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_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_6ad7f98f3bde4b0f2e14404a.woff2')format("woff");}.ff1_c00095{font-family:ff1_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:ff2_c00095;src:url('chunks/assets/font_cbf9ccde6ba32b018c7c257e.woff2')format("woff");}.ff2_c00095{font-family:ff2_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:ff3_c00095;src:url('chunks/assets/font_16aec2aea2d31beb048b953b.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00095{font-family:ff4_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;}
.ls3_c00095{letter-spacing:0.000000px;}
.ls2_c00095{letter-spacing:3.000000px;}
.ls0_c00095{letter-spacing:12.546000px;}
.ls1_c00095{letter-spacing:21.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00095{word-spacing:-47.022000px;}
.ws2_c00095{word-spacing:-19.629000px;}
.ws1_c00095{word-spacing:-16.629000px;}
.ws0_c00095{word-spacing:-1.128000px;}
.ws4_c00095{word-spacing:-0.633000px;}
.ws6_c00095{word-spacing:0.000000px;}
.ws5_c00095{word-spacing:5.073000px;}
._1c_c00095{margin-left:-19.458000px;}
._29_c00095{margin-left:-16.146000px;}
._1d_c00095{margin-left:-14.559000px;}
._1b_c00095{margin-left:-13.362000px;}
._1a_c00095{margin-left:-11.967000px;}
._0_c00095{margin-left:-9.753000px;}
._1_c00095{margin-left:-7.521000px;}
._8_c00095{margin-left:-6.072000px;}
._7_c00095{margin-left:-4.209000px;}
._6_c00095{margin-left:-3.174000px;}
._4_c00095{margin-left:-1.380000px;}
._3_c00095{width:1.725000px;}
._5_c00095{width:3.381000px;}
._9_c00095{width:4.554000px;}
._12_c00095{width:5.934000px;}
._c_c00095{width:7.590000px;}
._13_c00095{width:9.315000px;}
._f_c00095{width:10.557000px;}
._d_c00095{width:12.249000px;}
._15_c00095{width:13.317000px;}
._b_c00095{width:14.421000px;}
._e_c00095{width:16.146000px;}
._a_c00095{width:18.078000px;}
._10_c00095{width:19.317000px;}
._18_c00095{width:21.978000px;}
._23_c00095{width:23.592000px;}
._11_c00095{width:24.804000px;}
._24_c00095{width:26.394000px;}
._2a_c00095{width:28.914000px;}
._21_c00095{width:30.495000px;}
._27_c00095{width:32.499000px;}
._17_c00095{width:35.502000px;}
._25_c00095{width:37.914000px;}
._26_c00095{width:56.646000px;}
._14_c00095{width:87.114000px;}
._22_c00095{width:94.323000px;}
._19_c00095{width:99.843000px;}
._1e_c00095{width:101.568000px;}
._28_c00095{width:147.954000px;}
._1f_c00095{width:234.807000px;}
._20_c00095{width:240.810000px;}
._2_c00095{width:368.262000px;}
._16_c00095{width:448.155000px;}
.fc2_c00095{color:transparent;}
.fc1_c00095{color:rgb(128,128,128);}
.fc0_c00095{color:rgb(0,0,0);}
.fs2_c00095{font-size:48.000000px;}
.fs1_c00095{font-size:66.000000px;}
.fs0_c00095{font-size:69.000000px;}
.y0_c00095{bottom:0.000000px;}
.y1e_c00095{bottom:3.105000px;}
.y1d_c00095{bottom:7.228369px;}
.y1c_c00095{bottom:66.870000px;}
.y1b_c00095{bottom:93.870000px;}
.y1a_c00095{bottom:119.820000px;}
.y19_c00095{bottom:144.720000px;}
.y18_c00095{bottom:194.370000px;}
.y17_c00095{bottom:245.970000px;}
.y16_c00095{bottom:269.220000px;}
.y15_c00095{bottom:295.020000px;}
.y14_c00095{bottom:319.920000px;}
.y13_c00095{bottom:344.520000px;}
.y12_c00095{bottom:368.220000px;}
.y11_c00095{bottom:393.420000px;}
.y10_c00095{bottom:419.070000px;}
.yf_c00095{bottom:444.120000px;}
.ye_c00095{bottom:468.120000px;}
.yd_c00095{bottom:494.370000px;}
.yc_c00095{bottom:516.420000px;}
.yb_c00095{bottom:542.970000px;}
.ya_c00095{bottom:568.320000px;}
.y9_c00095{bottom:592.620000px;}
.y8_c00095{bottom:618.870000px;}
.y7_c00095{bottom:642.570000px;}
.y6_c00095{bottom:669.870000px;}
.y5_c00095{bottom:693.120000px;}
.y4_c00095{bottom:718.470000px;}
.y3_c00095{bottom:743.520000px;}
.y2_c00095{bottom:768.720000px;}
.y1_c00095{bottom:794.070000px;}
.h4_c00095{height:13.200073px;}
.h5_c00095{height:43.804688px;}
.h3_c00095{height:80.758301px;}
.h2_c00095{height:87.361816px;}
.h0_c00095{height:842.100000px;}
.h1_c00095{height:842.250000px;}
.w2_c00095{width:104.875500px;}
.w1_c00095{width:564.750000px;}
.w0_c00095{width:564.825000px;}
.x0_c00095{left:0.000000px;}
.x9_c00095{left:34.800000px;}
.x4_c00095{left:39.450000px;}
.xc_c00095{left:48.300000px;}
.x8_c00095{left:49.950000px;}
.x3_c00095{left:55.050000px;}
.xf_c00095{left:94.950000px;}
.xb_c00095{left:96.600000px;}
.xa_c00095{left:98.550000px;}
.x7_c00095{left:99.900000px;}
.x5_c00095{left:101.250000px;}
.x2_c00095{left:102.900000px;}
.x1_c00095{left:115.050000px;}
.xe_c00095{left:119.100000px;}
.x6_c00095{left:124.950000px;}
.xd_c00095{left:141.150000px;}
.x11_c00095{left:234.226730px;}
.x10_c00095{left:493.500000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls3_c00095{letter-spacing:0.000000pt;}
.ls2_c00095{letter-spacing:2.666667pt;}
.ls0_c00095{letter-spacing:11.152000pt;}
.ls1_c00095{letter-spacing:18.666667pt;}
.ws3_c00095{word-spacing:-41.797333pt;}
.ws2_c00095{word-spacing:-17.448000pt;}
.ws1_c00095{word-spacing:-14.781333pt;}
.ws0_c00095{word-spacing:-1.002667pt;}
.ws4_c00095{word-spacing:-0.562667pt;}
.ws6_c00095{word-spacing:0.000000pt;}
.ws5_c00095{word-spacing:4.509333pt;}
._1c_c00095{margin-left:-17.296000pt;}
._29_c00095{margin-left:-14.352000pt;}
._1d_c00095{margin-left:-12.941333pt;}
._1b_c00095{margin-left:-11.877333pt;}
._1a_c00095{margin-left:-10.637333pt;}
._0_c00095{margin-left:-8.669333pt;}
._1_c00095{margin-left:-6.685333pt;}
._8_c00095{margin-left:-5.397333pt;}
._7_c00095{margin-left:-3.741333pt;}
._6_c00095{margin-left:-2.821333pt;}
._4_c00095{margin-left:-1.226667pt;}
._3_c00095{width:1.533333pt;}
._5_c00095{width:3.005333pt;}
._9_c00095{width:4.048000pt;}
._12_c00095{width:5.274667pt;}
._c_c00095{width:6.746667pt;}
._13_c00095{width:8.280000pt;}
._f_c00095{width:9.384000pt;}
._d_c00095{width:10.888000pt;}
._15_c00095{width:11.837333pt;}
._b_c00095{width:12.818667pt;}
._e_c00095{width:14.352000pt;}
._a_c00095{width:16.069333pt;}
._10_c00095{width:17.170667pt;}
._18_c00095{width:19.536000pt;}
._23_c00095{width:20.970667pt;}
._11_c00095{width:22.048000pt;}
._24_c00095{width:23.461333pt;}
._2a_c00095{width:25.701333pt;}
._21_c00095{width:27.106667pt;}
._27_c00095{width:28.888000pt;}
._17_c00095{width:31.557333pt;}
._25_c00095{width:33.701333pt;}
._26_c00095{width:50.352000pt;}
._14_c00095{width:77.434667pt;}
._22_c00095{width:83.842667pt;}
._19_c00095{width:88.749333pt;}
._1e_c00095{width:90.282667pt;}
._28_c00095{width:131.514667pt;}
._1f_c00095{width:208.717333pt;}
._20_c00095{width:214.053333pt;}
._2_c00095{width:327.344000pt;}
._16_c00095{width:398.360000pt;}
.fs2_c00095{font-size:42.666667pt;}
.fs1_c00095{font-size:58.666667pt;}
.fs0_c00095{font-size:61.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y1e_c00095{bottom:2.760000pt;}
.y1d_c00095{bottom:6.425217pt;}
.y1c_c00095{bottom:59.440000pt;}
.y1b_c00095{bottom:83.440000pt;}
.y1a_c00095{bottom:106.506667pt;}
.y19_c00095{bottom:128.640000pt;}
.y18_c00095{bottom:172.773333pt;}
.y17_c00095{bottom:218.640000pt;}
.y16_c00095{bottom:239.306667pt;}
.y15_c00095{bottom:262.240000pt;}
.y14_c00095{bottom:284.373333pt;}
.y13_c00095{bottom:306.240000pt;}
.y12_c00095{bottom:327.306667pt;}
.y11_c00095{bottom:349.706667pt;}
.y10_c00095{bottom:372.506667pt;}
.yf_c00095{bottom:394.773333pt;}
.ye_c00095{bottom:416.106667pt;}
.yd_c00095{bottom:439.440000pt;}
.yc_c00095{bottom:459.040000pt;}
.yb_c00095{bottom:482.640000pt;}
.ya_c00095{bottom:505.173333pt;}
.y9_c00095{bottom:526.773333pt;}
.y8_c00095{bottom:550.106667pt;}
.y7_c00095{bottom:571.173333pt;}
.y6_c00095{bottom:595.440000pt;}
.y5_c00095{bottom:616.106667pt;}
.y4_c00095{bottom:638.640000pt;}
.y3_c00095{bottom:660.906667pt;}
.y2_c00095{bottom:683.306667pt;}
.y1_c00095{bottom:705.840000pt;}
.h4_c00095{height:11.733399pt;}
.h5_c00095{height:38.937500pt;}
.h3_c00095{height:71.785156pt;}
.h2_c00095{height:77.654948pt;}
.h0_c00095{height:748.533333pt;}
.h1_c00095{height:748.666667pt;}
.w2_c00095{width:93.222667pt;}
.w1_c00095{width:502.000000pt;}
.w0_c00095{width:502.066667pt;}
.x0_c00095{left:0.000000pt;}
.x9_c00095{left:30.933333pt;}
.x4_c00095{left:35.066667pt;}
.xc_c00095{left:42.933333pt;}
.x8_c00095{left:44.400000pt;}
.x3_c00095{left:48.933333pt;}
.xf_c00095{left:84.400000pt;}
.xb_c00095{left:85.866667pt;}
.xa_c00095{left:87.600000pt;}
.x7_c00095{left:88.800000pt;}
.x5_c00095{left:90.000000pt;}
.x2_c00095{left:91.466667pt;}
.x1_c00095{left:102.266667pt;}
.xe_c00095{left:105.866667pt;}
.x6_c00095{left:111.066667pt;}
.xd_c00095{left:125.466667pt;}
.x11_c00095{left:208.201538pt;}
.x10_c00095{left:438.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_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_b02ca2907436ef5839ebefa2.woff2')format("woff");}.ff1_c00096{font-family:ff1_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:ff2_c00096;src:url('chunks/assets/font_26dd1354c4d9c538ddfd5ebf.woff2')format("woff");}.ff2_c00096{font-family:ff2_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:ff3_c00096;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff3_c00096{font-family:ff3_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:ff4_c00096;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00096{font-family:ff4_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);}
.v0_c00096{vertical-align:0.000000px;}
.ls1_c00096{letter-spacing:0.000000px;}
.ls2_c00096{letter-spacing:3.000000px;}
.ls0_c00096{letter-spacing:9.000000px;}
.ls3_c00096{letter-spacing:39.000000px;}
.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:-55.629000px;}
.ws0_c00096{word-spacing:-16.629000px;}
.ws4_c00096{word-spacing:-11.568000px;}
.ws2_c00096{word-spacing:-1.173000px;}
.ws3_c00096{word-spacing:-0.591000px;}
.ws5_c00096{word-spacing:0.000000px;}
._15_c00096{margin-left:-63.342000px;}
._10_c00096{margin-left:-51.888000px;}
._e_c00096{margin-left:-34.782000px;}
._1e_c00096{margin-left:-25.392000px;}
._23_c00096{margin-left:-21.528000px;}
._f_c00096{margin-left:-19.458000px;}
._a_c00096{margin-left:-17.706000px;}
._29_c00096{margin-left:-16.335000px;}
._3_c00096{margin-left:-11.799000px;}
._12_c00096{margin-left:-9.798000px;}
._11_c00096{margin-left:-8.487000px;}
._9_c00096{margin-left:-7.176000px;}
._7_c00096{margin-left:-5.382000px;}
._2_c00096{margin-left:-3.450000px;}
._1_c00096{margin-left:-2.139000px;}
._4_c00096{margin-left:-1.104000px;}
._0_c00096{width:1.449000px;}
._1c_c00096{width:2.553000px;}
._8_c00096{width:3.588000px;}
._6_c00096{width:5.106000px;}
._b_c00096{width:6.831000px;}
._c_c00096{width:8.418000px;}
._22_c00096{width:9.798000px;}
._1a_c00096{width:11.133000px;}
._13_c00096{width:12.972000px;}
._21_c00096{width:14.475000px;}
._18_c00096{width:15.621000px;}
._20_c00096{width:17.475000px;}
._28_c00096{width:18.519000px;}
._17_c00096{width:20.079000px;}
._16_c00096{width:21.363000px;}
._1b_c00096{width:22.494000px;}
._19_c00096{width:25.254000px;}
._1d_c00096{width:28.086000px;}
._2d_c00096{width:30.222000px;}
._2e_c00096{width:37.845000px;}
._30_c00096{width:39.813000px;}
._14_c00096{width:41.124000px;}
._31_c00096{width:54.855000px;}
._27_c00096{width:74.313000px;}
._26_c00096{width:80.361000px;}
._d_c00096{width:107.847000px;}
._2b_c00096{width:177.882000px;}
._25_c00096{width:189.888000px;}
._33_c00096{width:211.002000px;}
._32_c00096{width:237.699000px;}
._24_c00096{width:358.938000px;}
._2f_c00096{width:393.492000px;}
._2c_c00096{width:442.401000px;}
._5_c00096{width:497.568000px;}
._2a_c00096{width:589.743000px;}
._1f_c00096{width:876.000000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(128,128,128);}
.fc0_c00096{color:rgb(0,0,0);}
.fs3_c00096{font-size:48.000000px;}
.fs2_c00096{font-size:54.000000px;}
.fs1_c00096{font-size:66.000000px;}
.fs0_c00096{font-size:69.000000px;}
.y0_c00096{bottom:0.000000px;}
.y21_c00096{bottom:3.105000px;}
.y20_c00096{bottom:7.228363px;}
.y1f_c00096{bottom:64.800000px;}
.y1e_c00096{bottom:88.650000px;}
.y1d_c00096{bottom:114.000000px;}
.y1c_c00096{bottom:139.050000px;}
.y1b_c00096{bottom:163.650000px;}
.y1a_c00096{bottom:188.550000px;}
.y19_c00096{bottom:207.450000px;}
.y18_c00096{bottom:213.600000px;}
.y17_c00096{bottom:238.650000px;}
.y16_c00096{bottom:264.300000px;}
.y15_c00096{bottom:288.000000px;}
.y14_c00096{bottom:313.500000px;}
.y13_c00096{bottom:338.850000px;}
.y12_c00096{bottom:363.450000px;}
.y11_c00096{bottom:388.050000px;}
.y10_c00096{bottom:412.800000px;}
.yf_c00096{bottom:437.700000px;}
.ye_c00096{bottom:463.050000px;}
.yd_c00096{bottom:487.350000px;}
.yc_c00096{bottom:511.350000px;}
.yb_c00096{bottom:536.400000px;}
.ya_c00096{bottom:560.700000px;}
.y9_c00096{bottom:585.900000px;}
.y8_c00096{bottom:612.600000px;}
.y7_c00096{bottom:635.850000px;}
.y6_c00096{bottom:660.750000px;}
.y5_c00096{bottom:686.250000px;}
.y4_c00096{bottom:710.400000px;}
.y3_c00096{bottom:734.700000px;}
.y2_c00096{bottom:760.050000px;}
.y1_c00096{bottom:784.350000px;}
.h4_c00096{height:13.200074px;}
.h5_c00096{height:43.804688px;}
.h3_c00096{height:60.773438px;}
.h2_c00096{height:68.370117px;}
.h1_c00096{height:87.361816px;}
.h0_c00096{height:823.500000px;}
.w2_c00096{width:104.875500px;}
.w0_c00096{width:551.850000px;}
.w1_c00096{width:552.000000px;}
.x0_c00096{left:0.000000px;}
.x3_c00096{left:30.300000px;}
.x2_c00096{left:32.700000px;}
.x4_c00096{left:34.650000px;}
.x5_c00096{left:35.700000px;}
.x7_c00096{left:36.900000px;}
.x6_c00096{left:57.450000px;}
.x1_c00096{left:192.750000px;}
.xa_c00096{left:227.739258px;}
.x8_c00096{left:442.800000px;}
.x9_c00096{left:457.050000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls1_c00096{letter-spacing:0.000000pt;}
.ls2_c00096{letter-spacing:2.666667pt;}
.ls0_c00096{letter-spacing:8.000000pt;}
.ls3_c00096{letter-spacing:34.666667pt;}
.ws1_c00096{word-spacing:-49.448000pt;}
.ws0_c00096{word-spacing:-14.781333pt;}
.ws4_c00096{word-spacing:-10.282667pt;}
.ws2_c00096{word-spacing:-1.042667pt;}
.ws3_c00096{word-spacing:-0.525333pt;}
.ws5_c00096{word-spacing:0.000000pt;}
._15_c00096{margin-left:-56.304000pt;}
._10_c00096{margin-left:-46.122667pt;}
._e_c00096{margin-left:-30.917333pt;}
._1e_c00096{margin-left:-22.570667pt;}
._23_c00096{margin-left:-19.136000pt;}
._f_c00096{margin-left:-17.296000pt;}
._a_c00096{margin-left:-15.738667pt;}
._29_c00096{margin-left:-14.520000pt;}
._3_c00096{margin-left:-10.488000pt;}
._12_c00096{margin-left:-8.709333pt;}
._11_c00096{margin-left:-7.544000pt;}
._9_c00096{margin-left:-6.378667pt;}
._7_c00096{margin-left:-4.784000pt;}
._2_c00096{margin-left:-3.066667pt;}
._1_c00096{margin-left:-1.901333pt;}
._4_c00096{margin-left:-0.981333pt;}
._0_c00096{width:1.288000pt;}
._1c_c00096{width:2.269333pt;}
._8_c00096{width:3.189333pt;}
._6_c00096{width:4.538667pt;}
._b_c00096{width:6.072000pt;}
._c_c00096{width:7.482667pt;}
._22_c00096{width:8.709333pt;}
._1a_c00096{width:9.896000pt;}
._13_c00096{width:11.530667pt;}
._21_c00096{width:12.866667pt;}
._18_c00096{width:13.885333pt;}
._20_c00096{width:15.533333pt;}
._28_c00096{width:16.461333pt;}
._17_c00096{width:17.848000pt;}
._16_c00096{width:18.989333pt;}
._1b_c00096{width:19.994667pt;}
._19_c00096{width:22.448000pt;}
._1d_c00096{width:24.965333pt;}
._2d_c00096{width:26.864000pt;}
._2e_c00096{width:33.640000pt;}
._30_c00096{width:35.389333pt;}
._14_c00096{width:36.554667pt;}
._31_c00096{width:48.760000pt;}
._27_c00096{width:66.056000pt;}
._26_c00096{width:71.432000pt;}
._d_c00096{width:95.864000pt;}
._2b_c00096{width:158.117333pt;}
._25_c00096{width:168.789333pt;}
._33_c00096{width:187.557333pt;}
._32_c00096{width:211.288000pt;}
._24_c00096{width:319.056000pt;}
._2f_c00096{width:349.770667pt;}
._2c_c00096{width:393.245333pt;}
._5_c00096{width:442.282667pt;}
._2a_c00096{width:524.216000pt;}
._1f_c00096{width:778.666667pt;}
.fs3_c00096{font-size:42.666667pt;}
.fs2_c00096{font-size:48.000000pt;}
.fs1_c00096{font-size:58.666667pt;}
.fs0_c00096{font-size:61.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y21_c00096{bottom:2.760000pt;}
.y20_c00096{bottom:6.425212pt;}
.y1f_c00096{bottom:57.600000pt;}
.y1e_c00096{bottom:78.800000pt;}
.y1d_c00096{bottom:101.333333pt;}
.y1c_c00096{bottom:123.600000pt;}
.y1b_c00096{bottom:145.466667pt;}
.y1a_c00096{bottom:167.600000pt;}
.y19_c00096{bottom:184.400000pt;}
.y18_c00096{bottom:189.866667pt;}
.y17_c00096{bottom:212.133333pt;}
.y16_c00096{bottom:234.933333pt;}
.y15_c00096{bottom:256.000000pt;}
.y14_c00096{bottom:278.666667pt;}
.y13_c00096{bottom:301.200000pt;}
.y12_c00096{bottom:323.066667pt;}
.y11_c00096{bottom:344.933333pt;}
.y10_c00096{bottom:366.933333pt;}
.yf_c00096{bottom:389.066667pt;}
.ye_c00096{bottom:411.600000pt;}
.yd_c00096{bottom:433.200000pt;}
.yc_c00096{bottom:454.533333pt;}
.yb_c00096{bottom:476.800000pt;}
.ya_c00096{bottom:498.400000pt;}
.y9_c00096{bottom:520.800000pt;}
.y8_c00096{bottom:544.533333pt;}
.y7_c00096{bottom:565.200000pt;}
.y6_c00096{bottom:587.333333pt;}
.y5_c00096{bottom:610.000000pt;}
.y4_c00096{bottom:631.466667pt;}
.y3_c00096{bottom:653.066667pt;}
.y2_c00096{bottom:675.600000pt;}
.y1_c00096{bottom:697.200000pt;}
.h4_c00096{height:11.733399pt;}
.h5_c00096{height:38.937500pt;}
.h3_c00096{height:54.020833pt;}
.h2_c00096{height:60.773438pt;}
.h1_c00096{height:77.654948pt;}
.h0_c00096{height:732.000000pt;}
.w2_c00096{width:93.222667pt;}
.w0_c00096{width:490.533333pt;}
.w1_c00096{width:490.666667pt;}
.x0_c00096{left:0.000000pt;}
.x3_c00096{left:26.933333pt;}
.x2_c00096{left:29.066667pt;}
.x4_c00096{left:30.800000pt;}
.x5_c00096{left:31.733333pt;}
.x7_c00096{left:32.800000pt;}
.x6_c00096{left:51.066667pt;}
.x1_c00096{left:171.333333pt;}
.xa_c00096{left:202.434896pt;}
.x8_c00096{left:393.600000pt;}
.x9_c00096{left:406.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_9da0d331c5083c9402e4cb50.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_cbf20a020ba2a5fb62bd86cf.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;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_c00097;src:url('chunks/assets/font_822bcfa3d51bdc463107be69.woff2')format("woff");}.ff3_c00097{font-family:ff3_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:ff4_c00097;src:url('chunks/assets/font_2baf4c753d5492fc6d912eee.woff2')format("woff");}.ff4_c00097{font-family:ff4_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:ff5_c00097;src:url('chunks/assets/font_9dc143bca7a874cc788b5379.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;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_c00097;src:url('chunks/assets/font_92d7f88e78f15b81c3534db3.woff2')format("woff");}.ff6_c00097{font-family:ff6_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:ff7_c00097;src:url('chunks/assets/font_4f6603d6a2c2bc3bb50fd3d7.woff2')format("woff");}.ff7_c00097{font-family:ff7_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:ff8_c00097;src:url('chunks/assets/font_acca5b2af8d1f68168abef6f.woff2')format("woff");}.ff8_c00097{font-family:ff8_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:ff9_c00097;src:url('chunks/assets/font_3b92d29948d2696faebcccd2.woff2')format("woff");}.ff9_c00097{font-family:ff9_c00097;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_c00097;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffa_c00097{font-family:ffa_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;}
.ls9_c00097{letter-spacing:-12.000000px;}
.ls7_c00097{letter-spacing:0.000000px;}
.ls2_c00097{letter-spacing:0.771000px;}
.ls8_c00097{letter-spacing:3.000000px;}
.ls1_c00097{letter-spacing:3.771000px;}
.ls0_c00097{letter-spacing:4.500000px;}
.ls5_c00097{letter-spacing:6.000000px;}
.ls6_c00097{letter-spacing:9.000000px;}
.ls3_c00097{letter-spacing:18.771000px;}
.ls4_c00097{letter-spacing:20.571000px;}
.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;}
}
.ws7_c00097{word-spacing:-27.000000px;}
.ws5_c00097{word-spacing:-21.825000px;}
.ws6_c00097{word-spacing:-19.629000px;}
.ws2_c00097{word-spacing:-18.798000px;}
.ws1_c00097{word-spacing:-16.629000px;}
.ws0_c00097{word-spacing:-9.060000px;}
.ws4_c00097{word-spacing:-1.173000px;}
.ws3_c00097{word-spacing:-0.081000px;}
.ws8_c00097{word-spacing:0.000000px;}
._16_c00097{margin-left:-17.940000px;}
._1c_c00097{margin-left:-16.098000px;}
._9_c00097{margin-left:-12.315000px;}
._15_c00097{margin-left:-10.902000px;}
._17_c00097{margin-left:-8.832000px;}
._8_c00097{margin-left:-7.314000px;}
._3_c00097{margin-left:-6.210000px;}
._7_c00097{margin-left:-4.623000px;}
._b_c00097{margin-left:-3.519000px;}
._4_c00097{margin-left:-1.932000px;}
._6_c00097{width:1.665000px;}
._5_c00097{width:2.997000px;}
._2_c00097{width:4.800000px;}
._1_c00097{width:5.820000px;}
._0_c00097{width:7.800000px;}
._e_c00097{width:8.967000px;}
._a_c00097{width:10.074000px;}
._13_c00097{width:11.652000px;}
._22_c00097{width:12.696000px;}
._14_c00097{width:13.842000px;}
._10_c00097{width:14.904000px;}
._12_c00097{width:16.800000px;}
._11_c00097{width:18.219000px;}
._1d_c00097{width:20.250000px;}
._d_c00097{width:21.468000px;}
._19_c00097{width:24.051000px;}
._1a_c00097{width:32.553000px;}
._f_c00097{width:35.541000px;}
._c_c00097{width:39.813000px;}
._1e_c00097{width:62.457000px;}
._1f_c00097{width:78.030000px;}
._1b_c00097{width:97.137000px;}
._18_c00097{width:104.604000px;}
._20_c00097{width:209.628000px;}
._21_c00097{width:331.296000px;}
.fc2_c00097{color:transparent;}
.fc1_c00097{color:rgb(128,128,128);}
.fc0_c00097{color:rgb(0,0,0);}
.fs5_c00097{font-size:42.000000px;}
.fs6_c00097{font-size:48.000000px;}
.fs0_c00097{font-size:60.000000px;}
.fs1_c00097{font-size:69.000000px;}
.fs4_c00097{font-size:75.000000px;}
.fs2_c00097{font-size:78.000000px;}
.fs3_c00097{font-size:81.000000px;}
.y0_c00097{bottom:0.000000px;}
.y22_c00097{bottom:3.105000px;}
.y21_c00097{bottom:7.228369px;}
.y1f_c00097{bottom:70.470000px;}
.y1e_c00097{bottom:95.820000px;}
.y1d_c00097{bottom:122.070000px;}
.y1c_c00097{bottom:145.770000px;}
.y1b_c00097{bottom:172.170000px;}
.y1a_c00097{bottom:197.070000px;}
.y19_c00097{bottom:222.420000px;}
.y18_c00097{bottom:246.420000px;}
.y17_c00097{bottom:273.270000px;}
.y16_c00097{bottom:295.920000px;}
.y15_c00097{bottom:321.570000px;}
.y14_c00097{bottom:347.970000px;}
.y13_c00097{bottom:372.270000px;}
.y20_c00097{bottom:381.720000px;}
.y12_c00097{bottom:397.470000px;}
.y11_c00097{bottom:422.820000px;}
.y10_c00097{bottom:447.570000px;}
.yf_c00097{bottom:471.720000px;}
.ye_c00097{bottom:497.820000px;}
.yd_c00097{bottom:522.720000px;}
.y2_c00097{bottom:540.720000px;}
.yc_c00097{bottom:547.470000px;}
.yb_c00097{bottom:572.370000px;}
.ya_c00097{bottom:597.270000px;}
.y1_c00097{bottom:608.820000px;}
.y9_c00097{bottom:622.020000px;}
.y8_c00097{bottom:647.370000px;}
.y7_c00097{bottom:672.270000px;}
.y6_c00097{bottom:697.920000px;}
.y5_c00097{bottom:722.220000px;}
.y4_c00097{bottom:747.870000px;}
.y3_c00097{bottom:772.170000px;}
.h9_c00097{height:13.200073px;}
.ha_c00097{height:43.804688px;}
.h8_c00097{height:44.814000px;}
.h2_c00097{height:65.040000px;}
.h5_c00097{height:73.623000px;}
.h3_c00097{height:80.758301px;}
.h4_c00097{height:87.361816px;}
.h6_c00097{height:91.291992px;}
.h7_c00097{height:94.958496px;}
.h0_c00097{height:842.100000px;}
.h1_c00097{height:842.250000px;}
.w2_c00097{width:104.875500px;}
.w1_c00097{width:564.750000px;}
.w0_c00097{width:564.825000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:41.250000px;}
.x1_c00097{left:43.500000px;}
.x4_c00097{left:45.150000px;}
.xc_c00097{left:55.800000px;}
.xb_c00097{left:57.000000px;}
.x8_c00097{left:59.400000px;}
.xa_c00097{left:106.950000px;}
.x5_c00097{left:108.300000px;}
.x7_c00097{left:109.350000px;}
.x3_c00097{left:110.400000px;}
.x9_c00097{left:132.750000px;}
.x6_c00097{left:134.700000px;}
.xe_c00097{left:234.226730px;}
.xd_c00097{left:496.350000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls9_c00097{letter-spacing:-10.666667pt;}
.ls7_c00097{letter-spacing:0.000000pt;}
.ls2_c00097{letter-spacing:0.685333pt;}
.ls8_c00097{letter-spacing:2.666667pt;}
.ls1_c00097{letter-spacing:3.352000pt;}
.ls0_c00097{letter-spacing:4.000000pt;}
.ls5_c00097{letter-spacing:5.333333pt;}
.ls6_c00097{letter-spacing:8.000000pt;}
.ls3_c00097{letter-spacing:16.685333pt;}
.ls4_c00097{letter-spacing:18.285333pt;}
.ws7_c00097{word-spacing:-24.000000pt;}
.ws5_c00097{word-spacing:-19.400000pt;}
.ws6_c00097{word-spacing:-17.448000pt;}
.ws2_c00097{word-spacing:-16.709333pt;}
.ws1_c00097{word-spacing:-14.781333pt;}
.ws0_c00097{word-spacing:-8.053333pt;}
.ws4_c00097{word-spacing:-1.042667pt;}
.ws3_c00097{word-spacing:-0.072000pt;}
.ws8_c00097{word-spacing:0.000000pt;}
._16_c00097{margin-left:-15.946667pt;}
._1c_c00097{margin-left:-14.309333pt;}
._9_c00097{margin-left:-10.946667pt;}
._15_c00097{margin-left:-9.690667pt;}
._17_c00097{margin-left:-7.850667pt;}
._8_c00097{margin-left:-6.501333pt;}
._3_c00097{margin-left:-5.520000pt;}
._7_c00097{margin-left:-4.109333pt;}
._b_c00097{margin-left:-3.128000pt;}
._4_c00097{margin-left:-1.717333pt;}
._6_c00097{width:1.480000pt;}
._5_c00097{width:2.664000pt;}
._2_c00097{width:4.266667pt;}
._1_c00097{width:5.173333pt;}
._0_c00097{width:6.933333pt;}
._e_c00097{width:7.970667pt;}
._a_c00097{width:8.954667pt;}
._13_c00097{width:10.357333pt;}
._22_c00097{width:11.285333pt;}
._14_c00097{width:12.304000pt;}
._10_c00097{width:13.248000pt;}
._12_c00097{width:14.933333pt;}
._11_c00097{width:16.194667pt;}
._1d_c00097{width:18.000000pt;}
._d_c00097{width:19.082667pt;}
._19_c00097{width:21.378667pt;}
._1a_c00097{width:28.936000pt;}
._f_c00097{width:31.592000pt;}
._c_c00097{width:35.389333pt;}
._1e_c00097{width:55.517333pt;}
._1f_c00097{width:69.360000pt;}
._1b_c00097{width:86.344000pt;}
._18_c00097{width:92.981333pt;}
._20_c00097{width:186.336000pt;}
._21_c00097{width:294.485333pt;}
.fs5_c00097{font-size:37.333333pt;}
.fs6_c00097{font-size:42.666667pt;}
.fs0_c00097{font-size:53.333333pt;}
.fs1_c00097{font-size:61.333333pt;}
.fs4_c00097{font-size:66.666667pt;}
.fs2_c00097{font-size:69.333333pt;}
.fs3_c00097{font-size:72.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y22_c00097{bottom:2.760000pt;}
.y21_c00097{bottom:6.425217pt;}
.y1f_c00097{bottom:62.640000pt;}
.y1e_c00097{bottom:85.173333pt;}
.y1d_c00097{bottom:108.506667pt;}
.y1c_c00097{bottom:129.573333pt;}
.y1b_c00097{bottom:153.040000pt;}
.y1a_c00097{bottom:175.173333pt;}
.y19_c00097{bottom:197.706667pt;}
.y18_c00097{bottom:219.040000pt;}
.y17_c00097{bottom:242.906667pt;}
.y16_c00097{bottom:263.040000pt;}
.y15_c00097{bottom:285.840000pt;}
.y14_c00097{bottom:309.306667pt;}
.y13_c00097{bottom:330.906667pt;}
.y20_c00097{bottom:339.306667pt;}
.y12_c00097{bottom:353.306667pt;}
.y11_c00097{bottom:375.840000pt;}
.y10_c00097{bottom:397.840000pt;}
.yf_c00097{bottom:419.306667pt;}
.ye_c00097{bottom:442.506667pt;}
.yd_c00097{bottom:464.640000pt;}
.y2_c00097{bottom:480.640000pt;}
.yc_c00097{bottom:486.640000pt;}
.yb_c00097{bottom:508.773333pt;}
.ya_c00097{bottom:530.906667pt;}
.y1_c00097{bottom:541.173333pt;}
.y9_c00097{bottom:552.906667pt;}
.y8_c00097{bottom:575.440000pt;}
.y7_c00097{bottom:597.573333pt;}
.y6_c00097{bottom:620.373333pt;}
.y5_c00097{bottom:641.973333pt;}
.y4_c00097{bottom:664.773333pt;}
.y3_c00097{bottom:686.373333pt;}
.h9_c00097{height:11.733399pt;}
.ha_c00097{height:38.937500pt;}
.h8_c00097{height:39.834667pt;}
.h2_c00097{height:57.813333pt;}
.h5_c00097{height:65.442667pt;}
.h3_c00097{height:71.785156pt;}
.h4_c00097{height:77.654948pt;}
.h6_c00097{height:81.148438pt;}
.h7_c00097{height:84.407552pt;}
.h0_c00097{height:748.533333pt;}
.h1_c00097{height:748.666667pt;}
.w2_c00097{width:93.222667pt;}
.w1_c00097{width:502.000000pt;}
.w0_c00097{width:502.066667pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:36.666667pt;}
.x1_c00097{left:38.666667pt;}
.x4_c00097{left:40.133333pt;}
.xc_c00097{left:49.600000pt;}
.xb_c00097{left:50.666667pt;}
.x8_c00097{left:52.800000pt;}
.xa_c00097{left:95.066667pt;}
.x5_c00097{left:96.266667pt;}
.x7_c00097{left:97.200000pt;}
.x3_c00097{left:98.133333pt;}
.x9_c00097{left:118.000000pt;}
.x6_c00097{left:119.733333pt;}
.xe_c00097{left:208.201538pt;}
.xd_c00097{left:441.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_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_1389d7a70cc8a789834ad1bf.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_68209bd821f8575d607a98d7.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00098{font-family:ff3_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;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls2_c00098{letter-spacing:3.000000px;}
.ls0_c00098{letter-spacing:13.125000px;}
.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:-16.629000px;}
.ws1_c00098{word-spacing:0.000000px;}
._24_c00098{margin-left:-21.459000px;}
._16_c00098{margin-left:-17.043000px;}
._f_c00098{margin-left:-12.558000px;}
._10_c00098{margin-left:-11.352000px;}
._26_c00098{margin-left:-9.639000px;}
._e_c00098{margin-left:-8.556000px;}
._1a_c00098{margin-left:-6.900000px;}
._21_c00098{margin-left:-5.865000px;}
._4_c00098{margin-left:-4.071000px;}
._3_c00098{margin-left:-2.829000px;}
._2_c00098{margin-left:-1.449000px;}
._0_c00098{width:1.794000px;}
._1_c00098{width:2.829000px;}
._6_c00098{width:3.864000px;}
._d_c00098{width:5.175000px;}
._7_c00098{width:6.210000px;}
._a_c00098{width:7.383000px;}
._17_c00098{width:9.354000px;}
._1f_c00098{width:10.554000px;}
._20_c00098{width:12.009000px;}
._14_c00098{width:13.110000px;}
._b_c00098{width:14.214000px;}
._19_c00098{width:15.594000px;}
._8_c00098{width:16.698000px;}
._9_c00098{width:17.802000px;}
._22_c00098{width:19.494000px;}
._c_c00098{width:20.634000px;}
._1b_c00098{width:22.701000px;}
._1d_c00098{width:23.943000px;}
._1e_c00098{width:25.668000px;}
._12_c00098{width:27.393000px;}
._11_c00098{width:28.842000px;}
._1c_c00098{width:30.429000px;}
._25_c00098{width:31.743000px;}
._15_c00098{width:32.913000px;}
._18_c00098{width:33.948000px;}
._13_c00098{width:35.190000px;}
._23_c00098{width:132.003000px;}
._5_c00098{width:492.267000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(128,128,128);}
.fc0_c00098{color:rgb(0,0,0);}
.fs2_c00098{font-size:48.000000px;}
.fs1_c00098{font-size:63.000000px;}
.fs0_c00098{font-size:69.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1d_c00098{bottom:3.105000px;}
.y1c_c00098{bottom:7.228371px;}
.y1b_c00098{bottom:63.465000px;}
.y1a_c00098{bottom:112.365000px;}
.y19_c00098{bottom:138.015000px;}
.y18_c00098{bottom:162.315000px;}
.y17_c00098{bottom:187.665000px;}
.y16_c00098{bottom:212.415000px;}
.y15_c00098{bottom:238.065000px;}
.y14_c00098{bottom:263.265000px;}
.y13_c00098{bottom:288.615000px;}
.y12_c00098{bottom:313.515000px;}
.y11_c00098{bottom:337.965000px;}
.y10_c00098{bottom:363.165000px;}
.yf_c00098{bottom:387.915000px;}
.ye_c00098{bottom:413.115000px;}
.yd_c00098{bottom:438.465000px;}
.yc_c00098{bottom:463.365000px;}
.yb_c00098{bottom:488.115000px;}
.ya_c00098{bottom:537.315000px;}
.y9_c00098{bottom:586.965000px;}
.y8_c00098{bottom:612.315000px;}
.y7_c00098{bottom:637.665000px;}
.y6_c00098{bottom:662.265000px;}
.y5_c00098{bottom:687.465000px;}
.y4_c00098{bottom:712.515000px;}
.y3_c00098{bottom:737.565000px;}
.y2_c00098{bottom:762.465000px;}
.y1_c00098{bottom:787.515000px;}
.h4_c00098{height:13.200074px;}
.h5_c00098{height:43.804688px;}
.h3_c00098{height:80.758301px;}
.h2_c00098{height:87.361816px;}
.h1_c00098{height:831.000000px;}
.h0_c00098{height:831.075000px;}
.w1_c00098{width:104.875500px;}
.w0_c00098{width:557.250000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:29.100000px;}
.x3_c00098{left:30.600000px;}
.x7_c00098{left:32.700000px;}
.x8_c00098{left:34.050000px;}
.x9_c00098{left:35.400000px;}
.x5_c00098{left:55.950000px;}
.x6_c00098{left:57.750000px;}
.x4_c00098{left:86.100000px;}
.x1_c00098{left:195.450000px;}
.xb_c00098{left:230.439240px;}
.xa_c00098{left:406.350000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls2_c00098{letter-spacing:2.666667pt;}
.ls0_c00098{letter-spacing:11.666667pt;}
.ws0_c00098{word-spacing:-14.781333pt;}
.ws1_c00098{word-spacing:0.000000pt;}
._24_c00098{margin-left:-19.074667pt;}
._16_c00098{margin-left:-15.149333pt;}
._f_c00098{margin-left:-11.162667pt;}
._10_c00098{margin-left:-10.090667pt;}
._26_c00098{margin-left:-8.568000pt;}
._e_c00098{margin-left:-7.605333pt;}
._1a_c00098{margin-left:-6.133333pt;}
._21_c00098{margin-left:-5.213333pt;}
._4_c00098{margin-left:-3.618667pt;}
._3_c00098{margin-left:-2.514667pt;}
._2_c00098{margin-left:-1.288000pt;}
._0_c00098{width:1.594667pt;}
._1_c00098{width:2.514667pt;}
._6_c00098{width:3.434667pt;}
._d_c00098{width:4.600000pt;}
._7_c00098{width:5.520000pt;}
._a_c00098{width:6.562667pt;}
._17_c00098{width:8.314667pt;}
._1f_c00098{width:9.381333pt;}
._20_c00098{width:10.674667pt;}
._14_c00098{width:11.653333pt;}
._b_c00098{width:12.634667pt;}
._19_c00098{width:13.861333pt;}
._8_c00098{width:14.842667pt;}
._9_c00098{width:15.824000pt;}
._22_c00098{width:17.328000pt;}
._c_c00098{width:18.341333pt;}
._1b_c00098{width:20.178667pt;}
._1d_c00098{width:21.282667pt;}
._1e_c00098{width:22.816000pt;}
._12_c00098{width:24.349333pt;}
._11_c00098{width:25.637333pt;}
._1c_c00098{width:27.048000pt;}
._25_c00098{width:28.216000pt;}
._15_c00098{width:29.256000pt;}
._18_c00098{width:30.176000pt;}
._13_c00098{width:31.280000pt;}
._23_c00098{width:117.336000pt;}
._5_c00098{width:437.570667pt;}
.fs2_c00098{font-size:42.666667pt;}
.fs1_c00098{font-size:56.000000pt;}
.fs0_c00098{font-size:61.333333pt;}
.y0_c00098{bottom:0.000000pt;}
.y1d_c00098{bottom:2.760000pt;}
.y1c_c00098{bottom:6.425219pt;}
.y1b_c00098{bottom:56.413333pt;}
.y1a_c00098{bottom:99.880000pt;}
.y19_c00098{bottom:122.680000pt;}
.y18_c00098{bottom:144.280000pt;}
.y17_c00098{bottom:166.813333pt;}
.y16_c00098{bottom:188.813333pt;}
.y15_c00098{bottom:211.613333pt;}
.y14_c00098{bottom:234.013333pt;}
.y13_c00098{bottom:256.546667pt;}
.y12_c00098{bottom:278.680000pt;}
.y11_c00098{bottom:300.413333pt;}
.y10_c00098{bottom:322.813333pt;}
.yf_c00098{bottom:344.813333pt;}
.ye_c00098{bottom:367.213333pt;}
.yd_c00098{bottom:389.746667pt;}
.yc_c00098{bottom:411.880000pt;}
.yb_c00098{bottom:433.880000pt;}
.ya_c00098{bottom:477.613333pt;}
.y9_c00098{bottom:521.746667pt;}
.y8_c00098{bottom:544.280000pt;}
.y7_c00098{bottom:566.813333pt;}
.y6_c00098{bottom:588.680000pt;}
.y5_c00098{bottom:611.080000pt;}
.y4_c00098{bottom:633.346667pt;}
.y3_c00098{bottom:655.613333pt;}
.y2_c00098{bottom:677.746667pt;}
.y1_c00098{bottom:700.013333pt;}
.h4_c00098{height:11.733399pt;}
.h5_c00098{height:38.937500pt;}
.h3_c00098{height:71.785156pt;}
.h2_c00098{height:77.654948pt;}
.h1_c00098{height:738.666667pt;}
.h0_c00098{height:738.733333pt;}
.w1_c00098{width:93.222667pt;}
.w0_c00098{width:495.333333pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:25.866667pt;}
.x3_c00098{left:27.200000pt;}
.x7_c00098{left:29.066667pt;}
.x8_c00098{left:30.266667pt;}
.x9_c00098{left:31.466667pt;}
.x5_c00098{left:49.733333pt;}
.x6_c00098{left:51.333333pt;}
.x4_c00098{left:76.533333pt;}
.x1_c00098{left:173.733333pt;}
.xb_c00098{left:204.834880pt;}
.xa_c00098{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_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_db953d98a2fe46fa7deae8a2.woff2')format("woff");}.ff1_c00099{font-family:ff1_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:ff2_c00099;src:url('chunks/assets/font_ddf0ed7eca9da58dfea5f57a.woff2')format("woff");}.ff2_c00099{font-family:ff2_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:ff3_c00099;src:url('chunks/assets/font_8d4afa6e39f1901b6ca5ff37.woff2')format("woff");}.ff3_c00099{font-family:ff3_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:ff4_c00099;src:url('chunks/assets/font_a828150b219cf90aa367627d.woff2')format("woff");}.ff4_c00099{font-family:ff4_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:ff5_c00099;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls5_c00099{letter-spacing:0.000000px;}
.ls4_c00099{letter-spacing:3.000000px;}
.ls0_c00099{letter-spacing:3.954000px;}
.ls1_c00099{letter-spacing:4.266000px;}
.ls2_c00099{letter-spacing:16.125000px;}
.ls3_c00099{letter-spacing:19.800000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00099{word-spacing:-33.000000px;}
.ws2_c00099{word-spacing:-29.718000px;}
.ws0_c00099{word-spacing:-22.521000px;}
.ws3_c00099{word-spacing:-19.629000px;}
.ws6_c00099{word-spacing:-19.206000px;}
.ws1_c00099{word-spacing:-16.629000px;}
.ws5_c00099{word-spacing:-1.167000px;}
.ws7_c00099{word-spacing:0.000000px;}
._1b_c00099{margin-left:-37.140000px;}
._14_c00099{margin-left:-33.930000px;}
._1c_c00099{margin-left:-21.291000px;}
._13_c00099{margin-left:-18.603000px;}
._15_c00099{margin-left:-17.433000px;}
._3_c00099{margin-left:-15.132000px;}
._28_c00099{margin-left:-13.455000px;}
._24_c00099{margin-left:-12.144000px;}
._9_c00099{margin-left:-10.707000px;}
._a_c00099{margin-left:-8.181000px;}
._e_c00099{margin-left:-6.555000px;}
._10_c00099{margin-left:-5.382000px;}
._f_c00099{margin-left:-4.071000px;}
._c_c00099{margin-left:-2.760000px;}
._d_c00099{margin-left:-1.656000px;}
._19_c00099{width:1.035000px;}
._2_c00099{width:2.673000px;}
._0_c00099{width:4.455000px;}
._1_c00099{width:5.670000px;}
._b_c00099{width:7.332000px;}
._21_c00099{width:8.418000px;}
._12_c00099{width:9.435000px;}
._1f_c00099{width:11.694000px;}
._1a_c00099{width:12.732000px;}
._18_c00099{width:13.938000px;}
._7_c00099{width:15.390000px;}
._22_c00099{width:16.488000px;}
._11_c00099{width:18.030000px;}
._4_c00099{width:19.362000px;}
._17_c00099{width:21.177000px;}
._1d_c00099{width:22.956000px;}
._6_c00099{width:24.543000px;}
._8_c00099{width:26.160000px;}
._5_c00099{width:29.241000px;}
._26_c00099{width:34.290000px;}
._27_c00099{width:40.710000px;}
._25_c00099{width:51.822000px;}
._1e_c00099{width:102.591000px;}
._23_c00099{width:105.087000px;}
._16_c00099{width:173.700000px;}
._20_c00099{width:326.370000px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(128,128,128);}
.fc0_c00099{color:rgb(0,0,0);}
.fs4_c00099{font-size:48.000000px;}
.fs3_c00099{font-size:66.000000px;}
.fs1_c00099{font-size:69.000000px;}
.fs0_c00099{font-size:81.000000px;}
.fs2_c00099{font-size:117.000000px;}
.y0_c00099{bottom:0.000000px;}
.y1c_c00099{bottom:3.105000px;}
.y1b_c00099{bottom:7.228363px;}
.y19_c00099{bottom:55.950000px;}
.y18_c00099{bottom:81.000000px;}
.y1a_c00099{bottom:88.650000px;}
.y17_c00099{bottom:106.650000px;}
.y15_c00099{bottom:157.950000px;}
.y14_c00099{bottom:183.900000px;}
.y13_c00099{bottom:209.250000px;}
.y12_c00099{bottom:259.500000px;}
.y11_c00099{bottom:309.750000px;}
.y10_c00099{bottom:335.100000px;}
.yf_c00099{bottom:360.150000px;}
.y16_c00099{bottom:364.500000px;}
.ye_c00099{bottom:385.350000px;}
.yd_c00099{bottom:410.100000px;}
.yc_c00099{bottom:435.600000px;}
.yb_c00099{bottom:460.500000px;}
.ya_c00099{bottom:485.700000px;}
.y9_c00099{bottom:510.900000px;}
.y8_c00099{bottom:535.650000px;}
.y7_c00099{bottom:559.800000px;}
.y6_c00099{bottom:585.900000px;}
.y5_c00099{bottom:611.100000px;}
.y4_c00099{bottom:636.150000px;}
.y3_c00099{bottom:661.800000px;}
.y2_c00099{bottom:686.850000px;}
.y1_c00099{bottom:737.700000px;}
.h6_c00099{height:13.200074px;}
.h7_c00099{height:43.804688px;}
.h3_c00099{height:80.758301px;}
.h5_c00099{height:87.361816px;}
.h2_c00099{height:102.555176px;}
.h4_c00099{height:148.135254px;}
.h1_c00099{height:828.750000px;}
.h0_c00099{height:828.900000px;}
.w2_c00099{width:104.875500px;}
.w0_c00099{width:555.675000px;}
.w1_c00099{width:555.750000px;}
.x0_c00099{left:0.000000px;}
.x4_c00099{left:38.100000px;}
.xe_c00099{left:46.500000px;}
.x7_c00099{left:52.200000px;}
.x5_c00099{left:54.300000px;}
.xb_c00099{left:96.600000px;}
.xa_c00099{left:97.650000px;}
.x6_c00099{left:101.700000px;}
.x3_c00099{left:103.050000px;}
.xc_c00099{left:122.100000px;}
.x9_c00099{left:123.600000px;}
.x2_c00099{left:129.900000px;}
.x8_c00099{left:132.300000px;}
.x1_c00099{left:159.600000px;}
.xf_c00099{left:229.651749px;}
.xd_c00099{left:509.250000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls5_c00099{letter-spacing:0.000000pt;}
.ls4_c00099{letter-spacing:2.666667pt;}
.ls0_c00099{letter-spacing:3.514667pt;}
.ls1_c00099{letter-spacing:3.792000pt;}
.ls2_c00099{letter-spacing:14.333333pt;}
.ls3_c00099{letter-spacing:17.600000pt;}
.ws4_c00099{word-spacing:-29.333333pt;}
.ws2_c00099{word-spacing:-26.416000pt;}
.ws0_c00099{word-spacing:-20.018667pt;}
.ws3_c00099{word-spacing:-17.448000pt;}
.ws6_c00099{word-spacing:-17.072000pt;}
.ws1_c00099{word-spacing:-14.781333pt;}
.ws5_c00099{word-spacing:-1.037333pt;}
.ws7_c00099{word-spacing:0.000000pt;}
._1b_c00099{margin-left:-33.013333pt;}
._14_c00099{margin-left:-30.160000pt;}
._1c_c00099{margin-left:-18.925333pt;}
._13_c00099{margin-left:-16.536000pt;}
._15_c00099{margin-left:-15.496000pt;}
._3_c00099{margin-left:-13.450667pt;}
._28_c00099{margin-left:-11.960000pt;}
._24_c00099{margin-left:-10.794667pt;}
._9_c00099{margin-left:-9.517333pt;}
._a_c00099{margin-left:-7.272000pt;}
._e_c00099{margin-left:-5.826667pt;}
._10_c00099{margin-left:-4.784000pt;}
._f_c00099{margin-left:-3.618667pt;}
._c_c00099{margin-left:-2.453333pt;}
._d_c00099{margin-left:-1.472000pt;}
._19_c00099{width:0.920000pt;}
._2_c00099{width:2.376000pt;}
._0_c00099{width:3.960000pt;}
._1_c00099{width:5.040000pt;}
._b_c00099{width:6.517333pt;}
._21_c00099{width:7.482667pt;}
._12_c00099{width:8.386667pt;}
._1f_c00099{width:10.394667pt;}
._1a_c00099{width:11.317333pt;}
._18_c00099{width:12.389333pt;}
._7_c00099{width:13.680000pt;}
._22_c00099{width:14.656000pt;}
._11_c00099{width:16.026667pt;}
._4_c00099{width:17.210667pt;}
._17_c00099{width:18.824000pt;}
._1d_c00099{width:20.405333pt;}
._6_c00099{width:21.816000pt;}
._8_c00099{width:23.253333pt;}
._5_c00099{width:25.992000pt;}
._26_c00099{width:30.480000pt;}
._27_c00099{width:36.186667pt;}
._25_c00099{width:46.064000pt;}
._1e_c00099{width:91.192000pt;}
._23_c00099{width:93.410667pt;}
._16_c00099{width:154.400000pt;}
._20_c00099{width:290.106667pt;}
.fs4_c00099{font-size:42.666667pt;}
.fs3_c00099{font-size:58.666667pt;}
.fs1_c00099{font-size:61.333333pt;}
.fs0_c00099{font-size:72.000000pt;}
.fs2_c00099{font-size:104.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y1c_c00099{bottom:2.760000pt;}
.y1b_c00099{bottom:6.425212pt;}
.y19_c00099{bottom:49.733333pt;}
.y18_c00099{bottom:72.000000pt;}
.y1a_c00099{bottom:78.800000pt;}
.y17_c00099{bottom:94.800000pt;}
.y15_c00099{bottom:140.400000pt;}
.y14_c00099{bottom:163.466667pt;}
.y13_c00099{bottom:186.000000pt;}
.y12_c00099{bottom:230.666667pt;}
.y11_c00099{bottom:275.333333pt;}
.y10_c00099{bottom:297.866667pt;}
.yf_c00099{bottom:320.133333pt;}
.y16_c00099{bottom:324.000000pt;}
.ye_c00099{bottom:342.533333pt;}
.yd_c00099{bottom:364.533333pt;}
.yc_c00099{bottom:387.200000pt;}
.yb_c00099{bottom:409.333333pt;}
.ya_c00099{bottom:431.733333pt;}
.y9_c00099{bottom:454.133333pt;}
.y8_c00099{bottom:476.133333pt;}
.y7_c00099{bottom:497.600000pt;}
.y6_c00099{bottom:520.800000pt;}
.y5_c00099{bottom:543.200000pt;}
.y4_c00099{bottom:565.466667pt;}
.y3_c00099{bottom:588.266667pt;}
.y2_c00099{bottom:610.533333pt;}
.y1_c00099{bottom:655.733333pt;}
.h6_c00099{height:11.733399pt;}
.h7_c00099{height:38.937500pt;}
.h3_c00099{height:71.785156pt;}
.h5_c00099{height:77.654948pt;}
.h2_c00099{height:91.160156pt;}
.h4_c00099{height:131.675781pt;}
.h1_c00099{height:736.666667pt;}
.h0_c00099{height:736.800000pt;}
.w2_c00099{width:93.222667pt;}
.w0_c00099{width:493.933333pt;}
.w1_c00099{width:494.000000pt;}
.x0_c00099{left:0.000000pt;}
.x4_c00099{left:33.866667pt;}
.xe_c00099{left:41.333333pt;}
.x7_c00099{left:46.400000pt;}
.x5_c00099{left:48.266667pt;}
.xb_c00099{left:85.866667pt;}
.xa_c00099{left:86.800000pt;}
.x6_c00099{left:90.400000pt;}
.x3_c00099{left:91.600000pt;}
.xc_c00099{left:108.533333pt;}
.x9_c00099{left:109.866667pt;}
.x2_c00099{left:115.466667pt;}
.x8_c00099{left:117.600000pt;}
.x1_c00099{left:141.866667pt;}
.xf_c00099{left:204.134888pt;}
.xd_c00099{left:452.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_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_95c526b718a37daab83c16db.woff2')format("woff");}.ff1_c00100{font-family:ff1_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:ff2_c00100;src:url('chunks/assets/font_22be7cc177e99199eb1175a2.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.568848;font-style:normal;font-weight:normal;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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00100{font-family:ff4_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;}
.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;}
.ls3_c00100{letter-spacing:-3.000000px;}
.ls1_c00100{letter-spacing:0.000000px;}
.ls2_c00100{letter-spacing:3.000000px;}
.ls5_c00100{letter-spacing:6.000000px;}
.ls4_c00100{letter-spacing:12.000000px;}
.ls0_c00100{letter-spacing:22.800000px;}
.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:-28.629000px;}
.ws1_c00100{word-spacing:-16.629000px;}
.ws2_c00100{word-spacing:0.000000px;}
._12_c00100{margin-left:-8.418000px;}
._d_c00100{margin-left:-6.831000px;}
._c_c00100{margin-left:-5.520000px;}
._3_c00100{margin-left:-3.174000px;}
._2_c00100{margin-left:-1.725000px;}
._0_c00100{width:1.242000px;}
._7_c00100{width:2.553000px;}
._a_c00100{width:3.933000px;}
._9_c00100{width:5.106000px;}
._10_c00100{width:6.141000px;}
._13_c00100{width:7.452000px;}
._6_c00100{width:8.625000px;}
._5_c00100{width:10.005000px;}
._11_c00100{width:11.730000px;}
._8_c00100{width:13.524000px;}
._f_c00100{width:14.835000px;}
._e_c00100{width:16.560000px;}
._1_c00100{width:17.940000px;}
._14_c00100{width:21.540000px;}
._15_c00100{width:22.977000px;}
._1a_c00100{width:24.366000px;}
._16_c00100{width:26.013000px;}
._1d_c00100{width:29.037000px;}
._1b_c00100{width:32.637000px;}
._1c_c00100{width:34.638000px;}
._17_c00100{width:43.509000px;}
._b_c00100{width:90.114000px;}
._18_c00100{width:96.771000px;}
._19_c00100{width:104.448000px;}
._4_c00100{width:503.907000px;}
._1e_c00100{width:527.835000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(128,128,128);}
.fc0_c00100{color:rgb(0,0,0);}
.fs4_c00100{font-size:48.000000px;}
.fs2_c00100{font-size:66.000000px;}
.fs0_c00100{font-size:69.000000px;}
.fs1_c00100{font-size:72.000000px;}
.fs3_c00100{font-size:75.000000px;}
.y0_c00100{bottom:0.000000px;}
.y20_c00100{bottom:3.105000px;}
.y1f_c00100{bottom:7.228371px;}
.y1e_c00100{bottom:60.465000px;}
.y1d_c00100{bottom:87.465000px;}
.y1c_c00100{bottom:111.015000px;}
.y1b_c00100{bottom:137.415000px;}
.y1a_c00100{bottom:161.715000px;}
.y19_c00100{bottom:187.665000px;}
.y18_c00100{bottom:212.715000px;}
.y17_c00100{bottom:237.015000px;}
.y16_c00100{bottom:262.965000px;}
.y15_c00100{bottom:288.015000px;}
.y14_c00100{bottom:312.615000px;}
.y13_c00100{bottom:339.315000px;}
.y12_c00100{bottom:362.565000px;}
.y11_c00100{bottom:387.765000px;}
.y10_c00100{bottom:411.765000px;}
.yf_c00100{bottom:436.515000px;}
.ye_c00100{bottom:462.165000px;}
.yd_c00100{bottom:487.365000px;}
.yc_c00100{bottom:510.765000px;}
.yb_c00100{bottom:535.365000px;}
.ya_c00100{bottom:561.015000px;}
.y9_c00100{bottom:586.215000px;}
.y8_c00100{bottom:610.965000px;}
.y7_c00100{bottom:636.165000px;}
.y6_c00100{bottom:660.915000px;}
.y5_c00100{bottom:686.115000px;}
.y4_c00100{bottom:711.465000px;}
.y3_c00100{bottom:736.515000px;}
.y2_c00100{bottom:761.415000px;}
.y1_c00100{bottom:787.065000px;}
.h6_c00100{height:13.200074px;}
.h7_c00100{height:43.804688px;}
.h2_c00100{height:80.758301px;}
.h3_c00100{height:87.361816px;}
.h4_c00100{height:91.160156px;}
.h5_c00100{height:94.958496px;}
.h0_c00100{height:828.375000px;}
.h1_c00100{height:828.750000px;}
.w2_c00100{width:104.875500px;}
.w1_c00100{width:555.000000px;}
.w0_c00100{width:555.150000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:26.700000px;}
.x3_c00100{left:28.050000px;}
.x4_c00100{left:29.100000px;}
.x7_c00100{left:30.150000px;}
.x5_c00100{left:31.350000px;}
.x6_c00100{left:66.150000px;}
.x1_c00100{left:190.950000px;}
.x9_c00100{left:229.389267px;}
.x8_c00100{left:264.900000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls3_c00100{letter-spacing:-2.666667pt;}
.ls1_c00100{letter-spacing:0.000000pt;}
.ls2_c00100{letter-spacing:2.666667pt;}
.ls5_c00100{letter-spacing:5.333333pt;}
.ls4_c00100{letter-spacing:10.666667pt;}
.ls0_c00100{letter-spacing:20.266667pt;}
.ws0_c00100{word-spacing:-25.448000pt;}
.ws1_c00100{word-spacing:-14.781333pt;}
.ws2_c00100{word-spacing:0.000000pt;}
._12_c00100{margin-left:-7.482667pt;}
._d_c00100{margin-left:-6.072000pt;}
._c_c00100{margin-left:-4.906667pt;}
._3_c00100{margin-left:-2.821333pt;}
._2_c00100{margin-left:-1.533333pt;}
._0_c00100{width:1.104000pt;}
._7_c00100{width:2.269333pt;}
._a_c00100{width:3.496000pt;}
._9_c00100{width:4.538667pt;}
._10_c00100{width:5.458667pt;}
._13_c00100{width:6.624000pt;}
._6_c00100{width:7.666667pt;}
._5_c00100{width:8.893333pt;}
._11_c00100{width:10.426667pt;}
._8_c00100{width:12.021333pt;}
._f_c00100{width:13.186667pt;}
._e_c00100{width:14.720000pt;}
._1_c00100{width:15.946667pt;}
._14_c00100{width:19.146667pt;}
._15_c00100{width:20.424000pt;}
._1a_c00100{width:21.658667pt;}
._16_c00100{width:23.122667pt;}
._1d_c00100{width:25.810667pt;}
._1b_c00100{width:29.010667pt;}
._1c_c00100{width:30.789333pt;}
._17_c00100{width:38.674667pt;}
._b_c00100{width:80.101333pt;}
._18_c00100{width:86.018667pt;}
._19_c00100{width:92.842667pt;}
._4_c00100{width:447.917333pt;}
._1e_c00100{width:469.186667pt;}
.fs4_c00100{font-size:42.666667pt;}
.fs2_c00100{font-size:58.666667pt;}
.fs0_c00100{font-size:61.333333pt;}
.fs1_c00100{font-size:64.000000pt;}
.fs3_c00100{font-size:66.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y20_c00100{bottom:2.760000pt;}
.y1f_c00100{bottom:6.425219pt;}
.y1e_c00100{bottom:53.746667pt;}
.y1d_c00100{bottom:77.746667pt;}
.y1c_c00100{bottom:98.680000pt;}
.y1b_c00100{bottom:122.146667pt;}
.y1a_c00100{bottom:143.746667pt;}
.y19_c00100{bottom:166.813333pt;}
.y18_c00100{bottom:189.080000pt;}
.y17_c00100{bottom:210.680000pt;}
.y16_c00100{bottom:233.746667pt;}
.y15_c00100{bottom:256.013333pt;}
.y14_c00100{bottom:277.880000pt;}
.y13_c00100{bottom:301.613333pt;}
.y12_c00100{bottom:322.280000pt;}
.y11_c00100{bottom:344.680000pt;}
.y10_c00100{bottom:366.013333pt;}
.yf_c00100{bottom:388.013333pt;}
.ye_c00100{bottom:410.813333pt;}
.yd_c00100{bottom:433.213333pt;}
.yc_c00100{bottom:454.013333pt;}
.yb_c00100{bottom:475.880000pt;}
.ya_c00100{bottom:498.680000pt;}
.y9_c00100{bottom:521.080000pt;}
.y8_c00100{bottom:543.080000pt;}
.y7_c00100{bottom:565.480000pt;}
.y6_c00100{bottom:587.480000pt;}
.y5_c00100{bottom:609.880000pt;}
.y4_c00100{bottom:632.413333pt;}
.y3_c00100{bottom:654.680000pt;}
.y2_c00100{bottom:676.813333pt;}
.y1_c00100{bottom:699.613333pt;}
.h6_c00100{height:11.733399pt;}
.h7_c00100{height:38.937500pt;}
.h2_c00100{height:71.785156pt;}
.h3_c00100{height:77.654948pt;}
.h4_c00100{height:81.031250pt;}
.h5_c00100{height:84.407552pt;}
.h0_c00100{height:736.333333pt;}
.h1_c00100{height:736.666667pt;}
.w2_c00100{width:93.222667pt;}
.w1_c00100{width:493.333333pt;}
.w0_c00100{width:493.466667pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:23.733333pt;}
.x3_c00100{left:24.933333pt;}
.x4_c00100{left:25.866667pt;}
.x7_c00100{left:26.800000pt;}
.x5_c00100{left:27.866667pt;}
.x6_c00100{left:58.800000pt;}
.x1_c00100{left:169.733333pt;}
.x9_c00100{left:203.901571pt;}
.x8_c00100{left:235.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_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_deadd0245251e5826af54ecc.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.568848;font-style:normal;font-weight:normal;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_86298ecbc8eee94ae1810a5a.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_0287b072963d378a38f6523f.woff2')format("woff");}.ff3_c00101{font-family:ff3_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:ff4_c00101;src:url('chunks/assets/font_b3608894b08066ec8f940388.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00101{font-family:ff5_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls3_c00101{letter-spacing:0.000000px;}
.ls2_c00101{letter-spacing:3.000000px;}
.ls4_c00101{letter-spacing:6.000000px;}
.ls0_c00101{letter-spacing:16.125000px;}
.ls5_c00101{letter-spacing:18.000000px;}
.ls6_c00101{letter-spacing:21.000000px;}
.ls1_c00101{letter-spacing:35.970000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00101{word-spacing:-39.075000px;}
.ws4_c00101{word-spacing:-35.352000px;}
.ws2_c00101{word-spacing:-22.629000px;}
.ws6_c00101{word-spacing:-19.629000px;}
.ws3_c00101{word-spacing:-16.629000px;}
.ws1_c00101{word-spacing:-16.500000px;}
.ws7_c00101{word-spacing:0.000000px;}
.ws0_c00101{word-spacing:4.278000px;}
._2c_c00101{margin-left:-23.364000px;}
._18_c00101{margin-left:-18.699000px;}
._15_c00101{margin-left:-15.456000px;}
._2a_c00101{margin-left:-14.400000px;}
._22_c00101{margin-left:-13.317000px;}
._29_c00101{margin-left:-12.276000px;}
._16_c00101{margin-left:-10.626000px;}
._0_c00101{margin-left:-8.970000px;}
._1f_c00101{margin-left:-7.869000px;}
._23_c00101{margin-left:-6.003000px;}
._a_c00101{margin-left:-4.761000px;}
._1_c00101{margin-left:-3.450000px;}
._5_c00101{margin-left:-1.863000px;}
._7_c00101{width:1.035000px;}
._3_c00101{width:2.415000px;}
._2_c00101{width:3.933000px;}
._6_c00101{width:5.382000px;}
._9_c00101{width:6.486000px;}
._f_c00101{width:7.524000px;}
._c_c00101{width:8.625000px;}
._8_c00101{width:10.281000px;}
._13_c00101{width:11.799000px;}
._b_c00101{width:13.869000px;}
._1d_c00101{width:15.111000px;}
._1b_c00101{width:16.836000px;}
._20_c00101{width:17.973000px;}
._11_c00101{width:19.113000px;}
._12_c00101{width:20.718000px;}
._e_c00101{width:22.476000px;}
._27_c00101{width:25.158000px;}
._26_c00101{width:26.223000px;}
._d_c00101{width:28.014000px;}
._1e_c00101{width:30.150000px;}
._14_c00101{width:34.536000px;}
._28_c00101{width:38.847000px;}
._2b_c00101{width:45.405000px;}
._1c_c00101{width:52.647000px;}
._10_c00101{width:54.234000px;}
._25_c00101{width:63.345000px;}
._17_c00101{width:65.478000px;}
._30_c00101{width:78.789000px;}
._19_c00101{width:90.726000px;}
._1a_c00101{width:93.426000px;}
._21_c00101{width:99.012000px;}
._2e_c00101{width:118.473000px;}
._4_c00101{width:363.747000px;}
._2d_c00101{width:424.074000px;}
._24_c00101{width:477.756000px;}
._2f_c00101{width:649.560000px;}
._31_c00101{width:761.562000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(128,128,128);}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:30.000000px;}
.fs7_c00101{font-size:48.000000px;}
.fs6_c00101{font-size:51.000000px;}
.fs1_c00101{font-size:66.000000px;}
.fs0_c00101{font-size:69.000000px;}
.fs4_c00101{font-size:72.000000px;}
.fs5_c00101{font-size:75.000000px;}
.fs3_c00101{font-size:78.000000px;}
.y0_c00101{bottom:0.000000px;}
.y1c_c00101{bottom:3.105000px;}
.y1b_c00101{bottom:7.228357px;}
.y1a_c00101{bottom:58.080000px;}
.y19_c00101{bottom:84.480000px;}
.y18_c00101{bottom:109.680000px;}
.y17_c00101{bottom:160.380000px;}
.y16_c00101{bottom:212.580000px;}
.y15_c00101{bottom:236.280000px;}
.y14_c00101{bottom:261.630000px;}
.y13_c00101{bottom:286.830000px;}
.y12_c00101{bottom:312.180000px;}
.y11_c00101{bottom:337.230000px;}
.y10_c00101{bottom:361.530000px;}
.yf_c00101{bottom:386.880000px;}
.ye_c00101{bottom:412.380000px;}
.yd_c00101{bottom:437.430000px;}
.yc_c00101{bottom:462.330000px;}
.yb_c00101{bottom:487.380000px;}
.ya_c00101{bottom:512.730000px;}
.y9_c00101{bottom:536.730000px;}
.y8_c00101{bottom:563.280000px;}
.y7_c00101{bottom:588.630000px;}
.y6_c00101{bottom:638.580000px;}
.y5_c00101{bottom:688.830000px;}
.y4_c00101{bottom:714.180000px;}
.y3_c00101{bottom:739.530000px;}
.y2_c00101{bottom:764.730000px;}
.y1_c00101{bottom:790.530000px;}
.h4_c00101{height:13.200074px;}
.h5_c00101{height:43.804688px;}
.h2_c00101{height:87.361816px;}
.h3_c00101{height:94.958496px;}
.h1_c00101{height:830.250000px;}
.h0_c00101{height:830.550000px;}
.w2_c00101{width:104.875500px;}
.w1_c00101{width:556.500000px;}
.w0_c00101{width:556.725000px;}
.x0_c00101{left:0.000000px;}
.xa_c00101{left:30.300000px;}
.x7_c00101{left:34.650000px;}
.x9_c00101{left:47.550000px;}
.x8_c00101{left:52.200000px;}
.xd_c00101{left:90.000000px;}
.x6_c00101{left:97.500000px;}
.x3_c00101{left:99.450000px;}
.x2_c00101{left:101.250000px;}
.xb_c00101{left:105.300000px;}
.x1_c00101{left:114.300000px;}
.xc_c00101{left:117.750000px;}
.x5_c00101{left:125.250000px;}
.x4_c00101{left:132.000000px;}
.xe_c00101{left:230.176758px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls3_c00101{letter-spacing:0.000000pt;}
.ls2_c00101{letter-spacing:2.666667pt;}
.ls4_c00101{letter-spacing:5.333333pt;}
.ls0_c00101{letter-spacing:14.333333pt;}
.ls5_c00101{letter-spacing:16.000000pt;}
.ls6_c00101{letter-spacing:18.666667pt;}
.ls1_c00101{letter-spacing:31.973333pt;}
.ws5_c00101{word-spacing:-34.733333pt;}
.ws4_c00101{word-spacing:-31.424000pt;}
.ws2_c00101{word-spacing:-20.114667pt;}
.ws6_c00101{word-spacing:-17.448000pt;}
.ws3_c00101{word-spacing:-14.781333pt;}
.ws1_c00101{word-spacing:-14.666667pt;}
.ws7_c00101{word-spacing:0.000000pt;}
.ws0_c00101{word-spacing:3.802667pt;}
._2c_c00101{margin-left:-20.768000pt;}
._18_c00101{margin-left:-16.621333pt;}
._15_c00101{margin-left:-13.738667pt;}
._2a_c00101{margin-left:-12.800000pt;}
._22_c00101{margin-left:-11.837333pt;}
._29_c00101{margin-left:-10.912000pt;}
._16_c00101{margin-left:-9.445333pt;}
._0_c00101{margin-left:-7.973333pt;}
._1f_c00101{margin-left:-6.994667pt;}
._23_c00101{margin-left:-5.336000pt;}
._a_c00101{margin-left:-4.232000pt;}
._1_c00101{margin-left:-3.066667pt;}
._5_c00101{margin-left:-1.656000pt;}
._7_c00101{width:0.920000pt;}
._3_c00101{width:2.146667pt;}
._2_c00101{width:3.496000pt;}
._6_c00101{width:4.784000pt;}
._9_c00101{width:5.765333pt;}
._f_c00101{width:6.688000pt;}
._c_c00101{width:7.666667pt;}
._8_c00101{width:9.138667pt;}
._13_c00101{width:10.488000pt;}
._b_c00101{width:12.328000pt;}
._1d_c00101{width:13.432000pt;}
._1b_c00101{width:14.965333pt;}
._20_c00101{width:15.976000pt;}
._11_c00101{width:16.989333pt;}
._12_c00101{width:18.416000pt;}
._e_c00101{width:19.978667pt;}
._27_c00101{width:22.362667pt;}
._26_c00101{width:23.309333pt;}
._d_c00101{width:24.901333pt;}
._1e_c00101{width:26.800000pt;}
._14_c00101{width:30.698667pt;}
._28_c00101{width:34.530667pt;}
._2b_c00101{width:40.360000pt;}
._1c_c00101{width:46.797333pt;}
._10_c00101{width:48.208000pt;}
._25_c00101{width:56.306667pt;}
._17_c00101{width:58.202667pt;}
._30_c00101{width:70.034667pt;}
._19_c00101{width:80.645333pt;}
._1a_c00101{width:83.045333pt;}
._21_c00101{width:88.010667pt;}
._2e_c00101{width:105.309333pt;}
._4_c00101{width:323.330667pt;}
._2d_c00101{width:376.954667pt;}
._24_c00101{width:424.672000pt;}
._2f_c00101{width:577.386667pt;}
._31_c00101{width:676.944000pt;}
.fs2_c00101{font-size:26.666667pt;}
.fs7_c00101{font-size:42.666667pt;}
.fs6_c00101{font-size:45.333333pt;}
.fs1_c00101{font-size:58.666667pt;}
.fs0_c00101{font-size:61.333333pt;}
.fs4_c00101{font-size:64.000000pt;}
.fs5_c00101{font-size:66.666667pt;}
.fs3_c00101{font-size:69.333333pt;}
.y0_c00101{bottom:0.000000pt;}
.y1c_c00101{bottom:2.760000pt;}
.y1b_c00101{bottom:6.425206pt;}
.y1a_c00101{bottom:51.626667pt;}
.y19_c00101{bottom:75.093333pt;}
.y18_c00101{bottom:97.493333pt;}
.y17_c00101{bottom:142.560000pt;}
.y16_c00101{bottom:188.960000pt;}
.y15_c00101{bottom:210.026667pt;}
.y14_c00101{bottom:232.560000pt;}
.y13_c00101{bottom:254.960000pt;}
.y12_c00101{bottom:277.493333pt;}
.y11_c00101{bottom:299.760000pt;}
.y10_c00101{bottom:321.360000pt;}
.yf_c00101{bottom:343.893333pt;}
.ye_c00101{bottom:366.560000pt;}
.yd_c00101{bottom:388.826667pt;}
.yc_c00101{bottom:410.960000pt;}
.yb_c00101{bottom:433.226667pt;}
.ya_c00101{bottom:455.760000pt;}
.y9_c00101{bottom:477.093333pt;}
.y8_c00101{bottom:500.693333pt;}
.y7_c00101{bottom:523.226667pt;}
.y6_c00101{bottom:567.626667pt;}
.y5_c00101{bottom:612.293333pt;}
.y4_c00101{bottom:634.826667pt;}
.y3_c00101{bottom:657.360000pt;}
.y2_c00101{bottom:679.760000pt;}
.y1_c00101{bottom:702.693333pt;}
.h4_c00101{height:11.733399pt;}
.h5_c00101{height:38.937500pt;}
.h2_c00101{height:77.654948pt;}
.h3_c00101{height:84.407552pt;}
.h1_c00101{height:738.000000pt;}
.h0_c00101{height:738.266667pt;}
.w2_c00101{width:93.222667pt;}
.w1_c00101{width:494.666667pt;}
.w0_c00101{width:494.866667pt;}
.x0_c00101{left:0.000000pt;}
.xa_c00101{left:26.933333pt;}
.x7_c00101{left:30.800000pt;}
.x9_c00101{left:42.266667pt;}
.x8_c00101{left:46.400000pt;}
.xd_c00101{left:80.000000pt;}
.x6_c00101{left:86.666667pt;}
.x3_c00101{left:88.400000pt;}
.x2_c00101{left:90.000000pt;}
.xb_c00101{left:93.600000pt;}
.x1_c00101{left:101.600000pt;}
.xc_c00101{left:104.666667pt;}
.x5_c00101{left:111.333333pt;}
.x4_c00101{left:117.333333pt;}
.xe_c00101{left:204.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12c28d384c06379d33c5351e.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.480469;font-style:normal;font-weight:normal;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_c6958ae747fa165a45d08ff6.woff2')format("woff");}.ff2_c00102{font-family:ff2_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:ff3_c00102;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff3_c00102{font-family:ff3_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:ff4_c00102;src:url('chunks/assets/font_1d57533f62f7c06b24ff308d.woff2')format("woff");}.ff4_c00102{font-family:ff4_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:ff5_c00102;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00102{font-family:ff5_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;}
.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;}
.ls2_c00102{letter-spacing:0.000000px;}
.ls3_c00102{letter-spacing:3.000000px;}
.ls4_c00102{letter-spacing:12.000000px;}
.ls1_c00102{letter-spacing:14.325000px;}
.ls0_c00102{letter-spacing:25.200000px;}
.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:-16.629000px;}
.ws4_c00102{word-spacing:-11.793000px;}
.ws1_c00102{word-spacing:-0.621000px;}
.ws6_c00102{word-spacing:0.000000px;}
.ws3_c00102{word-spacing:1.104000px;}
.ws5_c00102{word-spacing:1.656000px;}
.ws2_c00102{word-spacing:6.354000px;}
._13_c00102{margin-left:-36.432000px;}
._1a_c00102{margin-left:-29.049000px;}
._b_c00102{margin-left:-23.874000px;}
._2a_c00102{margin-left:-17.631000px;}
._27_c00102{margin-left:-14.430000px;}
._24_c00102{margin-left:-11.730000px;}
._12_c00102{margin-left:-9.936000px;}
._20_c00102{margin-left:-8.832000px;}
._1c_c00102{margin-left:-7.590000px;}
._1e_c00102{margin-left:-6.564000px;}
._1d_c00102{margin-left:-4.899000px;}
._2_c00102{margin-left:-3.657000px;}
._1_c00102{margin-left:-2.484000px;}
._3_c00102{margin-left:-1.380000px;}
._0_c00102{width:1.518000px;}
._9_c00102{width:2.760000px;}
._7_c00102{width:3.795000px;}
._6_c00102{width:5.658000px;}
._8_c00102{width:6.900000px;}
._c_c00102{width:8.202000px;}
._17_c00102{width:9.384000px;}
._10_c00102{width:10.497000px;}
._d_c00102{width:12.489000px;}
._14_c00102{width:13.731000px;}
._18_c00102{width:15.102000px;}
._1f_c00102{width:16.983000px;}
._16_c00102{width:18.372000px;}
._26_c00102{width:19.929000px;}
._f_c00102{width:21.666000px;}
._e_c00102{width:23.184000px;}
._25_c00102{width:25.812000px;}
._21_c00102{width:27.354000px;}
._28_c00102{width:32.016000px;}
._15_c00102{width:34.974000px;}
._19_c00102{width:38.139000px;}
._2b_c00102{width:49.935000px;}
._22_c00102{width:78.936000px;}
._1b_c00102{width:85.146000px;}
._2e_c00102{width:98.664000px;}
._4_c00102{width:103.362000px;}
._2c_c00102{width:145.521000px;}
._29_c00102{width:155.112000px;}
._a_c00102{width:161.508000px;}
._23_c00102{width:185.886000px;}
._2f_c00102{width:188.196000px;}
._11_c00102{width:189.633000px;}
._2d_c00102{width:251.112000px;}
._5_c00102{width:371.790000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(128,128,128);}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:48.000000px;}
.fs2_c00102{font-size:57.000000px;}
.fs1_c00102{font-size:66.000000px;}
.fs0_c00102{font-size:69.000000px;}
.fs3_c00102{font-size:81.000000px;}
.y0_c00102{bottom:0.000000px;}
.y20_c00102{bottom:3.105000px;}
.y1f_c00102{bottom:7.228371px;}
.y1e_c00102{bottom:62.865000px;}
.y1d_c00102{bottom:89.865000px;}
.y1c_c00102{bottom:115.815000px;}
.y1b_c00102{bottom:140.865000px;}
.y1a_c00102{bottom:164.715000px;}
.y19_c00102{bottom:190.815000px;}
.y18_c00102{bottom:216.315000px;}
.y17_c00102{bottom:241.965000px;}
.y16_c00102{bottom:266.715000px;}
.y15_c00102{bottom:292.065000px;}
.y14_c00102{bottom:317.565000px;}
.y13_c00102{bottom:342.915000px;}
.y12_c00102{bottom:367.965000px;}
.y11_c00102{bottom:393.165000px;}
.y10_c00102{bottom:417.915000px;}
.yf_c00102{bottom:443.115000px;}
.ye_c00102{bottom:467.415000px;}
.yd_c00102{bottom:492.765000px;}
.yc_c00102{bottom:517.515000px;}
.yb_c00102{bottom:542.115000px;}
.ya_c00102{bottom:567.015000px;}
.y9_c00102{bottom:591.765000px;}
.y8_c00102{bottom:616.965000px;}
.y7_c00102{bottom:642.015000px;}
.y6_c00102{bottom:666.915000px;}
.y5_c00102{bottom:692.265000px;}
.y4_c00102{bottom:717.315000px;}
.y3_c00102{bottom:742.815000px;}
.y2_c00102{bottom:767.265000px;}
.y1_c00102{bottom:792.765000px;}
.h4_c00102{height:13.200074px;}
.h5_c00102{height:43.804688px;}
.h2_c00102{height:87.361816px;}
.h3_c00102{height:102.555176px;}
.h1_c00102{height:831.000000px;}
.h0_c00102{height:831.075000px;}
.w1_c00102{width:104.875500px;}
.w0_c00102{width:557.250000px;}
.x0_c00102{left:0.000000px;}
.x5_c00102{left:33.150000px;}
.x3_c00102{left:34.350000px;}
.x4_c00102{left:35.400000px;}
.x6_c00102{left:40.200000px;}
.x2_c00102{left:60.450000px;}
.x1_c00102{left:197.100000px;}
.x8_c00102{left:230.439240px;}
.x7_c00102{left:458.100000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls2_c00102{letter-spacing:0.000000pt;}
.ls3_c00102{letter-spacing:2.666667pt;}
.ls4_c00102{letter-spacing:10.666667pt;}
.ls1_c00102{letter-spacing:12.733333pt;}
.ls0_c00102{letter-spacing:22.400000pt;}
.ws0_c00102{word-spacing:-14.781333pt;}
.ws4_c00102{word-spacing:-10.482667pt;}
.ws1_c00102{word-spacing:-0.552000pt;}
.ws6_c00102{word-spacing:0.000000pt;}
.ws3_c00102{word-spacing:0.981333pt;}
.ws5_c00102{word-spacing:1.472000pt;}
.ws2_c00102{word-spacing:5.648000pt;}
._13_c00102{margin-left:-32.384000pt;}
._1a_c00102{margin-left:-25.821333pt;}
._b_c00102{margin-left:-21.221333pt;}
._2a_c00102{margin-left:-15.672000pt;}
._27_c00102{margin-left:-12.826667pt;}
._24_c00102{margin-left:-10.426667pt;}
._12_c00102{margin-left:-8.832000pt;}
._20_c00102{margin-left:-7.850667pt;}
._1c_c00102{margin-left:-6.746667pt;}
._1e_c00102{margin-left:-5.834667pt;}
._1d_c00102{margin-left:-4.354667pt;}
._2_c00102{margin-left:-3.250667pt;}
._1_c00102{margin-left:-2.208000pt;}
._3_c00102{margin-left:-1.226667pt;}
._0_c00102{width:1.349333pt;}
._9_c00102{width:2.453333pt;}
._7_c00102{width:3.373333pt;}
._6_c00102{width:5.029333pt;}
._8_c00102{width:6.133333pt;}
._c_c00102{width:7.290667pt;}
._17_c00102{width:8.341333pt;}
._10_c00102{width:9.330667pt;}
._d_c00102{width:11.101333pt;}
._14_c00102{width:12.205333pt;}
._18_c00102{width:13.424000pt;}
._1f_c00102{width:15.096000pt;}
._16_c00102{width:16.330667pt;}
._26_c00102{width:17.714667pt;}
._f_c00102{width:19.258667pt;}
._e_c00102{width:20.608000pt;}
._25_c00102{width:22.944000pt;}
._21_c00102{width:24.314667pt;}
._28_c00102{width:28.458667pt;}
._15_c00102{width:31.088000pt;}
._19_c00102{width:33.901333pt;}
._2b_c00102{width:44.386667pt;}
._22_c00102{width:70.165333pt;}
._1b_c00102{width:75.685333pt;}
._2e_c00102{width:87.701333pt;}
._4_c00102{width:91.877333pt;}
._2c_c00102{width:129.352000pt;}
._29_c00102{width:137.877333pt;}
._a_c00102{width:143.562667pt;}
._23_c00102{width:165.232000pt;}
._2f_c00102{width:167.285333pt;}
._11_c00102{width:168.562667pt;}
._2d_c00102{width:223.210667pt;}
._5_c00102{width:330.480000pt;}
.fs4_c00102{font-size:42.666667pt;}
.fs2_c00102{font-size:50.666667pt;}
.fs1_c00102{font-size:58.666667pt;}
.fs0_c00102{font-size:61.333333pt;}
.fs3_c00102{font-size:72.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y20_c00102{bottom:2.760000pt;}
.y1f_c00102{bottom:6.425219pt;}
.y1e_c00102{bottom:55.880000pt;}
.y1d_c00102{bottom:79.880000pt;}
.y1c_c00102{bottom:102.946667pt;}
.y1b_c00102{bottom:125.213333pt;}
.y1a_c00102{bottom:146.413333pt;}
.y19_c00102{bottom:169.613333pt;}
.y18_c00102{bottom:192.280000pt;}
.y17_c00102{bottom:215.080000pt;}
.y16_c00102{bottom:237.080000pt;}
.y15_c00102{bottom:259.613333pt;}
.y14_c00102{bottom:282.280000pt;}
.y13_c00102{bottom:304.813333pt;}
.y12_c00102{bottom:327.080000pt;}
.y11_c00102{bottom:349.480000pt;}
.y10_c00102{bottom:371.480000pt;}
.yf_c00102{bottom:393.880000pt;}
.ye_c00102{bottom:415.480000pt;}
.yd_c00102{bottom:438.013333pt;}
.yc_c00102{bottom:460.013333pt;}
.yb_c00102{bottom:481.880000pt;}
.ya_c00102{bottom:504.013333pt;}
.y9_c00102{bottom:526.013333pt;}
.y8_c00102{bottom:548.413333pt;}
.y7_c00102{bottom:570.680000pt;}
.y6_c00102{bottom:592.813333pt;}
.y5_c00102{bottom:615.346667pt;}
.y4_c00102{bottom:637.613333pt;}
.y3_c00102{bottom:660.280000pt;}
.y2_c00102{bottom:682.013333pt;}
.y1_c00102{bottom:704.680000pt;}
.h4_c00102{height:11.733399pt;}
.h5_c00102{height:38.937500pt;}
.h2_c00102{height:77.654948pt;}
.h3_c00102{height:91.160156pt;}
.h1_c00102{height:738.666667pt;}
.h0_c00102{height:738.733333pt;}
.w1_c00102{width:93.222667pt;}
.w0_c00102{width:495.333333pt;}
.x0_c00102{left:0.000000pt;}
.x5_c00102{left:29.466667pt;}
.x3_c00102{left:30.533333pt;}
.x4_c00102{left:31.466667pt;}
.x6_c00102{left:35.733333pt;}
.x2_c00102{left:53.733333pt;}
.x1_c00102{left:175.200000pt;}
.x8_c00102{left:204.834880pt;}
.x7_c00102{left:407.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_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_c32dc5c087bfc8987f02c6ec.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.568848;font-style:normal;font-weight:normal;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_e30b8554335f834eb1cd03a1.woff2')format("woff");}.ff2_c00103{font-family:ff2_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:ff3_c00103;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.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_49228cb002717bc31316d873.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.568848;font-style:normal;font-weight:normal;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_de2957c99b903da6177e227d.woff2')format("woff");}.ff5_c00103{font-family:ff5_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:ff6_c00103;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00103{font-family:ff6_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;}
.ls9_c00103{letter-spacing:-3.000000px;}
.ls8_c00103{letter-spacing:0.000000px;}
.lsa_c00103{letter-spacing:3.000000px;}
.ls6_c00103{letter-spacing:4.302000px;}
.ls5_c00103{letter-spacing:7.800000px;}
.ls4_c00103{letter-spacing:12.291000px;}
.ls2_c00103{letter-spacing:13.089000px;}
.ls0_c00103{letter-spacing:13.125000px;}
.ls7_c00103{letter-spacing:16.125000px;}
.ls1_c00103{letter-spacing:20.400000px;}
.ls3_c00103{letter-spacing:21.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;}
}
.ws6_c00103{word-spacing:-36.036000px;}
.ws8_c00103{word-spacing:-19.629000px;}
.ws2_c00103{word-spacing:-19.530000px;}
.ws3_c00103{word-spacing:-16.629000px;}
.ws0_c00103{word-spacing:-15.183000px;}
.ws4_c00103{word-spacing:-13.014000px;}
.ws5_c00103{word-spacing:-1.104000px;}
.ws1_c00103{word-spacing:-0.966000px;}
.ws9_c00103{word-spacing:0.000000px;}
.ws7_c00103{word-spacing:2.208000px;}
._c_c00103{margin-left:-25.140000px;}
._27_c00103{margin-left:-20.073000px;}
._18_c00103{margin-left:-15.024000px;}
._15_c00103{margin-left:-12.489000px;}
._13_c00103{margin-left:-11.214000px;}
._1f_c00103{margin-left:-9.624000px;}
._14_c00103{margin-left:-8.418000px;}
._2_c00103{margin-left:-6.381000px;}
._19_c00103{margin-left:-5.118000px;}
._0_c00103{margin-left:-3.717000px;}
._7_c00103{margin-left:-2.697000px;}
._1_c00103{margin-left:-1.260000px;}
._5_c00103{width:1.932000px;}
._8_c00103{width:3.036000px;}
._4_c00103{width:4.140000px;}
._9_c00103{width:5.526000px;}
._6_c00103{width:6.555000px;}
._a_c00103{width:7.746000px;}
._f_c00103{width:9.081000px;}
._10_c00103{width:10.212000px;}
._b_c00103{width:11.427000px;}
._e_c00103{width:13.461000px;}
._11_c00103{width:15.702000px;}
._3_c00103{width:17.457000px;}
._1b_c00103{width:19.485000px;}
._1d_c00103{width:20.706000px;}
._12_c00103{width:22.173000px;}
._16_c00103{width:23.739000px;}
._26_c00103{width:27.651000px;}
._d_c00103{width:33.270000px;}
._1a_c00103{width:38.082000px;}
._20_c00103{width:43.938000px;}
._25_c00103{width:71.760000px;}
._1c_c00103{width:79.938000px;}
._24_c00103{width:95.382000px;}
._22_c00103{width:102.225000px;}
._1e_c00103{width:105.855000px;}
._21_c00103{width:153.540000px;}
._23_c00103{width:158.229000px;}
._17_c00103{width:202.350000px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(128,128,128);}
.fc0_c00103{color:rgb(0,0,0);}
.fs4_c00103{font-size:45.000000px;}
.fs6_c00103{font-size:48.000000px;}
.fs5_c00103{font-size:54.000000px;}
.fs1_c00103{font-size:60.000000px;}
.fs0_c00103{font-size:63.000000px;}
.fs3_c00103{font-size:66.000000px;}
.fs2_c00103{font-size:69.000000px;}
.y0_c00103{bottom:0.000000px;}
.y1e_c00103{bottom:3.105000px;}
.y1d_c00103{bottom:7.228363px;}
.y1c_c00103{bottom:69.600000px;}
.y1b_c00103{bottom:96.750000px;}
.y1a_c00103{bottom:121.950000px;}
.y19_c00103{bottom:148.800000px;}
.y18_c00103{bottom:172.800000px;}
.y17_c00103{bottom:200.100000px;}
.y16_c00103{bottom:223.500000px;}
.y15_c00103{bottom:248.400000px;}
.y14_c00103{bottom:274.050000px;}
.y13_c00103{bottom:300.000000px;}
.y12_c00103{bottom:324.750000px;}
.y11_c00103{bottom:349.350000px;}
.y10_c00103{bottom:374.250000px;}
.yf_c00103{bottom:399.300000px;}
.ye_c00103{bottom:437.400000px;}
.yd_c00103{bottom:462.600000px;}
.yc_c00103{bottom:488.250000px;}
.yb_c00103{bottom:543.150000px;}
.ya_c00103{bottom:599.400000px;}
.y9_c00103{bottom:624.750000px;}
.y1_c00103{bottom:639.150000px;}
.y8_c00103{bottom:650.250000px;}
.y7_c00103{bottom:675.750000px;}
.y6_c00103{bottom:700.650000px;}
.y5_c00103{bottom:726.300000px;}
.y4_c00103{bottom:751.050000px;}
.y3_c00103{bottom:776.550000px;}
.y2_c00103{bottom:802.200000px;}
.h5_c00103{height:13.200074px;}
.h6_c00103{height:43.804688px;}
.h2_c00103{height:79.765137px;}
.h4_c00103{height:80.758301px;}
.h3_c00103{height:87.361816px;}
.h1_c00103{height:834.000000px;}
.h0_c00103{height:834.300000px;}
.w2_c00103{width:104.875500px;}
.w0_c00103{width:559.425000px;}
.w1_c00103{width:559.500000px;}
.x0_c00103{left:0.000000px;}
.xa_c00103{left:30.750000px;}
.x1_c00103{left:32.100000px;}
.x4_c00103{left:37.500000px;}
.xb_c00103{left:45.450000px;}
.xc_c00103{left:46.950000px;}
.x9_c00103{left:96.900000px;}
.x6_c00103{left:97.950000px;}
.x5_c00103{left:99.150000px;}
.x3_c00103{left:100.350000px;}
.x8_c00103{left:122.400000px;}
.x7_c00103{left:130.200000px;}
.xe_c00103{left:231.526749px;}
.x2_c00103{left:240.000000px;}
.xd_c00103{left:522.750000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls9_c00103{letter-spacing:-2.666667pt;}
.ls8_c00103{letter-spacing:0.000000pt;}
.lsa_c00103{letter-spacing:2.666667pt;}
.ls6_c00103{letter-spacing:3.824000pt;}
.ls5_c00103{letter-spacing:6.933333pt;}
.ls4_c00103{letter-spacing:10.925333pt;}
.ls2_c00103{letter-spacing:11.634667pt;}
.ls0_c00103{letter-spacing:11.666667pt;}
.ls7_c00103{letter-spacing:14.333333pt;}
.ls1_c00103{letter-spacing:18.133333pt;}
.ls3_c00103{letter-spacing:18.666667pt;}
.ws6_c00103{word-spacing:-32.032000pt;}
.ws8_c00103{word-spacing:-17.448000pt;}
.ws2_c00103{word-spacing:-17.360000pt;}
.ws3_c00103{word-spacing:-14.781333pt;}
.ws0_c00103{word-spacing:-13.496000pt;}
.ws4_c00103{word-spacing:-11.568000pt;}
.ws5_c00103{word-spacing:-0.981333pt;}
.ws1_c00103{word-spacing:-0.858667pt;}
.ws9_c00103{word-spacing:0.000000pt;}
.ws7_c00103{word-spacing:1.962667pt;}
._c_c00103{margin-left:-22.346667pt;}
._27_c00103{margin-left:-17.842667pt;}
._18_c00103{margin-left:-13.354667pt;}
._15_c00103{margin-left:-11.101333pt;}
._13_c00103{margin-left:-9.968000pt;}
._1f_c00103{margin-left:-8.554667pt;}
._14_c00103{margin-left:-7.482667pt;}
._2_c00103{margin-left:-5.672000pt;}
._19_c00103{margin-left:-4.549333pt;}
._0_c00103{margin-left:-3.304000pt;}
._7_c00103{margin-left:-2.397333pt;}
._1_c00103{margin-left:-1.120000pt;}
._5_c00103{width:1.717333pt;}
._8_c00103{width:2.698667pt;}
._4_c00103{width:3.680000pt;}
._9_c00103{width:4.912000pt;}
._6_c00103{width:5.826667pt;}
._a_c00103{width:6.885333pt;}
._f_c00103{width:8.072000pt;}
._10_c00103{width:9.077333pt;}
._b_c00103{width:10.157333pt;}
._e_c00103{width:11.965333pt;}
._11_c00103{width:13.957333pt;}
._3_c00103{width:15.517333pt;}
._1b_c00103{width:17.320000pt;}
._1d_c00103{width:18.405333pt;}
._12_c00103{width:19.709333pt;}
._16_c00103{width:21.101333pt;}
._26_c00103{width:24.578667pt;}
._d_c00103{width:29.573333pt;}
._1a_c00103{width:33.850667pt;}
._20_c00103{width:39.056000pt;}
._25_c00103{width:63.786667pt;}
._1c_c00103{width:71.056000pt;}
._24_c00103{width:84.784000pt;}
._22_c00103{width:90.866667pt;}
._1e_c00103{width:94.093333pt;}
._21_c00103{width:136.480000pt;}
._23_c00103{width:140.648000pt;}
._17_c00103{width:179.866667pt;}
.fs4_c00103{font-size:40.000000pt;}
.fs6_c00103{font-size:42.666667pt;}
.fs5_c00103{font-size:48.000000pt;}
.fs1_c00103{font-size:53.333333pt;}
.fs0_c00103{font-size:56.000000pt;}
.fs3_c00103{font-size:58.666667pt;}
.fs2_c00103{font-size:61.333333pt;}
.y0_c00103{bottom:0.000000pt;}
.y1e_c00103{bottom:2.760000pt;}
.y1d_c00103{bottom:6.425212pt;}
.y1c_c00103{bottom:61.866667pt;}
.y1b_c00103{bottom:86.000000pt;}
.y1a_c00103{bottom:108.400000pt;}
.y19_c00103{bottom:132.266667pt;}
.y18_c00103{bottom:153.600000pt;}
.y17_c00103{bottom:177.866667pt;}
.y16_c00103{bottom:198.666667pt;}
.y15_c00103{bottom:220.800000pt;}
.y14_c00103{bottom:243.600000pt;}
.y13_c00103{bottom:266.666667pt;}
.y12_c00103{bottom:288.666667pt;}
.y11_c00103{bottom:310.533333pt;}
.y10_c00103{bottom:332.666667pt;}
.yf_c00103{bottom:354.933333pt;}
.ye_c00103{bottom:388.800000pt;}
.yd_c00103{bottom:411.200000pt;}
.yc_c00103{bottom:434.000000pt;}
.yb_c00103{bottom:482.800000pt;}
.ya_c00103{bottom:532.800000pt;}
.y9_c00103{bottom:555.333333pt;}
.y1_c00103{bottom:568.133333pt;}
.y8_c00103{bottom:578.000000pt;}
.y7_c00103{bottom:600.666667pt;}
.y6_c00103{bottom:622.800000pt;}
.y5_c00103{bottom:645.600000pt;}
.y4_c00103{bottom:667.600000pt;}
.y3_c00103{bottom:690.266667pt;}
.y2_c00103{bottom:713.066667pt;}
.h5_c00103{height:11.733399pt;}
.h6_c00103{height:38.937500pt;}
.h2_c00103{height:70.902344pt;}
.h4_c00103{height:71.785156pt;}
.h3_c00103{height:77.654948pt;}
.h1_c00103{height:741.333333pt;}
.h0_c00103{height:741.600000pt;}
.w2_c00103{width:93.222667pt;}
.w0_c00103{width:497.266667pt;}
.w1_c00103{width:497.333333pt;}
.x0_c00103{left:0.000000pt;}
.xa_c00103{left:27.333333pt;}
.x1_c00103{left:28.533333pt;}
.x4_c00103{left:33.333333pt;}
.xb_c00103{left:40.400000pt;}
.xc_c00103{left:41.733333pt;}
.x9_c00103{left:86.133333pt;}
.x6_c00103{left:87.066667pt;}
.x5_c00103{left:88.133333pt;}
.x3_c00103{left:89.200000pt;}
.x8_c00103{left:108.800000pt;}
.x7_c00103{left:115.733333pt;}
.xe_c00103{left:205.801554pt;}
.x2_c00103{left:213.333333pt;}
.xd_c00103{left:464.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_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_c0f2d7b3aed8bb1dc3fef238.woff2')format("woff");}.ff1_c00104{font-family:ff1_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:ff2_c00104;src:url('chunks/assets/font_fea3a69d66a419861643c69c.woff2')format("woff");}.ff2_c00104{font-family:ff2_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:ff3_c00104;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.311035;font-style:normal;font-weight:normal;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_8b2c7850fcb072a846239b86.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00104{font-family:ff5_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;}
.ls3_c00104{letter-spacing:0.000000px;}
.ls1_c00104{letter-spacing:3.000000px;}
.ls0_c00104{letter-spacing:7.200000px;}
.ls2_c00104{letter-spacing:16.077000px;}
.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;}
}
.wse_c00104{word-spacing:-46.332000px;}
.wsa_c00104{word-spacing:-32.706000px;}
.ws7_c00104{word-spacing:-20.352000px;}
.ws5_c00104{word-spacing:-19.629000px;}
.ws0_c00104{word-spacing:-16.629000px;}
.wsd_c00104{word-spacing:-15.906000px;}
.ws2_c00104{word-spacing:-1.242000px;}
.ws6_c00104{word-spacing:-0.654000px;}
.ws9_c00104{word-spacing:-0.621000px;}
.ws4_c00104{word-spacing:-0.345000px;}
.wsf_c00104{word-spacing:0.000000px;}
.ws8_c00104{word-spacing:0.546000px;}
.ws1_c00104{word-spacing:0.552000px;}
.ws3_c00104{word-spacing:2.415000px;}
.wsb_c00104{word-spacing:6.348000px;}
.wsc_c00104{word-spacing:6.555000px;}
._1b_c00104{margin-left:-19.320000px;}
._13_c00104{margin-left:-15.111000px;}
._24_c00104{margin-left:-12.936000px;}
._16_c00104{margin-left:-9.177000px;}
._18_c00104{margin-left:-5.943000px;}
._1d_c00104{margin-left:-4.644000px;}
._3_c00104{margin-left:-3.450000px;}
._2_c00104{margin-left:-2.070000px;}
._10_c00104{margin-left:-1.035000px;}
._0_c00104{width:1.794000px;}
._1_c00104{width:2.829000px;}
._4_c00104{width:3.933000px;}
._a_c00104{width:4.980000px;}
._6_c00104{width:6.003000px;}
._8_c00104{width:7.728000px;}
._9_c00104{width:9.315000px;}
._d_c00104{width:11.247000px;}
._5_c00104{width:13.041000px;}
._f_c00104{width:14.283000px;}
._7_c00104{width:15.456000px;}
._15_c00104{width:16.668000px;}
._b_c00104{width:18.231000px;}
._20_c00104{width:19.665000px;}
._12_c00104{width:20.769000px;}
._11_c00104{width:22.743000px;}
._19_c00104{width:24.453000px;}
._14_c00104{width:26.139000px;}
._1c_c00104{width:28.170000px;}
._e_c00104{width:29.187000px;}
._22_c00104{width:30.498000px;}
._23_c00104{width:34.665000px;}
._25_c00104{width:37.470000px;}
._17_c00104{width:38.745000px;}
._1a_c00104{width:40.662000px;}
._1f_c00104{width:102.192000px;}
._21_c00104{width:113.574000px;}
._1e_c00104{width:189.609000px;}
._c_c00104{width:192.429000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(128,128,128);}
.fc0_c00104{color:rgb(0,0,0);}
.fs4_c00104{font-size:48.000000px;}
.fs2_c00104{font-size:66.000000px;}
.fs0_c00104{font-size:69.000000px;}
.fs1_c00104{font-size:72.000000px;}
.fs3_c00104{font-size:81.000000px;}
.y0_c00104{bottom:0.000000px;}
.y1c_c00104{bottom:3.105000px;}
.y1b_c00104{bottom:7.228363px;}
.y1a_c00104{bottom:55.050000px;}
.y19_c00104{bottom:111.450000px;}
.y18_c00104{bottom:132.750000px;}
.y17_c00104{bottom:157.650000px;}
.y16_c00104{bottom:221.850000px;}
.y15_c00104{bottom:284.550000px;}
.y14_c00104{bottom:309.150000px;}
.y13_c00104{bottom:333.900000px;}
.y12_c00104{bottom:359.100000px;}
.y11_c00104{bottom:384.150000px;}
.y10_c00104{bottom:409.350000px;}
.yf_c00104{bottom:433.350000px;}
.ye_c00104{bottom:459.300000px;}
.yd_c00104{bottom:484.350000px;}
.yc_c00104{bottom:508.650000px;}
.yb_c00104{bottom:533.250000px;}
.ya_c00104{bottom:558.300000px;}
.y9_c00104{bottom:583.200000px;}
.y8_c00104{bottom:608.250000px;}
.y7_c00104{bottom:633.450000px;}
.y6_c00104{bottom:658.200000px;}
.y5_c00104{bottom:683.100000px;}
.y4_c00104{bottom:708.150000px;}
.y3_c00104{bottom:733.350000px;}
.y2_c00104{bottom:758.100000px;}
.y1_c00104{bottom:783.300000px;}
.h8_c00104{height:13.200074px;}
.h9_c00104{height:43.804688px;}
.h6_c00104{height:77.247070px;}
.h1_c00104{height:80.758301px;}
.h5_c00104{height:83.563477px;}
.h2_c00104{height:87.361816px;}
.h4_c00104{height:87.961816px;}
.h3_c00104{height:91.160156px;}
.h7_c00104{height:102.555176px;}
.h0_c00104{height:823.500000px;}
.w2_c00104{width:104.875500px;}
.w0_c00104{width:551.850000px;}
.w1_c00104{width:552.000000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:35.400000px;}
.x3_c00104{left:36.450000px;}
.x4_c00104{left:37.500000px;}
.x7_c00104{left:39.450000px;}
.x6_c00104{left:74.250000px;}
.x8_c00104{left:75.300000px;}
.x5_c00104{left:79.650000px;}
.x1_c00104{left:203.850000px;}
.xa_c00104{left:227.739258px;}
.x9_c00104{left:453.000000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls3_c00104{letter-spacing:0.000000pt;}
.ls1_c00104{letter-spacing:2.666667pt;}
.ls0_c00104{letter-spacing:6.400000pt;}
.ls2_c00104{letter-spacing:14.290667pt;}
.wse_c00104{word-spacing:-41.184000pt;}
.wsa_c00104{word-spacing:-29.072000pt;}
.ws7_c00104{word-spacing:-18.090667pt;}
.ws5_c00104{word-spacing:-17.448000pt;}
.ws0_c00104{word-spacing:-14.781333pt;}
.wsd_c00104{word-spacing:-14.138667pt;}
.ws2_c00104{word-spacing:-1.104000pt;}
.ws6_c00104{word-spacing:-0.581333pt;}
.ws9_c00104{word-spacing:-0.552000pt;}
.ws4_c00104{word-spacing:-0.306667pt;}
.wsf_c00104{word-spacing:0.000000pt;}
.ws8_c00104{word-spacing:0.485333pt;}
.ws1_c00104{word-spacing:0.490667pt;}
.ws3_c00104{word-spacing:2.146667pt;}
.wsb_c00104{word-spacing:5.642667pt;}
.wsc_c00104{word-spacing:5.826667pt;}
._1b_c00104{margin-left:-17.173333pt;}
._13_c00104{margin-left:-13.432000pt;}
._24_c00104{margin-left:-11.498667pt;}
._16_c00104{margin-left:-8.157333pt;}
._18_c00104{margin-left:-5.282667pt;}
._1d_c00104{margin-left:-4.128000pt;}
._3_c00104{margin-left:-3.066667pt;}
._2_c00104{margin-left:-1.840000pt;}
._10_c00104{margin-left:-0.920000pt;}
._0_c00104{width:1.594667pt;}
._1_c00104{width:2.514667pt;}
._4_c00104{width:3.496000pt;}
._a_c00104{width:4.426667pt;}
._6_c00104{width:5.336000pt;}
._8_c00104{width:6.869333pt;}
._9_c00104{width:8.280000pt;}
._d_c00104{width:9.997333pt;}
._5_c00104{width:11.592000pt;}
._f_c00104{width:12.696000pt;}
._7_c00104{width:13.738667pt;}
._15_c00104{width:14.816000pt;}
._b_c00104{width:16.205333pt;}
._20_c00104{width:17.480000pt;}
._12_c00104{width:18.461333pt;}
._11_c00104{width:20.216000pt;}
._19_c00104{width:21.736000pt;}
._14_c00104{width:23.234667pt;}
._1c_c00104{width:25.040000pt;}
._e_c00104{width:25.944000pt;}
._22_c00104{width:27.109333pt;}
._23_c00104{width:30.813333pt;}
._25_c00104{width:33.306667pt;}
._17_c00104{width:34.440000pt;}
._1a_c00104{width:36.144000pt;}
._1f_c00104{width:90.837333pt;}
._21_c00104{width:100.954667pt;}
._1e_c00104{width:168.541333pt;}
._c_c00104{width:171.048000pt;}
.fs4_c00104{font-size:42.666667pt;}
.fs2_c00104{font-size:58.666667pt;}
.fs0_c00104{font-size:61.333333pt;}
.fs1_c00104{font-size:64.000000pt;}
.fs3_c00104{font-size:72.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y1c_c00104{bottom:2.760000pt;}
.y1b_c00104{bottom:6.425212pt;}
.y1a_c00104{bottom:48.933333pt;}
.y19_c00104{bottom:99.066667pt;}
.y18_c00104{bottom:118.000000pt;}
.y17_c00104{bottom:140.133333pt;}
.y16_c00104{bottom:197.200000pt;}
.y15_c00104{bottom:252.933333pt;}
.y14_c00104{bottom:274.800000pt;}
.y13_c00104{bottom:296.800000pt;}
.y12_c00104{bottom:319.200000pt;}
.y11_c00104{bottom:341.466667pt;}
.y10_c00104{bottom:363.866667pt;}
.yf_c00104{bottom:385.200000pt;}
.ye_c00104{bottom:408.266667pt;}
.yd_c00104{bottom:430.533333pt;}
.yc_c00104{bottom:452.133333pt;}
.yb_c00104{bottom:474.000000pt;}
.ya_c00104{bottom:496.266667pt;}
.y9_c00104{bottom:518.400000pt;}
.y8_c00104{bottom:540.666667pt;}
.y7_c00104{bottom:563.066667pt;}
.y6_c00104{bottom:585.066667pt;}
.y5_c00104{bottom:607.200000pt;}
.y4_c00104{bottom:629.466667pt;}
.y3_c00104{bottom:651.866667pt;}
.y2_c00104{bottom:673.866667pt;}
.y1_c00104{bottom:696.266667pt;}
.h8_c00104{height:11.733399pt;}
.h9_c00104{height:38.937500pt;}
.h6_c00104{height:68.664062pt;}
.h1_c00104{height:71.785156pt;}
.h5_c00104{height:74.278646pt;}
.h2_c00104{height:77.654948pt;}
.h4_c00104{height:78.188281pt;}
.h3_c00104{height:81.031250pt;}
.h7_c00104{height:91.160156pt;}
.h0_c00104{height:732.000000pt;}
.w2_c00104{width:93.222667pt;}
.w0_c00104{width:490.533333pt;}
.w1_c00104{width:490.666667pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:31.466667pt;}
.x3_c00104{left:32.400000pt;}
.x4_c00104{left:33.333333pt;}
.x7_c00104{left:35.066667pt;}
.x6_c00104{left:66.000000pt;}
.x8_c00104{left:66.933333pt;}
.x5_c00104{left:70.800000pt;}
.x1_c00104{left:181.200000pt;}
.xa_c00104{left:202.434896pt;}
.x9_c00104{left:402.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_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_7e238c389f4389ebd0878b01.woff2')format("woff");}.ff1_c00105{font-family:ff1_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:ff2_c00105;src:url('chunks/assets/font_5672fa6ae4187ac9542422ad.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00105{font-family:ff3_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;}
.ls0_c00105{letter-spacing:0.000000px;}
.ls1_c00105{letter-spacing:3.000000px;}
.ls2_c00105{letter-spacing:24.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-40.629000px;}
.ws1_c00105{word-spacing:-16.629000px;}
.ws2_c00105{word-spacing:-0.414000px;}
.ws3_c00105{word-spacing:0.000000px;}
._8_c00105{margin-left:-30.705000px;}
._27_c00105{margin-left:-21.597000px;}
._2d_c00105{margin-left:-16.866000px;}
._0_c00105{margin-left:-14.835000px;}
._3_c00105{margin-left:-13.731000px;}
._10_c00105{margin-left:-12.627000px;}
._1d_c00105{margin-left:-10.350000px;}
._1b_c00105{margin-left:-9.315000px;}
._2_c00105{margin-left:-8.073000px;}
._4_c00105{margin-left:-6.348000px;}
._1_c00105{margin-left:-4.899000px;}
._f_c00105{margin-left:-3.504000px;}
._6_c00105{margin-left:-2.346000px;}
._16_c00105{margin-left:-1.035000px;}
._d_c00105{width:1.104000px;}
._b_c00105{width:2.760000px;}
._a_c00105{width:4.416000px;}
._c_c00105{width:5.787000px;}
._22_c00105{width:6.975000px;}
._e_c00105{width:8.007000px;}
._19_c00105{width:9.312000px;}
._11_c00105{width:10.350000px;}
._15_c00105{width:12.006000px;}
._17_c00105{width:13.524000px;}
._21_c00105{width:15.462000px;}
._14_c00105{width:16.623000px;}
._13_c00105{width:18.339000px;}
._5_c00105{width:20.010000px;}
._12_c00105{width:21.528000px;}
._25_c00105{width:22.773000px;}
._24_c00105{width:24.999000px;}
._1a_c00105{width:29.400000px;}
._29_c00105{width:30.498000px;}
._2c_c00105{width:36.249000px;}
._7_c00105{width:42.195000px;}
._1e_c00105{width:48.507000px;}
._1c_c00105{width:52.923000px;}
._9_c00105{width:55.959000px;}
._1f_c00105{width:96.738000px;}
._23_c00105{width:102.258000px;}
._20_c00105{width:142.365000px;}
._18_c00105{width:144.108000px;}
._28_c00105{width:153.801000px;}
._2b_c00105{width:156.150000px;}
._2a_c00105{width:186.393000px;}
._26_c00105{width:214.797000px;}
.fc2_c00105{color:transparent;}
.fc1_c00105{color:rgb(128,128,128);}
.fc0_c00105{color:rgb(0,0,0);}
.fs1_c00105{font-size:48.000000px;}
.fs0_c00105{font-size:69.000000px;}
.y0_c00105{bottom:0.000000px;}
.y1d_c00105{bottom:3.105000px;}
.y1c_c00105{bottom:7.228363px;}
.y1b_c00105{bottom:65.850000px;}
.y1a_c00105{bottom:142.050000px;}
.y19_c00105{bottom:168.150000px;}
.y18_c00105{bottom:193.350000px;}
.y17_c00105{bottom:218.100000px;}
.y16_c00105{bottom:242.700000px;}
.y15_c00105{bottom:268.350000px;}
.y14_c00105{bottom:295.350000px;}
.y13_c00105{bottom:319.950000px;}
.y12_c00105{bottom:344.550000px;}
.y11_c00105{bottom:370.950000px;}
.y10_c00105{bottom:395.250000px;}
.yf_c00105{bottom:420.900000px;}
.ye_c00105{bottom:446.250000px;}
.yd_c00105{bottom:471.150000px;}
.yc_c00105{bottom:496.500000px;}
.yb_c00105{bottom:521.400000px;}
.ya_c00105{bottom:546.450000px;}
.y9_c00105{bottom:571.800000px;}
.y8_c00105{bottom:597.000000px;}
.y7_c00105{bottom:622.350000px;}
.y6_c00105{bottom:646.350000px;}
.y5_c00105{bottom:671.700000px;}
.y4_c00105{bottom:697.350000px;}
.y3_c00105{bottom:723.300000px;}
.y2_c00105{bottom:748.500000px;}
.y1_c00105{bottom:772.950000px;}
.h4_c00105{height:13.200074px;}
.h5_c00105{height:43.804688px;}
.h3_c00105{height:80.758301px;}
.h2_c00105{height:87.361816px;}
.h1_c00105{height:834.000000px;}
.h0_c00105{height:834.300000px;}
.w2_c00105{width:104.875500px;}
.w0_c00105{width:559.425000px;}
.w1_c00105{width:559.500000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:39.150000px;}
.x9_c00105{left:51.300000px;}
.x5_c00105{left:52.350000px;}
.x4_c00105{left:62.400000px;}
.xc_c00105{left:78.600000px;}
.xd_c00105{left:98.100000px;}
.xa_c00105{left:100.650000px;}
.x7_c00105{left:102.300000px;}
.x3_c00105{left:103.650000px;}
.x2_c00105{left:104.850000px;}
.x8_c00105{left:126.450000px;}
.xb_c00105{left:138.150000px;}
.x6_c00105{left:142.650000px;}
.xf_c00105{left:231.526749px;}
.xe_c00105{left:470.850000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ls1_c00105{letter-spacing:2.666667pt;}
.ls2_c00105{letter-spacing:21.333333pt;}
.ws0_c00105{word-spacing:-36.114667pt;}
.ws1_c00105{word-spacing:-14.781333pt;}
.ws2_c00105{word-spacing:-0.368000pt;}
.ws3_c00105{word-spacing:0.000000pt;}
._8_c00105{margin-left:-27.293333pt;}
._27_c00105{margin-left:-19.197333pt;}
._2d_c00105{margin-left:-14.992000pt;}
._0_c00105{margin-left:-13.186667pt;}
._3_c00105{margin-left:-12.205333pt;}
._10_c00105{margin-left:-11.224000pt;}
._1d_c00105{margin-left:-9.200000pt;}
._1b_c00105{margin-left:-8.280000pt;}
._2_c00105{margin-left:-7.176000pt;}
._4_c00105{margin-left:-5.642667pt;}
._1_c00105{margin-left:-4.354667pt;}
._f_c00105{margin-left:-3.114667pt;}
._6_c00105{margin-left:-2.085333pt;}
._16_c00105{margin-left:-0.920000pt;}
._d_c00105{width:0.981333pt;}
._b_c00105{width:2.453333pt;}
._a_c00105{width:3.925333pt;}
._c_c00105{width:5.144000pt;}
._22_c00105{width:6.200000pt;}
._e_c00105{width:7.117333pt;}
._19_c00105{width:8.277333pt;}
._11_c00105{width:9.200000pt;}
._15_c00105{width:10.672000pt;}
._17_c00105{width:12.021333pt;}
._21_c00105{width:13.744000pt;}
._14_c00105{width:14.776000pt;}
._13_c00105{width:16.301333pt;}
._5_c00105{width:17.786667pt;}
._12_c00105{width:19.136000pt;}
._25_c00105{width:20.242667pt;}
._24_c00105{width:22.221333pt;}
._1a_c00105{width:26.133333pt;}
._29_c00105{width:27.109333pt;}
._2c_c00105{width:32.221333pt;}
._7_c00105{width:37.506667pt;}
._1e_c00105{width:43.117333pt;}
._1c_c00105{width:47.042667pt;}
._9_c00105{width:49.741333pt;}
._1f_c00105{width:85.989333pt;}
._23_c00105{width:90.896000pt;}
._20_c00105{width:126.546667pt;}
._18_c00105{width:128.096000pt;}
._28_c00105{width:136.712000pt;}
._2b_c00105{width:138.800000pt;}
._2a_c00105{width:165.682667pt;}
._26_c00105{width:190.930667pt;}
.fs1_c00105{font-size:42.666667pt;}
.fs0_c00105{font-size:61.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y1d_c00105{bottom:2.760000pt;}
.y1c_c00105{bottom:6.425212pt;}
.y1b_c00105{bottom:58.533333pt;}
.y1a_c00105{bottom:126.266667pt;}
.y19_c00105{bottom:149.466667pt;}
.y18_c00105{bottom:171.866667pt;}
.y17_c00105{bottom:193.866667pt;}
.y16_c00105{bottom:215.733333pt;}
.y15_c00105{bottom:238.533333pt;}
.y14_c00105{bottom:262.533333pt;}
.y13_c00105{bottom:284.400000pt;}
.y12_c00105{bottom:306.266667pt;}
.y11_c00105{bottom:329.733333pt;}
.y10_c00105{bottom:351.333333pt;}
.yf_c00105{bottom:374.133333pt;}
.ye_c00105{bottom:396.666667pt;}
.yd_c00105{bottom:418.800000pt;}
.yc_c00105{bottom:441.333333pt;}
.yb_c00105{bottom:463.466667pt;}
.ya_c00105{bottom:485.733333pt;}
.y9_c00105{bottom:508.266667pt;}
.y8_c00105{bottom:530.666667pt;}
.y7_c00105{bottom:553.200000pt;}
.y6_c00105{bottom:574.533333pt;}
.y5_c00105{bottom:597.066667pt;}
.y4_c00105{bottom:619.866667pt;}
.y3_c00105{bottom:642.933333pt;}
.y2_c00105{bottom:665.333333pt;}
.y1_c00105{bottom:687.066667pt;}
.h4_c00105{height:11.733399pt;}
.h5_c00105{height:38.937500pt;}
.h3_c00105{height:71.785156pt;}
.h2_c00105{height:77.654948pt;}
.h1_c00105{height:741.333333pt;}
.h0_c00105{height:741.600000pt;}
.w2_c00105{width:93.222667pt;}
.w0_c00105{width:497.266667pt;}
.w1_c00105{width:497.333333pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:34.800000pt;}
.x9_c00105{left:45.600000pt;}
.x5_c00105{left:46.533333pt;}
.x4_c00105{left:55.466667pt;}
.xc_c00105{left:69.866667pt;}
.xd_c00105{left:87.200000pt;}
.xa_c00105{left:89.466667pt;}
.x7_c00105{left:90.933333pt;}
.x3_c00105{left:92.133333pt;}
.x2_c00105{left:93.200000pt;}
.x8_c00105{left:112.400000pt;}
.xb_c00105{left:122.800000pt;}
.x6_c00105{left:126.800000pt;}
.xf_c00105{left:205.801554pt;}
.xe_c00105{left:418.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_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_f654d8ea6975770af33ffa93.woff2')format("woff");}.ff1_c00106{font-family:ff1_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:ff2_c00106;src:url('chunks/assets/font_5a24dfb5ac7b5f89ce376997.woff2')format("woff");}.ff2_c00106{font-family:ff2_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:ff3_c00106;src:url('chunks/assets/font_a69c2f36b240fc7b32fcc3bd.woff2')format("woff");}.ff3_c00106{font-family:ff3_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:ff4_c00106;src:url('chunks/assets/font_6534f9fd5172a91750fd354b.woff2')format("woff");}.ff4_c00106{font-family:ff4_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:ff5_c00106;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls3_c00106{letter-spacing:3.000000px;}
.ls5_c00106{letter-spacing:6.000000px;}
.ls0_c00106{letter-spacing:8.040000px;}
.ls4_c00106{letter-spacing:9.000000px;}
.ls1_c00106{letter-spacing:19.725000px;}
.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;}
}
.ws4_c00106{word-spacing:-16.629000px;}
.ws0_c00106{word-spacing:-13.014000px;}
.ws1_c00106{word-spacing:-9.075000px;}
.ws2_c00106{word-spacing:0.000000px;}
.ws3_c00106{word-spacing:0.759000px;}
._23_c00106{margin-left:-16.077000px;}
._e_c00106{margin-left:-14.700000px;}
._d_c00106{margin-left:-11.850000px;}
._a_c00106{margin-left:-9.408000px;}
._9_c00106{margin-left:-8.400000px;}
._b_c00106{margin-left:-7.275000px;}
._6_c00106{margin-left:-6.102000px;}
._3_c00106{margin-left:-4.140000px;}
._2_c00106{margin-left:-2.622000px;}
._10_c00106{margin-left:-1.380000px;}
._0_c00106{width:1.725000px;}
._5_c00106{width:2.967000px;}
._14_c00106{width:4.278000px;}
._11_c00106{width:5.865000px;}
._19_c00106{width:6.981000px;}
._17_c00106{width:8.067000px;}
._f_c00106{width:9.315000px;}
._1a_c00106{width:10.545000px;}
._16_c00106{width:11.571000px;}
._1e_c00106{width:12.648000px;}
._c_c00106{width:13.704000px;}
._1_c00106{width:14.766000px;}
._1b_c00106{width:16.215000px;}
._15_c00106{width:17.871000px;}
._7_c00106{width:19.080000px;}
._12_c00106{width:20.838000px;}
._22_c00106{width:23.346000px;}
._13_c00106{width:25.365000px;}
._21_c00106{width:29.325000px;}
._1c_c00106{width:38.025000px;}
._20_c00106{width:39.060000px;}
._18_c00106{width:40.089000px;}
._8_c00106{width:44.691000px;}
._1d_c00106{width:95.406000px;}
._1f_c00106{width:100.407000px;}
._24_c00106{width:439.806000px;}
._4_c00106{width:497.313000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(128,128,128);}
.fc0_c00106{color:rgb(0,0,0);}
.fs4_c00106{font-size:48.000000px;}
.fs1_c00106{font-size:54.000000px;}
.fs3_c00106{font-size:60.000000px;}
.fs0_c00106{font-size:69.000000px;}
.fs2_c00106{font-size:75.000000px;}
.y0_c00106{bottom:0.000000px;}
.y1f_c00106{bottom:3.105000px;}
.y1e_c00106{bottom:7.228369px;}
.y1d_c00106{bottom:66.120000px;}
.y1c_c00106{bottom:90.420000px;}
.y1b_c00106{bottom:115.470000px;}
.y1a_c00106{bottom:139.320000px;}
.y19_c00106{bottom:164.520000px;}
.y18_c00106{bottom:189.270000px;}
.y17_c00106{bottom:214.020000px;}
.y16_c00106{bottom:238.920000px;}
.y15_c00106{bottom:264.270000px;}
.y14_c00106{bottom:288.270000px;}
.y13_c00106{bottom:313.770000px;}
.y12_c00106{bottom:338.070000px;}
.y11_c00106{bottom:362.370000px;}
.y10_c00106{bottom:387.420000px;}
.yf_c00106{bottom:411.720000px;}
.ye_c00106{bottom:437.070000px;}
.yd_c00106{bottom:461.670000px;}
.yc_c00106{bottom:486.570000px;}
.yb_c00106{bottom:510.270000px;}
.ya_c00106{bottom:535.170000px;}
.y9_c00106{bottom:559.620000px;}
.y8_c00106{bottom:585.120000px;}
.y7_c00106{bottom:609.120000px;}
.y6_c00106{bottom:634.170000px;}
.y5_c00106{bottom:659.070000px;}
.y4_c00106{bottom:683.370000px;}
.y3_c00106{bottom:732.420000px;}
.y2_c00106{bottom:757.020000px;}
.y1_c00106{bottom:781.920000px;}
.h6_c00106{height:13.200073px;}
.h7_c00106{height:43.804688px;}
.h3_c00106{height:68.370117px;}
.h5_c00106{height:80.758301px;}
.h2_c00106{height:87.361816px;}
.h4_c00106{height:94.958496px;}
.h1_c00106{height:819.000000px;}
.h0_c00106{height:819.150000px;}
.w2_c00106{width:104.875500px;}
.w1_c00106{width:549.000000px;}
.w0_c00106{width:549.150000px;}
.x0_c00106{left:0.000000px;}
.x6_c00106{left:25.650000px;}
.x5_c00106{left:26.700000px;}
.x8_c00106{left:27.900000px;}
.x7_c00106{left:50.550000px;}
.x4_c00106{left:51.600000px;}
.x3_c00106{left:58.350000px;}
.x1_c00106{left:188.550000px;}
.xa_c00106{left:226.389267px;}
.x9_c00106{left:279.000000px;}
.x2_c00106{left:522.900000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls3_c00106{letter-spacing:2.666667pt;}
.ls5_c00106{letter-spacing:5.333333pt;}
.ls0_c00106{letter-spacing:7.146667pt;}
.ls4_c00106{letter-spacing:8.000000pt;}
.ls1_c00106{letter-spacing:17.533333pt;}
.ws4_c00106{word-spacing:-14.781333pt;}
.ws0_c00106{word-spacing:-11.568000pt;}
.ws1_c00106{word-spacing:-8.066667pt;}
.ws2_c00106{word-spacing:0.000000pt;}
.ws3_c00106{word-spacing:0.674667pt;}
._23_c00106{margin-left:-14.290667pt;}
._e_c00106{margin-left:-13.066667pt;}
._d_c00106{margin-left:-10.533333pt;}
._a_c00106{margin-left:-8.362667pt;}
._9_c00106{margin-left:-7.466667pt;}
._b_c00106{margin-left:-6.466667pt;}
._6_c00106{margin-left:-5.424000pt;}
._3_c00106{margin-left:-3.680000pt;}
._2_c00106{margin-left:-2.330667pt;}
._10_c00106{margin-left:-1.226667pt;}
._0_c00106{width:1.533333pt;}
._5_c00106{width:2.637333pt;}
._14_c00106{width:3.802667pt;}
._11_c00106{width:5.213333pt;}
._19_c00106{width:6.205333pt;}
._17_c00106{width:7.170667pt;}
._f_c00106{width:8.280000pt;}
._1a_c00106{width:9.373333pt;}
._16_c00106{width:10.285333pt;}
._1e_c00106{width:11.242667pt;}
._c_c00106{width:12.181333pt;}
._1_c00106{width:13.125333pt;}
._1b_c00106{width:14.413333pt;}
._15_c00106{width:15.885333pt;}
._7_c00106{width:16.960000pt;}
._12_c00106{width:18.522667pt;}
._22_c00106{width:20.752000pt;}
._13_c00106{width:22.546667pt;}
._21_c00106{width:26.066667pt;}
._1c_c00106{width:33.800000pt;}
._20_c00106{width:34.720000pt;}
._18_c00106{width:35.634667pt;}
._8_c00106{width:39.725333pt;}
._1d_c00106{width:84.805333pt;}
._1f_c00106{width:89.250667pt;}
._24_c00106{width:390.938667pt;}
._4_c00106{width:442.056000pt;}
.fs4_c00106{font-size:42.666667pt;}
.fs1_c00106{font-size:48.000000pt;}
.fs3_c00106{font-size:53.333333pt;}
.fs0_c00106{font-size:61.333333pt;}
.fs2_c00106{font-size:66.666667pt;}
.y0_c00106{bottom:0.000000pt;}
.y1f_c00106{bottom:2.760000pt;}
.y1e_c00106{bottom:6.425217pt;}
.y1d_c00106{bottom:58.773333pt;}
.y1c_c00106{bottom:80.373333pt;}
.y1b_c00106{bottom:102.640000pt;}
.y1a_c00106{bottom:123.840000pt;}
.y19_c00106{bottom:146.240000pt;}
.y18_c00106{bottom:168.240000pt;}
.y17_c00106{bottom:190.240000pt;}
.y16_c00106{bottom:212.373333pt;}
.y15_c00106{bottom:234.906667pt;}
.y14_c00106{bottom:256.240000pt;}
.y13_c00106{bottom:278.906667pt;}
.y12_c00106{bottom:300.506667pt;}
.y11_c00106{bottom:322.106667pt;}
.y10_c00106{bottom:344.373333pt;}
.yf_c00106{bottom:365.973333pt;}
.ye_c00106{bottom:388.506667pt;}
.yd_c00106{bottom:410.373333pt;}
.yc_c00106{bottom:432.506667pt;}
.yb_c00106{bottom:453.573333pt;}
.ya_c00106{bottom:475.706667pt;}
.y9_c00106{bottom:497.440000pt;}
.y8_c00106{bottom:520.106667pt;}
.y7_c00106{bottom:541.440000pt;}
.y6_c00106{bottom:563.706667pt;}
.y5_c00106{bottom:585.840000pt;}
.y4_c00106{bottom:607.440000pt;}
.y3_c00106{bottom:651.040000pt;}
.y2_c00106{bottom:672.906667pt;}
.y1_c00106{bottom:695.040000pt;}
.h6_c00106{height:11.733399pt;}
.h7_c00106{height:38.937500pt;}
.h3_c00106{height:60.773438pt;}
.h5_c00106{height:71.785156pt;}
.h2_c00106{height:77.654948pt;}
.h4_c00106{height:84.407552pt;}
.h1_c00106{height:728.000000pt;}
.h0_c00106{height:728.133333pt;}
.w2_c00106{width:93.222667pt;}
.w1_c00106{width:488.000000pt;}
.w0_c00106{width:488.133333pt;}
.x0_c00106{left:0.000000pt;}
.x6_c00106{left:22.800000pt;}
.x5_c00106{left:23.733333pt;}
.x8_c00106{left:24.800000pt;}
.x7_c00106{left:44.933333pt;}
.x4_c00106{left:45.866667pt;}
.x3_c00106{left:51.866667pt;}
.x1_c00106{left:167.600000pt;}
.xa_c00106{left:201.234904pt;}
.x9_c00106{left:248.000000pt;}
.x2_c00106{left:464.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_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_a225716bf6678697576221ca.woff2')format("woff");}.ff1_c00107{font-family:ff1_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:ff2_c00107;src:url('chunks/assets/font_ba098d6b8cbc613b6ab56762.woff2')format("woff");}.ff2_c00107{font-family:ff2_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:ff3_c00107;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00107{font-family:ff4_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:3.000000px;}
.ls3_c00107{letter-spacing:12.000000px;}
.ls0_c00107{letter-spacing:16.800000px;}
.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:-28.629000px;}
.ws0_c00107{word-spacing:-16.629000px;}
.ws3_c00107{word-spacing:0.000000px;}
.ws2_c00107{word-spacing:2.433000px;}
._20_c00107{margin-left:-19.803000px;}
._22_c00107{margin-left:-15.201000px;}
._24_c00107{margin-left:-9.873000px;}
._5_c00107{margin-left:-8.832000px;}
._15_c00107{margin-left:-7.728000px;}
._23_c00107{margin-left:-6.552000px;}
._14_c00107{margin-left:-5.244000px;}
._9_c00107{margin-left:-3.381000px;}
._2_c00107{margin-left:-1.656000px;}
._0_c00107{width:1.104000px;}
._b_c00107{width:2.760000px;}
._3_c00107{width:4.209000px;}
._a_c00107{width:5.451000px;}
._8_c00107{width:7.383000px;}
._6_c00107{width:8.625000px;}
._7_c00107{width:10.074000px;}
._11_c00107{width:11.430000px;}
._16_c00107{width:12.765000px;}
._c_c00107{width:13.800000px;}
._d_c00107{width:14.835000px;}
._f_c00107{width:15.870000px;}
._e_c00107{width:18.147000px;}
._4_c00107{width:20.907000px;}
._12_c00107{width:22.290000px;}
._13_c00107{width:23.322000px;}
._19_c00107{width:24.426000px;}
._1c_c00107{width:27.393000px;}
._17_c00107{width:28.842000px;}
._1b_c00107{width:30.360000px;}
._21_c00107{width:31.395000px;}
._18_c00107{width:32.637000px;}
._1e_c00107{width:34.155000px;}
._1f_c00107{width:35.190000px;}
._1d_c00107{width:39.399000px;}
._1a_c00107{width:90.114000px;}
._10_c00107{width:328.647000px;}
._1_c00107{width:388.659000px;}
.fc2_c00107{color:transparent;}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(0,0,0);}
.fs2_c00107{font-size:24.000000px;}
.fs3_c00107{font-size:48.000000px;}
.fs1_c00107{font-size:66.000000px;}
.fs0_c00107{font-size:69.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1f_c00107{bottom:3.105000px;}
.y1e_c00107{bottom:7.228369px;}
.y1d_c00107{bottom:71.820000px;}
.y1c_c00107{bottom:122.820000px;}
.y1b_c00107{bottom:147.870000px;}
.y1a_c00107{bottom:173.070000px;}
.y19_c00107{bottom:197.820000px;}
.y18_c00107{bottom:223.320000px;}
.y17_c00107{bottom:247.770000px;}
.y16_c00107{bottom:273.270000px;}
.y15_c00107{bottom:297.720000px;}
.y14_c00107{bottom:323.220000px;}
.y13_c00107{bottom:347.520000px;}
.y12_c00107{bottom:371.820000px;}
.y11_c00107{bottom:396.570000px;}
.y10_c00107{bottom:421.170000px;}
.yf_c00107{bottom:446.820000px;}
.ye_c00107{bottom:471.570000px;}
.yd_c00107{bottom:496.470000px;}
.yc_c00107{bottom:521.370000px;}
.yb_c00107{bottom:546.120000px;}
.ya_c00107{bottom:570.720000px;}
.y9_c00107{bottom:596.070000px;}
.y8_c00107{bottom:620.670000px;}
.y7_c00107{bottom:645.270000px;}
.y6_c00107{bottom:670.320000px;}
.y5_c00107{bottom:695.220000px;}
.y4_c00107{bottom:720.270000px;}
.y3_c00107{bottom:744.120000px;}
.y2_c00107{bottom:769.770000px;}
.y1_c00107{bottom:795.120000px;}
.h4_c00107{height:13.200073px;}
.h3_c00107{height:30.386719px;}
.h5_c00107{height:43.804688px;}
.h2_c00107{height:87.361816px;}
.h0_c00107{height:842.100000px;}
.h1_c00107{height:842.250000px;}
.w2_c00107{width:104.875500px;}
.w1_c00107{width:564.750000px;}
.w0_c00107{width:564.825000px;}
.x0_c00107{left:0.000000px;}
.x3_c00107{left:45.600000px;}
.xa_c00107{left:100.950000px;}
.x9_c00107{left:102.150000px;}
.x8_c00107{left:103.200000px;}
.x7_c00107{left:104.550000px;}
.x6_c00107{left:105.900000px;}
.x4_c00107{left:106.950000px;}
.x2_c00107{left:108.300000px;}
.x1_c00107{left:123.900000px;}
.x5_c00107{left:133.200000px;}
.xc_c00107{left:234.226730px;}
.xb_c00107{left:276.750000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls2_c00107{letter-spacing:0.000000pt;}
.ls1_c00107{letter-spacing:2.666667pt;}
.ls3_c00107{letter-spacing:10.666667pt;}
.ls0_c00107{letter-spacing:14.933333pt;}
.ws1_c00107{word-spacing:-25.448000pt;}
.ws0_c00107{word-spacing:-14.781333pt;}
.ws3_c00107{word-spacing:0.000000pt;}
.ws2_c00107{word-spacing:2.162667pt;}
._20_c00107{margin-left:-17.602667pt;}
._22_c00107{margin-left:-13.512000pt;}
._24_c00107{margin-left:-8.776000pt;}
._5_c00107{margin-left:-7.850667pt;}
._15_c00107{margin-left:-6.869333pt;}
._23_c00107{margin-left:-5.824000pt;}
._14_c00107{margin-left:-4.661333pt;}
._9_c00107{margin-left:-3.005333pt;}
._2_c00107{margin-left:-1.472000pt;}
._0_c00107{width:0.981333pt;}
._b_c00107{width:2.453333pt;}
._3_c00107{width:3.741333pt;}
._a_c00107{width:4.845333pt;}
._8_c00107{width:6.562667pt;}
._6_c00107{width:7.666667pt;}
._7_c00107{width:8.954667pt;}
._11_c00107{width:10.160000pt;}
._16_c00107{width:11.346667pt;}
._c_c00107{width:12.266667pt;}
._d_c00107{width:13.186667pt;}
._f_c00107{width:14.106667pt;}
._e_c00107{width:16.130667pt;}
._4_c00107{width:18.584000pt;}
._12_c00107{width:19.813333pt;}
._13_c00107{width:20.730667pt;}
._19_c00107{width:21.712000pt;}
._1c_c00107{width:24.349333pt;}
._17_c00107{width:25.637333pt;}
._1b_c00107{width:26.986667pt;}
._21_c00107{width:27.906667pt;}
._18_c00107{width:29.010667pt;}
._1e_c00107{width:30.360000pt;}
._1f_c00107{width:31.280000pt;}
._1d_c00107{width:35.021333pt;}
._1a_c00107{width:80.101333pt;}
._10_c00107{width:292.130667pt;}
._1_c00107{width:345.474667pt;}
.fs2_c00107{font-size:21.333333pt;}
.fs3_c00107{font-size:42.666667pt;}
.fs1_c00107{font-size:58.666667pt;}
.fs0_c00107{font-size:61.333333pt;}
.y0_c00107{bottom:0.000000pt;}
.y1f_c00107{bottom:2.760000pt;}
.y1e_c00107{bottom:6.425217pt;}
.y1d_c00107{bottom:63.840000pt;}
.y1c_c00107{bottom:109.173333pt;}
.y1b_c00107{bottom:131.440000pt;}
.y1a_c00107{bottom:153.840000pt;}
.y19_c00107{bottom:175.840000pt;}
.y18_c00107{bottom:198.506667pt;}
.y17_c00107{bottom:220.240000pt;}
.y16_c00107{bottom:242.906667pt;}
.y15_c00107{bottom:264.640000pt;}
.y14_c00107{bottom:287.306667pt;}
.y13_c00107{bottom:308.906667pt;}
.y12_c00107{bottom:330.506667pt;}
.y11_c00107{bottom:352.506667pt;}
.y10_c00107{bottom:374.373333pt;}
.yf_c00107{bottom:397.173333pt;}
.ye_c00107{bottom:419.173333pt;}
.yd_c00107{bottom:441.306667pt;}
.yc_c00107{bottom:463.440000pt;}
.yb_c00107{bottom:485.440000pt;}
.ya_c00107{bottom:507.306667pt;}
.y9_c00107{bottom:529.840000pt;}
.y8_c00107{bottom:551.706667pt;}
.y7_c00107{bottom:573.573333pt;}
.y6_c00107{bottom:595.840000pt;}
.y5_c00107{bottom:617.973333pt;}
.y4_c00107{bottom:640.240000pt;}
.y3_c00107{bottom:661.440000pt;}
.y2_c00107{bottom:684.240000pt;}
.y1_c00107{bottom:706.773333pt;}
.h4_c00107{height:11.733399pt;}
.h3_c00107{height:27.010417pt;}
.h5_c00107{height:38.937500pt;}
.h2_c00107{height:77.654948pt;}
.h0_c00107{height:748.533333pt;}
.h1_c00107{height:748.666667pt;}
.w2_c00107{width:93.222667pt;}
.w1_c00107{width:502.000000pt;}
.w0_c00107{width:502.066667pt;}
.x0_c00107{left:0.000000pt;}
.x3_c00107{left:40.533333pt;}
.xa_c00107{left:89.733333pt;}
.x9_c00107{left:90.800000pt;}
.x8_c00107{left:91.733333pt;}
.x7_c00107{left:92.933333pt;}
.x6_c00107{left:94.133333pt;}
.x4_c00107{left:95.066667pt;}
.x2_c00107{left:96.266667pt;}
.x1_c00107{left:110.133333pt;}
.x5_c00107{left:118.400000pt;}
.xc_c00107{left:208.201538pt;}
.xb_c00107{left:246.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_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_e38ffa714dde70ac31e352ac.woff2')format("woff");}.ff1_c00108{font-family:ff1_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:ff2_c00108;src:url('chunks/assets/font_e449c927224810e5d420687f.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_4e39f5e152f7f4827cffc7cc.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.311035;font-style:normal;font-weight:normal;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_f8006c9ba49d2720f80b7d4d.woff2')format("woff");}.ff4_c00108{font-family:ff4_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:ff5_c00108;src:url('chunks/assets/font_0522787e5597ac6cee3376d3.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;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_c00108;src:url('chunks/assets/font_ec72b049099e107eae6ef90f.woff2')format("woff");}.ff6_c00108{font-family:ff6_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:ff7_c00108;src:url('chunks/assets/font_85a7b67266c53f6bcac48688.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;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_c00108;src:url('chunks/assets/font_69ad1c42e5f0cda186ceaa5d.woff2')format("woff");}.ff8_c00108{font-family:ff8_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:ff9_c00108;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00108{font-family:ff9_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;}
.m1_c00108{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_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;}
.ls7_c00108{letter-spacing:-3.000000px;}
.ls5_c00108{letter-spacing:0.000000px;}
.ls6_c00108{letter-spacing:3.000000px;}
.ls1_c00108{letter-spacing:4.290000px;}
.ls8_c00108{letter-spacing:6.000000px;}
.ls9_c00108{letter-spacing:9.000000px;}
.ls0_c00108{letter-spacing:9.750000px;}
.ls4_c00108{letter-spacing:11.925000px;}
.ls3_c00108{letter-spacing:18.525000px;}
.ls2_c00108{letter-spacing:20.550000px;}
.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:-47.943000px;}
.ws2_c00108{word-spacing:-16.629000px;}
.ws1_c00108{word-spacing:-9.090000px;}
.ws4_c00108{word-spacing:0.000000px;}
.ws3_c00108{word-spacing:10.708800px;}
._1f_c00108{margin-left:-29.235000px;}
._6_c00108{margin-left:-22.149000px;}
._8_c00108{margin-left:-17.112000px;}
._15_c00108{margin-left:-14.271000px;}
._11_c00108{margin-left:-12.900000px;}
._13_c00108{margin-left:-11.358000px;}
._c_c00108{margin-left:-9.612000px;}
._9_c00108{margin-left:-7.728000px;}
._16_c00108{margin-left:-6.237000px;}
._d_c00108{margin-left:-4.902000px;}
._a_c00108{margin-left:-3.312000px;}
._e_c00108{margin-left:-1.632000px;}
._0_c00108{width:1.794000px;}
._3_c00108{width:3.588000px;}
._1_c00108{width:5.175000px;}
._1d_c00108{width:6.291000px;}
._10_c00108{width:7.365000px;}
._b_c00108{width:8.478000px;}
._18_c00108{width:9.792000px;}
._4_c00108{width:10.902000px;}
._17_c00108{width:12.207000px;}
._5_c00108{width:13.662000px;}
._f_c00108{width:14.763000px;}
._22_c00108{width:15.870000px;}
._7_c00108{width:16.905000px;}
._19_c00108{width:18.096000px;}
._1e_c00108{width:20.667000px;}
._21_c00108{width:22.164000px;}
._24_c00108{width:25.047000px;}
._23_c00108{width:28.842000px;}
._26_c00108{width:31.850400px;}
._14_c00108{width:33.987000px;}
._1c_c00108{width:39.345000px;}
._1a_c00108{width:43.176000px;}
._20_c00108{width:84.387000px;}
._1b_c00108{width:99.807000px;}
._12_c00108{width:135.150000px;}
._25_c00108{width:393.144000px;}
._2_c00108{width:497.256000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(128,128,128);}
.fc0_c00108{color:rgb(0,0,0);}
.fs8_c00108{font-size:48.000000px;}
.fs2_c00108{font-size:54.000000px;}
.fs7_c00108{font-size:55.200000px;}
.fs3_c00108{font-size:57.000000px;}
.fs1_c00108{font-size:60.000000px;}
.fs0_c00108{font-size:69.000000px;}
.fs4_c00108{font-size:75.000000px;}
.fs6_c00108{font-size:90.000000px;}
.fs5_c00108{font-size:93.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1f_c00108{bottom:3.105000px;}
.y1e_c00108{bottom:7.228363px;}
.y1d_c00108{bottom:65.850000px;}
.y1c_c00108{bottom:92.250000px;}
.y1b_c00108{bottom:115.500000px;}
.y1a_c00108{bottom:140.700000px;}
.y19_c00108{bottom:165.150000px;}
.y18_c00108{bottom:190.050000px;}
.y17_c00108{bottom:214.950000px;}
.y16_c00108{bottom:240.000000px;}
.y15_c00108{bottom:264.900000px;}
.y14_c00108{bottom:289.650000px;}
.y13_c00108{bottom:314.250000px;}
.y12_c00108{bottom:339.150000px;}
.y11_c00108{bottom:363.750000px;}
.y10_c00108{bottom:387.900000px;}
.yf_c00108{bottom:412.800000px;}
.ye_c00108{bottom:437.700000px;}
.yd_c00108{bottom:462.450000px;}
.yc_c00108{bottom:486.750000px;}
.yb_c00108{bottom:511.050000px;}
.ya_c00108{bottom:536.400000px;}
.y9_c00108{bottom:560.250000px;}
.y8_c00108{bottom:609.600000px;}
.y7_c00108{bottom:656.550000px;}
.y6_c00108{bottom:674.250000px;}
.y5_c00108{bottom:692.100000px;}
.y4_c00108{bottom:709.500000px;}
.y3_c00108{bottom:736.500000px;}
.y2_c00108{bottom:744.450000px;}
.y1_c00108{bottom:781.650000px;}
.h9_c00108{height:13.200074px;}
.ha_c00108{height:43.804688px;}
.h6_c00108{height:57.618000px;}
.h5_c00108{height:68.370117px;}
.h2_c00108{height:69.539062px;}
.h4_c00108{height:72.168457px;}
.h3_c00108{height:75.966797px;}
.h8_c00108{height:80.758301px;}
.h1_c00108{height:87.361816px;}
.h7_c00108{height:108.848145px;}
.h0_c00108{height:823.500000px;}
.w2_c00108{width:104.875500px;}
.w0_c00108{width:551.850000px;}
.w1_c00108{width:552.000000px;}
.x0_c00108{left:0.000000px;}
.x9_c00108{left:38.100000px;}
.xb_c00108{left:39.450000px;}
.x5_c00108{left:40.500000px;}
.x6_c00108{left:42.150000px;}
.x4_c00108{left:57.150000px;}
.x7_c00108{left:58.350000px;}
.x8_c00108{left:62.850000px;}
.xa_c00108{left:63.900000px;}
.x2_c00108{left:182.700000px;}
.x1_c00108{left:202.500000px;}
.xd_c00108{left:227.739258px;}
.xc_c00108{left:267.900000px;}
.x3_c00108{left:273.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls7_c00108{letter-spacing:-2.666667pt;}
.ls5_c00108{letter-spacing:0.000000pt;}
.ls6_c00108{letter-spacing:2.666667pt;}
.ls1_c00108{letter-spacing:3.813333pt;}
.ls8_c00108{letter-spacing:5.333333pt;}
.ls9_c00108{letter-spacing:8.000000pt;}
.ls0_c00108{letter-spacing:8.666667pt;}
.ls4_c00108{letter-spacing:10.600000pt;}
.ls3_c00108{letter-spacing:16.466667pt;}
.ls2_c00108{letter-spacing:18.266667pt;}
.ws0_c00108{word-spacing:-42.616000pt;}
.ws2_c00108{word-spacing:-14.781333pt;}
.ws1_c00108{word-spacing:-8.080000pt;}
.ws4_c00108{word-spacing:0.000000pt;}
.ws3_c00108{word-spacing:9.518933pt;}
._1f_c00108{margin-left:-25.986667pt;}
._6_c00108{margin-left:-19.688000pt;}
._8_c00108{margin-left:-15.210667pt;}
._15_c00108{margin-left:-12.685333pt;}
._11_c00108{margin-left:-11.466667pt;}
._13_c00108{margin-left:-10.096000pt;}
._c_c00108{margin-left:-8.544000pt;}
._9_c00108{margin-left:-6.869333pt;}
._16_c00108{margin-left:-5.544000pt;}
._d_c00108{margin-left:-4.357333pt;}
._a_c00108{margin-left:-2.944000pt;}
._e_c00108{margin-left:-1.450667pt;}
._0_c00108{width:1.594667pt;}
._3_c00108{width:3.189333pt;}
._1_c00108{width:4.600000pt;}
._1d_c00108{width:5.592000pt;}
._10_c00108{width:6.546667pt;}
._b_c00108{width:7.536000pt;}
._18_c00108{width:8.704000pt;}
._4_c00108{width:9.690667pt;}
._17_c00108{width:10.850667pt;}
._5_c00108{width:12.144000pt;}
._f_c00108{width:13.122667pt;}
._22_c00108{width:14.106667pt;}
._7_c00108{width:15.026667pt;}
._19_c00108{width:16.085333pt;}
._1e_c00108{width:18.370667pt;}
._21_c00108{width:19.701333pt;}
._24_c00108{width:22.264000pt;}
._23_c00108{width:25.637333pt;}
._26_c00108{width:28.311467pt;}
._14_c00108{width:30.210667pt;}
._1c_c00108{width:34.973333pt;}
._1a_c00108{width:38.378667pt;}
._20_c00108{width:75.010667pt;}
._1b_c00108{width:88.717333pt;}
._12_c00108{width:120.133333pt;}
._25_c00108{width:349.461333pt;}
._2_c00108{width:442.005333pt;}
.fs8_c00108{font-size:42.666667pt;}
.fs2_c00108{font-size:48.000000pt;}
.fs7_c00108{font-size:49.066667pt;}
.fs3_c00108{font-size:50.666667pt;}
.fs1_c00108{font-size:53.333333pt;}
.fs0_c00108{font-size:61.333333pt;}
.fs4_c00108{font-size:66.666667pt;}
.fs6_c00108{font-size:80.000000pt;}
.fs5_c00108{font-size:82.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y1f_c00108{bottom:2.760000pt;}
.y1e_c00108{bottom:6.425212pt;}
.y1d_c00108{bottom:58.533333pt;}
.y1c_c00108{bottom:82.000000pt;}
.y1b_c00108{bottom:102.666667pt;}
.y1a_c00108{bottom:125.066667pt;}
.y19_c00108{bottom:146.800000pt;}
.y18_c00108{bottom:168.933333pt;}
.y17_c00108{bottom:191.066667pt;}
.y16_c00108{bottom:213.333333pt;}
.y15_c00108{bottom:235.466667pt;}
.y14_c00108{bottom:257.466667pt;}
.y13_c00108{bottom:279.333333pt;}
.y12_c00108{bottom:301.466667pt;}
.y11_c00108{bottom:323.333333pt;}
.y10_c00108{bottom:344.800000pt;}
.yf_c00108{bottom:366.933333pt;}
.ye_c00108{bottom:389.066667pt;}
.yd_c00108{bottom:411.066667pt;}
.yc_c00108{bottom:432.666667pt;}
.yb_c00108{bottom:454.266667pt;}
.ya_c00108{bottom:476.800000pt;}
.y9_c00108{bottom:498.000000pt;}
.y8_c00108{bottom:541.866667pt;}
.y7_c00108{bottom:583.600000pt;}
.y6_c00108{bottom:599.333333pt;}
.y5_c00108{bottom:615.200000pt;}
.y4_c00108{bottom:630.666667pt;}
.y3_c00108{bottom:654.666667pt;}
.y2_c00108{bottom:661.733333pt;}
.y1_c00108{bottom:694.800000pt;}
.h9_c00108{height:11.733399pt;}
.ha_c00108{height:38.937500pt;}
.h6_c00108{height:51.216000pt;}
.h5_c00108{height:60.773438pt;}
.h2_c00108{height:61.812500pt;}
.h4_c00108{height:64.149740pt;}
.h3_c00108{height:67.526042pt;}
.h8_c00108{height:71.785156pt;}
.h1_c00108{height:77.654948pt;}
.h7_c00108{height:96.753906pt;}
.h0_c00108{height:732.000000pt;}
.w2_c00108{width:93.222667pt;}
.w0_c00108{width:490.533333pt;}
.w1_c00108{width:490.666667pt;}
.x0_c00108{left:0.000000pt;}
.x9_c00108{left:33.866667pt;}
.xb_c00108{left:35.066667pt;}
.x5_c00108{left:36.000000pt;}
.x6_c00108{left:37.466667pt;}
.x4_c00108{left:50.800000pt;}
.x7_c00108{left:51.866667pt;}
.x8_c00108{left:55.866667pt;}
.xa_c00108{left:56.800000pt;}
.x2_c00108{left:162.400000pt;}
.x1_c00108{left:180.000000pt;}
.xd_c00108{left:202.434896pt;}
.xc_c00108{left:238.133333pt;}
.x3_c00108{left:242.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_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_6cbd8e8872edca134ff56836.woff2')format("woff");}.ff1_c00109{font-family:ff1_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:ff2_c00109;src:url('chunks/assets/font_2412fcb2e9d7054965cb990d.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.568848;font-style:normal;font-weight:normal;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_2977228aa03b995ef97c5f51.woff2')format("woff");}.ff3_c00109{font-family:ff3_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:ff4_c00109;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00109{font-family:ff4_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;}
.ls7_c00109{letter-spacing:0.000000px;}
.ls8_c00109{letter-spacing:3.000000px;}
.ls1_c00109{letter-spacing:3.525000px;}
.ls3_c00109{letter-spacing:14.289000px;}
.ls4_c00109{letter-spacing:18.600000px;}
.ls5_c00109{letter-spacing:19.800000px;}
.ls2_c00109{letter-spacing:21.000000px;}
.ls6_c00109{letter-spacing:29.277000px;}
.ls0_c00109{letter-spacing:34.299000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00109{word-spacing:-33.000000px;}
.ws4_c00109{word-spacing:-19.629000px;}
.ws0_c00109{word-spacing:-16.629000px;}
.ws1_c00109{word-spacing:-1.035000px;}
.ws3_c00109{word-spacing:-0.621000px;}
.ws5_c00109{word-spacing:0.000000px;}
._20_c00109{margin-left:-23.667000px;}
._13_c00109{margin-left:-14.904000px;}
._1e_c00109{margin-left:-13.317000px;}
._24_c00109{margin-left:-11.799000px;}
._14_c00109{margin-left:-10.695000px;}
._16_c00109{margin-left:-8.901000px;}
._21_c00109{margin-left:-7.815000px;}
._1c_c00109{margin-left:-6.762000px;}
._e_c00109{margin-left:-5.658000px;}
._12_c00109{margin-left:-4.278000px;}
._10_c00109{margin-left:-3.036000px;}
._f_c00109{margin-left:-1.449000px;}
._11_c00109{width:2.001000px;}
._d_c00109{width:3.489000px;}
._b_c00109{width:5.412000px;}
._18_c00109{width:6.555000px;}
._1b_c00109{width:7.590000px;}
._c_c00109{width:8.970000px;}
._5_c00109{width:10.419000px;}
._9_c00109{width:12.006000px;}
._1d_c00109{width:13.110000px;}
._7_c00109{width:14.145000px;}
._1a_c00109{width:15.201000px;}
._19_c00109{width:16.653000px;}
._15_c00109{width:17.910000px;}
._23_c00109{width:19.902000px;}
._6_c00109{width:20.976000px;}
._a_c00109{width:22.149000px;}
._8_c00109{width:23.184000px;}
._22_c00109{width:24.237000px;}
._0_c00109{width:25.392000px;}
._1_c00109{width:26.841000px;}
._4_c00109{width:29.325000px;}
._2_c00109{width:30.705000px;}
._27_c00109{width:33.840000px;}
._3_c00109{width:38.157000px;}
._26_c00109{width:80.868000px;}
._1f_c00109{width:97.428000px;}
._17_c00109{width:183.540000px;}
._2a_c00109{width:259.716000px;}
._29_c00109{width:428.697000px;}
._28_c00109{width:533.439000px;}
._25_c00109{width:756.399000px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(0,0,0);}
.fs3_c00109{font-size:48.000000px;}
.fs2_c00109{font-size:66.000000px;}
.fs0_c00109{font-size:69.000000px;}
.fs1_c00109{font-size:84.000000px;}
.y0_c00109{bottom:0.000000px;}
.y1b_c00109{bottom:3.105000px;}
.y1a_c00109{bottom:7.228369px;}
.y19_c00109{bottom:83.370000px;}
.y18_c00109{bottom:112.020000px;}
.y17_c00109{bottom:132.870000px;}
.y16_c00109{bottom:156.270000px;}
.y15_c00109{bottom:184.170000px;}
.y14_c00109{bottom:209.220000px;}
.y13_c00109{bottom:234.570000px;}
.y12_c00109{bottom:284.820000px;}
.y11_c00109{bottom:334.770000px;}
.y10_c00109{bottom:359.370000px;}
.yf_c00109{bottom:383.670000px;}
.ye_c00109{bottom:408.720000px;}
.yd_c00109{bottom:433.620000px;}
.yc_c00109{bottom:458.220000px;}
.yb_c00109{bottom:481.920000px;}
.ya_c00109{bottom:508.170000px;}
.y9_c00109{bottom:533.070000px;}
.y8_c00109{bottom:557.820000px;}
.y7_c00109{bottom:582.570000px;}
.y6_c00109{bottom:607.470000px;}
.y5_c00109{bottom:631.170000px;}
.y4_c00109{bottom:656.670000px;}
.y3_c00109{bottom:682.320000px;}
.y2_c00109{bottom:707.370000px;}
.y1_c00109{bottom:757.020000px;}
.h4_c00109{height:13.200073px;}
.h5_c00109{height:43.804688px;}
.h2_c00109{height:87.361816px;}
.h3_c00109{height:106.353516px;}
.h0_c00109{height:842.100000px;}
.h1_c00109{height:842.250000px;}
.w2_c00109{width:104.875500px;}
.w0_c00109{width:558.600000px;}
.w1_c00109{width:558.750000px;}
.x0_c00109{left:0.000000px;}
.x4_c00109{left:36.900000px;}
.x6_c00109{left:39.150000px;}
.xb_c00109{left:52.050000px;}
.x5_c00109{left:54.000000px;}
.xa_c00109{left:98.100000px;}
.x7_c00109{left:100.350000px;}
.x3_c00109{left:102.900000px;}
.x9_c00109{left:114.150000px;}
.x2_c00109{left:126.600000px;}
.x8_c00109{left:136.800000px;}
.x1_c00109{left:142.200000px;}
.xd_c00109{left:231.114258px;}
.xc_c00109{left:505.650000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls7_c00109{letter-spacing:0.000000pt;}
.ls8_c00109{letter-spacing:2.666667pt;}
.ls1_c00109{letter-spacing:3.133333pt;}
.ls3_c00109{letter-spacing:12.701333pt;}
.ls4_c00109{letter-spacing:16.533333pt;}
.ls5_c00109{letter-spacing:17.600000pt;}
.ls2_c00109{letter-spacing:18.666667pt;}
.ls6_c00109{letter-spacing:26.024000pt;}
.ls0_c00109{letter-spacing:30.488000pt;}
.ws2_c00109{word-spacing:-29.333333pt;}
.ws4_c00109{word-spacing:-17.448000pt;}
.ws0_c00109{word-spacing:-14.781333pt;}
.ws1_c00109{word-spacing:-0.920000pt;}
.ws3_c00109{word-spacing:-0.552000pt;}
.ws5_c00109{word-spacing:0.000000pt;}
._20_c00109{margin-left:-21.037333pt;}
._13_c00109{margin-left:-13.248000pt;}
._1e_c00109{margin-left:-11.837333pt;}
._24_c00109{margin-left:-10.488000pt;}
._14_c00109{margin-left:-9.506667pt;}
._16_c00109{margin-left:-7.912000pt;}
._21_c00109{margin-left:-6.946667pt;}
._1c_c00109{margin-left:-6.010667pt;}
._e_c00109{margin-left:-5.029333pt;}
._12_c00109{margin-left:-3.802667pt;}
._10_c00109{margin-left:-2.698667pt;}
._f_c00109{margin-left:-1.288000pt;}
._11_c00109{width:1.778667pt;}
._d_c00109{width:3.101333pt;}
._b_c00109{width:4.810667pt;}
._18_c00109{width:5.826667pt;}
._1b_c00109{width:6.746667pt;}
._c_c00109{width:7.973333pt;}
._5_c00109{width:9.261333pt;}
._9_c00109{width:10.672000pt;}
._1d_c00109{width:11.653333pt;}
._7_c00109{width:12.573333pt;}
._1a_c00109{width:13.512000pt;}
._19_c00109{width:14.802667pt;}
._15_c00109{width:15.920000pt;}
._23_c00109{width:17.690667pt;}
._6_c00109{width:18.645333pt;}
._a_c00109{width:19.688000pt;}
._8_c00109{width:20.608000pt;}
._22_c00109{width:21.544000pt;}
._0_c00109{width:22.570667pt;}
._1_c00109{width:23.858667pt;}
._4_c00109{width:26.066667pt;}
._2_c00109{width:27.293333pt;}
._27_c00109{width:30.080000pt;}
._3_c00109{width:33.917333pt;}
._26_c00109{width:71.882667pt;}
._1f_c00109{width:86.602667pt;}
._17_c00109{width:163.146667pt;}
._2a_c00109{width:230.858667pt;}
._29_c00109{width:381.064000pt;}
._28_c00109{width:474.168000pt;}
._25_c00109{width:672.354667pt;}
.fs3_c00109{font-size:42.666667pt;}
.fs2_c00109{font-size:58.666667pt;}
.fs0_c00109{font-size:61.333333pt;}
.fs1_c00109{font-size:74.666667pt;}
.y0_c00109{bottom:0.000000pt;}
.y1b_c00109{bottom:2.760000pt;}
.y1a_c00109{bottom:6.425217pt;}
.y19_c00109{bottom:74.106667pt;}
.y18_c00109{bottom:99.573333pt;}
.y17_c00109{bottom:118.106667pt;}
.y16_c00109{bottom:138.906667pt;}
.y15_c00109{bottom:163.706667pt;}
.y14_c00109{bottom:185.973333pt;}
.y13_c00109{bottom:208.506667pt;}
.y12_c00109{bottom:253.173333pt;}
.y11_c00109{bottom:297.573333pt;}
.y10_c00109{bottom:319.440000pt;}
.yf_c00109{bottom:341.040000pt;}
.ye_c00109{bottom:363.306667pt;}
.yd_c00109{bottom:385.440000pt;}
.yc_c00109{bottom:407.306667pt;}
.yb_c00109{bottom:428.373333pt;}
.ya_c00109{bottom:451.706667pt;}
.y9_c00109{bottom:473.840000pt;}
.y8_c00109{bottom:495.840000pt;}
.y7_c00109{bottom:517.840000pt;}
.y6_c00109{bottom:539.973333pt;}
.y5_c00109{bottom:561.040000pt;}
.y4_c00109{bottom:583.706667pt;}
.y3_c00109{bottom:606.506667pt;}
.y2_c00109{bottom:628.773333pt;}
.y1_c00109{bottom:672.906667pt;}
.h4_c00109{height:11.733399pt;}
.h5_c00109{height:38.937500pt;}
.h2_c00109{height:77.654948pt;}
.h3_c00109{height:94.536458pt;}
.h0_c00109{height:748.533333pt;}
.h1_c00109{height:748.666667pt;}
.w2_c00109{width:93.222667pt;}
.w0_c00109{width:496.533333pt;}
.w1_c00109{width:496.666667pt;}
.x0_c00109{left:0.000000pt;}
.x4_c00109{left:32.800000pt;}
.x6_c00109{left:34.800000pt;}
.xb_c00109{left:46.266667pt;}
.x5_c00109{left:48.000000pt;}
.xa_c00109{left:87.200000pt;}
.x7_c00109{left:89.200000pt;}
.x3_c00109{left:91.466667pt;}
.x9_c00109{left:101.466667pt;}
.x2_c00109{left:112.533333pt;}
.x8_c00109{left:121.600000pt;}
.x1_c00109{left:126.400000pt;}
.xd_c00109{left:205.434896pt;}
.xc_c00109{left:449.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_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_3e53bf9de5ec55f7b246cb4d.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_3fc1d9d22ffda9345641d2c7.woff2')format("woff");}.ff2_c00110{font-family:ff2_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:ff3_c00110;src:url('chunks/assets/font_4dd9ef22850069cb23601996.woff2')format("woff");}.ff3_c00110{font-family:ff3_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:ff4_c00110;src:url('chunks/assets/font_a487c355939697a4081fed5d.woff2')format("woff");}.ff4_c00110{font-family:ff4_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:ff5_c00110;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00110{font-family:ff5_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;}
.m1_c00110{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_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;}
.ls1_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:3.000000px;}
.ls3_c00110{letter-spacing:6.000000px;}
.ls2_c00110{letter-spacing:12.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00110{word-spacing:-28.629000px;}
.ws3_c00110{word-spacing:-22.629000px;}
.ws0_c00110{word-spacing:-19.629000px;}
.ws2_c00110{word-spacing:-16.629000px;}
.ws4_c00110{word-spacing:0.000000px;}
._23_c00110{margin-left:-21.252000px;}
._1b_c00110{margin-left:-15.720000px;}
._1a_c00110{margin-left:-14.388000px;}
._25_c00110{margin-left:-12.834000px;}
._15_c00110{margin-left:-11.523000px;}
._20_c00110{margin-left:-10.440000px;}
._13_c00110{margin-left:-8.694000px;}
._11_c00110{margin-left:-6.624000px;}
._c_c00110{margin-left:-5.451000px;}
._12_c00110{margin-left:-4.278000px;}
._2_c00110{margin-left:-2.898000px;}
._1_c00110{margin-left:-1.380000px;}
._0_c00110{width:1.449000px;}
._4_c00110{width:2.829000px;}
._5_c00110{width:4.278000px;}
._f_c00110{width:5.382000px;}
._6_c00110{width:6.969000px;}
._d_c00110{width:8.073000px;}
._e_c00110{width:9.384000px;}
._8_c00110{width:11.178000px;}
._18_c00110{width:12.258000px;}
._14_c00110{width:13.698000px;}
._9_c00110{width:15.042000px;}
._a_c00110{width:17.250000px;}
._17_c00110{width:19.077000px;}
._7_c00110{width:21.033000px;}
._1f_c00110{width:27.945000px;}
._1d_c00110{width:31.431000px;}
._24_c00110{width:38.043000px;}
._b_c00110{width:39.123000px;}
._1c_c00110{width:43.686000px;}
._1e_c00110{width:57.996000px;}
._22_c00110{width:72.243000px;}
._16_c00110{width:88.377000px;}
._10_c00110{width:100.707000px;}
._21_c00110{width:106.191000px;}
._19_c00110{width:200.583000px;}
._3_c00110{width:495.393000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(128,128,128);}
.fc0_c00110{color:rgb(0,0,0);}
.fs3_c00110{font-size:48.000000px;}
.fs2_c00110{font-size:51.000000px;}
.fs0_c00110{font-size:69.000000px;}
.fs1_c00110{font-size:87.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1d_c00110{bottom:3.105000px;}
.y1c_c00110{bottom:7.228369px;}
.y1b_c00110{bottom:90.120000px;}
.y1a_c00110{bottom:115.320000px;}
.y19_c00110{bottom:140.070000px;}
.y18_c00110{bottom:164.670000px;}
.y17_c00110{bottom:188.670000px;}
.y16_c00110{bottom:214.320000px;}
.y15_c00110{bottom:239.520000px;}
.y14_c00110{bottom:264.270000px;}
.y13_c00110{bottom:288.870000px;}
.y12_c00110{bottom:313.470000px;}
.y11_c00110{bottom:338.520000px;}
.y10_c00110{bottom:362.820000px;}
.yf_c00110{bottom:387.420000px;}
.ye_c00110{bottom:413.070000px;}
.yd_c00110{bottom:437.970000px;}
.yc_c00110{bottom:486.570000px;}
.yb_c00110{bottom:537.270000px;}
.ya_c00110{bottom:560.520000px;}
.y9_c00110{bottom:585.870000px;}
.y8_c00110{bottom:610.470000px;}
.y7_c00110{bottom:634.770000px;}
.y6_c00110{bottom:659.820000px;}
.y5_c00110{bottom:684.720000px;}
.y4_c00110{bottom:709.020000px;}
.y3_c00110{bottom:733.620000px;}
.y2_c00110{bottom:758.070000px;}
.y1_c00110{bottom:783.570000px;}
.h5_c00110{height:13.200073px;}
.h6_c00110{height:43.804688px;}
.h4_c00110{height:80.758301px;}
.h2_c00110{height:87.361816px;}
.h3_c00110{height:91.176000px;}
.h0_c00110{height:821.850000px;}
.h1_c00110{height:822.000000px;}
.w2_c00110{width:104.875500px;}
.w1_c00110{width:550.500000px;}
.w0_c00110{width:550.800000px;}
.x0_c00110{left:0.000000px;}
.x2_c00110{left:34.800000px;}
.x5_c00110{left:36.150000px;}
.x6_c00110{left:37.500000px;}
.x8_c00110{left:38.550000px;}
.x9_c00110{left:40.200000px;}
.x7_c00110{left:63.450000px;}
.x1_c00110{left:190.050000px;}
.xa_c00110{left:227.214249px;}
.x3_c00110{left:241.650000px;}
.x4_c00110{left:249.300000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls1_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:2.666667pt;}
.ls3_c00110{letter-spacing:5.333333pt;}
.ls2_c00110{letter-spacing:10.666667pt;}
.ws1_c00110{word-spacing:-25.448000pt;}
.ws3_c00110{word-spacing:-20.114667pt;}
.ws0_c00110{word-spacing:-17.448000pt;}
.ws2_c00110{word-spacing:-14.781333pt;}
.ws4_c00110{word-spacing:0.000000pt;}
._23_c00110{margin-left:-18.890667pt;}
._1b_c00110{margin-left:-13.973333pt;}
._1a_c00110{margin-left:-12.789333pt;}
._25_c00110{margin-left:-11.408000pt;}
._15_c00110{margin-left:-10.242667pt;}
._20_c00110{margin-left:-9.280000pt;}
._13_c00110{margin-left:-7.728000pt;}
._11_c00110{margin-left:-5.888000pt;}
._c_c00110{margin-left:-4.845333pt;}
._12_c00110{margin-left:-3.802667pt;}
._2_c00110{margin-left:-2.576000pt;}
._1_c00110{margin-left:-1.226667pt;}
._0_c00110{width:1.288000pt;}
._4_c00110{width:2.514667pt;}
._5_c00110{width:3.802667pt;}
._f_c00110{width:4.784000pt;}
._6_c00110{width:6.194667pt;}
._d_c00110{width:7.176000pt;}
._e_c00110{width:8.341333pt;}
._8_c00110{width:9.936000pt;}
._18_c00110{width:10.896000pt;}
._14_c00110{width:12.176000pt;}
._9_c00110{width:13.370667pt;}
._a_c00110{width:15.333333pt;}
._17_c00110{width:16.957333pt;}
._7_c00110{width:18.696000pt;}
._1f_c00110{width:24.840000pt;}
._1d_c00110{width:27.938667pt;}
._24_c00110{width:33.816000pt;}
._b_c00110{width:34.776000pt;}
._1c_c00110{width:38.832000pt;}
._1e_c00110{width:51.552000pt;}
._22_c00110{width:64.216000pt;}
._16_c00110{width:78.557333pt;}
._10_c00110{width:89.517333pt;}
._21_c00110{width:94.392000pt;}
._19_c00110{width:178.296000pt;}
._3_c00110{width:440.349333pt;}
.fs3_c00110{font-size:42.666667pt;}
.fs2_c00110{font-size:45.333333pt;}
.fs0_c00110{font-size:61.333333pt;}
.fs1_c00110{font-size:77.333333pt;}
.y0_c00110{bottom:0.000000pt;}
.y1d_c00110{bottom:2.760000pt;}
.y1c_c00110{bottom:6.425217pt;}
.y1b_c00110{bottom:80.106667pt;}
.y1a_c00110{bottom:102.506667pt;}
.y19_c00110{bottom:124.506667pt;}
.y18_c00110{bottom:146.373333pt;}
.y17_c00110{bottom:167.706667pt;}
.y16_c00110{bottom:190.506667pt;}
.y15_c00110{bottom:212.906667pt;}
.y14_c00110{bottom:234.906667pt;}
.y13_c00110{bottom:256.773333pt;}
.y12_c00110{bottom:278.640000pt;}
.y11_c00110{bottom:300.906667pt;}
.y10_c00110{bottom:322.506667pt;}
.yf_c00110{bottom:344.373333pt;}
.ye_c00110{bottom:367.173333pt;}
.yd_c00110{bottom:389.306667pt;}
.yc_c00110{bottom:432.506667pt;}
.yb_c00110{bottom:477.573333pt;}
.ya_c00110{bottom:498.240000pt;}
.y9_c00110{bottom:520.773333pt;}
.y8_c00110{bottom:542.640000pt;}
.y7_c00110{bottom:564.240000pt;}
.y6_c00110{bottom:586.506667pt;}
.y5_c00110{bottom:608.640000pt;}
.y4_c00110{bottom:630.240000pt;}
.y3_c00110{bottom:652.106667pt;}
.y2_c00110{bottom:673.840000pt;}
.y1_c00110{bottom:696.506667pt;}
.h5_c00110{height:11.733399pt;}
.h6_c00110{height:38.937500pt;}
.h4_c00110{height:71.785156pt;}
.h2_c00110{height:77.654948pt;}
.h3_c00110{height:81.045333pt;}
.h0_c00110{height:730.533333pt;}
.h1_c00110{height:730.666667pt;}
.w2_c00110{width:93.222667pt;}
.w1_c00110{width:489.333333pt;}
.w0_c00110{width:489.600000pt;}
.x0_c00110{left:0.000000pt;}
.x2_c00110{left:30.933333pt;}
.x5_c00110{left:32.133333pt;}
.x6_c00110{left:33.333333pt;}
.x8_c00110{left:34.266667pt;}
.x9_c00110{left:35.733333pt;}
.x7_c00110{left:56.400000pt;}
.x1_c00110{left:168.933333pt;}
.xa_c00110{left:201.968221pt;}
.x3_c00110{left:214.800000pt;}
.x4_c00110{left:221.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_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_a32941c4188b0485fff61c1f.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.437000;font-style:normal;font-weight:normal;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_ef0b7dac5b22c844ca7797a4.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;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_c00111;src:url('chunks/assets/font_b0738c515d1db56b5567f7bb.woff2')format("woff");}.ff3_c00111{font-family:ff3_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:ff4_c00111;src:url('chunks/assets/font_26d602d7408b965930242ac0.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_880e46f79b56033edeca94f9.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_8928f98f87c3132e1cc3f21f.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;}
.ls5_c00111{letter-spacing:0.000000px;}
.ls6_c00111{letter-spacing:3.000000px;}
.ls1_c00111{letter-spacing:6.000000px;}
.ls7_c00111{letter-spacing:12.000000px;}
.ls4_c00111{letter-spacing:14.925000px;}
.ls2_c00111{letter-spacing:16.725000px;}
.ls0_c00111{letter-spacing:24.171000px;}
.ls3_c00111{letter-spacing:34.371000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00111{word-spacing:-28.629000px;}
.ws0_c00111{word-spacing:-27.000000px;}
.ws3_c00111{word-spacing:-22.629000px;}
.ws1_c00111{word-spacing:-16.629000px;}
.ws5_c00111{word-spacing:-14.478000px;}
.ws2_c00111{word-spacing:-0.651000px;}
.ws6_c00111{word-spacing:0.000000px;}
._1e_c00111{margin-left:-23.019000px;}
._25_c00111{margin-left:-16.905000px;}
._1f_c00111{margin-left:-15.846000px;}
._1d_c00111{margin-left:-14.835000px;}
._1c_c00111{margin-left:-13.284000px;}
._d_c00111{margin-left:-12.117000px;}
._20_c00111{margin-left:-8.982000px;}
._1a_c00111{margin-left:-7.590000px;}
._1_c00111{margin-left:-5.712000px;}
._0_c00111{margin-left:-4.452000px;}
._2_c00111{margin-left:-2.412000px;}
._8_c00111{margin-left:-1.242000px;}
._4_c00111{width:1.512000px;}
._9_c00111{width:2.778000px;}
._5_c00111{width:3.795000px;}
._a_c00111{width:5.616000px;}
._3_c00111{width:6.930000px;}
._17_c00111{width:8.991000px;}
._11_c00111{width:11.076000px;}
._10_c00111{width:12.192000px;}
._19_c00111{width:13.401000px;}
._e_c00111{width:14.427000px;}
._12_c00111{width:15.759000px;}
._29_c00111{width:16.884000px;}
._b_c00111{width:17.910000px;}
._24_c00111{width:19.065000px;}
._c_c00111{width:20.631000px;}
._15_c00111{width:22.149000px;}
._23_c00111{width:24.912000px;}
._16_c00111{width:29.415000px;}
._27_c00111{width:36.351000px;}
._6_c00111{width:41.883000px;}
._22_c00111{width:48.258000px;}
._2a_c00111{width:49.881000px;}
._28_c00111{width:58.917000px;}
._26_c00111{width:60.150000px;}
._14_c00111{width:66.252000px;}
._2b_c00111{width:97.632000px;}
._f_c00111{width:100.620000px;}
._1b_c00111{width:102.369000px;}
._21_c00111{width:208.446000px;}
._18_c00111{width:212.112000px;}
._13_c00111{width:217.791000px;}
._7_c00111{width:358.020000px;}
._2c_c00111{width:1164.111000px;}
.fc2_c00111{color:transparent;}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:42.000000px;}
.fs3_c00111{font-size:48.000000px;}
.fs1_c00111{font-size:57.000000px;}
.fs2_c00111{font-size:69.000000px;}
.y0_c00111{bottom:0.000000px;}
.y21_c00111{bottom:3.105000px;}
.y20_c00111{bottom:7.228369px;}
.y1d_c00111{bottom:82.020000px;}
.y1c_c00111{bottom:106.920000px;}
.y1b_c00111{bottom:132.270000px;}
.y1f_c00111{bottom:142.470000px;}
.y1a_c00111{bottom:157.170000px;}
.y19_c00111{bottom:182.520000px;}
.y18_c00111{bottom:207.570000px;}
.y17_c00111{bottom:232.920000px;}
.y1e_c00111{bottom:245.670000px;}
.y16_c00111{bottom:258.120000px;}
.y15_c00111{bottom:283.770000px;}
.y14_c00111{bottom:308.370000px;}
.y13_c00111{bottom:357.420000px;}
.y12_c00111{bottom:407.370000px;}
.y11_c00111{bottom:432.270000px;}
.y10_c00111{bottom:457.620000px;}
.yf_c00111{bottom:482.670000px;}
.y1_c00111{bottom:494.070000px;}
.ye_c00111{bottom:507.570000px;}
.yd_c00111{bottom:532.920000px;}
.yc_c00111{bottom:557.220000px;}
.yb_c00111{bottom:582.420000px;}
.ya_c00111{bottom:606.870000px;}
.y9_c00111{bottom:632.070000px;}
.y8_c00111{bottom:656.820000px;}
.y7_c00111{bottom:682.020000px;}
.y6_c00111{bottom:706.620000px;}
.y5_c00111{bottom:731.670000px;}
.y4_c00111{bottom:757.320000px;}
.y3_c00111{bottom:781.320000px;}
.y2_c00111{bottom:806.670000px;}
.h6_c00111{height:13.200073px;}
.h7_c00111{height:43.804688px;}
.h2_c00111{height:44.814000px;}
.h5_c00111{height:72.168457px;}
.h4_c00111{height:80.758301px;}
.h3_c00111{height:87.361816px;}
.h0_c00111{height:842.100000px;}
.h1_c00111{height:842.250000px;}
.w2_c00111{width:104.875500px;}
.w0_c00111{width:558.600000px;}
.w1_c00111{width:558.750000px;}
.x0_c00111{left:0.000000px;}
.xb_c00111{left:26.400000px;}
.x4_c00111{left:30.750000px;}
.x1_c00111{left:32.100000px;}
.x6_c00111{left:44.550000px;}
.xe_c00111{left:60.450000px;}
.xd_c00111{left:89.400000px;}
.xc_c00111{left:90.750000px;}
.x9_c00111{left:92.100000px;}
.x7_c00111{left:94.500000px;}
.x3_c00111{left:95.550000px;}
.x5_c00111{left:96.600000px;}
.x2_c00111{left:109.350000px;}
.xa_c00111{left:120.450000px;}
.x8_c00111{left:126.600000px;}
.xf_c00111{left:231.114258px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls5_c00111{letter-spacing:0.000000pt;}
.ls6_c00111{letter-spacing:2.666667pt;}
.ls1_c00111{letter-spacing:5.333333pt;}
.ls7_c00111{letter-spacing:10.666667pt;}
.ls4_c00111{letter-spacing:13.266667pt;}
.ls2_c00111{letter-spacing:14.866667pt;}
.ls0_c00111{letter-spacing:21.485333pt;}
.ls3_c00111{letter-spacing:30.552000pt;}
.ws4_c00111{word-spacing:-25.448000pt;}
.ws0_c00111{word-spacing:-24.000000pt;}
.ws3_c00111{word-spacing:-20.114667pt;}
.ws1_c00111{word-spacing:-14.781333pt;}
.ws5_c00111{word-spacing:-12.869333pt;}
.ws2_c00111{word-spacing:-0.578667pt;}
.ws6_c00111{word-spacing:0.000000pt;}
._1e_c00111{margin-left:-20.461333pt;}
._25_c00111{margin-left:-15.026667pt;}
._1f_c00111{margin-left:-14.085333pt;}
._1d_c00111{margin-left:-13.186667pt;}
._1c_c00111{margin-left:-11.808000pt;}
._d_c00111{margin-left:-10.770667pt;}
._20_c00111{margin-left:-7.984000pt;}
._1a_c00111{margin-left:-6.746667pt;}
._1_c00111{margin-left:-5.077333pt;}
._0_c00111{margin-left:-3.957333pt;}
._2_c00111{margin-left:-2.144000pt;}
._8_c00111{margin-left:-1.104000pt;}
._4_c00111{width:1.344000pt;}
._9_c00111{width:2.469333pt;}
._5_c00111{width:3.373333pt;}
._a_c00111{width:4.992000pt;}
._3_c00111{width:6.160000pt;}
._17_c00111{width:7.992000pt;}
._11_c00111{width:9.845333pt;}
._10_c00111{width:10.837333pt;}
._19_c00111{width:11.912000pt;}
._e_c00111{width:12.824000pt;}
._12_c00111{width:14.008000pt;}
._29_c00111{width:15.008000pt;}
._b_c00111{width:15.920000pt;}
._24_c00111{width:16.946667pt;}
._c_c00111{width:18.338667pt;}
._15_c00111{width:19.688000pt;}
._23_c00111{width:22.144000pt;}
._16_c00111{width:26.146667pt;}
._27_c00111{width:32.312000pt;}
._6_c00111{width:37.229333pt;}
._22_c00111{width:42.896000pt;}
._2a_c00111{width:44.338667pt;}
._28_c00111{width:52.370667pt;}
._26_c00111{width:53.466667pt;}
._14_c00111{width:58.890667pt;}
._2b_c00111{width:86.784000pt;}
._f_c00111{width:89.440000pt;}
._1b_c00111{width:90.994667pt;}
._21_c00111{width:185.285333pt;}
._18_c00111{width:188.544000pt;}
._13_c00111{width:193.592000pt;}
._7_c00111{width:318.240000pt;}
._2c_c00111{width:1034.765333pt;}
.fs0_c00111{font-size:37.333333pt;}
.fs3_c00111{font-size:42.666667pt;}
.fs1_c00111{font-size:50.666667pt;}
.fs2_c00111{font-size:61.333333pt;}
.y0_c00111{bottom:0.000000pt;}
.y21_c00111{bottom:2.760000pt;}
.y20_c00111{bottom:6.425217pt;}
.y1d_c00111{bottom:72.906667pt;}
.y1c_c00111{bottom:95.040000pt;}
.y1b_c00111{bottom:117.573333pt;}
.y1f_c00111{bottom:126.640000pt;}
.y1a_c00111{bottom:139.706667pt;}
.y19_c00111{bottom:162.240000pt;}
.y18_c00111{bottom:184.506667pt;}
.y17_c00111{bottom:207.040000pt;}
.y1e_c00111{bottom:218.373333pt;}
.y16_c00111{bottom:229.440000pt;}
.y15_c00111{bottom:252.240000pt;}
.y14_c00111{bottom:274.106667pt;}
.y13_c00111{bottom:317.706667pt;}
.y12_c00111{bottom:362.106667pt;}
.y11_c00111{bottom:384.240000pt;}
.y10_c00111{bottom:406.773333pt;}
.yf_c00111{bottom:429.040000pt;}
.y1_c00111{bottom:439.173333pt;}
.ye_c00111{bottom:451.173333pt;}
.yd_c00111{bottom:473.706667pt;}
.yc_c00111{bottom:495.306667pt;}
.yb_c00111{bottom:517.706667pt;}
.ya_c00111{bottom:539.440000pt;}
.y9_c00111{bottom:561.840000pt;}
.y8_c00111{bottom:583.840000pt;}
.y7_c00111{bottom:606.240000pt;}
.y6_c00111{bottom:628.106667pt;}
.y5_c00111{bottom:650.373333pt;}
.y4_c00111{bottom:673.173333pt;}
.y3_c00111{bottom:694.506667pt;}
.y2_c00111{bottom:717.040000pt;}
.h6_c00111{height:11.733399pt;}
.h7_c00111{height:38.937500pt;}
.h2_c00111{height:39.834667pt;}
.h5_c00111{height:64.149740pt;}
.h4_c00111{height:71.785156pt;}
.h3_c00111{height:77.654948pt;}
.h0_c00111{height:748.533333pt;}
.h1_c00111{height:748.666667pt;}
.w2_c00111{width:93.222667pt;}
.w0_c00111{width:496.533333pt;}
.w1_c00111{width:496.666667pt;}
.x0_c00111{left:0.000000pt;}
.xb_c00111{left:23.466667pt;}
.x4_c00111{left:27.333333pt;}
.x1_c00111{left:28.533333pt;}
.x6_c00111{left:39.600000pt;}
.xe_c00111{left:53.733333pt;}
.xd_c00111{left:79.466667pt;}
.xc_c00111{left:80.666667pt;}
.x9_c00111{left:81.866667pt;}
.x7_c00111{left:84.000000pt;}
.x3_c00111{left:84.933333pt;}
.x5_c00111{left:85.866667pt;}
.x2_c00111{left:97.200000pt;}
.xa_c00111{left:107.066667pt;}
.x8_c00111{left:112.533333pt;}
.xf_c00111{left:205.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_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_14b8c9d587dd2df1dc9fbe7d.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_d19c3a5686304aa873fc591c.woff2')format("woff");}.ff2_c00112{font-family:ff2_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:ff3_c00112;src:url('chunks/assets/font_adda4fd6f1e542cc651e6cfe.woff2')format("woff");}.ff3_c00112{font-family:ff3_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:ff4_c00112;src:url('chunks/assets/font_1e4333e0546c3e0129f37c23.woff2')format("woff");}.ff4_c00112{font-family:ff4_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:ff5_c00112;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls5_c00112{letter-spacing:0.000000px;}
.ls4_c00112{letter-spacing:2.571000px;}
.ls2_c00112{letter-spacing:3.000000px;}
.ls3_c00112{letter-spacing:4.725000px;}
.ls1_c00112{letter-spacing:6.000000px;}
.ls0_c00112{letter-spacing:14.100000px;}
.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:-25.050000px;}
.ws1_c00112{word-spacing:-21.075000px;}
.ws3_c00112{word-spacing:-18.183000px;}
.ws4_c00112{word-spacing:-16.629000px;}
.ws5_c00112{word-spacing:0.000000px;}
.ws2_c00112{word-spacing:4.200000px;}
._25_c00112{margin-left:-21.567000px;}
._28_c00112{margin-left:-20.250000px;}
._24_c00112{margin-left:-18.177000px;}
._21_c00112{margin-left:-16.725000px;}
._1b_c00112{margin-left:-13.662000px;}
._23_c00112{margin-left:-11.790000px;}
._1e_c00112{margin-left:-10.425000px;}
._20_c00112{margin-left:-9.093000px;}
._22_c00112{margin-left:-7.623000px;}
._19_c00112{margin-left:-6.006000px;}
._1a_c00112{margin-left:-4.290000px;}
._17_c00112{margin-left:-2.970000px;}
._16_c00112{margin-left:-1.953000px;}
._3_c00112{width:1.782000px;}
._b_c00112{width:3.657000px;}
._15_c00112{width:4.923000px;}
._1_c00112{width:6.798000px;}
._14_c00112{width:8.796000px;}
._26_c00112{width:10.260000px;}
._8_c00112{width:11.697000px;}
._2_c00112{width:12.936000px;}
._0_c00112{width:14.124000px;}
._a_c00112{width:15.489000px;}
._2b_c00112{width:16.578000px;}
._18_c00112{width:17.832000px;}
._10_c00112{width:19.113000px;}
._11_c00112{width:20.148000px;}
._13_c00112{width:23.253000px;}
._5_c00112{width:24.495000px;}
._4_c00112{width:26.928000px;}
._f_c00112{width:28.773000px;}
._6_c00112{width:32.292000px;}
._7_c00112{width:34.431000px;}
._9_c00112{width:36.225000px;}
._e_c00112{width:37.467000px;}
._12_c00112{width:39.054000px;}
._c_c00112{width:40.203000px;}
._d_c00112{width:41.907000px;}
._29_c00112{width:98.223000px;}
._2a_c00112{width:100.173000px;}
._1f_c00112{width:103.125000px;}
._1c_c00112{width:184.620000px;}
._1d_c00112{width:189.546000px;}
._27_c00112{width:214.146000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(128,128,128);}
.fc0_c00112{color:rgb(0,0,0);}
.fs7_c00112{font-size:42.000000px;}
.fs8_c00112{font-size:48.000000px;}
.fs6_c00112{font-size:57.000000px;}
.fs5_c00112{font-size:63.000000px;}
.fs0_c00112{font-size:66.000000px;}
.fs1_c00112{font-size:69.000000px;}
.fs2_c00112{font-size:72.000000px;}
.fs3_c00112{font-size:75.000000px;}
.fs4_c00112{font-size:81.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1d_c00112{bottom:3.105000px;}
.y1c_c00112{bottom:7.228371px;}
.y1b_c00112{bottom:63.465000px;}
.y1a_c00112{bottom:113.115000px;}
.y19_c00112{bottom:136.815000px;}
.y18_c00112{bottom:162.315000px;}
.y17_c00112{bottom:186.315000px;}
.y16_c00112{bottom:211.665000px;}
.y15_c00112{bottom:236.715000px;}
.y14_c00112{bottom:261.915000px;}
.y13_c00112{bottom:281.565000px;}
.y12_c00112{bottom:286.515000px;}
.y11_c00112{bottom:311.865000px;}
.y10_c00112{bottom:336.165000px;}
.yf_c00112{bottom:360.915000px;}
.ye_c00112{bottom:385.815000px;}
.yd_c00112{bottom:410.415000px;}
.yc_c00112{bottom:435.165000px;}
.yb_c00112{bottom:460.065000px;}
.ya_c00112{bottom:484.365000px;}
.y9_c00112{bottom:509.265000px;}
.y8_c00112{bottom:533.265000px;}
.y7_c00112{bottom:558.015000px;}
.y6_c00112{bottom:582.615000px;}
.y5_c00112{bottom:607.515000px;}
.y4_c00112{bottom:656.865000px;}
.y3_c00112{bottom:682.215000px;}
.y2_c00112{bottom:731.115000px;}
.y1_c00112{bottom:780.765000px;}
.hb_c00112{height:13.200074px;}
.hc_c00112{height:43.804688px;}
.h7_c00112{height:66.713379px;}
.h2_c00112{height:77.247070px;}
.h9_c00112{height:79.765137px;}
.h3_c00112{height:80.758301px;}
.h4_c00112{height:83.563477px;}
.h8_c00112{height:87.361816px;}
.h5_c00112{height:91.160156px;}
.h6_c00112{height:94.958496px;}
.ha_c00112{height:102.555176px;}
.h1_c00112{height:831.000000px;}
.h0_c00112{height:831.075000px;}
.w1_c00112{width:104.875500px;}
.w0_c00112{width:557.250000px;}
.x0_c00112{left:0.000000px;}
.x9_c00112{left:36.000000px;}
.xa_c00112{left:37.050000px;}
.x4_c00112{left:38.250000px;}
.x6_c00112{left:39.450000px;}
.x7_c00112{left:40.500000px;}
.x5_c00112{left:42.900000px;}
.x3_c00112{left:67.950000px;}
.x2_c00112{left:70.500000px;}
.x1_c00112{left:195.450000px;}
.xc_c00112{left:230.439240px;}
.xb_c00112{left:399.600000px;}
.x8_c00112{left:490.950000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls5_c00112{letter-spacing:0.000000pt;}
.ls4_c00112{letter-spacing:2.285333pt;}
.ls2_c00112{letter-spacing:2.666667pt;}
.ls3_c00112{letter-spacing:4.200000pt;}
.ls1_c00112{letter-spacing:5.333333pt;}
.ls0_c00112{letter-spacing:12.533333pt;}
.ws0_c00112{word-spacing:-22.266667pt;}
.ws1_c00112{word-spacing:-18.733333pt;}
.ws3_c00112{word-spacing:-16.162667pt;}
.ws4_c00112{word-spacing:-14.781333pt;}
.ws5_c00112{word-spacing:0.000000pt;}
.ws2_c00112{word-spacing:3.733333pt;}
._25_c00112{margin-left:-19.170667pt;}
._28_c00112{margin-left:-18.000000pt;}
._24_c00112{margin-left:-16.157333pt;}
._21_c00112{margin-left:-14.866667pt;}
._1b_c00112{margin-left:-12.144000pt;}
._23_c00112{margin-left:-10.480000pt;}
._1e_c00112{margin-left:-9.266667pt;}
._20_c00112{margin-left:-8.082667pt;}
._22_c00112{margin-left:-6.776000pt;}
._19_c00112{margin-left:-5.338667pt;}
._1a_c00112{margin-left:-3.813333pt;}
._17_c00112{margin-left:-2.640000pt;}
._16_c00112{margin-left:-1.736000pt;}
._3_c00112{width:1.584000pt;}
._b_c00112{width:3.250667pt;}
._15_c00112{width:4.376000pt;}
._1_c00112{width:6.042667pt;}
._14_c00112{width:7.818667pt;}
._26_c00112{width:9.120000pt;}
._8_c00112{width:10.397333pt;}
._2_c00112{width:11.498667pt;}
._0_c00112{width:12.554667pt;}
._a_c00112{width:13.768000pt;}
._2b_c00112{width:14.736000pt;}
._18_c00112{width:15.850667pt;}
._10_c00112{width:16.989333pt;}
._11_c00112{width:17.909333pt;}
._13_c00112{width:20.669333pt;}
._5_c00112{width:21.773333pt;}
._4_c00112{width:23.936000pt;}
._f_c00112{width:25.576000pt;}
._6_c00112{width:28.704000pt;}
._7_c00112{width:30.605333pt;}
._9_c00112{width:32.200000pt;}
._e_c00112{width:33.304000pt;}
._12_c00112{width:34.714667pt;}
._c_c00112{width:35.736000pt;}
._d_c00112{width:37.250667pt;}
._29_c00112{width:87.309333pt;}
._2a_c00112{width:89.042667pt;}
._1f_c00112{width:91.666667pt;}
._1c_c00112{width:164.106667pt;}
._1d_c00112{width:168.485333pt;}
._27_c00112{width:190.352000pt;}
.fs7_c00112{font-size:37.333333pt;}
.fs8_c00112{font-size:42.666667pt;}
.fs6_c00112{font-size:50.666667pt;}
.fs5_c00112{font-size:56.000000pt;}
.fs0_c00112{font-size:58.666667pt;}
.fs1_c00112{font-size:61.333333pt;}
.fs2_c00112{font-size:64.000000pt;}
.fs3_c00112{font-size:66.666667pt;}
.fs4_c00112{font-size:72.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y1d_c00112{bottom:2.760000pt;}
.y1c_c00112{bottom:6.425219pt;}
.y1b_c00112{bottom:56.413333pt;}
.y1a_c00112{bottom:100.546667pt;}
.y19_c00112{bottom:121.613333pt;}
.y18_c00112{bottom:144.280000pt;}
.y17_c00112{bottom:165.613333pt;}
.y16_c00112{bottom:188.146667pt;}
.y15_c00112{bottom:210.413333pt;}
.y14_c00112{bottom:232.813333pt;}
.y13_c00112{bottom:250.280000pt;}
.y12_c00112{bottom:254.680000pt;}
.y11_c00112{bottom:277.213333pt;}
.y10_c00112{bottom:298.813333pt;}
.yf_c00112{bottom:320.813333pt;}
.ye_c00112{bottom:342.946667pt;}
.yd_c00112{bottom:364.813333pt;}
.yc_c00112{bottom:386.813333pt;}
.yb_c00112{bottom:408.946667pt;}
.ya_c00112{bottom:430.546667pt;}
.y9_c00112{bottom:452.680000pt;}
.y8_c00112{bottom:474.013333pt;}
.y7_c00112{bottom:496.013333pt;}
.y6_c00112{bottom:517.880000pt;}
.y5_c00112{bottom:540.013333pt;}
.y4_c00112{bottom:583.880000pt;}
.y3_c00112{bottom:606.413333pt;}
.y2_c00112{bottom:649.880000pt;}
.y1_c00112{bottom:694.013333pt;}
.hb_c00112{height:11.733399pt;}
.hc_c00112{height:38.937500pt;}
.h7_c00112{height:59.300781pt;}
.h2_c00112{height:68.664062pt;}
.h9_c00112{height:70.902344pt;}
.h3_c00112{height:71.785156pt;}
.h4_c00112{height:74.278646pt;}
.h8_c00112{height:77.654948pt;}
.h5_c00112{height:81.031250pt;}
.h6_c00112{height:84.407552pt;}
.ha_c00112{height:91.160156pt;}
.h1_c00112{height:738.666667pt;}
.h0_c00112{height:738.733333pt;}
.w1_c00112{width:93.222667pt;}
.w0_c00112{width:495.333333pt;}
.x0_c00112{left:0.000000pt;}
.x9_c00112{left:32.000000pt;}
.xa_c00112{left:32.933333pt;}
.x4_c00112{left:34.000000pt;}
.x6_c00112{left:35.066667pt;}
.x7_c00112{left:36.000000pt;}
.x5_c00112{left:38.133333pt;}
.x3_c00112{left:60.400000pt;}
.x2_c00112{left:62.666667pt;}
.x1_c00112{left:173.733333pt;}
.xc_c00112{left:204.834880pt;}
.xb_c00112{left:355.200000pt;}
.x8_c00112{left:436.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79eac6f151295917a8ad283d.woff2')format("woff");}.ff1_c00113{font-family:ff1_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:ff2_c00113;src:url('chunks/assets/font_d43649ed145f0682a44ed267.woff2')format("woff");}.ff2_c00113{font-family:ff2_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:ff3_c00113;src:url('chunks/assets/font_9572841da1103b3805cd0ab4.woff2')format("woff");}.ff3_c00113{font-family:ff3_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:ff4_c00113;src:url('chunks/assets/font_11c042d48dfac27019f9ddea.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;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_c00113;src:url('chunks/assets/font_274de5ef1d1a4b8f9fce0008.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;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_c00113;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00113{font-family:ff6_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);}
.v1_c00113{vertical-align:-76.800000px;}
.v0_c00113{vertical-align:0.000000px;}
.ls4_c00113{letter-spacing:0.000000px;}
.ls3_c00113{letter-spacing:3.000000px;}
.ls2_c00113{letter-spacing:8.301000px;}
.ls1_c00113{letter-spacing:11.925000px;}
.ls0_c00113{letter-spacing:18.072000px;}
.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;}
}
.ws6_c00113{word-spacing:-19.629000px;}
.ws0_c00113{word-spacing:-16.629000px;}
.ws1_c00113{word-spacing:-15.906000px;}
.ws8_c00113{word-spacing:-15.735000px;}
.ws2_c00113{word-spacing:-1.155000px;}
.ws5_c00113{word-spacing:-0.828000px;}
.ws4_c00113{word-spacing:-0.276000px;}
.ws7_c00113{word-spacing:-0.090000px;}
.ws9_c00113{word-spacing:0.000000px;}
.ws3_c00113{word-spacing:3.105000px;}
._28_c00113{margin-left:-17.034000px;}
._12_c00113{margin-left:-15.564000px;}
._1f_c00113{margin-left:-13.446000px;}
._11_c00113{margin-left:-11.616000px;}
._14_c00113{margin-left:-9.522000px;}
._e_c00113{margin-left:-8.052000px;}
._24_c00113{margin-left:-6.702000px;}
._15_c00113{margin-left:-5.244000px;}
._19_c00113{margin-left:-3.969000px;}
._6_c00113{margin-left:-2.403000px;}
._7_c00113{margin-left:-1.230000px;}
._d_c00113{width:1.386000px;}
._10_c00113{width:2.640000px;}
._f_c00113{width:3.876000px;}
._b_c00113{width:4.899000px;}
._3_c00113{width:6.831000px;}
._a_c00113{width:8.694000px;}
._0_c00113{width:9.798000px;}
._9_c00113{width:11.109000px;}
._2_c00113{width:12.351000px;}
._1_c00113{width:13.386000px;}
._4_c00113{width:14.697000px;}
._17_c00113{width:16.464000px;}
._5_c00113{width:17.871000px;}
._1e_c00113{width:19.596000px;}
._c_c00113{width:20.634000px;}
._13_c00113{width:23.748000px;}
._18_c00113{width:25.461000px;}
._1d_c00113{width:27.045000px;}
._25_c00113{width:28.314000px;}
._1b_c00113{width:30.315000px;}
._26_c00113{width:32.925000px;}
._8_c00113{width:38.571000px;}
._21_c00113{width:45.816000px;}
._23_c00113{width:52.893000px;}
._27_c00113{width:54.342000px;}
._1c_c00113{width:106.170000px;}
._20_c00113{width:127.644000px;}
._22_c00113{width:139.251000px;}
._16_c00113{width:183.195000px;}
._1a_c00113{width:362.166000px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(0,0,0);}
.fs4_c00113{font-size:45.000000px;}
.fs5_c00113{font-size:48.000000px;}
.fs1_c00113{font-size:55.200000px;}
.fs2_c00113{font-size:66.000000px;}
.fs0_c00113{font-size:69.000000px;}
.fs3_c00113{font-size:90.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1e_c00113{bottom:3.105000px;}
.y1d_c00113{bottom:7.228369px;}
.y19_c00113{bottom:74.970000px;}
.y18_c00113{bottom:100.170000px;}
.y17_c00113{bottom:125.820000px;}
.y1c_c00113{bottom:145.470000px;}
.y16_c00113{bottom:150.420000px;}
.y15_c00113{bottom:175.770000px;}
.y14_c00113{bottom:200.520000px;}
.y13_c00113{bottom:226.170000px;}
.y12_c00113{bottom:250.470000px;}
.y11_c00113{bottom:277.020000px;}
.y10_c00113{bottom:301.770000px;}
.yf_c00113{bottom:350.670000px;}
.ye_c00113{bottom:400.620000px;}
.yd_c00113{bottom:425.820000px;}
.y1b_c00113{bottom:433.620000px;}
.yc_c00113{bottom:450.870000px;}
.y1a_c00113{bottom:468.720000px;}
.yb_c00113{bottom:475.920000px;}
.ya_c00113{bottom:500.820000px;}
.y9_c00113{bottom:525.720000px;}
.y8_c00113{bottom:550.770000px;}
.y7_c00113{bottom:575.670000px;}
.y6_c00113{bottom:600.420000px;}
.y5_c00113{bottom:625.620000px;}
.y4_c00113{bottom:649.920000px;}
.y3_c00113{bottom:675.270000px;}
.y2_c00113{bottom:700.320000px;}
.y1_c00113{bottom:749.970000px;}
.h7_c00113{height:13.200073px;}
.h8_c00113{height:43.804688px;}
.h6_c00113{height:48.780000px;}
.h4_c00113{height:77.247070px;}
.h3_c00113{height:83.563477px;}
.h2_c00113{height:87.361816px;}
.h5_c00113{height:96.030000px;}
.h0_c00113{height:842.100000px;}
.h1_c00113{height:842.250000px;}
.w2_c00113{width:104.875500px;}
.w0_c00113{width:558.600000px;}
.w1_c00113{width:558.750000px;}
.x0_c00113{left:0.000000px;}
.x5_c00113{left:28.050000px;}
.xf_c00113{left:29.700000px;}
.xa_c00113{left:42.900000px;}
.xc_c00113{left:71.250000px;}
.x4_c00113{left:91.200000px;}
.x3_c00113{left:92.550000px;}
.xd_c00113{left:94.200000px;}
.x6_c00113{left:95.250000px;}
.x8_c00113{left:96.600000px;}
.x7_c00113{left:99.900000px;}
.xb_c00113{left:114.150000px;}
.x2_c00113{left:116.400000px;}
.x1_c00113{left:125.550000px;}
.x9_c00113{left:170.400000px;}
.x10_c00113{left:231.114258px;}
.xe_c00113{left:517.350000px;}
@media print{
.v1_c00113{vertical-align:-68.266667pt;}
.v0_c00113{vertical-align:0.000000pt;}
.ls4_c00113{letter-spacing:0.000000pt;}
.ls3_c00113{letter-spacing:2.666667pt;}
.ls2_c00113{letter-spacing:7.378667pt;}
.ls1_c00113{letter-spacing:10.600000pt;}
.ls0_c00113{letter-spacing:16.064000pt;}
.ws6_c00113{word-spacing:-17.448000pt;}
.ws0_c00113{word-spacing:-14.781333pt;}
.ws1_c00113{word-spacing:-14.138667pt;}
.ws8_c00113{word-spacing:-13.986667pt;}
.ws2_c00113{word-spacing:-1.026667pt;}
.ws5_c00113{word-spacing:-0.736000pt;}
.ws4_c00113{word-spacing:-0.245333pt;}
.ws7_c00113{word-spacing:-0.080000pt;}
.ws9_c00113{word-spacing:0.000000pt;}
.ws3_c00113{word-spacing:2.760000pt;}
._28_c00113{margin-left:-15.141333pt;}
._12_c00113{margin-left:-13.834667pt;}
._1f_c00113{margin-left:-11.952000pt;}
._11_c00113{margin-left:-10.325333pt;}
._14_c00113{margin-left:-8.464000pt;}
._e_c00113{margin-left:-7.157333pt;}
._24_c00113{margin-left:-5.957333pt;}
._15_c00113{margin-left:-4.661333pt;}
._19_c00113{margin-left:-3.528000pt;}
._6_c00113{margin-left:-2.136000pt;}
._7_c00113{margin-left:-1.093333pt;}
._d_c00113{width:1.232000pt;}
._10_c00113{width:2.346667pt;}
._f_c00113{width:3.445333pt;}
._b_c00113{width:4.354667pt;}
._3_c00113{width:6.072000pt;}
._a_c00113{width:7.728000pt;}
._0_c00113{width:8.709333pt;}
._9_c00113{width:9.874667pt;}
._2_c00113{width:10.978667pt;}
._1_c00113{width:11.898667pt;}
._4_c00113{width:13.064000pt;}
._17_c00113{width:14.634667pt;}
._5_c00113{width:15.885333pt;}
._1e_c00113{width:17.418667pt;}
._c_c00113{width:18.341333pt;}
._13_c00113{width:21.109333pt;}
._18_c00113{width:22.632000pt;}
._1d_c00113{width:24.040000pt;}
._25_c00113{width:25.168000pt;}
._1b_c00113{width:26.946667pt;}
._26_c00113{width:29.266667pt;}
._8_c00113{width:34.285333pt;}
._21_c00113{width:40.725333pt;}
._23_c00113{width:47.016000pt;}
._27_c00113{width:48.304000pt;}
._1c_c00113{width:94.373333pt;}
._20_c00113{width:113.461333pt;}
._22_c00113{width:123.778667pt;}
._16_c00113{width:162.840000pt;}
._1a_c00113{width:321.925333pt;}
.fs4_c00113{font-size:40.000000pt;}
.fs5_c00113{font-size:42.666667pt;}
.fs1_c00113{font-size:49.066667pt;}
.fs2_c00113{font-size:58.666667pt;}
.fs0_c00113{font-size:61.333333pt;}
.fs3_c00113{font-size:80.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y1e_c00113{bottom:2.760000pt;}
.y1d_c00113{bottom:6.425217pt;}
.y19_c00113{bottom:66.640000pt;}
.y18_c00113{bottom:89.040000pt;}
.y17_c00113{bottom:111.840000pt;}
.y1c_c00113{bottom:129.306667pt;}
.y16_c00113{bottom:133.706667pt;}
.y15_c00113{bottom:156.240000pt;}
.y14_c00113{bottom:178.240000pt;}
.y13_c00113{bottom:201.040000pt;}
.y12_c00113{bottom:222.640000pt;}
.y11_c00113{bottom:246.240000pt;}
.y10_c00113{bottom:268.240000pt;}
.yf_c00113{bottom:311.706667pt;}
.ye_c00113{bottom:356.106667pt;}
.yd_c00113{bottom:378.506667pt;}
.y1b_c00113{bottom:385.440000pt;}
.yc_c00113{bottom:400.773333pt;}
.y1a_c00113{bottom:416.640000pt;}
.yb_c00113{bottom:423.040000pt;}
.ya_c00113{bottom:445.173333pt;}
.y9_c00113{bottom:467.306667pt;}
.y8_c00113{bottom:489.573333pt;}
.y7_c00113{bottom:511.706667pt;}
.y6_c00113{bottom:533.706667pt;}
.y5_c00113{bottom:556.106667pt;}
.y4_c00113{bottom:577.706667pt;}
.y3_c00113{bottom:600.240000pt;}
.y2_c00113{bottom:622.506667pt;}
.y1_c00113{bottom:666.640000pt;}
.h7_c00113{height:11.733399pt;}
.h8_c00113{height:38.937500pt;}
.h6_c00113{height:43.360000pt;}
.h4_c00113{height:68.664062pt;}
.h3_c00113{height:74.278646pt;}
.h2_c00113{height:77.654948pt;}
.h5_c00113{height:85.360000pt;}
.h0_c00113{height:748.533333pt;}
.h1_c00113{height:748.666667pt;}
.w2_c00113{width:93.222667pt;}
.w0_c00113{width:496.533333pt;}
.w1_c00113{width:496.666667pt;}
.x0_c00113{left:0.000000pt;}
.x5_c00113{left:24.933333pt;}
.xf_c00113{left:26.400000pt;}
.xa_c00113{left:38.133333pt;}
.xc_c00113{left:63.333333pt;}
.x4_c00113{left:81.066667pt;}
.x3_c00113{left:82.266667pt;}
.xd_c00113{left:83.733333pt;}
.x6_c00113{left:84.666667pt;}
.x8_c00113{left:85.866667pt;}
.x7_c00113{left:88.800000pt;}
.xb_c00113{left:101.466667pt;}
.x2_c00113{left:103.466667pt;}
.x1_c00113{left:111.600000pt;}
.x9_c00113{left:151.466667pt;}
.x10_c00113{left:205.434896pt;}
.xe_c00113{left:459.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_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_55a5c43b276011f6bd18e096.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_7f2b8c6b6a13043a7dfc3c51.woff2')format("woff");}.ff2_c00114{font-family:ff2_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:ff3_c00114;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00114{font-family:ff3_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:ff4_c00114;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00114{font-family:ff4_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);}
.v0_c00114{vertical-align:0.000000px;}
.ls5_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.747000px;}
.ls6_c00114{letter-spacing:3.000000px;}
.ls3_c00114{letter-spacing:5.412000px;}
.ls2_c00114{letter-spacing:11.925000px;}
.ls1_c00114{letter-spacing:13.125000px;}
.ls4_c00114{letter-spacing:19.800000px;}
.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;}
}
.ws5_c00114{word-spacing:-38.412000px;}
.ws7_c00114{word-spacing:-19.800000px;}
.ws1_c00114{word-spacing:-19.629000px;}
.ws6_c00114{word-spacing:-16.629000px;}
.ws0_c00114{word-spacing:-0.621000px;}
.ws2_c00114{word-spacing:-0.414000px;}
.ws8_c00114{word-spacing:0.000000px;}
.ws3_c00114{word-spacing:3.657000px;}
.ws4_c00114{word-spacing:4.278000px;}
._1c_c00114{margin-left:-19.149000px;}
._e_c00114{margin-left:-11.316000px;}
._15_c00114{margin-left:-9.057000px;}
._d_c00114{margin-left:-7.866000px;}
._12_c00114{margin-left:-6.555000px;}
._2_c00114{margin-left:-4.209000px;}
._1_c00114{margin-left:-2.898000px;}
._13_c00114{margin-left:-1.137000px;}
._0_c00114{width:1.518000px;}
._7_c00114{width:2.691000px;}
._4_c00114{width:3.795000px;}
._16_c00114{width:4.830000px;}
._5_c00114{width:5.865000px;}
._a_c00114{width:7.245000px;}
._6_c00114{width:8.694000px;}
._b_c00114{width:10.557000px;}
._1a_c00114{width:11.928000px;}
._10_c00114{width:13.218000px;}
._8_c00114{width:14.835000px;}
._f_c00114{width:15.939000px;}
._9_c00114{width:17.112000px;}
._17_c00114{width:18.423000px;}
._1e_c00114{width:20.871000px;}
._1b_c00114{width:22.395000px;}
._1d_c00114{width:24.249000px;}
._18_c00114{width:25.668000px;}
._21_c00114{width:28.665000px;}
._14_c00114{width:37.086000px;}
._19_c00114{width:41.292000px;}
._22_c00114{width:43.002000px;}
._25_c00114{width:44.850000px;}
._20_c00114{width:51.228000px;}
._24_c00114{width:56.676000px;}
._23_c00114{width:61.857000px;}
._c_c00114{width:103.680000px;}
._1f_c00114{width:111.696000px;}
._11_c00114{width:180.486000px;}
._3_c00114{width:499.812000px;}
._26_c00114{width:551.400000px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(128,128,128);}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:48.000000px;}
.fs1_c00114{font-size:66.000000px;}
.fs0_c00114{font-size:69.000000px;}
.y0_c00114{bottom:0.000000px;}
.y1c_c00114{bottom:3.105000px;}
.y1b_c00114{bottom:7.228371px;}
.y1a_c00114{bottom:67.965000px;}
.y19_c00114{bottom:92.115000px;}
.y18_c00114{bottom:142.065000px;}
.y17_c00114{bottom:192.015000px;}
.y16_c00114{bottom:215.415000px;}
.y15_c00114{bottom:240.615000px;}
.y14_c00114{bottom:265.365000px;}
.y13_c00114{bottom:289.365000px;}
.y12_c00114{bottom:314.565000px;}
.y11_c00114{bottom:339.165000px;}
.y10_c00114{bottom:363.615000px;}
.yf_c00114{bottom:387.915000px;}
.ye_c00114{bottom:412.815000px;}
.yd_c00114{bottom:437.115000px;}
.yc_c00114{bottom:462.165000px;}
.yb_c00114{bottom:487.365000px;}
.ya_c00114{bottom:510.315000px;}
.y9_c00114{bottom:559.965000px;}
.y8_c00114{bottom:610.515000px;}
.y7_c00114{bottom:634.215000px;}
.y6_c00114{bottom:659.265000px;}
.y5_c00114{bottom:684.165000px;}
.y4_c00114{bottom:709.065000px;}
.y3_c00114{bottom:733.515000px;}
.y2_c00114{bottom:758.415000px;}
.y1_c00114{bottom:783.465000px;}
.h4_c00114{height:13.200074px;}
.h5_c00114{height:43.804688px;}
.h3_c00114{height:80.758301px;}
.h2_c00114{height:87.361816px;}
.h1_c00114{height:831.000000px;}
.h0_c00114{height:831.075000px;}
.w1_c00114{width:104.875500px;}
.w0_c00114{width:557.250000px;}
.x0_c00114{left:0.000000px;}
.x5_c00114{left:28.650000px;}
.x6_c00114{left:31.350000px;}
.x2_c00114{left:33.150000px;}
.x7_c00114{left:41.400000px;}
.x4_c00114{left:57.300000px;}
.x3_c00114{left:74.850000px;}
.x1_c00114{left:187.650000px;}
.x9_c00114{left:230.439240px;}
.x8_c00114{left:288.150000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls5_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.664000pt;}
.ls6_c00114{letter-spacing:2.666667pt;}
.ls3_c00114{letter-spacing:4.810667pt;}
.ls2_c00114{letter-spacing:10.600000pt;}
.ls1_c00114{letter-spacing:11.666667pt;}
.ls4_c00114{letter-spacing:17.600000pt;}
.ws5_c00114{word-spacing:-34.144000pt;}
.ws7_c00114{word-spacing:-17.600000pt;}
.ws1_c00114{word-spacing:-17.448000pt;}
.ws6_c00114{word-spacing:-14.781333pt;}
.ws0_c00114{word-spacing:-0.552000pt;}
.ws2_c00114{word-spacing:-0.368000pt;}
.ws8_c00114{word-spacing:0.000000pt;}
.ws3_c00114{word-spacing:3.250667pt;}
.ws4_c00114{word-spacing:3.802667pt;}
._1c_c00114{margin-left:-17.021333pt;}
._e_c00114{margin-left:-10.058667pt;}
._15_c00114{margin-left:-8.050667pt;}
._d_c00114{margin-left:-6.992000pt;}
._12_c00114{margin-left:-5.826667pt;}
._2_c00114{margin-left:-3.741333pt;}
._1_c00114{margin-left:-2.576000pt;}
._13_c00114{margin-left:-1.010667pt;}
._0_c00114{width:1.349333pt;}
._7_c00114{width:2.392000pt;}
._4_c00114{width:3.373333pt;}
._16_c00114{width:4.293333pt;}
._5_c00114{width:5.213333pt;}
._a_c00114{width:6.440000pt;}
._6_c00114{width:7.728000pt;}
._b_c00114{width:9.384000pt;}
._1a_c00114{width:10.602667pt;}
._10_c00114{width:11.749333pt;}
._8_c00114{width:13.186667pt;}
._f_c00114{width:14.168000pt;}
._9_c00114{width:15.210667pt;}
._17_c00114{width:16.376000pt;}
._1e_c00114{width:18.552000pt;}
._1b_c00114{width:19.906667pt;}
._1d_c00114{width:21.554667pt;}
._18_c00114{width:22.816000pt;}
._21_c00114{width:25.480000pt;}
._14_c00114{width:32.965333pt;}
._19_c00114{width:36.704000pt;}
._22_c00114{width:38.224000pt;}
._25_c00114{width:39.866667pt;}
._20_c00114{width:45.536000pt;}
._24_c00114{width:50.378667pt;}
._23_c00114{width:54.984000pt;}
._c_c00114{width:92.160000pt;}
._1f_c00114{width:99.285333pt;}
._11_c00114{width:160.432000pt;}
._3_c00114{width:444.277333pt;}
._26_c00114{width:490.133333pt;}
.fs2_c00114{font-size:42.666667pt;}
.fs1_c00114{font-size:58.666667pt;}
.fs0_c00114{font-size:61.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y1c_c00114{bottom:2.760000pt;}
.y1b_c00114{bottom:6.425219pt;}
.y1a_c00114{bottom:60.413333pt;}
.y19_c00114{bottom:81.880000pt;}
.y18_c00114{bottom:126.280000pt;}
.y17_c00114{bottom:170.680000pt;}
.y16_c00114{bottom:191.480000pt;}
.y15_c00114{bottom:213.880000pt;}
.y14_c00114{bottom:235.880000pt;}
.y13_c00114{bottom:257.213333pt;}
.y12_c00114{bottom:279.613333pt;}
.y11_c00114{bottom:301.480000pt;}
.y10_c00114{bottom:323.213333pt;}
.yf_c00114{bottom:344.813333pt;}
.ye_c00114{bottom:366.946667pt;}
.yd_c00114{bottom:388.546667pt;}
.yc_c00114{bottom:410.813333pt;}
.yb_c00114{bottom:433.213333pt;}
.ya_c00114{bottom:453.613333pt;}
.y9_c00114{bottom:497.746667pt;}
.y8_c00114{bottom:542.680000pt;}
.y7_c00114{bottom:563.746667pt;}
.y6_c00114{bottom:586.013333pt;}
.y5_c00114{bottom:608.146667pt;}
.y4_c00114{bottom:630.280000pt;}
.y3_c00114{bottom:652.013333pt;}
.y2_c00114{bottom:674.146667pt;}
.y1_c00114{bottom:696.413333pt;}
.h4_c00114{height:11.733399pt;}
.h5_c00114{height:38.937500pt;}
.h3_c00114{height:71.785156pt;}
.h2_c00114{height:77.654948pt;}
.h1_c00114{height:738.666667pt;}
.h0_c00114{height:738.733333pt;}
.w1_c00114{width:93.222667pt;}
.w0_c00114{width:495.333333pt;}
.x0_c00114{left:0.000000pt;}
.x5_c00114{left:25.466667pt;}
.x6_c00114{left:27.866667pt;}
.x2_c00114{left:29.466667pt;}
.x7_c00114{left:36.800000pt;}
.x4_c00114{left:50.933333pt;}
.x3_c00114{left:66.533333pt;}
.x1_c00114{left:166.800000pt;}
.x9_c00114{left:204.834880pt;}
.x8_c00114{left:256.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_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_c9a30615f20d84c5ccdd0f46.woff2')format("woff");}.ff1_c00115{font-family:ff1_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:ff2_c00115;src:url('chunks/assets/font_1347bccce6a431c0234f0c59.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_2815da1578f452e76a9168de.woff2')format("woff");}.ff3_c00115{font-family:ff3_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:ff4_c00115;src:url('chunks/assets/font_8bd9b73a82608a30f0e7e04b.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00115{font-family:ff5_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;}
.ls4_c00115{letter-spacing:0.000000px;}
.ls1_c00115{letter-spacing:0.360000px;}
.ls3_c00115{letter-spacing:3.000000px;}
.ls6_c00115{letter-spacing:6.000000px;}
.ls0_c00115{letter-spacing:14.325000px;}
.ls2_c00115{letter-spacing:16.725000px;}
.ls5_c00115{letter-spacing:42.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00115{word-spacing:-19.629000px;}
.ws0_c00115{word-spacing:-16.629000px;}
.ws3_c00115{word-spacing:0.000000px;}
.ws1_c00115{word-spacing:12.717000px;}
._1e_c00115{margin-left:-44.988000px;}
._1f_c00115{margin-left:-40.914000px;}
._1d_c00115{margin-left:-34.713000px;}
._32_c00115{margin-left:-28.296000px;}
._29_c00115{margin-left:-22.494000px;}
._8_c00115{margin-left:-20.355000px;}
._a_c00115{margin-left:-16.215000px;}
._35_c00115{margin-left:-14.697000px;}
._20_c00115{margin-left:-12.765000px;}
._1b_c00115{margin-left:-10.488000px;}
._7_c00115{margin-left:-9.204000px;}
._1a_c00115{margin-left:-8.142000px;}
._9_c00115{margin-left:-7.038000px;}
._c_c00115{margin-left:-5.865000px;}
._0_c00115{margin-left:-4.731000px;}
._6_c00115{margin-left:-2.928000px;}
._4_c00115{margin-left:-1.863000px;}
._15_c00115{width:1.005000px;}
._1_c00115{width:2.031000px;}
._2_c00115{width:3.036000px;}
._16_c00115{width:4.128000px;}
._5_c00115{width:5.175000px;}
._11_c00115{width:6.453000px;}
._f_c00115{width:7.497000px;}
._10_c00115{width:8.763000px;}
._e_c00115{width:10.167000px;}
._18_c00115{width:11.409000px;}
._14_c00115{width:12.741000px;}
._17_c00115{width:14.055000px;}
._12_c00115{width:15.525000px;}
._13_c00115{width:16.560000px;}
._19_c00115{width:17.562000px;}
._27_c00115{width:21.168000px;}
._26_c00115{width:22.338000px;}
._30_c00115{width:23.652000px;}
._23_c00115{width:24.840000px;}
._2b_c00115{width:27.804000px;}
._2d_c00115{width:32.838000px;}
._2f_c00115{width:34.404000px;}
._28_c00115{width:45.375000px;}
._31_c00115{width:51.495000px;}
._2c_c00115{width:63.948000px;}
._24_c00115{width:71.535000px;}
._22_c00115{width:81.936000px;}
._b_c00115{width:96.897000px;}
._25_c00115{width:101.133000px;}
._1c_c00115{width:103.458000px;}
._d_c00115{width:133.023000px;}
._2e_c00115{width:139.563000px;}
._2a_c00115{width:153.180000px;}
._21_c00115{width:223.077000px;}
._33_c00115{width:253.854000px;}
._3_c00115{width:342.456000px;}
._34_c00115{width:640.920000px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(128,128,128);}
.fc0_c00115{color:rgb(0,0,0);}
.fs5_c00115{font-size:48.000000px;}
.fs2_c00115{font-size:54.000000px;}
.fs0_c00115{font-size:57.000000px;}
.fs1_c00115{font-size:69.000000px;}
.fs4_c00115{font-size:72.000000px;}
.fs3_c00115{font-size:78.000000px;}
.y0_c00115{bottom:0.000000px;}
.y22_c00115{bottom:3.105000px;}
.y21_c00115{bottom:7.228369px;}
.y1e_c00115{bottom:77.970000px;}
.y1d_c00115{bottom:101.970000px;}
.y1c_c00115{bottom:128.820000px;}
.y1b_c00115{bottom:153.570000px;}
.y1a_c00115{bottom:178.920000px;}
.y19_c00115{bottom:203.820000px;}
.y18_c00115{bottom:228.720000px;}
.y17_c00115{bottom:254.370000px;}
.y20_c00115{bottom:272.970000px;}
.y16_c00115{bottom:278.820000px;}
.y1f_c00115{bottom:285.120000px;}
.y15_c00115{bottom:304.020000px;}
.y14_c00115{bottom:327.720000px;}
.y13_c00115{bottom:353.370000px;}
.y12_c00115{bottom:377.970000px;}
.y11_c00115{bottom:402.270000px;}
.y10_c00115{bottom:427.920000px;}
.yf_c00115{bottom:451.920000px;}
.ye_c00115{bottom:477.870000px;}
.yd_c00115{bottom:502.770000px;}
.yc_c00115{bottom:527.220000px;}
.yb_c00115{bottom:552.120000px;}
.ya_c00115{bottom:577.170000px;}
.y9_c00115{bottom:602.070000px;}
.y8_c00115{bottom:626.970000px;}
.y7_c00115{bottom:652.020000px;}
.y6_c00115{bottom:676.920000px;}
.y5_c00115{bottom:701.970000px;}
.y4_c00115{bottom:726.870000px;}
.y3_c00115{bottom:751.620000px;}
.y2_c00115{bottom:777.270000px;}
.y1_c00115{bottom:802.620000px;}
.h6_c00115{height:13.200073px;}
.h7_c00115{height:43.804688px;}
.h5_c00115{height:80.758301px;}
.h2_c00115{height:87.361816px;}
.h4_c00115{height:91.160156px;}
.h3_c00115{height:98.756836px;}
.h0_c00115{height:842.100000px;}
.h1_c00115{height:842.250000px;}
.w2_c00115{width:104.875500px;}
.w0_c00115{width:558.600000px;}
.w1_c00115{width:558.750000px;}
.x0_c00115{left:0.000000px;}
.xe_c00115{left:42.900000px;}
.xc_c00115{left:45.150000px;}
.x9_c00115{left:46.500000px;}
.x8_c00115{left:48.300000px;}
.xa_c00115{left:60.000000px;}
.xb_c00115{left:62.100000px;}
.x7_c00115{left:67.050000px;}
.x4_c00115{left:78.000000px;}
.x2_c00115{left:110.400000px;}
.x3_c00115{left:111.600000px;}
.x5_c00115{left:112.650000px;}
.x6_c00115{left:114.000000px;}
.x1_c00115{left:124.500000px;}
.xf_c00115{left:231.114258px;}
.xd_c00115{left:274.650000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls4_c00115{letter-spacing:0.000000pt;}
.ls1_c00115{letter-spacing:0.320000pt;}
.ls3_c00115{letter-spacing:2.666667pt;}
.ls6_c00115{letter-spacing:5.333333pt;}
.ls0_c00115{letter-spacing:12.733333pt;}
.ls2_c00115{letter-spacing:14.866667pt;}
.ls5_c00115{letter-spacing:37.333333pt;}
.ws2_c00115{word-spacing:-17.448000pt;}
.ws0_c00115{word-spacing:-14.781333pt;}
.ws3_c00115{word-spacing:0.000000pt;}
.ws1_c00115{word-spacing:11.304000pt;}
._1e_c00115{margin-left:-39.989333pt;}
._1f_c00115{margin-left:-36.368000pt;}
._1d_c00115{margin-left:-30.856000pt;}
._32_c00115{margin-left:-25.152000pt;}
._29_c00115{margin-left:-19.994667pt;}
._8_c00115{margin-left:-18.093333pt;}
._a_c00115{margin-left:-14.413333pt;}
._35_c00115{margin-left:-13.064000pt;}
._20_c00115{margin-left:-11.346667pt;}
._1b_c00115{margin-left:-9.322667pt;}
._7_c00115{margin-left:-8.181333pt;}
._1a_c00115{margin-left:-7.237333pt;}
._9_c00115{margin-left:-6.256000pt;}
._c_c00115{margin-left:-5.213333pt;}
._0_c00115{margin-left:-4.205333pt;}
._6_c00115{margin-left:-2.602667pt;}
._4_c00115{margin-left:-1.656000pt;}
._15_c00115{width:0.893333pt;}
._1_c00115{width:1.805333pt;}
._2_c00115{width:2.698667pt;}
._16_c00115{width:3.669333pt;}
._5_c00115{width:4.600000pt;}
._11_c00115{width:5.736000pt;}
._f_c00115{width:6.664000pt;}
._10_c00115{width:7.789333pt;}
._e_c00115{width:9.037333pt;}
._18_c00115{width:10.141333pt;}
._14_c00115{width:11.325333pt;}
._17_c00115{width:12.493333pt;}
._12_c00115{width:13.800000pt;}
._13_c00115{width:14.720000pt;}
._19_c00115{width:15.610667pt;}
._27_c00115{width:18.816000pt;}
._26_c00115{width:19.856000pt;}
._30_c00115{width:21.024000pt;}
._23_c00115{width:22.080000pt;}
._2b_c00115{width:24.714667pt;}
._2d_c00115{width:29.189333pt;}
._2f_c00115{width:30.581333pt;}
._28_c00115{width:40.333333pt;}
._31_c00115{width:45.773333pt;}
._2c_c00115{width:56.842667pt;}
._24_c00115{width:63.586667pt;}
._22_c00115{width:72.832000pt;}
._b_c00115{width:86.130667pt;}
._25_c00115{width:89.896000pt;}
._1c_c00115{width:91.962667pt;}
._d_c00115{width:118.242667pt;}
._2e_c00115{width:124.056000pt;}
._2a_c00115{width:136.160000pt;}
._21_c00115{width:198.290667pt;}
._33_c00115{width:225.648000pt;}
._3_c00115{width:304.405333pt;}
._34_c00115{width:569.706667pt;}
.fs5_c00115{font-size:42.666667pt;}
.fs2_c00115{font-size:48.000000pt;}
.fs0_c00115{font-size:50.666667pt;}
.fs1_c00115{font-size:61.333333pt;}
.fs4_c00115{font-size:64.000000pt;}
.fs3_c00115{font-size:69.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y22_c00115{bottom:2.760000pt;}
.y21_c00115{bottom:6.425217pt;}
.y1e_c00115{bottom:69.306667pt;}
.y1d_c00115{bottom:90.640000pt;}
.y1c_c00115{bottom:114.506667pt;}
.y1b_c00115{bottom:136.506667pt;}
.y1a_c00115{bottom:159.040000pt;}
.y19_c00115{bottom:181.173333pt;}
.y18_c00115{bottom:203.306667pt;}
.y17_c00115{bottom:226.106667pt;}
.y20_c00115{bottom:242.640000pt;}
.y16_c00115{bottom:247.840000pt;}
.y1f_c00115{bottom:253.440000pt;}
.y15_c00115{bottom:270.240000pt;}
.y14_c00115{bottom:291.306667pt;}
.y13_c00115{bottom:314.106667pt;}
.y12_c00115{bottom:335.973333pt;}
.y11_c00115{bottom:357.573333pt;}
.y10_c00115{bottom:380.373333pt;}
.yf_c00115{bottom:401.706667pt;}
.ye_c00115{bottom:424.773333pt;}
.yd_c00115{bottom:446.906667pt;}
.yc_c00115{bottom:468.640000pt;}
.yb_c00115{bottom:490.773333pt;}
.ya_c00115{bottom:513.040000pt;}
.y9_c00115{bottom:535.173333pt;}
.y8_c00115{bottom:557.306667pt;}
.y7_c00115{bottom:579.573333pt;}
.y6_c00115{bottom:601.706667pt;}
.y5_c00115{bottom:623.973333pt;}
.y4_c00115{bottom:646.106667pt;}
.y3_c00115{bottom:668.106667pt;}
.y2_c00115{bottom:690.906667pt;}
.y1_c00115{bottom:713.440000pt;}
.h6_c00115{height:11.733399pt;}
.h7_c00115{height:38.937500pt;}
.h5_c00115{height:71.785156pt;}
.h2_c00115{height:77.654948pt;}
.h4_c00115{height:81.031250pt;}
.h3_c00115{height:87.783854pt;}
.h0_c00115{height:748.533333pt;}
.h1_c00115{height:748.666667pt;}
.w2_c00115{width:93.222667pt;}
.w0_c00115{width:496.533333pt;}
.w1_c00115{width:496.666667pt;}
.x0_c00115{left:0.000000pt;}
.xe_c00115{left:38.133333pt;}
.xc_c00115{left:40.133333pt;}
.x9_c00115{left:41.333333pt;}
.x8_c00115{left:42.933333pt;}
.xa_c00115{left:53.333333pt;}
.xb_c00115{left:55.200000pt;}
.x7_c00115{left:59.600000pt;}
.x4_c00115{left:69.333333pt;}
.x2_c00115{left:98.133333pt;}
.x3_c00115{left:99.200000pt;}
.x5_c00115{left:100.133333pt;}
.x6_c00115{left:101.333333pt;}
.x1_c00115{left:110.666667pt;}
.xf_c00115{left:205.434896pt;}
.xd_c00115{left:244.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_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_315830a95d59837b50681d80.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_ef645a8efcf2abc548e4ada1.woff2')format("woff");}.ff2_c00116{font-family:ff2_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:ff3_c00116;src:url('chunks/assets/font_b95bbe0e7a9f4acb3a24c5bf.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;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_c00116;src:url('chunks/assets/font_99d3873fc5aba8de36587f3c.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;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_c00116;src:url('chunks/assets/font_75ba70db413959cf8893e62c.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00116{font-family:ff6_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;}
.ls3_c00116{letter-spacing:0.000000px;}
.ls4_c00116{letter-spacing:3.000000px;}
.ls0_c00116{letter-spacing:4.104000px;}
.ls6_c00116{letter-spacing:6.000000px;}
.ls5_c00116{letter-spacing:9.000000px;}
.ls2_c00116{letter-spacing:18.525000px;}
.ls1_c00116{letter-spacing:27.744000px;}
.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:-50.022000px;}
.ws0_c00116{word-spacing:-38.136000px;}
.ws1_c00116{word-spacing:-27.075000px;}
.ws4_c00116{word-spacing:-19.629000px;}
.ws3_c00116{word-spacing:-16.629000px;}
.ws5_c00116{word-spacing:-0.414000px;}
.ws6_c00116{word-spacing:0.000000px;}
._1f_c00116{margin-left:-18.285000px;}
._16_c00116{margin-left:-15.708000px;}
._15_c00116{margin-left:-13.686000px;}
._12_c00116{margin-left:-11.589000px;}
._f_c00116{margin-left:-9.672000px;}
._14_c00116{margin-left:-8.664000px;}
._10_c00116{margin-left:-7.593000px;}
._11_c00116{margin-left:-6.486000px;}
._e_c00116{margin-left:-5.070000px;}
._2_c00116{margin-left:-3.795000px;}
._1_c00116{margin-left:-1.794000px;}
._5_c00116{width:1.380000px;}
._0_c00116{width:2.484000px;}
._4_c00116{width:3.795000px;}
._c_c00116{width:4.968000px;}
._8_c00116{width:6.141000px;}
._7_c00116{width:7.590000px;}
._b_c00116{width:9.591000px;}
._1a_c00116{width:10.731000px;}
._13_c00116{width:11.868000px;}
._a_c00116{width:13.869000px;}
._9_c00116{width:15.801000px;}
._6_c00116{width:16.974000px;}
._1c_c00116{width:18.216000px;}
._17_c00116{width:21.186000px;}
._1d_c00116{width:26.535000px;}
._19_c00116{width:35.190000px;}
._1b_c00116{width:43.848000px;}
._18_c00116{width:51.264000px;}
._d_c00116{width:56.436000px;}
._1e_c00116{width:145.176000px;}
._20_c00116{width:354.021000px;}
._3_c00116{width:495.831000px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(128,128,128);}
.fc0_c00116{color:rgb(0,0,0);}
.fs6_c00116{font-size:48.000000px;}
.fs5_c00116{font-size:66.000000px;}
.fs0_c00116{font-size:69.000000px;}
.fs3_c00116{font-size:75.000000px;}
.fs4_c00116{font-size:78.000000px;}
.fs2_c00116{font-size:81.000000px;}
.fs1_c00116{font-size:84.000000px;}
.y0_c00116{bottom:0.000000px;}
.y1e_c00116{bottom:3.105000px;}
.y1d_c00116{bottom:7.228357px;}
.y1c_c00116{bottom:58.830000px;}
.y1b_c00116{bottom:84.030000px;}
.y1a_c00116{bottom:109.380000px;}
.y19_c00116{bottom:133.080000px;}
.y18_c00116{bottom:158.580000px;}
.y17_c00116{bottom:182.580000px;}
.y16_c00116{bottom:207.330000px;}
.y15_c00116{bottom:233.280000px;}
.y14_c00116{bottom:257.130000px;}
.y13_c00116{bottom:282.780000px;}
.y12_c00116{bottom:305.880000px;}
.y11_c00116{bottom:332.430000px;}
.y10_c00116{bottom:356.730000px;}
.yf_c00116{bottom:381.330000px;}
.ye_c00116{bottom:405.780000px;}
.yd_c00116{bottom:430.680000px;}
.yc_c00116{bottom:455.580000px;}
.yb_c00116{bottom:480.030000px;}
.ya_c00116{bottom:504.180000px;}
.y9_c00116{bottom:528.630000px;}
.y8_c00116{bottom:553.830000px;}
.y7_c00116{bottom:578.430000px;}
.y6_c00116{bottom:603.480000px;}
.y5_c00116{bottom:653.130000px;}
.y4_c00116{bottom:702.630000px;}
.y3_c00116{bottom:727.380000px;}
.y2_c00116{bottom:752.580000px;}
.y1_c00116{bottom:777.330000px;}
.h6_c00116{height:13.200074px;}
.h7_c00116{height:43.804688px;}
.h2_c00116{height:87.361816px;}
.h5_c00116{height:91.291992px;}
.h3_c00116{height:94.958496px;}
.h4_c00116{height:98.756836px;}
.h1_c00116{height:816.750000px;}
.h0_c00116{height:817.050000px;}
.w2_c00116{width:104.875500px;}
.w1_c00116{width:547.500000px;}
.w0_c00116{width:547.575000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:31.050000px;}
.x3_c00116{left:32.400000px;}
.x6_c00116{left:33.750000px;}
.x7_c00116{left:34.800000px;}
.x8_c00116{left:36.750000px;}
.x9_c00116{left:37.800000px;}
.x5_c00116{left:58.350000px;}
.x4_c00116{left:64.200000px;}
.x1_c00116{left:183.600000px;}
.xb_c00116{left:225.601730px;}
.xa_c00116{left:274.800000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls3_c00116{letter-spacing:0.000000pt;}
.ls4_c00116{letter-spacing:2.666667pt;}
.ls0_c00116{letter-spacing:3.648000pt;}
.ls6_c00116{letter-spacing:5.333333pt;}
.ls5_c00116{letter-spacing:8.000000pt;}
.ls2_c00116{letter-spacing:16.466667pt;}
.ls1_c00116{letter-spacing:24.661333pt;}
.ws2_c00116{word-spacing:-44.464000pt;}
.ws0_c00116{word-spacing:-33.898667pt;}
.ws1_c00116{word-spacing:-24.066667pt;}
.ws4_c00116{word-spacing:-17.448000pt;}
.ws3_c00116{word-spacing:-14.781333pt;}
.ws5_c00116{word-spacing:-0.368000pt;}
.ws6_c00116{word-spacing:0.000000pt;}
._1f_c00116{margin-left:-16.253333pt;}
._16_c00116{margin-left:-13.962667pt;}
._15_c00116{margin-left:-12.165333pt;}
._12_c00116{margin-left:-10.301333pt;}
._f_c00116{margin-left:-8.597333pt;}
._14_c00116{margin-left:-7.701333pt;}
._10_c00116{margin-left:-6.749333pt;}
._11_c00116{margin-left:-5.765333pt;}
._e_c00116{margin-left:-4.506667pt;}
._2_c00116{margin-left:-3.373333pt;}
._1_c00116{margin-left:-1.594667pt;}
._5_c00116{width:1.226667pt;}
._0_c00116{width:2.208000pt;}
._4_c00116{width:3.373333pt;}
._c_c00116{width:4.416000pt;}
._8_c00116{width:5.458667pt;}
._7_c00116{width:6.746667pt;}
._b_c00116{width:8.525333pt;}
._1a_c00116{width:9.538667pt;}
._13_c00116{width:10.549333pt;}
._a_c00116{width:12.328000pt;}
._9_c00116{width:14.045333pt;}
._6_c00116{width:15.088000pt;}
._1c_c00116{width:16.192000pt;}
._17_c00116{width:18.832000pt;}
._1d_c00116{width:23.586667pt;}
._19_c00116{width:31.280000pt;}
._1b_c00116{width:38.976000pt;}
._18_c00116{width:45.568000pt;}
._d_c00116{width:50.165333pt;}
._1e_c00116{width:129.045333pt;}
._20_c00116{width:314.685333pt;}
._3_c00116{width:440.738667pt;}
.fs6_c00116{font-size:42.666667pt;}
.fs5_c00116{font-size:58.666667pt;}
.fs0_c00116{font-size:61.333333pt;}
.fs3_c00116{font-size:66.666667pt;}
.fs4_c00116{font-size:69.333333pt;}
.fs2_c00116{font-size:72.000000pt;}
.fs1_c00116{font-size:74.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y1e_c00116{bottom:2.760000pt;}
.y1d_c00116{bottom:6.425206pt;}
.y1c_c00116{bottom:52.293333pt;}
.y1b_c00116{bottom:74.693333pt;}
.y1a_c00116{bottom:97.226667pt;}
.y19_c00116{bottom:118.293333pt;}
.y18_c00116{bottom:140.960000pt;}
.y17_c00116{bottom:162.293333pt;}
.y16_c00116{bottom:184.293333pt;}
.y15_c00116{bottom:207.360000pt;}
.y14_c00116{bottom:228.560000pt;}
.y13_c00116{bottom:251.360000pt;}
.y12_c00116{bottom:271.893333pt;}
.y11_c00116{bottom:295.493333pt;}
.y10_c00116{bottom:317.093333pt;}
.yf_c00116{bottom:338.960000pt;}
.ye_c00116{bottom:360.693333pt;}
.yd_c00116{bottom:382.826667pt;}
.yc_c00116{bottom:404.960000pt;}
.yb_c00116{bottom:426.693333pt;}
.ya_c00116{bottom:448.160000pt;}
.y9_c00116{bottom:469.893333pt;}
.y8_c00116{bottom:492.293333pt;}
.y7_c00116{bottom:514.160000pt;}
.y6_c00116{bottom:536.426667pt;}
.y5_c00116{bottom:580.560000pt;}
.y4_c00116{bottom:624.560000pt;}
.y3_c00116{bottom:646.560000pt;}
.y2_c00116{bottom:668.960000pt;}
.y1_c00116{bottom:690.960000pt;}
.h6_c00116{height:11.733399pt;}
.h7_c00116{height:38.937500pt;}
.h2_c00116{height:77.654948pt;}
.h5_c00116{height:81.148438pt;}
.h3_c00116{height:84.407552pt;}
.h4_c00116{height:87.783854pt;}
.h1_c00116{height:726.000000pt;}
.h0_c00116{height:726.266667pt;}
.w2_c00116{width:93.222667pt;}
.w1_c00116{width:486.666667pt;}
.w0_c00116{width:486.733333pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:27.600000pt;}
.x3_c00116{left:28.800000pt;}
.x6_c00116{left:30.000000pt;}
.x7_c00116{left:30.933333pt;}
.x8_c00116{left:32.666667pt;}
.x9_c00116{left:33.600000pt;}
.x5_c00116{left:51.866667pt;}
.x4_c00116{left:57.066667pt;}
.x1_c00116{left:163.200000pt;}
.xb_c00116{left:200.534871pt;}
.xa_c00116{left:244.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_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_c4ecb6882a7204feb9c9664c.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.480469;font-style:normal;font-weight:normal;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_ebf7a83fa3114829d4bb0c1c.woff2')format("woff");}.ff2_c00117{font-family:ff2_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:ff3_c00117;src:url('chunks/assets/font_bc90b8b4b88aa9cb06e05b6e.woff2')format("woff");}.ff3_c00117{font-family:ff3_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:ff4_c00117;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00117{font-family:ff4_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;}
.ls2_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:2.400000px;}
.ls0_c00117{letter-spacing:3.000000px;}
.ls3_c00117{letter-spacing:6.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00117{word-spacing:-21.075000px;}
.ws3_c00117{word-spacing:-16.629000px;}
.ws5_c00117{word-spacing:-1.173000px;}
.ws0_c00117{word-spacing:-0.207000px;}
.ws8_c00117{word-spacing:0.000000px;}
.ws1_c00117{word-spacing:1.380000px;}
.ws2_c00117{word-spacing:1.518000px;}
.ws6_c00117{word-spacing:6.762000px;}
.ws4_c00117{word-spacing:11.943000px;}
._14_c00117{margin-left:-26.400000px;}
._12_c00117{margin-left:-19.113000px;}
._15_c00117{margin-left:-15.111000px;}
._10_c00117{margin-left:-13.323000px;}
._20_c00117{margin-left:-12.144000px;}
._1e_c00117{margin-left:-10.050000px;}
._16_c00117{margin-left:-8.577000px;}
._11_c00117{margin-left:-7.155000px;}
._13_c00117{margin-left:-5.658000px;}
._b_c00117{margin-left:-4.140000px;}
._e_c00117{margin-left:-2.850000px;}
._c_c00117{margin-left:-1.794000px;}
._4_c00117{width:1.608000px;}
._d_c00117{width:2.898000px;}
._18_c00117{width:4.050000px;}
._1b_c00117{width:5.451000px;}
._1d_c00117{width:6.474000px;}
._19_c00117{width:8.346000px;}
._6_c00117{width:9.384000px;}
._9_c00117{width:10.557000px;}
._1a_c00117{width:12.282000px;}
._8_c00117{width:14.076000px;}
._0_c00117{width:15.180000px;}
._7_c00117{width:16.422000px;}
._2_c00117{width:18.285000px;}
._f_c00117{width:19.527000px;}
._1_c00117{width:20.907000px;}
._1f_c00117{width:22.107000px;}
._3_c00117{width:23.184000px;}
._1c_c00117{width:24.570000px;}
._27_c00117{width:26.775000px;}
._2c_c00117{width:28.161000px;}
._24_c00117{width:29.730000px;}
._29_c00117{width:31.185000px;}
._a_c00117{width:32.391000px;}
._26_c00117{width:35.652000px;}
._5_c00117{width:37.683000px;}
._28_c00117{width:40.365000px;}
._2a_c00117{width:49.080000px;}
._2b_c00117{width:52.509000px;}
._22_c00117{width:70.383000px;}
._25_c00117{width:97.179000px;}
._21_c00117{width:99.612000px;}
._23_c00117{width:101.262000px;}
._17_c00117{width:134.094000px;}
.fc2_c00117{color:transparent;}
.fc1_c00117{color:rgb(128,128,128);}
.fc0_c00117{color:rgb(0,0,0);}
.fs4_c00117{font-size:48.000000px;}
.fs2_c00117{font-size:63.000000px;}
.fs1_c00117{font-size:66.000000px;}
.fs0_c00117{font-size:69.000000px;}
.fs3_c00117{font-size:75.000000px;}
.y0_c00117{bottom:0.000000px;}
.y1c_c00117{bottom:3.105000px;}
.y1b_c00117{bottom:7.228369px;}
.y1a_c00117{bottom:70.170000px;}
.y19_c00117{bottom:95.070000px;}
.y18_c00117{bottom:120.420000px;}
.y17_c00117{bottom:145.170000px;}
.y16_c00117{bottom:170.370000px;}
.y15_c00117{bottom:196.020000px;}
.y14_c00117{bottom:220.770000px;}
.y13_c00117{bottom:256.470000px;}
.y12_c00117{bottom:299.070000px;}
.y11_c00117{bottom:324.270000px;}
.y10_c00117{bottom:348.870000px;}
.yf_c00117{bottom:373.320000px;}
.ye_c00117{bottom:398.520000px;}
.yd_c00117{bottom:422.220000px;}
.yc_c00117{bottom:448.170000px;}
.yb_c00117{bottom:473.070000px;}
.ya_c00117{bottom:497.820000px;}
.y9_c00117{bottom:522.420000px;}
.y8_c00117{bottom:547.320000px;}
.y7_c00117{bottom:572.370000px;}
.y6_c00117{bottom:597.270000px;}
.y5_c00117{bottom:622.920000px;}
.y4_c00117{bottom:645.270000px;}
.y3_c00117{bottom:672.270000px;}
.y2_c00117{bottom:697.620000px;}
.y1_c00117{bottom:747.270000px;}
.h5_c00117{height:13.200073px;}
.h6_c00117{height:43.804688px;}
.h3_c00117{height:80.758301px;}
.h2_c00117{height:87.361816px;}
.h4_c00117{height:94.958496px;}
.h0_c00117{height:842.100000px;}
.h1_c00117{height:842.250000px;}
.w2_c00117{width:104.875500px;}
.w0_c00117{width:558.600000px;}
.w1_c00117{width:558.750000px;}
.x0_c00117{left:0.000000px;}
.xf_c00117{left:35.850000px;}
.x7_c00117{left:39.750000px;}
.xa_c00117{left:52.200000px;}
.x8_c00117{left:54.600000px;}
.x6_c00117{left:55.950000px;}
.x4_c00117{left:72.600000px;}
.xe_c00117{left:95.250000px;}
.x11_c00117{left:98.250000px;}
.x10_c00117{left:99.300000px;}
.xc_c00117{left:101.550000px;}
.x9_c00117{left:102.900000px;}
.x5_c00117{left:104.850000px;}
.x3_c00117{left:105.900000px;}
.x2_c00117{left:130.950000px;}
.xd_c00117{left:132.600000px;}
.x1_c00117{left:136.650000px;}
.xb_c00117{left:154.800000px;}
.x13_c00117{left:231.114258px;}
.x12_c00117{left:507.000000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls2_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:2.133333pt;}
.ls0_c00117{letter-spacing:2.666667pt;}
.ls3_c00117{letter-spacing:5.333333pt;}
.ws7_c00117{word-spacing:-18.733333pt;}
.ws3_c00117{word-spacing:-14.781333pt;}
.ws5_c00117{word-spacing:-1.042667pt;}
.ws0_c00117{word-spacing:-0.184000pt;}
.ws8_c00117{word-spacing:0.000000pt;}
.ws1_c00117{word-spacing:1.226667pt;}
.ws2_c00117{word-spacing:1.349333pt;}
.ws6_c00117{word-spacing:6.010667pt;}
.ws4_c00117{word-spacing:10.616000pt;}
._14_c00117{margin-left:-23.466667pt;}
._12_c00117{margin-left:-16.989333pt;}
._15_c00117{margin-left:-13.432000pt;}
._10_c00117{margin-left:-11.842667pt;}
._20_c00117{margin-left:-10.794667pt;}
._1e_c00117{margin-left:-8.933333pt;}
._16_c00117{margin-left:-7.624000pt;}
._11_c00117{margin-left:-6.360000pt;}
._13_c00117{margin-left:-5.029333pt;}
._b_c00117{margin-left:-3.680000pt;}
._e_c00117{margin-left:-2.533333pt;}
._c_c00117{margin-left:-1.594667pt;}
._4_c00117{width:1.429333pt;}
._d_c00117{width:2.576000pt;}
._18_c00117{width:3.600000pt;}
._1b_c00117{width:4.845333pt;}
._1d_c00117{width:5.754667pt;}
._19_c00117{width:7.418667pt;}
._6_c00117{width:8.341333pt;}
._9_c00117{width:9.384000pt;}
._1a_c00117{width:10.917333pt;}
._8_c00117{width:12.512000pt;}
._0_c00117{width:13.493333pt;}
._7_c00117{width:14.597333pt;}
._2_c00117{width:16.253333pt;}
._f_c00117{width:17.357333pt;}
._1_c00117{width:18.584000pt;}
._1f_c00117{width:19.650667pt;}
._3_c00117{width:20.608000pt;}
._1c_c00117{width:21.840000pt;}
._27_c00117{width:23.800000pt;}
._2c_c00117{width:25.032000pt;}
._24_c00117{width:26.426667pt;}
._29_c00117{width:27.720000pt;}
._a_c00117{width:28.792000pt;}
._26_c00117{width:31.690667pt;}
._5_c00117{width:33.496000pt;}
._28_c00117{width:35.880000pt;}
._2a_c00117{width:43.626667pt;}
._2b_c00117{width:46.674667pt;}
._22_c00117{width:62.562667pt;}
._25_c00117{width:86.381333pt;}
._21_c00117{width:88.544000pt;}
._23_c00117{width:90.010667pt;}
._17_c00117{width:119.194667pt;}
.fs4_c00117{font-size:42.666667pt;}
.fs2_c00117{font-size:56.000000pt;}
.fs1_c00117{font-size:58.666667pt;}
.fs0_c00117{font-size:61.333333pt;}
.fs3_c00117{font-size:66.666667pt;}
.y0_c00117{bottom:0.000000pt;}
.y1c_c00117{bottom:2.760000pt;}
.y1b_c00117{bottom:6.425217pt;}
.y1a_c00117{bottom:62.373333pt;}
.y19_c00117{bottom:84.506667pt;}
.y18_c00117{bottom:107.040000pt;}
.y17_c00117{bottom:129.040000pt;}
.y16_c00117{bottom:151.440000pt;}
.y15_c00117{bottom:174.240000pt;}
.y14_c00117{bottom:196.240000pt;}
.y13_c00117{bottom:227.973333pt;}
.y12_c00117{bottom:265.840000pt;}
.y11_c00117{bottom:288.240000pt;}
.y10_c00117{bottom:310.106667pt;}
.yf_c00117{bottom:331.840000pt;}
.ye_c00117{bottom:354.240000pt;}
.yd_c00117{bottom:375.306667pt;}
.yc_c00117{bottom:398.373333pt;}
.yb_c00117{bottom:420.506667pt;}
.ya_c00117{bottom:442.506667pt;}
.y9_c00117{bottom:464.373333pt;}
.y8_c00117{bottom:486.506667pt;}
.y7_c00117{bottom:508.773333pt;}
.y6_c00117{bottom:530.906667pt;}
.y5_c00117{bottom:553.706667pt;}
.y4_c00117{bottom:573.573333pt;}
.y3_c00117{bottom:597.573333pt;}
.y2_c00117{bottom:620.106667pt;}
.y1_c00117{bottom:664.240000pt;}
.h5_c00117{height:11.733399pt;}
.h6_c00117{height:38.937500pt;}
.h3_c00117{height:71.785156pt;}
.h2_c00117{height:77.654948pt;}
.h4_c00117{height:84.407552pt;}
.h0_c00117{height:748.533333pt;}
.h1_c00117{height:748.666667pt;}
.w2_c00117{width:93.222667pt;}
.w0_c00117{width:496.533333pt;}
.w1_c00117{width:496.666667pt;}
.x0_c00117{left:0.000000pt;}
.xf_c00117{left:31.866667pt;}
.x7_c00117{left:35.333333pt;}
.xa_c00117{left:46.400000pt;}
.x8_c00117{left:48.533333pt;}
.x6_c00117{left:49.733333pt;}
.x4_c00117{left:64.533333pt;}
.xe_c00117{left:84.666667pt;}
.x11_c00117{left:87.333333pt;}
.x10_c00117{left:88.266667pt;}
.xc_c00117{left:90.266667pt;}
.x9_c00117{left:91.466667pt;}
.x5_c00117{left:93.200000pt;}
.x3_c00117{left:94.133333pt;}
.x2_c00117{left:116.400000pt;}
.xd_c00117{left:117.866667pt;}
.x1_c00117{left:121.466667pt;}
.xb_c00117{left:137.600000pt;}
.x13_c00117{left:205.434896pt;}
.x12_c00117{left:450.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_22a7339a5caceb7341405bb5.woff2')format("woff");}.ff1_c00118{font-family:ff1_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:ff2_c00118;src:url('chunks/assets/font_2ee6fdca6cf326ce146eb522.woff2')format("woff");}.ff2_c00118{font-family:ff2_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:ff3_c00118;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff3_c00118{font-family:ff3_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:ff4_c00118;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00118{font-family:ff4_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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:0.600000px;}
.ls2_c00118{letter-spacing:3.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-19.629000px;}
.ws0_c00118{word-spacing:-16.629000px;}
.ws4_c00118{word-spacing:0.000000px;}
.ws2_c00118{word-spacing:0.828000px;}
.ws3_c00118{word-spacing:7.107000px;}
._15_c00118{margin-left:-17.355000px;}
._22_c00118{margin-left:-12.903000px;}
._25_c00118{margin-left:-11.040000px;}
._12_c00118{margin-left:-8.994000px;}
._19_c00118{margin-left:-6.969000px;}
._f_c00118{margin-left:-5.175000px;}
._1_c00118{margin-left:-4.116000px;}
._3_c00118{margin-left:-2.346000px;}
._13_c00118{margin-left:-1.173000px;}
._0_c00118{width:1.242000px;}
._c_c00118{width:2.415000px;}
._4_c00118{width:3.519000px;}
._a_c00118{width:4.692000px;}
._5_c00118{width:5.796000px;}
._9_c00118{width:7.659000px;}
._24_c00118{width:8.877000px;}
._8_c00118{width:10.005000px;}
._1b_c00118{width:11.178000px;}
._6_c00118{width:12.834000px;}
._7_c00118{width:13.869000px;}
._11_c00118{width:15.042000px;}
._10_c00118{width:16.215000px;}
._1a_c00118{width:17.319000px;}
._18_c00118{width:18.423000px;}
._1d_c00118{width:19.527000px;}
._d_c00118{width:20.769000px;}
._b_c00118{width:22.287000px;}
._1c_c00118{width:23.805000px;}
._1f_c00118{width:24.978000px;}
._16_c00118{width:26.703000px;}
._14_c00118{width:32.949000px;}
._28_c00118{width:36.132000px;}
._1e_c00118{width:38.016000px;}
._21_c00118{width:39.468000px;}
._17_c00118{width:43.194000px;}
._23_c00118{width:95.670000px;}
._e_c00118{width:98.262000px;}
._29_c00118{width:99.993000px;}
._20_c00118{width:103.983000px;}
._26_c00118{width:105.285000px;}
._27_c00118{width:147.867000px;}
._2_c00118{width:456.780000px;}
.fc2_c00118{color:transparent;}
.fc1_c00118{color:rgb(128,128,128);}
.fc0_c00118{color:rgb(0,0,0);}
.fs2_c00118{font-size:48.000000px;}
.fs1_c00118{font-size:66.000000px;}
.fs0_c00118{font-size:69.000000px;}
.y0_c00118{bottom:0.000000px;}
.y1b_c00118{bottom:3.105000px;}
.y1a_c00118{bottom:7.228371px;}
.y19_c00118{bottom:70.515000px;}
.y18_c00118{bottom:145.815000px;}
.y17_c00118{bottom:169.515000px;}
.y16_c00118{bottom:194.715000px;}
.y15_c00118{bottom:219.465000px;}
.y14_c00118{bottom:244.365000px;}
.y13_c00118{bottom:269.115000px;}
.y12_c00118{bottom:293.715000px;}
.y11_c00118{bottom:318.615000px;}
.y10_c00118{bottom:343.665000px;}
.yf_c00118{bottom:367.965000px;}
.ye_c00118{bottom:391.965000px;}
.yd_c00118{bottom:417.465000px;}
.yc_c00118{bottom:442.215000px;}
.yb_c00118{bottom:467.115000px;}
.ya_c00118{bottom:515.715000px;}
.y9_c00118{bottom:564.615000px;}
.y8_c00118{bottom:614.265000px;}
.y7_c00118{bottom:638.865000px;}
.y6_c00118{bottom:663.915000px;}
.y5_c00118{bottom:688.515000px;}
.y4_c00118{bottom:713.565000px;}
.y3_c00118{bottom:738.165000px;}
.y2_c00118{bottom:763.065000px;}
.y1_c00118{bottom:787.515000px;}
.h4_c00118{height:13.200074px;}
.h5_c00118{height:43.804688px;}
.h3_c00118{height:80.758301px;}
.h2_c00118{height:87.361816px;}
.h1_c00118{height:831.000000px;}
.h0_c00118{height:831.075000px;}
.w1_c00118{width:104.875500px;}
.w0_c00118{width:557.250000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:25.050000px;}
.x3_c00118{left:26.400000px;}
.x5_c00118{left:47.550000px;}
.x6_c00118{left:50.250000px;}
.x4_c00118{left:66.900000px;}
.x1_c00118{left:184.950000px;}
.x8_c00118{left:230.439240px;}
.x7_c00118{left:387.450000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls1_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:0.533333pt;}
.ls2_c00118{letter-spacing:2.666667pt;}
.ws1_c00118{word-spacing:-17.448000pt;}
.ws0_c00118{word-spacing:-14.781333pt;}
.ws4_c00118{word-spacing:0.000000pt;}
.ws2_c00118{word-spacing:0.736000pt;}
.ws3_c00118{word-spacing:6.317333pt;}
._15_c00118{margin-left:-15.426667pt;}
._22_c00118{margin-left:-11.469333pt;}
._25_c00118{margin-left:-9.813333pt;}
._12_c00118{margin-left:-7.994667pt;}
._19_c00118{margin-left:-6.194667pt;}
._f_c00118{margin-left:-4.600000pt;}
._1_c00118{margin-left:-3.658667pt;}
._3_c00118{margin-left:-2.085333pt;}
._13_c00118{margin-left:-1.042667pt;}
._0_c00118{width:1.104000pt;}
._c_c00118{width:2.146667pt;}
._4_c00118{width:3.128000pt;}
._a_c00118{width:4.170667pt;}
._5_c00118{width:5.152000pt;}
._9_c00118{width:6.808000pt;}
._24_c00118{width:7.890667pt;}
._8_c00118{width:8.893333pt;}
._1b_c00118{width:9.936000pt;}
._6_c00118{width:11.408000pt;}
._7_c00118{width:12.328000pt;}
._11_c00118{width:13.370667pt;}
._10_c00118{width:14.413333pt;}
._1a_c00118{width:15.394667pt;}
._18_c00118{width:16.376000pt;}
._1d_c00118{width:17.357333pt;}
._d_c00118{width:18.461333pt;}
._b_c00118{width:19.810667pt;}
._1c_c00118{width:21.160000pt;}
._1f_c00118{width:22.202667pt;}
._16_c00118{width:23.736000pt;}
._14_c00118{width:29.288000pt;}
._28_c00118{width:32.117333pt;}
._1e_c00118{width:33.792000pt;}
._21_c00118{width:35.082667pt;}
._17_c00118{width:38.394667pt;}
._23_c00118{width:85.040000pt;}
._e_c00118{width:87.344000pt;}
._29_c00118{width:88.882667pt;}
._20_c00118{width:92.429333pt;}
._26_c00118{width:93.586667pt;}
._27_c00118{width:131.437333pt;}
._2_c00118{width:406.026667pt;}
.fs2_c00118{font-size:42.666667pt;}
.fs1_c00118{font-size:58.666667pt;}
.fs0_c00118{font-size:61.333333pt;}
.y0_c00118{bottom:0.000000pt;}
.y1b_c00118{bottom:2.760000pt;}
.y1a_c00118{bottom:6.425219pt;}
.y19_c00118{bottom:62.680000pt;}
.y18_c00118{bottom:129.613333pt;}
.y17_c00118{bottom:150.680000pt;}
.y16_c00118{bottom:173.080000pt;}
.y15_c00118{bottom:195.080000pt;}
.y14_c00118{bottom:217.213333pt;}
.y13_c00118{bottom:239.213333pt;}
.y12_c00118{bottom:261.080000pt;}
.y11_c00118{bottom:283.213333pt;}
.y10_c00118{bottom:305.480000pt;}
.yf_c00118{bottom:327.080000pt;}
.ye_c00118{bottom:348.413333pt;}
.yd_c00118{bottom:371.080000pt;}
.yc_c00118{bottom:393.080000pt;}
.yb_c00118{bottom:415.213333pt;}
.ya_c00118{bottom:458.413333pt;}
.y9_c00118{bottom:501.880000pt;}
.y8_c00118{bottom:546.013333pt;}
.y7_c00118{bottom:567.880000pt;}
.y6_c00118{bottom:590.146667pt;}
.y5_c00118{bottom:612.013333pt;}
.y4_c00118{bottom:634.280000pt;}
.y3_c00118{bottom:656.146667pt;}
.y2_c00118{bottom:678.280000pt;}
.y1_c00118{bottom:700.013333pt;}
.h4_c00118{height:11.733399pt;}
.h5_c00118{height:38.937500pt;}
.h3_c00118{height:71.785156pt;}
.h2_c00118{height:77.654948pt;}
.h1_c00118{height:738.666667pt;}
.h0_c00118{height:738.733333pt;}
.w1_c00118{width:93.222667pt;}
.w0_c00118{width:495.333333pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:22.266667pt;}
.x3_c00118{left:23.466667pt;}
.x5_c00118{left:42.266667pt;}
.x6_c00118{left:44.666667pt;}
.x4_c00118{left:59.466667pt;}
.x1_c00118{left:164.400000pt;}
.x8_c00118{left:204.834880pt;}
.x7_c00118{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_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_906df05aabd36a4410435980.woff2')format("woff");}.ff1_c00119{font-family:ff1_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:ff2_c00119;src:url('chunks/assets/font_6fe49ca38fc334b1c410c047.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_87c9a0cd41c3fa55a997c5a4.woff2')format("woff");}.ff3_c00119{font-family:ff3_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:ff4_c00119;src:url('chunks/assets/font_54688147839920f021f39c65.woff2')format("woff");}.ff4_c00119{font-family:ff4_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:ff5_c00119;src:url('chunks/assets/font_5a6bd1ce165744ad23cf68b2.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00119{font-family:ff6_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;}
.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;}
.ls3_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:3.000000px;}
.ls4_c00119{letter-spacing:6.000000px;}
.ls0_c00119{letter-spacing:10.971000px;}
.ls1_c00119{letter-spacing:14.325000px;}
.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;}
}
.ws4_c00119{word-spacing:-45.000000px;}
.ws3_c00119{word-spacing:-27.600000px;}
.ws2_c00119{word-spacing:-20.574000px;}
.ws0_c00119{word-spacing:-16.629000px;}
.ws1_c00119{word-spacing:-1.104000px;}
.ws5_c00119{word-spacing:0.000000px;}
._19_c00119{margin-left:-21.252000px;}
._1c_c00119{margin-left:-19.113000px;}
._1d_c00119{margin-left:-16.629000px;}
._1f_c00119{margin-left:-14.076000px;}
._13_c00119{margin-left:-12.903000px;}
._1b_c00119{margin-left:-11.661000px;}
._12_c00119{margin-left:-9.591000px;}
._18_c00119{margin-left:-8.349000px;}
._f_c00119{margin-left:-7.176000px;}
._15_c00119{margin-left:-5.244000px;}
._10_c00119{margin-left:-4.002000px;}
._e_c00119{margin-left:-2.484000px;}
._d_c00119{margin-left:-1.380000px;}
._22_c00119{width:1.035000px;}
._c_c00119{width:2.208000px;}
._17_c00119{width:3.588000px;}
._1e_c00119{width:5.037000px;}
._b_c00119{width:6.210000px;}
._4_c00119{width:8.211000px;}
._25_c00119{width:9.609000px;}
._9_c00119{width:10.695000px;}
._14_c00119{width:11.868000px;}
._24_c00119{width:13.068000px;}
._16_c00119{width:14.283000px;}
._0_c00119{width:15.456000px;}
._21_c00119{width:16.491000px;}
._2f_c00119{width:17.634000px;}
._2_c00119{width:18.699000px;}
._1_c00119{width:20.079000px;}
._1a_c00119{width:21.528000px;}
._11_c00119{width:22.563000px;}
._3_c00119{width:23.598000px;}
._6_c00119{width:24.771000px;}
._7_c00119{width:26.427000px;}
._23_c00119{width:28.359000px;}
._a_c00119{width:30.981000px;}
._5_c00119{width:39.054000px;}
._8_c00119{width:40.089000px;}
._29_c00119{width:46.575000px;}
._2b_c00119{width:48.930000px;}
._27_c00119{width:92.106000px;}
._26_c00119{width:99.417000px;}
._2e_c00119{width:100.554000px;}
._20_c00119{width:132.135000px;}
._2c_c00119{width:137.751000px;}
._2d_c00119{width:207.414000px;}
._2a_c00119{width:215.991000px;}
._28_c00119{width:247.953000px;}
.fc2_c00119{color:transparent;}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(0,0,0);}
.fs5_c00119{font-size:48.000000px;}
.fs3_c00119{font-size:51.000000px;}
.fs1_c00119{font-size:63.000000px;}
.fs0_c00119{font-size:69.000000px;}
.fs4_c00119{font-size:78.000000px;}
.fs2_c00119{font-size:81.000000px;}
.y0_c00119{bottom:0.000000px;}
.y1c_c00119{bottom:3.105000px;}
.y1b_c00119{bottom:7.228369px;}
.y1a_c00119{bottom:70.170000px;}
.y19_c00119{bottom:94.470000px;}
.y18_c00119{bottom:119.820000px;}
.y17_c00119{bottom:145.020000px;}
.y16_c00119{bottom:169.470000px;}
.y15_c00119{bottom:195.420000px;}
.y14_c00119{bottom:219.720000px;}
.y13_c00119{bottom:245.070000px;}
.y12_c00119{bottom:270.270000px;}
.y11_c00119{bottom:295.020000px;}
.y10_c00119{bottom:320.670000px;}
.yf_c00119{bottom:344.970000px;}
.ye_c00119{bottom:369.270000px;}
.yd_c00119{bottom:394.170000px;}
.yc_c00119{bottom:419.220000px;}
.yb_c00119{bottom:445.170000px;}
.ya_c00119{bottom:469.770000px;}
.y9_c00119{bottom:494.670000px;}
.y8_c00119{bottom:519.420000px;}
.y7_c00119{bottom:544.020000px;}
.y6_c00119{bottom:593.970000px;}
.y5_c00119{bottom:619.020000px;}
.y4_c00119{bottom:644.520000px;}
.y3_c00119{bottom:668.970000px;}
.y2_c00119{bottom:694.470000px;}
.y1_c00119{bottom:744.120000px;}
.h6_c00119{height:13.200073px;}
.h7_c00119{height:43.804688px;}
.h5_c00119{height:76.514648px;}
.h2_c00119{height:80.758301px;}
.h3_c00119{height:87.361816px;}
.h4_c00119{height:102.555176px;}
.h0_c00119{height:842.100000px;}
.h1_c00119{height:842.250000px;}
.w2_c00119{width:104.875500px;}
.w0_c00119{width:558.600000px;}
.w1_c00119{width:558.750000px;}
.x0_c00119{left:0.000000px;}
.xa_c00119{left:24.000000px;}
.x9_c00119{left:25.350000px;}
.xb_c00119{left:38.850000px;}
.x7_c00119{left:41.550000px;}
.x4_c00119{left:59.400000px;}
.x8_c00119{left:89.100000px;}
.x6_c00119{left:90.450000px;}
.x3_c00119{left:91.800000px;}
.x2_c00119{left:116.850000px;}
.x1_c00119{left:126.150000px;}
.x5_c00119{left:144.750000px;}
.xd_c00119{left:231.114258px;}
.xc_c00119{left:487.950000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls3_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:2.666667pt;}
.ls4_c00119{letter-spacing:5.333333pt;}
.ls0_c00119{letter-spacing:9.752000pt;}
.ls1_c00119{letter-spacing:12.733333pt;}
.ws4_c00119{word-spacing:-40.000000pt;}
.ws3_c00119{word-spacing:-24.533333pt;}
.ws2_c00119{word-spacing:-18.288000pt;}
.ws0_c00119{word-spacing:-14.781333pt;}
.ws1_c00119{word-spacing:-0.981333pt;}
.ws5_c00119{word-spacing:0.000000pt;}
._19_c00119{margin-left:-18.890667pt;}
._1c_c00119{margin-left:-16.989333pt;}
._1d_c00119{margin-left:-14.781333pt;}
._1f_c00119{margin-left:-12.512000pt;}
._13_c00119{margin-left:-11.469333pt;}
._1b_c00119{margin-left:-10.365333pt;}
._12_c00119{margin-left:-8.525333pt;}
._18_c00119{margin-left:-7.421333pt;}
._f_c00119{margin-left:-6.378667pt;}
._15_c00119{margin-left:-4.661333pt;}
._10_c00119{margin-left:-3.557333pt;}
._e_c00119{margin-left:-2.208000pt;}
._d_c00119{margin-left:-1.226667pt;}
._22_c00119{width:0.920000pt;}
._c_c00119{width:1.962667pt;}
._17_c00119{width:3.189333pt;}
._1e_c00119{width:4.477333pt;}
._b_c00119{width:5.520000pt;}
._4_c00119{width:7.298667pt;}
._25_c00119{width:8.541333pt;}
._9_c00119{width:9.506667pt;}
._14_c00119{width:10.549333pt;}
._24_c00119{width:11.616000pt;}
._16_c00119{width:12.696000pt;}
._0_c00119{width:13.738667pt;}
._21_c00119{width:14.658667pt;}
._2f_c00119{width:15.674667pt;}
._2_c00119{width:16.621333pt;}
._1_c00119{width:17.848000pt;}
._1a_c00119{width:19.136000pt;}
._11_c00119{width:20.056000pt;}
._3_c00119{width:20.976000pt;}
._6_c00119{width:22.018667pt;}
._7_c00119{width:23.490667pt;}
._23_c00119{width:25.208000pt;}
._a_c00119{width:27.538667pt;}
._5_c00119{width:34.714667pt;}
._8_c00119{width:35.634667pt;}
._29_c00119{width:41.400000pt;}
._2b_c00119{width:43.493333pt;}
._27_c00119{width:81.872000pt;}
._26_c00119{width:88.370667pt;}
._2e_c00119{width:89.381333pt;}
._20_c00119{width:117.453333pt;}
._2c_c00119{width:122.445333pt;}
._2d_c00119{width:184.368000pt;}
._2a_c00119{width:191.992000pt;}
._28_c00119{width:220.402667pt;}
.fs5_c00119{font-size:42.666667pt;}
.fs3_c00119{font-size:45.333333pt;}
.fs1_c00119{font-size:56.000000pt;}
.fs0_c00119{font-size:61.333333pt;}
.fs4_c00119{font-size:69.333333pt;}
.fs2_c00119{font-size:72.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y1c_c00119{bottom:2.760000pt;}
.y1b_c00119{bottom:6.425217pt;}
.y1a_c00119{bottom:62.373333pt;}
.y19_c00119{bottom:83.973333pt;}
.y18_c00119{bottom:106.506667pt;}
.y17_c00119{bottom:128.906667pt;}
.y16_c00119{bottom:150.640000pt;}
.y15_c00119{bottom:173.706667pt;}
.y14_c00119{bottom:195.306667pt;}
.y13_c00119{bottom:217.840000pt;}
.y12_c00119{bottom:240.240000pt;}
.y11_c00119{bottom:262.240000pt;}
.y10_c00119{bottom:285.040000pt;}
.yf_c00119{bottom:306.640000pt;}
.ye_c00119{bottom:328.240000pt;}
.yd_c00119{bottom:350.373333pt;}
.yc_c00119{bottom:372.640000pt;}
.yb_c00119{bottom:395.706667pt;}
.ya_c00119{bottom:417.573333pt;}
.y9_c00119{bottom:439.706667pt;}
.y8_c00119{bottom:461.706667pt;}
.y7_c00119{bottom:483.573333pt;}
.y6_c00119{bottom:527.973333pt;}
.y5_c00119{bottom:550.240000pt;}
.y4_c00119{bottom:572.906667pt;}
.y3_c00119{bottom:594.640000pt;}
.y2_c00119{bottom:617.306667pt;}
.y1_c00119{bottom:661.440000pt;}
.h6_c00119{height:11.733399pt;}
.h7_c00119{height:38.937500pt;}
.h5_c00119{height:68.013021pt;}
.h2_c00119{height:71.785156pt;}
.h3_c00119{height:77.654948pt;}
.h4_c00119{height:91.160156pt;}
.h0_c00119{height:748.533333pt;}
.h1_c00119{height:748.666667pt;}
.w2_c00119{width:93.222667pt;}
.w0_c00119{width:496.533333pt;}
.w1_c00119{width:496.666667pt;}
.x0_c00119{left:0.000000pt;}
.xa_c00119{left:21.333333pt;}
.x9_c00119{left:22.533333pt;}
.xb_c00119{left:34.533333pt;}
.x7_c00119{left:36.933333pt;}
.x4_c00119{left:52.800000pt;}
.x8_c00119{left:79.200000pt;}
.x6_c00119{left:80.400000pt;}
.x3_c00119{left:81.600000pt;}
.x2_c00119{left:103.866667pt;}
.x1_c00119{left:112.133333pt;}
.x5_c00119{left:128.666667pt;}
.xd_c00119{left:205.434896pt;}
.xc_c00119{left:433.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_1d4c1d91593c97f87cbd072d.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_cc0b1f2ace1dba860f095c52.woff2')format("woff");}.ff2_c00120{font-family:ff2_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:ff3_c00120;src:url('chunks/assets/font_1851b94acef1a33e8893a820.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_70bd9a22b8acd7a7200dcea3.woff2')format("woff");}.ff4_c00120{font-family:ff4_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:ff5_c00120;src:url('chunks/assets/font_8e7b5ca5d24d3a6bd1230e02.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;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_c00120;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00120{font-family:ff6_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;}
.ls6_c00120{letter-spacing:-3.000000px;}
.ls4_c00120{letter-spacing:0.000000px;}
.ls3_c00120{letter-spacing:1.026000px;}
.ls5_c00120{letter-spacing:3.000000px;}
.ls2_c00120{letter-spacing:4.560000px;}
.ls7_c00120{letter-spacing:6.000000px;}
.ls0_c00120{letter-spacing:12.000000px;}
.ls1_c00120{letter-spacing:38.082000px;}
.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;}
}
.ws2_c00120{word-spacing:-39.100800px;}
.ws0_c00120{word-spacing:-28.629000px;}
.ws4_c00120{word-spacing:-21.906000px;}
.ws1_c00120{word-spacing:-16.629000px;}
.ws3_c00120{word-spacing:-13.737000px;}
.ws5_c00120{word-spacing:0.000000px;}
._23_c00120{margin-left:-38.640000px;}
._26_c00120{margin-left:-35.397000px;}
._1d_c00120{margin-left:-23.400000px;}
._29_c00120{margin-left:-19.380000px;}
._1a_c00120{margin-left:-13.629000px;}
._13_c00120{margin-left:-11.385000px;}
._2f_c00120{margin-left:-10.068000px;}
._20_c00120{margin-left:-9.039000px;}
._11_c00120{margin-left:-7.866000px;}
._17_c00120{margin-left:-6.831000px;}
._f_c00120{margin-left:-5.451000px;}
._c_c00120{margin-left:-3.897000px;}
._3_c00120{margin-left:-2.553000px;}
._2_c00120{margin-left:-1.449000px;}
._0_c00120{width:1.518000px;}
._6_c00120{width:3.105000px;}
._7_c00120{width:4.485000px;}
._5_c00120{width:6.003000px;}
._8_c00120{width:7.107000px;}
._16_c00120{width:8.211000px;}
._9_c00120{width:9.453000px;}
._a_c00120{width:11.592000px;}
._18_c00120{width:12.627000px;}
._b_c00120{width:14.214000px;}
._1b_c00120{width:16.179000px;}
._1_c00120{width:17.733000px;}
._2d_c00120{width:19.755000px;}
._d_c00120{width:22.251000px;}
._2a_c00120{width:23.391000px;}
._1f_c00120{width:25.290000px;}
._15_c00120{width:32.913000px;}
._1c_c00120{width:36.933000px;}
._28_c00120{width:42.090000px;}
._1e_c00120{width:43.743000px;}
._2e_c00120{width:49.134000px;}
._10_c00120{width:62.583000px;}
._12_c00120{width:67.689000px;}
._14_c00120{width:72.174000px;}
._25_c00120{width:77.004000px;}
._19_c00120{width:109.986000px;}
._22_c00120{width:113.160000px;}
._21_c00120{width:252.471000px;}
._2b_c00120{width:269.997000px;}
._24_c00120{width:288.144000px;}
._2c_c00120{width:417.105000px;}
._4_c00120{width:440.343000px;}
._27_c00120{width:505.977000px;}
._e_c00120{width:562.488000px;}
._30_c00120{width:1474.818000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(128,128,128);}
.fc0_c00120{color:rgb(0,0,0);}
.fs6_c00120{font-size:48.000000px;}
.fs4_c00120{font-size:54.000000px;}
.fs2_c00120{font-size:55.200000px;}
.fs5_c00120{font-size:57.000000px;}
.fs3_c00120{font-size:66.000000px;}
.fs0_c00120{font-size:69.000000px;}
.fs1_c00120{font-size:117.000000px;}
.y0_c00120{bottom:0.000000px;}
.y20_c00120{bottom:3.105000px;}
.y1f_c00120{bottom:7.228363px;}
.y1e_c00120{bottom:66.450000px;}
.y1d_c00120{bottom:83.400000px;}
.y1c_c00120{bottom:102.000000px;}
.y1b_c00120{bottom:119.550000px;}
.y1a_c00120{bottom:153.900000px;}
.y19_c00120{bottom:193.500000px;}
.y18_c00120{bottom:215.700000px;}
.y17_c00120{bottom:241.650000px;}
.y16_c00120{bottom:267.000000px;}
.y15_c00120{bottom:291.300000px;}
.y14_c00120{bottom:316.650000px;}
.y13_c00120{bottom:342.000000px;}
.y12_c00120{bottom:366.600000px;}
.y11_c00120{bottom:392.250000px;}
.y10_c00120{bottom:415.500000px;}
.yf_c00120{bottom:441.450000px;}
.ye_c00120{bottom:465.450000px;}
.yd_c00120{bottom:490.500000px;}
.yc_c00120{bottom:514.350000px;}
.yb_c00120{bottom:538.650000px;}
.ya_c00120{bottom:563.250000px;}
.y9_c00120{bottom:587.700000px;}
.y8_c00120{bottom:613.200000px;}
.y7_c00120{bottom:637.950000px;}
.y6_c00120{bottom:662.850000px;}
.y5_c00120{bottom:687.600000px;}
.y4_c00120{bottom:712.200000px;}
.y3_c00120{bottom:737.550000px;}
.y2_c00120{bottom:762.150000px;}
.y1_c00120{bottom:787.050000px;}
.h6_c00120{height:13.200074px;}
.h7_c00120{height:43.804688px;}
.h4_c00120{height:68.370117px;}
.h5_c00120{height:72.168457px;}
.h3_c00120{height:77.247070px;}
.h1_c00120{height:87.361816px;}
.h2_c00120{height:148.135254px;}
.h0_c00120{height:823.500000px;}
.w2_c00120{width:104.875500px;}
.w0_c00120{width:551.850000px;}
.w1_c00120{width:552.000000px;}
.x0_c00120{left:0.000000px;}
.x3_c00120{left:21.300000px;}
.x5_c00120{left:23.250000px;}
.x7_c00120{left:24.300000px;}
.x8_c00120{left:25.650000px;}
.xa_c00120{left:27.000000px;}
.x9_c00120{left:33.300000px;}
.x4_c00120{left:47.550000px;}
.x6_c00120{left:49.650000px;}
.x2_c00120{left:67.200000px;}
.xb_c00120{left:167.700000px;}
.x1_c00120{left:184.650000px;}
.xc_c00120{left:227.739258px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls6_c00120{letter-spacing:-2.666667pt;}
.ls4_c00120{letter-spacing:0.000000pt;}
.ls3_c00120{letter-spacing:0.912000pt;}
.ls5_c00120{letter-spacing:2.666667pt;}
.ls2_c00120{letter-spacing:4.053333pt;}
.ls7_c00120{letter-spacing:5.333333pt;}
.ls0_c00120{letter-spacing:10.666667pt;}
.ls1_c00120{letter-spacing:33.850667pt;}
.ws2_c00120{word-spacing:-34.756267pt;}
.ws0_c00120{word-spacing:-25.448000pt;}
.ws4_c00120{word-spacing:-19.472000pt;}
.ws1_c00120{word-spacing:-14.781333pt;}
.ws3_c00120{word-spacing:-12.210667pt;}
.ws5_c00120{word-spacing:0.000000pt;}
._23_c00120{margin-left:-34.346667pt;}
._26_c00120{margin-left:-31.464000pt;}
._1d_c00120{margin-left:-20.800000pt;}
._29_c00120{margin-left:-17.226667pt;}
._1a_c00120{margin-left:-12.114667pt;}
._13_c00120{margin-left:-10.120000pt;}
._2f_c00120{margin-left:-8.949333pt;}
._20_c00120{margin-left:-8.034667pt;}
._11_c00120{margin-left:-6.992000pt;}
._17_c00120{margin-left:-6.072000pt;}
._f_c00120{margin-left:-4.845333pt;}
._c_c00120{margin-left:-3.464000pt;}
._3_c00120{margin-left:-2.269333pt;}
._2_c00120{margin-left:-1.288000pt;}
._0_c00120{width:1.349333pt;}
._6_c00120{width:2.760000pt;}
._7_c00120{width:3.986667pt;}
._5_c00120{width:5.336000pt;}
._8_c00120{width:6.317333pt;}
._16_c00120{width:7.298667pt;}
._9_c00120{width:8.402667pt;}
._a_c00120{width:10.304000pt;}
._18_c00120{width:11.224000pt;}
._b_c00120{width:12.634667pt;}
._1b_c00120{width:14.381333pt;}
._1_c00120{width:15.762667pt;}
._2d_c00120{width:17.560000pt;}
._d_c00120{width:19.778667pt;}
._2a_c00120{width:20.792000pt;}
._1f_c00120{width:22.480000pt;}
._15_c00120{width:29.256000pt;}
._1c_c00120{width:32.829333pt;}
._28_c00120{width:37.413333pt;}
._1e_c00120{width:38.882667pt;}
._2e_c00120{width:43.674667pt;}
._10_c00120{width:55.629333pt;}
._12_c00120{width:60.168000pt;}
._14_c00120{width:64.154667pt;}
._25_c00120{width:68.448000pt;}
._19_c00120{width:97.765333pt;}
._22_c00120{width:100.586667pt;}
._21_c00120{width:224.418667pt;}
._2b_c00120{width:239.997333pt;}
._24_c00120{width:256.128000pt;}
._2c_c00120{width:370.760000pt;}
._4_c00120{width:391.416000pt;}
._27_c00120{width:449.757333pt;}
._e_c00120{width:499.989333pt;}
._30_c00120{width:1310.949333pt;}
.fs6_c00120{font-size:42.666667pt;}
.fs4_c00120{font-size:48.000000pt;}
.fs2_c00120{font-size:49.066667pt;}
.fs5_c00120{font-size:50.666667pt;}
.fs3_c00120{font-size:58.666667pt;}
.fs0_c00120{font-size:61.333333pt;}
.fs1_c00120{font-size:104.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y20_c00120{bottom:2.760000pt;}
.y1f_c00120{bottom:6.425212pt;}
.y1e_c00120{bottom:59.066667pt;}
.y1d_c00120{bottom:74.133333pt;}
.y1c_c00120{bottom:90.666667pt;}
.y1b_c00120{bottom:106.266667pt;}
.y1a_c00120{bottom:136.800000pt;}
.y19_c00120{bottom:172.000000pt;}
.y18_c00120{bottom:191.733333pt;}
.y17_c00120{bottom:214.800000pt;}
.y16_c00120{bottom:237.333333pt;}
.y15_c00120{bottom:258.933333pt;}
.y14_c00120{bottom:281.466667pt;}
.y13_c00120{bottom:304.000000pt;}
.y12_c00120{bottom:325.866667pt;}
.y11_c00120{bottom:348.666667pt;}
.y10_c00120{bottom:369.333333pt;}
.yf_c00120{bottom:392.400000pt;}
.ye_c00120{bottom:413.733333pt;}
.yd_c00120{bottom:436.000000pt;}
.yc_c00120{bottom:457.200000pt;}
.yb_c00120{bottom:478.800000pt;}
.ya_c00120{bottom:500.666667pt;}
.y9_c00120{bottom:522.400000pt;}
.y8_c00120{bottom:545.066667pt;}
.y7_c00120{bottom:567.066667pt;}
.y6_c00120{bottom:589.200000pt;}
.y5_c00120{bottom:611.200000pt;}
.y4_c00120{bottom:633.066667pt;}
.y3_c00120{bottom:655.600000pt;}
.y2_c00120{bottom:677.466667pt;}
.y1_c00120{bottom:699.600000pt;}
.h6_c00120{height:11.733399pt;}
.h7_c00120{height:38.937500pt;}
.h4_c00120{height:60.773438pt;}
.h5_c00120{height:64.149740pt;}
.h3_c00120{height:68.664062pt;}
.h1_c00120{height:77.654948pt;}
.h2_c00120{height:131.675781pt;}
.h0_c00120{height:732.000000pt;}
.w2_c00120{width:93.222667pt;}
.w0_c00120{width:490.533333pt;}
.w1_c00120{width:490.666667pt;}
.x0_c00120{left:0.000000pt;}
.x3_c00120{left:18.933333pt;}
.x5_c00120{left:20.666667pt;}
.x7_c00120{left:21.600000pt;}
.x8_c00120{left:22.800000pt;}
.xa_c00120{left:24.000000pt;}
.x9_c00120{left:29.600000pt;}
.x4_c00120{left:42.266667pt;}
.x6_c00120{left:44.133333pt;}
.x2_c00120{left:59.733333pt;}
.xb_c00120{left:149.066667pt;}
.x1_c00120{left:164.133333pt;}
.xc_c00120{left:202.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_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_084858c089d136e08f37f9ba.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.568848;font-style:normal;font-weight:normal;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_7c9dc959f99d8a59319eb4f4.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_6178f7fc1d188175c6a12839.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;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_c00121;src:url('chunks/assets/font_54c26566c41bfa779c6718da.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;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_c00121;src:url('chunks/assets/font_181b392ad51507705842e761.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;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_c00121;src:url('chunks/assets/font_d1b94974ad24439377ff98f5.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;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_c00121;src:url('chunks/assets/font_0dcd8b61052f4dae2c7b4be2.woff2')format("woff");}.ff7_c00121{font-family:ff7_c00121;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_c00121;src:url('chunks/assets/font_1ca0d6c03101a02c59b90243.woff2')format("woff");}.ff8_c00121{font-family:ff8_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:ff9_c00121;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00121{font-family:ff9_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);}
.m2_c00121{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);}
.m1_c00121{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);}
.v0_c00121{vertical-align:0.000000px;}
.ls6_c00121{letter-spacing:-3.000000px;}
.ls5_c00121{letter-spacing:0.000000px;}
.ls4_c00121{letter-spacing:3.000000px;}
.ls3_c00121{letter-spacing:6.012000px;}
.ls2_c00121{letter-spacing:10.836000px;}
.ls0_c00121{letter-spacing:17.802000px;}
.ls1_c00121{letter-spacing:23.971200px;}
.ls7_c00121{letter-spacing:42.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00121{word-spacing:-60.798000px;}
.wsa_c00121{word-spacing:-21.798000px;}
.ws6_c00121{word-spacing:-15.906000px;}
.ws5_c00121{word-spacing:-1.122000px;}
.ws7_c00121{word-spacing:-0.858000px;}
.ws1_c00121{word-spacing:-0.816000px;}
.ws4_c00121{word-spacing:-0.132000px;}
.ws2_c00121{word-spacing:-0.090000px;}
.wsb_c00121{word-spacing:0.000000px;}
.ws8_c00121{word-spacing:0.528000px;}
.ws3_c00121{word-spacing:1.914000px;}
.ws0_c00121{word-spacing:2.976000px;}
._35_c00121{margin-left:-45.177000px;}
._31_c00121{margin-left:-36.666000px;}
._32_c00121{margin-left:-34.914000px;}
._1e_c00121{margin-left:-25.809000px;}
._1d_c00121{margin-left:-22.044000px;}
._20_c00121{margin-left:-16.980000px;}
._1f_c00121{margin-left:-15.912000px;}
._1b_c00121{margin-left:-14.256000px;}
._27_c00121{margin-left:-12.531000px;}
._1c_c00121{margin-left:-11.403000px;}
._10_c00121{margin-left:-9.975000px;}
._1_c00121{margin-left:-8.814000px;}
._22_c00121{margin-left:-7.458000px;}
._18_c00121{margin-left:-5.880000px;}
._26_c00121{margin-left:-4.731000px;}
._6_c00121{margin-left:-3.576000px;}
._19_c00121{margin-left:-2.262000px;}
._4_c00121{margin-left:-1.128000px;}
._3_c00121{width:1.452000px;}
._1a_c00121{width:2.724000px;}
._0_c00121{width:3.978000px;}
._17_c00121{width:5.874000px;}
._e_c00121{width:7.110000px;}
._24_c00121{width:8.742000px;}
._c_c00121{width:10.278000px;}
._f_c00121{width:11.790000px;}
._a_c00121{width:13.464000px;}
._15_c00121{width:15.678000px;}
._23_c00121{width:16.836000px;}
._b_c00121{width:17.886000px;}
._d_c00121{width:19.560000px;}
._12_c00121{width:21.138000px;}
._13_c00121{width:23.562000px;}
._14_c00121{width:25.890000px;}
._2b_c00121{width:27.471000px;}
._11_c00121{width:28.650000px;}
._2a_c00121{width:31.098000px;}
._28_c00121{width:33.090000px;}
._34_c00121{width:40.980000px;}
._33_c00121{width:56.286000px;}
._29_c00121{width:67.299000px;}
._2f_c00121{width:81.132000px;}
._36_c00121{width:96.819000px;}
._2e_c00121{width:99.192000px;}
._2c_c00121{width:102.480000px;}
._16_c00121{width:112.392000px;}
._8_c00121{width:114.792000px;}
._30_c00121{width:129.168000px;}
._25_c00121{width:137.532000px;}
._2d_c00121{width:143.247000px;}
._21_c00121{width:181.248000px;}
._9_c00121{width:203.544000px;}
._37_c00121{width:211.668000px;}
._5_c00121{width:290.016000px;}
._2_c00121{width:359.556000px;}
._7_c00121{width:786.432000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(0,0,0);}
.fs2_c00121{font-size:24.000000px;}
.fs7_c00121{font-size:48.000000px;}
.fs6_c00121{font-size:52.800000px;}
.fs1_c00121{font-size:66.000000px;}
.fs4_c00121{font-size:75.000000px;}
.fs0_c00121{font-size:78.000000px;}
.fs3_c00121{font-size:90.000000px;}
.fs5_c00121{font-size:132.000000px;}
.y0_c00121{bottom:0.000000px;}
.y1f_c00121{bottom:3.105000px;}
.y1e_c00121{bottom:7.228369px;}
.y1d_c00121{bottom:68.070000px;}
.y1c_c00121{bottom:92.370000px;}
.y1b_c00121{bottom:118.470000px;}
.y1a_c00121{bottom:143.670000px;}
.y19_c00121{bottom:169.020000px;}
.y18_c00121{bottom:194.070000px;}
.y17_c00121{bottom:218.670000px;}
.y16_c00121{bottom:243.720000px;}
.y15_c00121{bottom:269.670000px;}
.y14_c00121{bottom:293.970000px;}
.y13_c00121{bottom:319.920000px;}
.y12_c00121{bottom:343.920000px;}
.y11_c00121{bottom:368.820000px;}
.y10_c00121{bottom:393.870000px;}
.yf_c00121{bottom:418.470000px;}
.ye_c00121{bottom:444.120000px;}
.yd_c00121{bottom:469.020000px;}
.yc_c00121{bottom:494.070000px;}
.yb_c00121{bottom:518.970000px;}
.ya_c00121{bottom:544.020000px;}
.y9_c00121{bottom:569.370000px;}
.y8_c00121{bottom:593.220000px;}
.y7_c00121{bottom:617.970000px;}
.y6_c00121{bottom:643.320000px;}
.y5_c00121{bottom:668.520000px;}
.y4_c00121{bottom:693.570000px;}
.y3_c00121{bottom:743.820000px;}
.y2_c00121{bottom:769.470000px;}
.y1_c00121{bottom:793.770000px;}
.h6_c00121{height:13.200073px;}
.h3_c00121{height:28.089844px;}
.h7_c00121{height:43.804688px;}
.h4_c00121{height:83.563477px;}
.h2_c00121{height:98.756836px;}
.h5_c00121{height:143.088000px;}
.h1_c00121{height:832.500000px;}
.h0_c00121{height:832.650000px;}
.w2_c00121{width:104.875500px;}
.w0_c00121{width:551.850000px;}
.w1_c00121{width:552.000000px;}
.x0_c00121{left:0.000000px;}
.xb_c00121{left:21.000000px;}
.x9_c00121{left:22.050000px;}
.x7_c00121{left:23.550000px;}
.xa_c00121{left:37.800000px;}
.xc_c00121{left:54.300000px;}
.xd_c00121{left:61.500000px;}
.x6_c00121{left:85.350000px;}
.x8_c00121{left:87.000000px;}
.x5_c00121{left:88.800000px;}
.x1_c00121{left:102.900000px;}
.x4_c00121{left:114.000000px;}
.x3_c00121{left:122.400000px;}
.x2_c00121{left:145.800000px;}
.xe_c00121{left:164.400000px;}
.xf_c00121{left:224.850000px;}
.x10_c00121{left:227.739258px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls6_c00121{letter-spacing:-2.666667pt;}
.ls5_c00121{letter-spacing:0.000000pt;}
.ls4_c00121{letter-spacing:2.666667pt;}
.ls3_c00121{letter-spacing:5.344000pt;}
.ls2_c00121{letter-spacing:9.632000pt;}
.ls0_c00121{letter-spacing:15.824000pt;}
.ls1_c00121{letter-spacing:21.307733pt;}
.ls7_c00121{letter-spacing:37.333333pt;}
.ws9_c00121{word-spacing:-54.042667pt;}
.wsa_c00121{word-spacing:-19.376000pt;}
.ws6_c00121{word-spacing:-14.138667pt;}
.ws5_c00121{word-spacing:-0.997333pt;}
.ws7_c00121{word-spacing:-0.762667pt;}
.ws1_c00121{word-spacing:-0.725333pt;}
.ws4_c00121{word-spacing:-0.117333pt;}
.ws2_c00121{word-spacing:-0.080000pt;}
.wsb_c00121{word-spacing:0.000000pt;}
.ws8_c00121{word-spacing:0.469333pt;}
.ws3_c00121{word-spacing:1.701333pt;}
.ws0_c00121{word-spacing:2.645333pt;}
._35_c00121{margin-left:-40.157333pt;}
._31_c00121{margin-left:-32.592000pt;}
._32_c00121{margin-left:-31.034667pt;}
._1e_c00121{margin-left:-22.941333pt;}
._1d_c00121{margin-left:-19.594667pt;}
._20_c00121{margin-left:-15.093333pt;}
._1f_c00121{margin-left:-14.144000pt;}
._1b_c00121{margin-left:-12.672000pt;}
._27_c00121{margin-left:-11.138667pt;}
._1c_c00121{margin-left:-10.136000pt;}
._10_c00121{margin-left:-8.866667pt;}
._1_c00121{margin-left:-7.834667pt;}
._22_c00121{margin-left:-6.629333pt;}
._18_c00121{margin-left:-5.226667pt;}
._26_c00121{margin-left:-4.205333pt;}
._6_c00121{margin-left:-3.178667pt;}
._19_c00121{margin-left:-2.010667pt;}
._4_c00121{margin-left:-1.002667pt;}
._3_c00121{width:1.290667pt;}
._1a_c00121{width:2.421333pt;}
._0_c00121{width:3.536000pt;}
._17_c00121{width:5.221333pt;}
._e_c00121{width:6.320000pt;}
._24_c00121{width:7.770667pt;}
._c_c00121{width:9.136000pt;}
._f_c00121{width:10.480000pt;}
._a_c00121{width:11.968000pt;}
._15_c00121{width:13.936000pt;}
._23_c00121{width:14.965333pt;}
._b_c00121{width:15.898667pt;}
._d_c00121{width:17.386667pt;}
._12_c00121{width:18.789333pt;}
._13_c00121{width:20.944000pt;}
._14_c00121{width:23.013333pt;}
._2b_c00121{width:24.418667pt;}
._11_c00121{width:25.466667pt;}
._2a_c00121{width:27.642667pt;}
._28_c00121{width:29.413333pt;}
._34_c00121{width:36.426667pt;}
._33_c00121{width:50.032000pt;}
._29_c00121{width:59.821333pt;}
._2f_c00121{width:72.117333pt;}
._36_c00121{width:86.061333pt;}
._2e_c00121{width:88.170667pt;}
._2c_c00121{width:91.093333pt;}
._16_c00121{width:99.904000pt;}
._8_c00121{width:102.037333pt;}
._30_c00121{width:114.816000pt;}
._25_c00121{width:122.250667pt;}
._2d_c00121{width:127.330667pt;}
._21_c00121{width:161.109333pt;}
._9_c00121{width:180.928000pt;}
._37_c00121{width:188.149333pt;}
._5_c00121{width:257.792000pt;}
._2_c00121{width:319.605333pt;}
._7_c00121{width:699.050667pt;}
.fs2_c00121{font-size:21.333333pt;}
.fs7_c00121{font-size:42.666667pt;}
.fs6_c00121{font-size:46.933333pt;}
.fs1_c00121{font-size:58.666667pt;}
.fs4_c00121{font-size:66.666667pt;}
.fs0_c00121{font-size:69.333333pt;}
.fs3_c00121{font-size:80.000000pt;}
.fs5_c00121{font-size:117.333333pt;}
.y0_c00121{bottom:0.000000pt;}
.y1f_c00121{bottom:2.760000pt;}
.y1e_c00121{bottom:6.425217pt;}
.y1d_c00121{bottom:60.506667pt;}
.y1c_c00121{bottom:82.106667pt;}
.y1b_c00121{bottom:105.306667pt;}
.y1a_c00121{bottom:127.706667pt;}
.y19_c00121{bottom:150.240000pt;}
.y18_c00121{bottom:172.506667pt;}
.y17_c00121{bottom:194.373333pt;}
.y16_c00121{bottom:216.640000pt;}
.y15_c00121{bottom:239.706667pt;}
.y14_c00121{bottom:261.306667pt;}
.y13_c00121{bottom:284.373333pt;}
.y12_c00121{bottom:305.706667pt;}
.y11_c00121{bottom:327.840000pt;}
.y10_c00121{bottom:350.106667pt;}
.yf_c00121{bottom:371.973333pt;}
.ye_c00121{bottom:394.773333pt;}
.yd_c00121{bottom:416.906667pt;}
.yc_c00121{bottom:439.173333pt;}
.yb_c00121{bottom:461.306667pt;}
.ya_c00121{bottom:483.573333pt;}
.y9_c00121{bottom:506.106667pt;}
.y8_c00121{bottom:527.306667pt;}
.y7_c00121{bottom:549.306667pt;}
.y6_c00121{bottom:571.840000pt;}
.y5_c00121{bottom:594.240000pt;}
.y4_c00121{bottom:616.506667pt;}
.y3_c00121{bottom:661.173333pt;}
.y2_c00121{bottom:683.973333pt;}
.y1_c00121{bottom:705.573333pt;}
.h6_c00121{height:11.733399pt;}
.h3_c00121{height:24.968750pt;}
.h7_c00121{height:38.937500pt;}
.h4_c00121{height:74.278646pt;}
.h2_c00121{height:87.783854pt;}
.h5_c00121{height:127.189333pt;}
.h1_c00121{height:740.000000pt;}
.h0_c00121{height:740.133333pt;}
.w2_c00121{width:93.222667pt;}
.w0_c00121{width:490.533333pt;}
.w1_c00121{width:490.666667pt;}
.x0_c00121{left:0.000000pt;}
.xb_c00121{left:18.666667pt;}
.x9_c00121{left:19.600000pt;}
.x7_c00121{left:20.933333pt;}
.xa_c00121{left:33.600000pt;}
.xc_c00121{left:48.266667pt;}
.xd_c00121{left:54.666667pt;}
.x6_c00121{left:75.866667pt;}
.x8_c00121{left:77.333333pt;}
.x5_c00121{left:78.933333pt;}
.x1_c00121{left:91.466667pt;}
.x4_c00121{left:101.333333pt;}
.x3_c00121{left:108.800000pt;}
.x2_c00121{left:129.600000pt;}
.xe_c00121{left:146.133333pt;}
.xf_c00121{left:199.866667pt;}
.x10_c00121{left:202.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_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_91f35c235a1fd3ee98f65102.woff2')format("woff");}.ff1_c00122{font-family:ff1_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:ff2_c00122;src:url('chunks/assets/font_7d06b915d7a836db0516aa76.woff2')format("woff");}.ff2_c00122{font-family:ff2_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:ff3_c00122;src:url('chunks/assets/font_75ba70db413959cf8893e62c.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_1067fc05627139a9159d3047.woff2')format("woff");}.ff4_c00122{font-family:ff4_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:ff5_c00122;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00122{font-family:ff5_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:ff6_c00122;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00122{font-family:ff6_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;}
.ls1_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:3.000000px;}
.ls2_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;}
}
.ws1_c00122{word-spacing:-50.022000px;}
.ws0_c00122{word-spacing:-16.629000px;}
.ws3_c00122{word-spacing:0.000000px;}
.ws2_c00122{word-spacing:0.690000px;}
._19_c00122{margin-left:-24.495000px;}
._0_c00122{margin-left:-22.908000px;}
._1f_c00122{margin-left:-17.391000px;}
._7_c00122{margin-left:-16.077000px;}
._13_c00122{margin-left:-12.870000px;}
._20_c00122{margin-left:-11.316000px;}
._d_c00122{margin-left:-8.073000px;}
._f_c00122{margin-left:-6.036000px;}
._5_c00122{margin-left:-3.864000px;}
._6_c00122{margin-left:-2.622000px;}
._4_c00122{margin-left:-1.311000px;}
._10_c00122{width:1.380000px;}
._9_c00122{width:2.415000px;}
._2_c00122{width:4.209000px;}
._a_c00122{width:5.484000px;}
._16_c00122{width:6.732000px;}
._e_c00122{width:8.385000px;}
._8_c00122{width:10.350000px;}
._1_c00122{width:11.562000px;}
._12_c00122{width:13.590000px;}
._c_c00122{width:15.318000px;}
._17_c00122{width:17.064000px;}
._14_c00122{width:18.555000px;}
._3_c00122{width:20.286000px;}
._1e_c00122{width:21.582000px;}
._1c_c00122{width:22.659000px;}
._21_c00122{width:24.864000px;}
._24_c00122{width:29.532000px;}
._18_c00122{width:37.710000px;}
._1b_c00122{width:39.084000px;}
._23_c00122{width:95.634000px;}
._11_c00122{width:102.879000px;}
._1a_c00122{width:106.647000px;}
._1d_c00122{width:134.019000px;}
._15_c00122{width:196.626000px;}
._b_c00122{width:327.750000px;}
._22_c00122{width:551.172000px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(128,128,128);}
.fc0_c00122{color:rgb(0,0,0);}
.fs2_c00122{font-size:48.000000px;}
.fs1_c00122{font-size:66.000000px;}
.fs0_c00122{font-size:69.000000px;}
.y0_c00122{bottom:0.000000px;}
.y1e_c00122{bottom:3.105000px;}
.y1d_c00122{bottom:7.228371px;}
.y1c_c00122{bottom:66.165000px;}
.y1b_c00122{bottom:89.565000px;}
.y1a_c00122{bottom:115.215000px;}
.y19_c00122{bottom:140.415000px;}
.y18_c00122{bottom:164.115000px;}
.y17_c00122{bottom:189.465000px;}
.y16_c00122{bottom:214.665000px;}
.y15_c00122{bottom:240.765000px;}
.y14_c00122{bottom:264.915000px;}
.y13_c00122{bottom:313.515000px;}
.y12_c00122{bottom:365.865000px;}
.y11_c00122{bottom:389.865000px;}
.y10_c00122{bottom:414.165000px;}
.yf_c00122{bottom:439.515000px;}
.ye_c00122{bottom:463.365000px;}
.yd_c00122{bottom:488.715000px;}
.yc_c00122{bottom:512.415000px;}
.yb_c00122{bottom:536.715000px;}
.ya_c00122{bottom:561.315000px;}
.y9_c00122{bottom:586.215000px;}
.y8_c00122{bottom:610.965000px;}
.y7_c00122{bottom:635.265000px;}
.y6_c00122{bottom:660.615000px;}
.y5_c00122{bottom:685.515000px;}
.y4_c00122{bottom:710.415000px;}
.y3_c00122{bottom:735.765000px;}
.y2_c00122{bottom:760.065000px;}
.y1_c00122{bottom:784.665000px;}
.h6_c00122{height:13.200074px;}
.h7_c00122{height:43.804688px;}
.h5_c00122{height:67.686035px;}
.h4_c00122{height:67.719727px;}
.h3_c00122{height:80.758301px;}
.h2_c00122{height:87.361816px;}
.h1_c00122{height:831.000000px;}
.h0_c00122{height:831.075000px;}
.w1_c00122{width:104.875500px;}
.w0_c00122{width:557.250000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:27.900000px;}
.x3_c00122{left:30.600000px;}
.x4_c00122{left:31.800000px;}
.x5_c00122{left:33.150000px;}
.x8_c00122{left:34.800000px;}
.x9_c00122{left:53.400000px;}
.x7_c00122{left:57.750000px;}
.x6_c00122{left:74.550000px;}
.x1_c00122{left:158.550000px;}
.xb_c00122{left:230.439240px;}
.xa_c00122{left:297.750000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls1_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:2.666667pt;}
.ls2_c00122{letter-spacing:5.333333pt;}
.ws1_c00122{word-spacing:-44.464000pt;}
.ws0_c00122{word-spacing:-14.781333pt;}
.ws3_c00122{word-spacing:0.000000pt;}
.ws2_c00122{word-spacing:0.613333pt;}
._19_c00122{margin-left:-21.773333pt;}
._0_c00122{margin-left:-20.362667pt;}
._1f_c00122{margin-left:-15.458667pt;}
._7_c00122{margin-left:-14.290667pt;}
._13_c00122{margin-left:-11.440000pt;}
._20_c00122{margin-left:-10.058667pt;}
._d_c00122{margin-left:-7.176000pt;}
._f_c00122{margin-left:-5.365333pt;}
._5_c00122{margin-left:-3.434667pt;}
._6_c00122{margin-left:-2.330667pt;}
._4_c00122{margin-left:-1.165333pt;}
._10_c00122{width:1.226667pt;}
._9_c00122{width:2.146667pt;}
._2_c00122{width:3.741333pt;}
._a_c00122{width:4.874667pt;}
._16_c00122{width:5.984000pt;}
._e_c00122{width:7.453333pt;}
._8_c00122{width:9.200000pt;}
._1_c00122{width:10.277333pt;}
._12_c00122{width:12.080000pt;}
._c_c00122{width:13.616000pt;}
._17_c00122{width:15.168000pt;}
._14_c00122{width:16.493333pt;}
._3_c00122{width:18.032000pt;}
._1e_c00122{width:19.184000pt;}
._1c_c00122{width:20.141333pt;}
._21_c00122{width:22.101333pt;}
._24_c00122{width:26.250667pt;}
._18_c00122{width:33.520000pt;}
._1b_c00122{width:34.741333pt;}
._23_c00122{width:85.008000pt;}
._11_c00122{width:91.448000pt;}
._1a_c00122{width:94.797333pt;}
._1d_c00122{width:119.128000pt;}
._15_c00122{width:174.778667pt;}
._b_c00122{width:291.333333pt;}
._22_c00122{width:489.930667pt;}
.fs2_c00122{font-size:42.666667pt;}
.fs1_c00122{font-size:58.666667pt;}
.fs0_c00122{font-size:61.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y1e_c00122{bottom:2.760000pt;}
.y1d_c00122{bottom:6.425219pt;}
.y1c_c00122{bottom:58.813333pt;}
.y1b_c00122{bottom:79.613333pt;}
.y1a_c00122{bottom:102.413333pt;}
.y19_c00122{bottom:124.813333pt;}
.y18_c00122{bottom:145.880000pt;}
.y17_c00122{bottom:168.413333pt;}
.y16_c00122{bottom:190.813333pt;}
.y15_c00122{bottom:214.013333pt;}
.y14_c00122{bottom:235.480000pt;}
.y13_c00122{bottom:278.680000pt;}
.y12_c00122{bottom:325.213333pt;}
.y11_c00122{bottom:346.546667pt;}
.y10_c00122{bottom:368.146667pt;}
.yf_c00122{bottom:390.680000pt;}
.ye_c00122{bottom:411.880000pt;}
.yd_c00122{bottom:434.413333pt;}
.yc_c00122{bottom:455.480000pt;}
.yb_c00122{bottom:477.080000pt;}
.ya_c00122{bottom:498.946667pt;}
.y9_c00122{bottom:521.080000pt;}
.y8_c00122{bottom:543.080000pt;}
.y7_c00122{bottom:564.680000pt;}
.y6_c00122{bottom:587.213333pt;}
.y5_c00122{bottom:609.346667pt;}
.y4_c00122{bottom:631.480000pt;}
.y3_c00122{bottom:654.013333pt;}
.y2_c00122{bottom:675.613333pt;}
.y1_c00122{bottom:697.480000pt;}
.h6_c00122{height:11.733399pt;}
.h7_c00122{height:38.937500pt;}
.h5_c00122{height:60.165365pt;}
.h4_c00122{height:60.195312pt;}
.h3_c00122{height:71.785156pt;}
.h2_c00122{height:77.654948pt;}
.h1_c00122{height:738.666667pt;}
.h0_c00122{height:738.733333pt;}
.w1_c00122{width:93.222667pt;}
.w0_c00122{width:495.333333pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:24.800000pt;}
.x3_c00122{left:27.200000pt;}
.x4_c00122{left:28.266667pt;}
.x5_c00122{left:29.466667pt;}
.x8_c00122{left:30.933333pt;}
.x9_c00122{left:47.466667pt;}
.x7_c00122{left:51.333333pt;}
.x6_c00122{left:66.266667pt;}
.x1_c00122{left:140.933333pt;}
.xb_c00122{left:204.834880pt;}
.xa_c00122{left:264.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_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_5cc50b48d2b4734216c05b6b.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.568848;font-style:normal;font-weight:normal;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_7116efeb12807ecffe48c2ca.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_6d39528a03d02566d99f584c.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.568848;font-style:normal;font-weight:normal;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_a3c01d4724d304fb17f0f4d5.woff2')format("woff");}.ff4_c00123{font-family:ff4_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:ff5_c00123;src:url('chunks/assets/font_ed20a716f5280a9f58a46d39.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00123;src:url('chunks/assets/font_4f1e1c4a6afa519ef273f7ae.woff2')format("woff");}.ff6_c00123{font-family:ff6_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:ff7_c00123;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00123{font-family:ff7_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);}
.v1_c00123{vertical-align:-101.400000px;}
.v0_c00123{vertical-align:0.000000px;}
.ls2_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:3.000000px;}
.ls1_c00123{letter-spacing:4.800000px;}
.ls3_c00123{letter-spacing:6.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:-50.022000px;}
.ws1_c00123{word-spacing:-39.825000px;}
.ws2_c00123{word-spacing:-19.629000px;}
.ws0_c00123{word-spacing:-16.629000px;}
.ws4_c00123{word-spacing:-13.737000px;}
.ws5_c00123{word-spacing:0.000000px;}
._1_c00123{margin-left:-40.014000px;}
._3_c00123{margin-left:-22.581000px;}
._2_c00123{margin-left:-20.007000px;}
._25_c00123{margin-left:-17.388000px;}
._14_c00123{margin-left:-15.249000px;}
._1c_c00123{margin-left:-13.317000px;}
._0_c00123{margin-left:-11.700000px;}
._12_c00123{margin-left:-9.384000px;}
._13_c00123{margin-left:-7.452000px;}
._11_c00123{margin-left:-6.141000px;}
._1a_c00123{margin-left:-4.692000px;}
._10_c00123{margin-left:-3.381000px;}
._5_c00123{margin-left:-1.932000px;}
._7_c00123{width:1.104000px;}
._9_c00123{width:2.484000px;}
._6_c00123{width:4.071000px;}
._8_c00123{width:5.451000px;}
._f_c00123{width:6.693000px;}
._c_c00123{width:8.280000px;}
._e_c00123{width:10.074000px;}
._d_c00123{width:11.385000px;}
._18_c00123{width:12.627000px;}
._16_c00123{width:13.662000px;}
._1f_c00123{width:14.835000px;}
._a_c00123{width:15.870000px;}
._b_c00123{width:17.046000px;}
._24_c00123{width:21.324000px;}
._29_c00123{width:22.353000px;}
._1e_c00123{width:23.454000px;}
._21_c00123{width:24.495000px;}
._1b_c00123{width:26.739000px;}
._23_c00123{width:28.467000px;}
._20_c00123{width:32.706000px;}
._1d_c00123{width:35.535000px;}
._27_c00123{width:41.538000px;}
._19_c00123{width:43.875000px;}
._17_c00123{width:60.651000px;}
._22_c00123{width:63.066000px;}
._15_c00123{width:89.286000px;}
._28_c00123{width:131.880000px;}
._26_c00123{width:210.519000px;}
._4_c00123{width:314.976000px;}
._2a_c00123{width:889.236000px;}
.fc2_c00123{color:transparent;}
.fc1_c00123{color:rgb(128,128,128);}
.fc0_c00123{color:rgb(0,0,0);}
.fs6_c00123{font-size:48.000000px;}
.fs5_c00123{font-size:57.000000px;}
.fs4_c00123{font-size:60.000000px;}
.fs3_c00123{font-size:66.000000px;}
.fs1_c00123{font-size:69.000000px;}
.fs2_c00123{font-size:75.000000px;}
.fs0_c00123{font-size:117.000000px;}
.y0_c00123{bottom:0.000000px;}
.y21_c00123{bottom:3.105000px;}
.y20_c00123{bottom:7.228369px;}
.y1c_c00123{bottom:117.120000px;}
.y1f_c00123{bottom:130.320000px;}
.y1b_c00123{bottom:141.720000px;}
.y1a_c00123{bottom:167.370000px;}
.y1e_c00123{bottom:182.820000px;}
.y19_c00123{bottom:192.420000px;}
.y1d_c00123{bottom:199.470000px;}
.y18_c00123{bottom:216.720000px;}
.y17_c00123{bottom:241.620000px;}
.y16_c00123{bottom:267.870000px;}
.y15_c00123{bottom:292.920000px;}
.y14_c00123{bottom:317.970000px;}
.y13_c00123{bottom:342.570000px;}
.y12_c00123{bottom:367.770000px;}
.y11_c00123{bottom:391.770000px;}
.y10_c00123{bottom:417.120000px;}
.yf_c00123{bottom:442.020000px;}
.ye_c00123{bottom:467.070000px;}
.yd_c00123{bottom:491.970000px;}
.yc_c00123{bottom:516.420000px;}
.yb_c00123{bottom:541.920000px;}
.ya_c00123{bottom:565.620000px;}
.y9_c00123{bottom:591.570000px;}
.y8_c00123{bottom:616.170000px;}
.y7_c00123{bottom:640.920000px;}
.y6_c00123{bottom:666.120000px;}
.y5_c00123{bottom:690.870000px;}
.y4_c00123{bottom:716.070000px;}
.y3_c00123{bottom:741.120000px;}
.y2_c00123{bottom:765.420000px;}
.y1_c00123{bottom:791.070000px;}
.h5_c00123{height:13.200073px;}
.h6_c00123{height:43.804688px;}
.h4_c00123{height:72.168457px;}
.h3_c00123{height:87.361816px;}
.h2_c00123{height:148.135254px;}
.h0_c00123{height:842.100000px;}
.h1_c00123{height:842.250000px;}
.w2_c00123{width:104.875500px;}
.w0_c00123{width:558.600000px;}
.w1_c00123{width:558.750000px;}
.x0_c00123{left:0.000000px;}
.xe_c00123{left:25.050000px;}
.xb_c00123{left:27.000000px;}
.xa_c00123{left:28.650000px;}
.x7_c00123{left:31.500000px;}
.x5_c00123{left:32.700000px;}
.xd_c00123{left:42.600000px;}
.x3_c00123{left:48.900000px;}
.xc_c00123{left:91.500000px;}
.x9_c00123{left:93.450000px;}
.x8_c00123{left:94.500000px;}
.x2_c00123{left:97.800000px;}
.x1_c00123{left:112.950000px;}
.x4_c00123{left:144.450000px;}
.x6_c00123{left:178.200000px;}
.xf_c00123{left:231.114258px;}
@media print{
.v1_c00123{vertical-align:-90.133333pt;}
.v0_c00123{vertical-align:0.000000pt;}
.ls2_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:2.666667pt;}
.ls1_c00123{letter-spacing:4.266667pt;}
.ls3_c00123{letter-spacing:5.333333pt;}
.ws3_c00123{word-spacing:-44.464000pt;}
.ws1_c00123{word-spacing:-35.400000pt;}
.ws2_c00123{word-spacing:-17.448000pt;}
.ws0_c00123{word-spacing:-14.781333pt;}
.ws4_c00123{word-spacing:-12.210667pt;}
.ws5_c00123{word-spacing:0.000000pt;}
._1_c00123{margin-left:-35.568000pt;}
._3_c00123{margin-left:-20.072000pt;}
._2_c00123{margin-left:-17.784000pt;}
._25_c00123{margin-left:-15.456000pt;}
._14_c00123{margin-left:-13.554667pt;}
._1c_c00123{margin-left:-11.837333pt;}
._0_c00123{margin-left:-10.400000pt;}
._12_c00123{margin-left:-8.341333pt;}
._13_c00123{margin-left:-6.624000pt;}
._11_c00123{margin-left:-5.458667pt;}
._1a_c00123{margin-left:-4.170667pt;}
._10_c00123{margin-left:-3.005333pt;}
._5_c00123{margin-left:-1.717333pt;}
._7_c00123{width:0.981333pt;}
._9_c00123{width:2.208000pt;}
._6_c00123{width:3.618667pt;}
._8_c00123{width:4.845333pt;}
._f_c00123{width:5.949333pt;}
._c_c00123{width:7.360000pt;}
._e_c00123{width:8.954667pt;}
._d_c00123{width:10.120000pt;}
._18_c00123{width:11.224000pt;}
._16_c00123{width:12.144000pt;}
._1f_c00123{width:13.186667pt;}
._a_c00123{width:14.106667pt;}
._b_c00123{width:15.152000pt;}
._24_c00123{width:18.954667pt;}
._29_c00123{width:19.869333pt;}
._1e_c00123{width:20.848000pt;}
._21_c00123{width:21.773333pt;}
._1b_c00123{width:23.768000pt;}
._23_c00123{width:25.304000pt;}
._20_c00123{width:29.072000pt;}
._1d_c00123{width:31.586667pt;}
._27_c00123{width:36.922667pt;}
._19_c00123{width:39.000000pt;}
._17_c00123{width:53.912000pt;}
._22_c00123{width:56.058667pt;}
._15_c00123{width:79.365333pt;}
._28_c00123{width:117.226667pt;}
._26_c00123{width:187.128000pt;}
._4_c00123{width:279.978667pt;}
._2a_c00123{width:790.432000pt;}
.fs6_c00123{font-size:42.666667pt;}
.fs5_c00123{font-size:50.666667pt;}
.fs4_c00123{font-size:53.333333pt;}
.fs3_c00123{font-size:58.666667pt;}
.fs1_c00123{font-size:61.333333pt;}
.fs2_c00123{font-size:66.666667pt;}
.fs0_c00123{font-size:104.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y21_c00123{bottom:2.760000pt;}
.y20_c00123{bottom:6.425217pt;}
.y1c_c00123{bottom:104.106667pt;}
.y1f_c00123{bottom:115.840000pt;}
.y1b_c00123{bottom:125.973333pt;}
.y1a_c00123{bottom:148.773333pt;}
.y1e_c00123{bottom:162.506667pt;}
.y19_c00123{bottom:171.040000pt;}
.y1d_c00123{bottom:177.306667pt;}
.y18_c00123{bottom:192.640000pt;}
.y17_c00123{bottom:214.773333pt;}
.y16_c00123{bottom:238.106667pt;}
.y15_c00123{bottom:260.373333pt;}
.y14_c00123{bottom:282.640000pt;}
.y13_c00123{bottom:304.506667pt;}
.y12_c00123{bottom:326.906667pt;}
.y11_c00123{bottom:348.240000pt;}
.y10_c00123{bottom:370.773333pt;}
.yf_c00123{bottom:392.906667pt;}
.ye_c00123{bottom:415.173333pt;}
.yd_c00123{bottom:437.306667pt;}
.yc_c00123{bottom:459.040000pt;}
.yb_c00123{bottom:481.706667pt;}
.ya_c00123{bottom:502.773333pt;}
.y9_c00123{bottom:525.840000pt;}
.y8_c00123{bottom:547.706667pt;}
.y7_c00123{bottom:569.706667pt;}
.y6_c00123{bottom:592.106667pt;}
.y5_c00123{bottom:614.106667pt;}
.y4_c00123{bottom:636.506667pt;}
.y3_c00123{bottom:658.773333pt;}
.y2_c00123{bottom:680.373333pt;}
.y1_c00123{bottom:703.173333pt;}
.h5_c00123{height:11.733399pt;}
.h6_c00123{height:38.937500pt;}
.h4_c00123{height:64.149740pt;}
.h3_c00123{height:77.654948pt;}
.h2_c00123{height:131.675781pt;}
.h0_c00123{height:748.533333pt;}
.h1_c00123{height:748.666667pt;}
.w2_c00123{width:93.222667pt;}
.w0_c00123{width:496.533333pt;}
.w1_c00123{width:496.666667pt;}
.x0_c00123{left:0.000000pt;}
.xe_c00123{left:22.266667pt;}
.xb_c00123{left:24.000000pt;}
.xa_c00123{left:25.466667pt;}
.x7_c00123{left:28.000000pt;}
.x5_c00123{left:29.066667pt;}
.xd_c00123{left:37.866667pt;}
.x3_c00123{left:43.466667pt;}
.xc_c00123{left:81.333333pt;}
.x9_c00123{left:83.066667pt;}
.x8_c00123{left:84.000000pt;}
.x2_c00123{left:86.933333pt;}
.x1_c00123{left:100.400000pt;}
.x4_c00123{left:128.400000pt;}
.x6_c00123{left:158.400000pt;}
.xf_c00123{left:205.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_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_191dd44f4e9c193231503168.woff2')format("woff");}.ff1_c00124{font-family:ff1_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:ff2_c00124;src:url('chunks/assets/font_72863ef1a45c5bfaf43f773a.woff2')format("woff");}.ff2_c00124{font-family:ff2_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:ff3_c00124;src:url('chunks/assets/font_8f7c6842ef613d7b5b2aeb2e.woff2')format("woff");}.ff3_c00124{font-family:ff3_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:ff4_c00124;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff4_c00124{font-family:ff4_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:ff5_c00124;src:url('chunks/assets/font_a828150b219cf90aa367627d.woff2')format("woff");}.ff5_c00124{font-family:ff5_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:ff6_c00124;src:url('chunks/assets/font_95fd195a0978a914559aa984.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;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_c00124;src:url('chunks/assets/font_947b5abf6ad6897909974952.woff2')format("woff");}.ff7_c00124{font-family:ff7_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:ff8_c00124;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c00124{font-family:ff8_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:ff9_c00124;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00124{font-family:ff9_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;}
.ls6_c00124{letter-spacing:0.000000px;}
.ls2_c00124{letter-spacing:1.302000px;}
.ls4_c00124{letter-spacing:3.000000px;}
.ls1_c00124{letter-spacing:7.800000px;}
.ls0_c00124{letter-spacing:15.000000px;}
.ls5_c00124{letter-spacing:21.858000px;}
.ls3_c00124{letter-spacing:23.877000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00124{word-spacing:-33.000000px;}
.ws3_c00124{word-spacing:-19.629000px;}
.ws2_c00124{word-spacing:-18.876000px;}
.ws0_c00124{word-spacing:-16.629000px;}
.ws4_c00124{word-spacing:0.000000px;}
._28_c00124{margin-left:-43.782000px;}
._24_c00124{margin-left:-26.082000px;}
._2f_c00124{margin-left:-23.529000px;}
._29_c00124{margin-left:-20.268000px;}
._1d_c00124{margin-left:-17.733000px;}
._19_c00124{margin-left:-16.629000px;}
._11_c00124{margin-left:-15.561000px;}
._27_c00124{margin-left:-14.352000px;}
._2a_c00124{margin-left:-11.799000px;}
._10_c00124{margin-left:-10.281000px;}
._8_c00124{margin-left:-7.671000px;}
._25_c00124{margin-left:-6.486000px;}
._d_c00124{margin-left:-5.157000px;}
._2_c00124{margin-left:-3.795000px;}
._1_c00124{margin-left:-1.863000px;}
._0_c00124{width:1.242000px;}
._7_c00124{width:2.760000px;}
._9_c00124{width:4.071000px;}
._6_c00124{width:5.112000px;}
._5_c00124{width:7.089000px;}
._e_c00124{width:8.154000px;}
._b_c00124{width:9.477000px;}
._a_c00124{width:11.034000px;}
._f_c00124{width:12.189000px;}
._12_c00124{width:14.697000px;}
._13_c00124{width:15.708000px;}
._4_c00124{width:16.734000px;}
._c_c00124{width:18.387000px;}
._21_c00124{width:19.839000px;}
._16_c00124{width:21.015000px;}
._14_c00124{width:23.328000px;}
._18_c00124{width:24.933000px;}
._22_c00124{width:27.252000px;}
._26_c00124{width:32.016000px;}
._2d_c00124{width:38.901000px;}
._23_c00124{width:42.954000px;}
._1a_c00124{width:56.856000px;}
._30_c00124{width:104.919000px;}
._17_c00124{width:140.127000px;}
._1b_c00124{width:156.987000px;}
._2e_c00124{width:170.814000px;}
._2c_c00124{width:191.418000px;}
._15_c00124{width:206.034000px;}
._2b_c00124{width:216.522000px;}
._1e_c00124{width:277.656000px;}
._1c_c00124{width:314.088000px;}
._20_c00124{width:367.770000px;}
._1f_c00124{width:465.267000px;}
._3_c00124{width:506.145000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(128,128,128);}
.fc0_c00124{color:rgb(0,0,0);}
.fs3_c00124{font-size:42.000000px;}
.fs4_c00124{font-size:48.000000px;}
.fs1_c00124{font-size:51.000000px;}
.fs2_c00124{font-size:66.000000px;}
.fs0_c00124{font-size:69.000000px;}
.y0_c00124{bottom:0.000000px;}
.y1f_c00124{bottom:3.105000px;}
.y1e_c00124{bottom:7.228363px;}
.y1d_c00124{bottom:93.750000px;}
.y1c_c00124{bottom:118.350000px;}
.y1b_c00124{bottom:143.400000px;}
.y1a_c00124{bottom:168.750000px;}
.y19_c00124{bottom:192.600000px;}
.y18_c00124{bottom:217.950000px;}
.y17_c00124{bottom:274.650000px;}
.y16_c00124{bottom:299.250000px;}
.y12_c00124{bottom:353.700000px;}
.y11_c00124{bottom:415.350000px;}
.y10_c00124{bottom:439.800000px;}
.y15_c00124{bottom:453.300000px;}
.yf_c00124{bottom:458.550000px;}
.ye_c00124{bottom:464.700000px;}
.yd_c00124{bottom:489.600000px;}
.yc_c00124{bottom:513.600000px;}
.yb_c00124{bottom:537.750000px;}
.y14_c00124{bottom:557.250000px;}
.ya_c00124{bottom:562.050000px;}
.y13_c00124{bottom:568.050000px;}
.y9_c00124{bottom:587.250000px;}
.y8_c00124{bottom:611.850000px;}
.y7_c00124{bottom:636.300000px;}
.y6_c00124{bottom:661.500000px;}
.y5_c00124{bottom:686.700000px;}
.y4_c00124{bottom:711.000000px;}
.y3_c00124{bottom:737.100000px;}
.y2_c00124{bottom:761.400000px;}
.y1_c00124{bottom:784.650000px;}
.h3_c00124{height:13.200074px;}
.h4_c00124{height:43.804688px;}
.h2_c00124{height:80.758301px;}
.h1_c00124{height:87.361816px;}
.h0_c00124{height:823.500000px;}
.w2_c00124{width:104.875500px;}
.w0_c00124{width:551.850000px;}
.w1_c00124{width:552.000000px;}
.x0_c00124{left:0.000000px;}
.xb_c00124{left:16.200000px;}
.x5_c00124{left:18.450000px;}
.x3_c00124{left:19.500000px;}
.x4_c00124{left:21.300000px;}
.xa_c00124{left:41.100000px;}
.xc_c00124{left:42.150000px;}
.x2_c00124{left:44.250000px;}
.xd_c00124{left:46.200000px;}
.x6_c00124{left:61.350000px;}
.x1_c00124{left:173.850000px;}
.xf_c00124{left:227.739258px;}
.xe_c00124{left:430.050000px;}
.x9_c00124{left:470.100000px;}
.x8_c00124{left:471.450000px;}
.x7_c00124{left:487.350000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls6_c00124{letter-spacing:0.000000pt;}
.ls2_c00124{letter-spacing:1.157333pt;}
.ls4_c00124{letter-spacing:2.666667pt;}
.ls1_c00124{letter-spacing:6.933333pt;}
.ls0_c00124{letter-spacing:13.333333pt;}
.ls5_c00124{letter-spacing:19.429333pt;}
.ls3_c00124{letter-spacing:21.224000pt;}
.ws1_c00124{word-spacing:-29.333333pt;}
.ws3_c00124{word-spacing:-17.448000pt;}
.ws2_c00124{word-spacing:-16.778667pt;}
.ws0_c00124{word-spacing:-14.781333pt;}
.ws4_c00124{word-spacing:0.000000pt;}
._28_c00124{margin-left:-38.917333pt;}
._24_c00124{margin-left:-23.184000pt;}
._2f_c00124{margin-left:-20.914667pt;}
._29_c00124{margin-left:-18.016000pt;}
._1d_c00124{margin-left:-15.762667pt;}
._19_c00124{margin-left:-14.781333pt;}
._11_c00124{margin-left:-13.832000pt;}
._27_c00124{margin-left:-12.757333pt;}
._2a_c00124{margin-left:-10.488000pt;}
._10_c00124{margin-left:-9.138667pt;}
._8_c00124{margin-left:-6.818667pt;}
._25_c00124{margin-left:-5.765333pt;}
._d_c00124{margin-left:-4.584000pt;}
._2_c00124{margin-left:-3.373333pt;}
._1_c00124{margin-left:-1.656000pt;}
._0_c00124{width:1.104000pt;}
._7_c00124{width:2.453333pt;}
._9_c00124{width:3.618667pt;}
._6_c00124{width:4.544000pt;}
._5_c00124{width:6.301333pt;}
._e_c00124{width:7.248000pt;}
._b_c00124{width:8.424000pt;}
._a_c00124{width:9.808000pt;}
._f_c00124{width:10.834667pt;}
._12_c00124{width:13.064000pt;}
._13_c00124{width:13.962667pt;}
._4_c00124{width:14.874667pt;}
._c_c00124{width:16.344000pt;}
._21_c00124{width:17.634667pt;}
._16_c00124{width:18.680000pt;}
._14_c00124{width:20.736000pt;}
._18_c00124{width:22.162667pt;}
._22_c00124{width:24.224000pt;}
._26_c00124{width:28.458667pt;}
._2d_c00124{width:34.578667pt;}
._23_c00124{width:38.181333pt;}
._1a_c00124{width:50.538667pt;}
._30_c00124{width:93.261333pt;}
._17_c00124{width:124.557333pt;}
._1b_c00124{width:139.544000pt;}
._2e_c00124{width:151.834667pt;}
._2c_c00124{width:170.149333pt;}
._15_c00124{width:183.141333pt;}
._2b_c00124{width:192.464000pt;}
._1e_c00124{width:246.805333pt;}
._1c_c00124{width:279.189333pt;}
._20_c00124{width:326.906667pt;}
._1f_c00124{width:413.570667pt;}
._3_c00124{width:449.906667pt;}
.fs3_c00124{font-size:37.333333pt;}
.fs4_c00124{font-size:42.666667pt;}
.fs1_c00124{font-size:45.333333pt;}
.fs2_c00124{font-size:58.666667pt;}
.fs0_c00124{font-size:61.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y1f_c00124{bottom:2.760000pt;}
.y1e_c00124{bottom:6.425212pt;}
.y1d_c00124{bottom:83.333333pt;}
.y1c_c00124{bottom:105.200000pt;}
.y1b_c00124{bottom:127.466667pt;}
.y1a_c00124{bottom:150.000000pt;}
.y19_c00124{bottom:171.200000pt;}
.y18_c00124{bottom:193.733333pt;}
.y17_c00124{bottom:244.133333pt;}
.y16_c00124{bottom:266.000000pt;}
.y12_c00124{bottom:314.400000pt;}
.y11_c00124{bottom:369.200000pt;}
.y10_c00124{bottom:390.933333pt;}
.y15_c00124{bottom:402.933333pt;}
.yf_c00124{bottom:407.600000pt;}
.ye_c00124{bottom:413.066667pt;}
.yd_c00124{bottom:435.200000pt;}
.yc_c00124{bottom:456.533333pt;}
.yb_c00124{bottom:478.000000pt;}
.y14_c00124{bottom:495.333333pt;}
.ya_c00124{bottom:499.600000pt;}
.y13_c00124{bottom:504.933333pt;}
.y9_c00124{bottom:522.000000pt;}
.y8_c00124{bottom:543.866667pt;}
.y7_c00124{bottom:565.600000pt;}
.y6_c00124{bottom:588.000000pt;}
.y5_c00124{bottom:610.400000pt;}
.y4_c00124{bottom:632.000000pt;}
.y3_c00124{bottom:655.200000pt;}
.y2_c00124{bottom:676.800000pt;}
.y1_c00124{bottom:697.466667pt;}
.h3_c00124{height:11.733399pt;}
.h4_c00124{height:38.937500pt;}
.h2_c00124{height:71.785156pt;}
.h1_c00124{height:77.654948pt;}
.h0_c00124{height:732.000000pt;}
.w2_c00124{width:93.222667pt;}
.w0_c00124{width:490.533333pt;}
.w1_c00124{width:490.666667pt;}
.x0_c00124{left:0.000000pt;}
.xb_c00124{left:14.400000pt;}
.x5_c00124{left:16.400000pt;}
.x3_c00124{left:17.333333pt;}
.x4_c00124{left:18.933333pt;}
.xa_c00124{left:36.533333pt;}
.xc_c00124{left:37.466667pt;}
.x2_c00124{left:39.333333pt;}
.xd_c00124{left:41.066667pt;}
.x6_c00124{left:54.533333pt;}
.x1_c00124{left:154.533333pt;}
.xf_c00124{left:202.434896pt;}
.xe_c00124{left:382.266667pt;}
.x9_c00124{left:417.866667pt;}
.x8_c00124{left:419.066667pt;}
.x7_c00124{left:433.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_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_01f13208b551878b428fda37.woff2')format("woff");}.ff1_c00125{font-family:ff1_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:ff2_c00125;src:url('chunks/assets/font_81f6abad4a204cbb6273f299.woff2')format("woff");}.ff2_c00125{font-family:ff2_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:ff3_c00125;src:url('chunks/assets/font_2892f97bce3cfee47e9224c0.woff2')format("woff");}.ff3_c00125{font-family:ff3_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:ff4_c00125;src:url('chunks/assets/font_5afd11a5a0a43073d17e9e37.woff2')format("woff");}.ff4_c00125{font-family:ff4_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:ff5_c00125;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;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_c00125;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00125{font-family:ff6_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;}
.ls5_c00125{letter-spacing:0.000000px;}
.ls4_c00125{letter-spacing:2.400000px;}
.ls0_c00125{letter-spacing:3.000000px;}
.ls3_c00125{letter-spacing:3.600000px;}
.ls6_c00125{letter-spacing:6.000000px;}
.ls2_c00125{letter-spacing:15.771000px;}
.ls7_c00125{letter-spacing:21.000000px;}
.ls1_c00125{letter-spacing:285.771000px;}
.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;}
}
.ws3_c00125{word-spacing:-56.235000px;}
.ws5_c00125{word-spacing:-50.022000px;}
.ws4_c00125{word-spacing:-44.988000px;}
.ws8_c00125{word-spacing:-37.629000px;}
.wsb_c00125{word-spacing:-19.629000px;}
.ws9_c00125{word-spacing:-18.798000px;}
.ws0_c00125{word-spacing:-16.629000px;}
.ws1_c00125{word-spacing:-1.227000px;}
.wsa_c00125{word-spacing:-1.104000px;}
.ws2_c00125{word-spacing:-0.552000px;}
.wsc_c00125{word-spacing:0.000000px;}
.ws6_c00125{word-spacing:1.311000px;}
.ws7_c00125{word-spacing:8.901000px;}
._2b_c00125{margin-left:-33.465000px;}
._22_c00125{margin-left:-30.754200px;}
._28_c00125{margin-left:-28.408200px;}
._24_c00125{margin-left:-21.475200px;}
._21_c00125{margin-left:-16.441800px;}
._19_c00125{margin-left:-14.916000px;}
._1a_c00125{margin-left:-13.230000px;}
._18_c00125{margin-left:-10.710000px;}
._d_c00125{margin-left:-8.625000px;}
._c_c00125{margin-left:-7.176000px;}
._13_c00125{margin-left:-5.175000px;}
._16_c00125{margin-left:-4.090200px;}
._4_c00125{margin-left:-2.760000px;}
._5_c00125{margin-left:-1.380000px;}
._2_c00125{width:1.173000px;}
._6_c00125{width:2.622000px;}
._1_c00125{width:3.795000px;}
._8_c00125{width:5.106000px;}
._f_c00125{width:6.624000px;}
._a_c00125{width:7.872000px;}
._7_c00125{width:9.177000px;}
._10_c00125{width:11.295000px;}
._11_c00125{width:12.372000px;}
._15_c00125{width:13.461000px;}
._0_c00125{width:15.180000px;}
._9_c00125{width:17.181000px;}
._b_c00125{width:18.294000px;}
._1e_c00125{width:19.491000px;}
._1b_c00125{width:21.234000px;}
._12_c00125{width:23.427000px;}
._1c_c00125{width:25.047000px;}
._1f_c00125{width:26.613000px;}
._20_c00125{width:30.999000px;}
._2a_c00125{width:36.163200px;}
._26_c00125{width:40.179000px;}
._29_c00125{width:43.056000px;}
._2c_c00125{width:82.860000px;}
._27_c00125{width:99.258000px;}
._14_c00125{width:108.399000px;}
._1d_c00125{width:121.836000px;}
._23_c00125{width:129.168000px;}
._17_c00125{width:141.036000px;}
._e_c00125{width:188.991000px;}
._25_c00125{width:212.031000px;}
._3_c00125{width:342.723000px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs4_c00125{font-size:48.000000px;}
.fs1_c00125{font-size:55.200000px;}
.fs2_c00125{font-size:66.000000px;}
.fs0_c00125{font-size:69.000000px;}
.fs3_c00125{font-size:78.000000px;}
.y0_c00125{bottom:0.000000px;}
.y1e_c00125{bottom:3.105000px;}
.y1d_c00125{bottom:7.228369px;}
.y1c_c00125{bottom:68.070000px;}
.y1b_c00125{bottom:92.370000px;}
.y1a_c00125{bottom:118.170000px;}
.y19_c00125{bottom:143.070000px;}
.y18_c00125{bottom:168.420000px;}
.y17_c00125{bottom:192.720000px;}
.y16_c00125{bottom:216.270000px;}
.y15_c00125{bottom:242.970000px;}
.y14_c00125{bottom:267.570000px;}
.y13_c00125{bottom:293.220000px;}
.y12_c00125{bottom:318.270000px;}
.y11_c00125{bottom:342.270000px;}
.y10_c00125{bottom:367.770000px;}
.yf_c00125{bottom:392.220000px;}
.ye_c00125{bottom:417.120000px;}
.yd_c00125{bottom:442.170000px;}
.yc_c00125{bottom:492.120000px;}
.yb_c00125{bottom:542.070000px;}
.ya_c00125{bottom:566.670000px;}
.y9_c00125{bottom:590.970000px;}
.y8_c00125{bottom:616.320000px;}
.y7_c00125{bottom:641.520000px;}
.y6_c00125{bottom:666.120000px;}
.y5_c00125{bottom:691.170000px;}
.y4_c00125{bottom:715.770000px;}
.y3_c00125{bottom:740.820000px;}
.y2_c00125{bottom:764.670000px;}
.y1_c00125{bottom:791.070000px;}
.h5_c00125{height:13.200073px;}
.h6_c00125{height:43.804688px;}
.h2_c00125{height:80.758301px;}
.h3_c00125{height:87.361816px;}
.h4_c00125{height:91.291992px;}
.h1_c00125{height:832.500000px;}
.h0_c00125{height:832.650000px;}
.w2_c00125{width:104.875500px;}
.w0_c00125{width:551.850000px;}
.w1_c00125{width:552.000000px;}
.x0_c00125{left:0.000000px;}
.xc_c00125{left:25.950000px;}
.xe_c00125{left:31.050000px;}
.xb_c00125{left:33.000000px;}
.xd_c00125{left:49.050000px;}
.x4_c00125{left:51.600000px;}
.x7_c00125{left:58.950000px;}
.xf_c00125{left:61.800000px;}
.x6_c00125{left:75.300000px;}
.x10_c00125{left:95.850000px;}
.xa_c00125{left:97.200000px;}
.x2_c00125{left:99.450000px;}
.x5_c00125{left:100.800000px;}
.x1_c00125{left:114.300000px;}
.x9_c00125{left:121.800000px;}
.x8_c00125{left:131.550000px;}
.x3_c00125{left:136.350000px;}
.x12_c00125{left:227.739258px;}
.x11_c00125{left:474.750000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls5_c00125{letter-spacing:0.000000pt;}
.ls4_c00125{letter-spacing:2.133333pt;}
.ls0_c00125{letter-spacing:2.666667pt;}
.ls3_c00125{letter-spacing:3.200000pt;}
.ls6_c00125{letter-spacing:5.333333pt;}
.ls2_c00125{letter-spacing:14.018667pt;}
.ls7_c00125{letter-spacing:18.666667pt;}
.ls1_c00125{letter-spacing:254.018667pt;}
.ws3_c00125{word-spacing:-49.986667pt;}
.ws5_c00125{word-spacing:-44.464000pt;}
.ws4_c00125{word-spacing:-39.989333pt;}
.ws8_c00125{word-spacing:-33.448000pt;}
.wsb_c00125{word-spacing:-17.448000pt;}
.ws9_c00125{word-spacing:-16.709333pt;}
.ws0_c00125{word-spacing:-14.781333pt;}
.ws1_c00125{word-spacing:-1.090667pt;}
.wsa_c00125{word-spacing:-0.981333pt;}
.ws2_c00125{word-spacing:-0.490667pt;}
.wsc_c00125{word-spacing:0.000000pt;}
.ws6_c00125{word-spacing:1.165333pt;}
.ws7_c00125{word-spacing:7.912000pt;}
._2b_c00125{margin-left:-29.746667pt;}
._22_c00125{margin-left:-27.337067pt;}
._28_c00125{margin-left:-25.251733pt;}
._24_c00125{margin-left:-19.089067pt;}
._21_c00125{margin-left:-14.614933pt;}
._19_c00125{margin-left:-13.258667pt;}
._1a_c00125{margin-left:-11.760000pt;}
._18_c00125{margin-left:-9.520000pt;}
._d_c00125{margin-left:-7.666667pt;}
._c_c00125{margin-left:-6.378667pt;}
._13_c00125{margin-left:-4.600000pt;}
._16_c00125{margin-left:-3.635733pt;}
._4_c00125{margin-left:-2.453333pt;}
._5_c00125{margin-left:-1.226667pt;}
._2_c00125{width:1.042667pt;}
._6_c00125{width:2.330667pt;}
._1_c00125{width:3.373333pt;}
._8_c00125{width:4.538667pt;}
._f_c00125{width:5.888000pt;}
._a_c00125{width:6.997333pt;}
._7_c00125{width:8.157333pt;}
._10_c00125{width:10.040000pt;}
._11_c00125{width:10.997333pt;}
._15_c00125{width:11.965333pt;}
._0_c00125{width:13.493333pt;}
._9_c00125{width:15.272000pt;}
._b_c00125{width:16.261333pt;}
._1e_c00125{width:17.325333pt;}
._1b_c00125{width:18.874667pt;}
._12_c00125{width:20.824000pt;}
._1c_c00125{width:22.264000pt;}
._1f_c00125{width:23.656000pt;}
._20_c00125{width:27.554667pt;}
._2a_c00125{width:32.145067pt;}
._26_c00125{width:35.714667pt;}
._29_c00125{width:38.272000pt;}
._2c_c00125{width:73.653333pt;}
._27_c00125{width:88.229333pt;}
._14_c00125{width:96.354667pt;}
._1d_c00125{width:108.298667pt;}
._23_c00125{width:114.816000pt;}
._17_c00125{width:125.365333pt;}
._e_c00125{width:167.992000pt;}
._25_c00125{width:188.472000pt;}
._3_c00125{width:304.642667pt;}
.fs4_c00125{font-size:42.666667pt;}
.fs1_c00125{font-size:49.066667pt;}
.fs2_c00125{font-size:58.666667pt;}
.fs0_c00125{font-size:61.333333pt;}
.fs3_c00125{font-size:69.333333pt;}
.y0_c00125{bottom:0.000000pt;}
.y1e_c00125{bottom:2.760000pt;}
.y1d_c00125{bottom:6.425217pt;}
.y1c_c00125{bottom:60.506667pt;}
.y1b_c00125{bottom:82.106667pt;}
.y1a_c00125{bottom:105.040000pt;}
.y19_c00125{bottom:127.173333pt;}
.y18_c00125{bottom:149.706667pt;}
.y17_c00125{bottom:171.306667pt;}
.y16_c00125{bottom:192.240000pt;}
.y15_c00125{bottom:215.973333pt;}
.y14_c00125{bottom:237.840000pt;}
.y13_c00125{bottom:260.640000pt;}
.y12_c00125{bottom:282.906667pt;}
.y11_c00125{bottom:304.240000pt;}
.y10_c00125{bottom:326.906667pt;}
.yf_c00125{bottom:348.640000pt;}
.ye_c00125{bottom:370.773333pt;}
.yd_c00125{bottom:393.040000pt;}
.yc_c00125{bottom:437.440000pt;}
.yb_c00125{bottom:481.840000pt;}
.ya_c00125{bottom:503.706667pt;}
.y9_c00125{bottom:525.306667pt;}
.y8_c00125{bottom:547.840000pt;}
.y7_c00125{bottom:570.240000pt;}
.y6_c00125{bottom:592.106667pt;}
.y5_c00125{bottom:614.373333pt;}
.y4_c00125{bottom:636.240000pt;}
.y3_c00125{bottom:658.506667pt;}
.y2_c00125{bottom:679.706667pt;}
.y1_c00125{bottom:703.173333pt;}
.h5_c00125{height:11.733399pt;}
.h6_c00125{height:38.937500pt;}
.h2_c00125{height:71.785156pt;}
.h3_c00125{height:77.654948pt;}
.h4_c00125{height:81.148438pt;}
.h1_c00125{height:740.000000pt;}
.h0_c00125{height:740.133333pt;}
.w2_c00125{width:93.222667pt;}
.w0_c00125{width:490.533333pt;}
.w1_c00125{width:490.666667pt;}
.x0_c00125{left:0.000000pt;}
.xc_c00125{left:23.066667pt;}
.xe_c00125{left:27.600000pt;}
.xb_c00125{left:29.333333pt;}
.xd_c00125{left:43.600000pt;}
.x4_c00125{left:45.866667pt;}
.x7_c00125{left:52.400000pt;}
.xf_c00125{left:54.933333pt;}
.x6_c00125{left:66.933333pt;}
.x10_c00125{left:85.200000pt;}
.xa_c00125{left:86.400000pt;}
.x2_c00125{left:88.400000pt;}
.x5_c00125{left:89.600000pt;}
.x1_c00125{left:101.600000pt;}
.x9_c00125{left:108.266667pt;}
.x8_c00125{left:116.933333pt;}
.x3_c00125{left:121.200000pt;}
.x12_c00125{left:202.434896pt;}
.x11_c00125{left:422.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_4bfed6bae68032ede458e561.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_0f5c24e8623d29b216a345f3.woff2')format("woff");}.ff2_c00126{font-family:ff2_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:ff3_c00126;src:url('chunks/assets/font_66e13556506d5699eefb3b45.woff2')format("woff");}.ff3_c00126{font-family:ff3_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:ff4_c00126;src:url('chunks/assets/font_f6809e983b441be0a03788df.woff2')format("woff");}.ff4_c00126{font-family:ff4_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:ff5_c00126;src:url('chunks/assets/font_8db3dbd6f4c1a1298bb14378.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;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_c00126;src:url('chunks/assets/font_55c3ee9db5052004a9f57d68.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;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_c00126;src:url('chunks/assets/font_cba240fe0c0673d086db729e.woff2')format("woff");}.ff7_c00126{font-family:ff7_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:ff8_c00126;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00126{font-family:ff8_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;}
.ls8_c00126{letter-spacing:-6.000000px;}
.ls6_c00126{letter-spacing:0.000000px;}
.ls1_c00126{letter-spacing:1.002000px;}
.ls2_c00126{letter-spacing:2.202000px;}
.ls7_c00126{letter-spacing:3.000000px;}
.ls5_c00126{letter-spacing:8.100000px;}
.ls0_c00126{letter-spacing:14.307000px;}
.ls3_c00126{letter-spacing:14.802000px;}
.ls4_c00126{letter-spacing:15.696000px;}
.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:-21.672000px;}
.ws0_c00126{word-spacing:-19.182000px;}
.ws5_c00126{word-spacing:-18.798000px;}
.ws4_c00126{word-spacing:-12.798000px;}
.ws2_c00126{word-spacing:-0.420000px;}
.ws3_c00126{word-spacing:-0.081000px;}
.ws6_c00126{word-spacing:0.000000px;}
._1a_c00126{margin-left:-33.258000px;}
._18_c00126{margin-left:-25.806000px;}
._12_c00126{margin-left:-24.564000px;}
._1c_c00126{margin-left:-21.387000px;}
._7_c00126{margin-left:-17.862000px;}
._1f_c00126{margin-left:-15.180000px;}
._8_c00126{margin-left:-13.182000px;}
._22_c00126{margin-left:-11.277000px;}
._16_c00126{margin-left:-9.663000px;}
._b_c00126{margin-left:-8.469000px;}
._c_c00126{margin-left:-6.831000px;}
._a_c00126{margin-left:-5.520000px;}
._21_c00126{margin-left:-3.510000px;}
._6_c00126{margin-left:-2.193000px;}
._e_c00126{margin-left:-1.149000px;}
._5_c00126{width:1.587000px;}
._1_c00126{width:3.036000px;}
._3_c00126{width:4.347000px;}
._0_c00126{width:6.003000px;}
._24_c00126{width:7.056000px;}
._2_c00126{width:8.073000px;}
._9_c00126{width:9.813000px;}
._13_c00126{width:11.856000px;}
._15_c00126{width:13.785000px;}
._10_c00126{width:15.042000px;}
._1d_c00126{width:16.461000px;}
._27_c00126{width:17.658000px;}
._25_c00126{width:20.031000px;}
._f_c00126{width:21.996000px;}
._23_c00126{width:23.184000px;}
._19_c00126{width:25.668000px;}
._28_c00126{width:26.925000px;}
._29_c00126{width:29.595000px;}
._20_c00126{width:34.110000px;}
._11_c00126{width:40.917000px;}
._17_c00126{width:71.823000px;}
._d_c00126{width:73.071000px;}
._1b_c00126{width:90.153000px;}
._26_c00126{width:98.547000px;}
._14_c00126{width:108.606000px;}
._1e_c00126{width:185.679000px;}
._4_c00126{width:346.065000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(128,128,128);}
.fc0_c00126{color:rgb(0,0,0);}
.fs4_c00126{font-size:48.000000px;}
.fs0_c00126{font-size:69.000000px;}
.fs1_c00126{font-size:78.000000px;}
.fs3_c00126{font-size:81.000000px;}
.fs2_c00126{font-size:84.000000px;}
.y0_c00126{bottom:0.000000px;}
.y20_c00126{bottom:3.105000px;}
.y1f_c00126{bottom:7.228369px;}
.y1e_c00126{bottom:66.420000px;}
.y1d_c00126{bottom:92.370000px;}
.y1c_c00126{bottom:118.020000px;}
.y1b_c00126{bottom:142.470000px;}
.y1a_c00126{bottom:165.270000px;}
.y19_c00126{bottom:191.670000px;}
.y18_c00126{bottom:216.720000px;}
.y17_c00126{bottom:241.620000px;}
.y16_c00126{bottom:266.520000px;}
.y15_c00126{bottom:291.870000px;}
.y14_c00126{bottom:316.920000px;}
.y13_c00126{bottom:341.820000px;}
.y12_c00126{bottom:366.120000px;}
.y11_c00126{bottom:391.470000px;}
.y10_c00126{bottom:416.070000px;}
.yf_c00126{bottom:441.120000px;}
.ye_c00126{bottom:466.020000px;}
.yd_c00126{bottom:490.020000px;}
.yc_c00126{bottom:513.270000px;}
.yb_c00126{bottom:538.620000px;}
.ya_c00126{bottom:562.920000px;}
.y9_c00126{bottom:588.270000px;}
.y8_c00126{bottom:613.170000px;}
.y7_c00126{bottom:637.920000px;}
.y6_c00126{bottom:662.520000px;}
.y5_c00126{bottom:687.720000px;}
.y4_c00126{bottom:712.170000px;}
.y3_c00126{bottom:737.820000px;}
.y2_c00126{bottom:764.370000px;}
.y1_c00126{bottom:787.620000px;}
.h6_c00126{height:13.200073px;}
.h7_c00126{height:43.804688px;}
.h2_c00126{height:69.539062px;}
.h4_c00126{height:87.361816px;}
.h5_c00126{height:91.056000px;}
.h3_c00126{height:98.756836px;}
.h1_c00126{height:819.000000px;}
.h0_c00126{height:819.150000px;}
.w2_c00126{width:104.875500px;}
.w1_c00126{width:549.000000px;}
.w0_c00126{width:549.150000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:27.900000px;}
.x3_c00126{left:29.250000px;}
.x4_c00126{left:30.600000px;}
.x5_c00126{left:31.950000px;}
.x6_c00126{left:33.000000px;}
.x8_c00126{left:34.800000px;}
.x7_c00126{left:58.500000px;}
.x1_c00126{left:180.600000px;}
.xa_c00126{left:226.389267px;}
.x9_c00126{left:436.050000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls8_c00126{letter-spacing:-5.333333pt;}
.ls6_c00126{letter-spacing:0.000000pt;}
.ls1_c00126{letter-spacing:0.890667pt;}
.ls2_c00126{letter-spacing:1.957333pt;}
.ls7_c00126{letter-spacing:2.666667pt;}
.ls5_c00126{letter-spacing:7.200000pt;}
.ls0_c00126{letter-spacing:12.717333pt;}
.ls3_c00126{letter-spacing:13.157333pt;}
.ls4_c00126{letter-spacing:13.952000pt;}
.ws1_c00126{word-spacing:-19.264000pt;}
.ws0_c00126{word-spacing:-17.050667pt;}
.ws5_c00126{word-spacing:-16.709333pt;}
.ws4_c00126{word-spacing:-11.376000pt;}
.ws2_c00126{word-spacing:-0.373333pt;}
.ws3_c00126{word-spacing:-0.072000pt;}
.ws6_c00126{word-spacing:0.000000pt;}
._1a_c00126{margin-left:-29.562667pt;}
._18_c00126{margin-left:-22.938667pt;}
._12_c00126{margin-left:-21.834667pt;}
._1c_c00126{margin-left:-19.010667pt;}
._7_c00126{margin-left:-15.877333pt;}
._1f_c00126{margin-left:-13.493333pt;}
._8_c00126{margin-left:-11.717333pt;}
._22_c00126{margin-left:-10.024000pt;}
._16_c00126{margin-left:-8.589333pt;}
._b_c00126{margin-left:-7.528000pt;}
._c_c00126{margin-left:-6.072000pt;}
._a_c00126{margin-left:-4.906667pt;}
._21_c00126{margin-left:-3.120000pt;}
._6_c00126{margin-left:-1.949333pt;}
._e_c00126{margin-left:-1.021333pt;}
._5_c00126{width:1.410667pt;}
._1_c00126{width:2.698667pt;}
._3_c00126{width:3.864000pt;}
._0_c00126{width:5.336000pt;}
._24_c00126{width:6.272000pt;}
._2_c00126{width:7.176000pt;}
._9_c00126{width:8.722667pt;}
._13_c00126{width:10.538667pt;}
._15_c00126{width:12.253333pt;}
._10_c00126{width:13.370667pt;}
._1d_c00126{width:14.632000pt;}
._27_c00126{width:15.696000pt;}
._25_c00126{width:17.805333pt;}
._f_c00126{width:19.552000pt;}
._23_c00126{width:20.608000pt;}
._19_c00126{width:22.816000pt;}
._28_c00126{width:23.933333pt;}
._29_c00126{width:26.306667pt;}
._20_c00126{width:30.320000pt;}
._11_c00126{width:36.370667pt;}
._17_c00126{width:63.842667pt;}
._d_c00126{width:64.952000pt;}
._1b_c00126{width:80.136000pt;}
._26_c00126{width:87.597333pt;}
._14_c00126{width:96.538667pt;}
._1e_c00126{width:165.048000pt;}
._4_c00126{width:307.613333pt;}
.fs4_c00126{font-size:42.666667pt;}
.fs0_c00126{font-size:61.333333pt;}
.fs1_c00126{font-size:69.333333pt;}
.fs3_c00126{font-size:72.000000pt;}
.fs2_c00126{font-size:74.666667pt;}
.y0_c00126{bottom:0.000000pt;}
.y20_c00126{bottom:2.760000pt;}
.y1f_c00126{bottom:6.425217pt;}
.y1e_c00126{bottom:59.040000pt;}
.y1d_c00126{bottom:82.106667pt;}
.y1c_c00126{bottom:104.906667pt;}
.y1b_c00126{bottom:126.640000pt;}
.y1a_c00126{bottom:146.906667pt;}
.y19_c00126{bottom:170.373333pt;}
.y18_c00126{bottom:192.640000pt;}
.y17_c00126{bottom:214.773333pt;}
.y16_c00126{bottom:236.906667pt;}
.y15_c00126{bottom:259.440000pt;}
.y14_c00126{bottom:281.706667pt;}
.y13_c00126{bottom:303.840000pt;}
.y12_c00126{bottom:325.440000pt;}
.y11_c00126{bottom:347.973333pt;}
.y10_c00126{bottom:369.840000pt;}
.yf_c00126{bottom:392.106667pt;}
.ye_c00126{bottom:414.240000pt;}
.yd_c00126{bottom:435.573333pt;}
.yc_c00126{bottom:456.240000pt;}
.yb_c00126{bottom:478.773333pt;}
.ya_c00126{bottom:500.373333pt;}
.y9_c00126{bottom:522.906667pt;}
.y8_c00126{bottom:545.040000pt;}
.y7_c00126{bottom:567.040000pt;}
.y6_c00126{bottom:588.906667pt;}
.y5_c00126{bottom:611.306667pt;}
.y4_c00126{bottom:633.040000pt;}
.y3_c00126{bottom:655.840000pt;}
.y2_c00126{bottom:679.440000pt;}
.y1_c00126{bottom:700.106667pt;}
.h6_c00126{height:11.733399pt;}
.h7_c00126{height:38.937500pt;}
.h2_c00126{height:61.812500pt;}
.h4_c00126{height:77.654948pt;}
.h5_c00126{height:80.938667pt;}
.h3_c00126{height:87.783854pt;}
.h1_c00126{height:728.000000pt;}
.h0_c00126{height:728.133333pt;}
.w2_c00126{width:93.222667pt;}
.w1_c00126{width:488.000000pt;}
.w0_c00126{width:488.133333pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:24.800000pt;}
.x3_c00126{left:26.000000pt;}
.x4_c00126{left:27.200000pt;}
.x5_c00126{left:28.400000pt;}
.x6_c00126{left:29.333333pt;}
.x8_c00126{left:30.933333pt;}
.x7_c00126{left:52.000000pt;}
.x1_c00126{left:160.533333pt;}
.xa_c00126{left:201.234904pt;}
.x9_c00126{left:387.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_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_ea0db5be73c164b1eb12d9df.woff2')format("woff");}.ff1_c00127{font-family:ff1_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:ff2_c00127;src:url('chunks/assets/font_dc0f4d599a284aa1b1598568.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_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00127{font-family:ff4_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);}
.v1_c00127{vertical-align:-95.400000px;}
.v0_c00127{vertical-align:0.000000px;}
.ls6_c00127{letter-spacing:0.000000px;}
.ls5_c00127{letter-spacing:3.000000px;}
.ls3_c00127{letter-spacing:3.600000px;}
.ls0_c00127{letter-spacing:4.839000px;}
.ls1_c00127{letter-spacing:14.628000px;}
.ls4_c00127{letter-spacing:15.525000px;}
.ls2_c00127{letter-spacing:19.125000px;}
.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;}
}
.ws6_c00127{word-spacing:-32.154000px;}
.ws4_c00127{word-spacing:-31.257000px;}
.ws0_c00127{word-spacing:-16.629000px;}
.ws1_c00127{word-spacing:-1.104000px;}
.ws5_c00127{word-spacing:-1.035000px;}
.ws7_c00127{word-spacing:-0.414000px;}
.ws8_c00127{word-spacing:0.000000px;}
.ws3_c00127{word-spacing:0.069000px;}
.ws2_c00127{word-spacing:12.075000px;}
._23_c00127{margin-left:-21.252000px;}
._18_c00127{margin-left:-14.490000px;}
._10_c00127{margin-left:-13.455000px;}
._3_c00127{margin-left:-11.661000px;}
._1b_c00127{margin-left:-10.005000px;}
._2_c00127{margin-left:-7.935000px;}
._e_c00127{margin-left:-6.279000px;}
._1a_c00127{margin-left:-5.106000px;}
._f_c00127{margin-left:-3.933000px;}
._1_c00127{margin-left:-2.691000px;}
._5_c00127{margin-left:-1.587000px;}
._7_c00127{width:1.725000px;}
._8_c00127{width:3.450000px;}
._9_c00127{width:4.554000px;}
._6_c00127{width:6.072000px;}
._a_c00127{width:7.383000px;}
._b_c00127{width:8.556000px;}
._c_c00127{width:10.488000px;}
._d_c00127{width:11.592000px;}
._0_c00127{width:12.903000px;}
._17_c00127{width:13.938000px;}
._14_c00127{width:15.042000px;}
._16_c00127{width:16.215000px;}
._12_c00127{width:17.733000px;}
._1e_c00127{width:21.627000px;}
._27_c00127{width:22.878000px;}
._1f_c00127{width:28.398000px;}
._1d_c00127{width:31.821000px;}
._25_c00127{width:32.880000px;}
._1c_c00127{width:34.179000px;}
._20_c00127{width:36.018000px;}
._11_c00127{width:42.297000px;}
._19_c00127{width:48.153000px;}
._26_c00127{width:62.721000px;}
._22_c00127{width:80.838000px;}
._21_c00127{width:139.785000px;}
._24_c00127{width:163.323000px;}
._15_c00127{width:211.347000px;}
._13_c00127{width:238.119000px;}
._28_c00127{width:263.892000px;}
._4_c00127{width:351.198000px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(128,128,128);}
.fc0_c00127{color:rgb(0,0,0);}
.fs2_c00127{font-size:48.000000px;}
.fs1_c00127{font-size:66.000000px;}
.fs0_c00127{font-size:69.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1f_c00127{bottom:3.105000px;}
.y1e_c00127{bottom:7.228369px;}
.y1d_c00127{bottom:98.820000px;}
.y1c_c00127{bottom:124.170000px;}
.y1b_c00127{bottom:149.220000px;}
.y1a_c00127{bottom:174.420000px;}
.y19_c00127{bottom:199.470000px;}
.y18_c00127{bottom:224.370000px;}
.y17_c00127{bottom:248.970000px;}
.y16_c00127{bottom:274.770000px;}
.y15_c00127{bottom:299.370000px;}
.y14_c00127{bottom:323.970000px;}
.y13_c00127{bottom:348.270000px;}
.y12_c00127{bottom:373.320000px;}
.y11_c00127{bottom:398.220000px;}
.y10_c00127{bottom:422.820000px;}
.yf_c00127{bottom:447.570000px;}
.ye_c00127{bottom:473.070000px;}
.yd_c00127{bottom:497.820000px;}
.yc_c00127{bottom:523.020000px;}
.yb_c00127{bottom:547.470000px;}
.ya_c00127{bottom:572.070000px;}
.y9_c00127{bottom:597.270000px;}
.y8_c00127{bottom:622.320000px;}
.y7_c00127{bottom:646.920000px;}
.y6_c00127{bottom:671.670000px;}
.y5_c00127{bottom:697.170000px;}
.y4_c00127{bottom:721.920000px;}
.y3_c00127{bottom:746.520000px;}
.y2_c00127{bottom:770.820000px;}
.y1_c00127{bottom:797.220000px;}
.h3_c00127{height:13.200073px;}
.h4_c00127{height:43.804688px;}
.h2_c00127{height:87.361816px;}
.h0_c00127{height:842.100000px;}
.h1_c00127{height:842.250000px;}
.w2_c00127{width:104.875500px;}
.w0_c00127{width:558.600000px;}
.w1_c00127{width:558.750000px;}
.x0_c00127{left:0.000000px;}
.x9_c00127{left:29.100000px;}
.x5_c00127{left:31.500000px;}
.x3_c00127{left:32.700000px;}
.xa_c00127{left:48.600000px;}
.xb_c00127{left:54.900000px;}
.x6_c00127{left:56.100000px;}
.xc_c00127{left:93.450000px;}
.x8_c00127{left:95.550000px;}
.x7_c00127{left:97.650000px;}
.x2_c00127{left:99.300000px;}
.x4_c00127{left:100.650000px;}
.x1_c00127{left:114.450000px;}
.xd_c00127{left:172.050000px;}
.xe_c00127{left:231.114258px;}
@media print{
.v1_c00127{vertical-align:-84.800000pt;}
.v0_c00127{vertical-align:0.000000pt;}
.ls6_c00127{letter-spacing:0.000000pt;}
.ls5_c00127{letter-spacing:2.666667pt;}
.ls3_c00127{letter-spacing:3.200000pt;}
.ls0_c00127{letter-spacing:4.301333pt;}
.ls1_c00127{letter-spacing:13.002667pt;}
.ls4_c00127{letter-spacing:13.800000pt;}
.ls2_c00127{letter-spacing:17.000000pt;}
.ws6_c00127{word-spacing:-28.581333pt;}
.ws4_c00127{word-spacing:-27.784000pt;}
.ws0_c00127{word-spacing:-14.781333pt;}
.ws1_c00127{word-spacing:-0.981333pt;}
.ws5_c00127{word-spacing:-0.920000pt;}
.ws7_c00127{word-spacing:-0.368000pt;}
.ws8_c00127{word-spacing:0.000000pt;}
.ws3_c00127{word-spacing:0.061333pt;}
.ws2_c00127{word-spacing:10.733333pt;}
._23_c00127{margin-left:-18.890667pt;}
._18_c00127{margin-left:-12.880000pt;}
._10_c00127{margin-left:-11.960000pt;}
._3_c00127{margin-left:-10.365333pt;}
._1b_c00127{margin-left:-8.893333pt;}
._2_c00127{margin-left:-7.053333pt;}
._e_c00127{margin-left:-5.581333pt;}
._1a_c00127{margin-left:-4.538667pt;}
._f_c00127{margin-left:-3.496000pt;}
._1_c00127{margin-left:-2.392000pt;}
._5_c00127{margin-left:-1.410667pt;}
._7_c00127{width:1.533333pt;}
._8_c00127{width:3.066667pt;}
._9_c00127{width:4.048000pt;}
._6_c00127{width:5.397333pt;}
._a_c00127{width:6.562667pt;}
._b_c00127{width:7.605333pt;}
._c_c00127{width:9.322667pt;}
._d_c00127{width:10.304000pt;}
._0_c00127{width:11.469333pt;}
._17_c00127{width:12.389333pt;}
._14_c00127{width:13.370667pt;}
._16_c00127{width:14.413333pt;}
._12_c00127{width:15.762667pt;}
._1e_c00127{width:19.224000pt;}
._27_c00127{width:20.336000pt;}
._1f_c00127{width:25.242667pt;}
._1d_c00127{width:28.285333pt;}
._25_c00127{width:29.226667pt;}
._1c_c00127{width:30.381333pt;}
._20_c00127{width:32.016000pt;}
._11_c00127{width:37.597333pt;}
._19_c00127{width:42.802667pt;}
._26_c00127{width:55.752000pt;}
._22_c00127{width:71.856000pt;}
._21_c00127{width:124.253333pt;}
._24_c00127{width:145.176000pt;}
._15_c00127{width:187.864000pt;}
._13_c00127{width:211.661333pt;}
._28_c00127{width:234.570667pt;}
._4_c00127{width:312.176000pt;}
.fs2_c00127{font-size:42.666667pt;}
.fs1_c00127{font-size:58.666667pt;}
.fs0_c00127{font-size:61.333333pt;}
.y0_c00127{bottom:0.000000pt;}
.y1f_c00127{bottom:2.760000pt;}
.y1e_c00127{bottom:6.425217pt;}
.y1d_c00127{bottom:87.840000pt;}
.y1c_c00127{bottom:110.373333pt;}
.y1b_c00127{bottom:132.640000pt;}
.y1a_c00127{bottom:155.040000pt;}
.y19_c00127{bottom:177.306667pt;}
.y18_c00127{bottom:199.440000pt;}
.y17_c00127{bottom:221.306667pt;}
.y16_c00127{bottom:244.240000pt;}
.y15_c00127{bottom:266.106667pt;}
.y14_c00127{bottom:287.973333pt;}
.y13_c00127{bottom:309.573333pt;}
.y12_c00127{bottom:331.840000pt;}
.y11_c00127{bottom:353.973333pt;}
.y10_c00127{bottom:375.840000pt;}
.yf_c00127{bottom:397.840000pt;}
.ye_c00127{bottom:420.506667pt;}
.yd_c00127{bottom:442.506667pt;}
.yc_c00127{bottom:464.906667pt;}
.yb_c00127{bottom:486.640000pt;}
.ya_c00127{bottom:508.506667pt;}
.y9_c00127{bottom:530.906667pt;}
.y8_c00127{bottom:553.173333pt;}
.y7_c00127{bottom:575.040000pt;}
.y6_c00127{bottom:597.040000pt;}
.y5_c00127{bottom:619.706667pt;}
.y4_c00127{bottom:641.706667pt;}
.y3_c00127{bottom:663.573333pt;}
.y2_c00127{bottom:685.173333pt;}
.y1_c00127{bottom:708.640000pt;}
.h3_c00127{height:11.733399pt;}
.h4_c00127{height:38.937500pt;}
.h2_c00127{height:77.654948pt;}
.h0_c00127{height:748.533333pt;}
.h1_c00127{height:748.666667pt;}
.w2_c00127{width:93.222667pt;}
.w0_c00127{width:496.533333pt;}
.w1_c00127{width:496.666667pt;}
.x0_c00127{left:0.000000pt;}
.x9_c00127{left:25.866667pt;}
.x5_c00127{left:28.000000pt;}
.x3_c00127{left:29.066667pt;}
.xa_c00127{left:43.200000pt;}
.xb_c00127{left:48.800000pt;}
.x6_c00127{left:49.866667pt;}
.xc_c00127{left:83.066667pt;}
.x8_c00127{left:84.933333pt;}
.x7_c00127{left:86.800000pt;}
.x2_c00127{left:88.266667pt;}
.x4_c00127{left:89.466667pt;}
.x1_c00127{left:101.733333pt;}
.xd_c00127{left:152.933333pt;}
.xe_c00127{left:205.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_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_3dacbd23844bb6fdcc29f4cc.woff2')format("woff");}.ff1_c00128{font-family:ff1_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:ff2_c00128;src:url('chunks/assets/font_ad5a0bb477a5b0ce10bf8bdf.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.568848;font-style:normal;font-weight:normal;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_9b0e3f7c97b7a6cb0eab3993.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;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_c00128;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_49a5056ad0231874e622a9ea.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;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_c00128;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00128{font-family:ff6_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:-6.000000px;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:3.000000px;}
.ls0_c00128{letter-spacing:13.200000px;}
.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;}
}
.ws1_c00128{word-spacing:-33.000000px;}
.ws2_c00128{word-spacing:-26.319000px;}
.ws0_c00128{word-spacing:-18.798000px;}
.ws3_c00128{word-spacing:-16.629000px;}
.ws4_c00128{word-spacing:-0.069000px;}
.ws5_c00128{word-spacing:0.000000px;}
._d_c00128{margin-left:-30.420000px;}
._26_c00128{margin-left:-22.200000px;}
._1a_c00128{margin-left:-16.281000px;}
._a_c00128{margin-left:-14.220000px;}
._23_c00128{margin-left:-11.841000px;}
._8_c00128{margin-left:-10.824000px;}
._19_c00128{margin-left:-9.615000px;}
._5_c00128{margin-left:-8.208000px;}
._1f_c00128{margin-left:-6.960000px;}
._7_c00128{margin-left:-5.700000px;}
._f_c00128{margin-left:-3.960000px;}
._17_c00128{margin-left:-2.553000px;}
._16_c00128{margin-left:-1.311000px;}
._18_c00128{width:1.761000px;}
._1_c00128{width:3.036000px;}
._3_c00128{width:4.134000px;}
._0_c00128{width:6.000000px;}
._6_c00128{width:7.416000px;}
._1b_c00128{width:8.490000px;}
._14_c00128{width:9.534000px;}
._2c_c00128{width:10.818000px;}
._12_c00128{width:11.880000px;}
._1d_c00128{width:13.551000px;}
._2_c00128{width:15.360000px;}
._15_c00128{width:16.998000px;}
._1c_c00128{width:18.495000px;}
._24_c00128{width:20.631000px;}
._21_c00128{width:22.116000px;}
._10_c00128{width:23.340000px;}
._31_c00128{width:25.008000px;}
._20_c00128{width:28.320000px;}
._11_c00128{width:29.856000px;}
._1e_c00128{width:34.557000px;}
._25_c00128{width:41.004000px;}
._22_c00128{width:43.209000px;}
._9_c00128{width:47.040000px;}
._2d_c00128{width:101.868000px;}
._b_c00128{width:107.640000px;}
._29_c00128{width:109.689000px;}
._e_c00128{width:120.540000px;}
._28_c00128{width:167.682000px;}
._27_c00128{width:169.332000px;}
._2a_c00128{width:180.189000px;}
._2e_c00128{width:191.607000px;}
._c_c00128{width:210.780000px;}
._13_c00128{width:253.008000px;}
._2b_c00128{width:256.977000px;}
._2f_c00128{width:293.418000px;}
._30_c00128{width:445.185000px;}
._4_c00128{width:448.164000px;}
._32_c00128{width:914.685000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs7_c00128{font-size:48.000000px;}
.fs2_c00128{font-size:60.000000px;}
.fs4_c00128{font-size:66.000000px;}
.fs3_c00128{font-size:69.000000px;}
.fs1_c00128{font-size:72.000000px;}
.fs5_c00128{font-size:75.000000px;}
.fs0_c00128{font-size:78.000000px;}
.fs6_c00128{font-size:93.000000px;}
.y0_c00128{bottom:0.000000px;}
.y1f_c00128{bottom:3.105000px;}
.y1e_c00128{bottom:7.228371px;}
.y1d_c00128{bottom:57.765000px;}
.y1c_c00128{bottom:81.015000px;}
.y1b_c00128{bottom:107.115000px;}
.y1a_c00128{bottom:132.315000px;}
.y19_c00128{bottom:156.615000px;}
.y18_c00128{bottom:183.315000px;}
.y17_c00128{bottom:207.615000px;}
.y16_c00128{bottom:231.165000px;}
.y15_c00128{bottom:257.265000px;}
.y14_c00128{bottom:282.615000px;}
.y13_c00128{bottom:307.215000px;}
.y12_c00128{bottom:332.415000px;}
.y11_c00128{bottom:357.465000px;}
.y10_c00128{bottom:382.515000px;}
.yf_c00128{bottom:407.115000px;}
.ye_c00128{bottom:432.015000px;}
.yd_c00128{bottom:457.065000px;}
.yc_c00128{bottom:481.965000px;}
.yb_c00128{bottom:506.265000px;}
.ya_c00128{bottom:530.565000px;}
.y9_c00128{bottom:555.315000px;}
.y8_c00128{bottom:579.615000px;}
.y7_c00128{bottom:605.565000px;}
.y6_c00128{bottom:630.465000px;}
.y5_c00128{bottom:655.515000px;}
.y4_c00128{bottom:680.415000px;}
.y3_c00128{bottom:729.315000px;}
.y2_c00128{bottom:761.865000px;}
.y1_c00128{bottom:779.415000px;}
.h8_c00128{height:13.200074px;}
.h9_c00128{height:43.804688px;}
.h3_c00128{height:75.966797px;}
.h5_c00128{height:80.758301px;}
.h4_c00128{height:87.361816px;}
.h2_c00128{height:91.291992px;}
.h7_c00128{height:94.958496px;}
.h6_c00128{height:100.812000px;}
.h1_c00128{height:831.000000px;}
.h0_c00128{height:831.075000px;}
.w1_c00128{width:104.875500px;}
.w0_c00128{width:557.250000px;}
.x0_c00128{left:0.000000px;}
.x5_c00128{left:25.650000px;}
.x6_c00128{left:27.300000px;}
.x8_c00128{left:28.650000px;}
.x9_c00128{left:31.950000px;}
.xa_c00128{left:34.050000px;}
.xb_c00128{left:36.000000px;}
.x4_c00128{left:48.150000px;}
.x7_c00128{left:51.750000px;}
.x3_c00128{left:53.700000px;}
.xc_c00128{left:64.050000px;}
.x2_c00128{left:94.800000px;}
.x1_c00128{left:178.950000px;}
.xd_c00128{left:230.439240px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls2_c00128{letter-spacing:-5.333333pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:2.666667pt;}
.ls0_c00128{letter-spacing:11.733333pt;}
.ws1_c00128{word-spacing:-29.333333pt;}
.ws2_c00128{word-spacing:-23.394667pt;}
.ws0_c00128{word-spacing:-16.709333pt;}
.ws3_c00128{word-spacing:-14.781333pt;}
.ws4_c00128{word-spacing:-0.061333pt;}
.ws5_c00128{word-spacing:0.000000pt;}
._d_c00128{margin-left:-27.040000pt;}
._26_c00128{margin-left:-19.733333pt;}
._1a_c00128{margin-left:-14.472000pt;}
._a_c00128{margin-left:-12.640000pt;}
._23_c00128{margin-left:-10.525333pt;}
._8_c00128{margin-left:-9.621333pt;}
._19_c00128{margin-left:-8.546667pt;}
._5_c00128{margin-left:-7.296000pt;}
._1f_c00128{margin-left:-6.186667pt;}
._7_c00128{margin-left:-5.066667pt;}
._f_c00128{margin-left:-3.520000pt;}
._17_c00128{margin-left:-2.269333pt;}
._16_c00128{margin-left:-1.165333pt;}
._18_c00128{width:1.565333pt;}
._1_c00128{width:2.698667pt;}
._3_c00128{width:3.674667pt;}
._0_c00128{width:5.333333pt;}
._6_c00128{width:6.592000pt;}
._1b_c00128{width:7.546667pt;}
._14_c00128{width:8.474667pt;}
._2c_c00128{width:9.616000pt;}
._12_c00128{width:10.560000pt;}
._1d_c00128{width:12.045333pt;}
._2_c00128{width:13.653333pt;}
._15_c00128{width:15.109333pt;}
._1c_c00128{width:16.440000pt;}
._24_c00128{width:18.338667pt;}
._21_c00128{width:19.658667pt;}
._10_c00128{width:20.746667pt;}
._31_c00128{width:22.229333pt;}
._20_c00128{width:25.173333pt;}
._11_c00128{width:26.538667pt;}
._1e_c00128{width:30.717333pt;}
._25_c00128{width:36.448000pt;}
._22_c00128{width:38.408000pt;}
._9_c00128{width:41.813333pt;}
._2d_c00128{width:90.549333pt;}
._b_c00128{width:95.680000pt;}
._29_c00128{width:97.501333pt;}
._e_c00128{width:107.146667pt;}
._28_c00128{width:149.050667pt;}
._27_c00128{width:150.517333pt;}
._2a_c00128{width:160.168000pt;}
._2e_c00128{width:170.317333pt;}
._c_c00128{width:187.360000pt;}
._13_c00128{width:224.896000pt;}
._2b_c00128{width:228.424000pt;}
._2f_c00128{width:260.816000pt;}
._30_c00128{width:395.720000pt;}
._4_c00128{width:398.368000pt;}
._32_c00128{width:813.053333pt;}
.fs7_c00128{font-size:42.666667pt;}
.fs2_c00128{font-size:53.333333pt;}
.fs4_c00128{font-size:58.666667pt;}
.fs3_c00128{font-size:61.333333pt;}
.fs1_c00128{font-size:64.000000pt;}
.fs5_c00128{font-size:66.666667pt;}
.fs0_c00128{font-size:69.333333pt;}
.fs6_c00128{font-size:82.666667pt;}
.y0_c00128{bottom:0.000000pt;}
.y1f_c00128{bottom:2.760000pt;}
.y1e_c00128{bottom:6.425219pt;}
.y1d_c00128{bottom:51.346667pt;}
.y1c_c00128{bottom:72.013333pt;}
.y1b_c00128{bottom:95.213333pt;}
.y1a_c00128{bottom:117.613333pt;}
.y19_c00128{bottom:139.213333pt;}
.y18_c00128{bottom:162.946667pt;}
.y17_c00128{bottom:184.546667pt;}
.y16_c00128{bottom:205.480000pt;}
.y15_c00128{bottom:228.680000pt;}
.y14_c00128{bottom:251.213333pt;}
.y13_c00128{bottom:273.080000pt;}
.y12_c00128{bottom:295.480000pt;}
.y11_c00128{bottom:317.746667pt;}
.y10_c00128{bottom:340.013333pt;}
.yf_c00128{bottom:361.880000pt;}
.ye_c00128{bottom:384.013333pt;}
.yd_c00128{bottom:406.280000pt;}
.yc_c00128{bottom:428.413333pt;}
.yb_c00128{bottom:450.013333pt;}
.ya_c00128{bottom:471.613333pt;}
.y9_c00128{bottom:493.613333pt;}
.y8_c00128{bottom:515.213333pt;}
.y7_c00128{bottom:538.280000pt;}
.y6_c00128{bottom:560.413333pt;}
.y5_c00128{bottom:582.680000pt;}
.y4_c00128{bottom:604.813333pt;}
.y3_c00128{bottom:648.280000pt;}
.y2_c00128{bottom:677.213333pt;}
.y1_c00128{bottom:692.813333pt;}
.h8_c00128{height:11.733399pt;}
.h9_c00128{height:38.937500pt;}
.h3_c00128{height:67.526042pt;}
.h5_c00128{height:71.785156pt;}
.h4_c00128{height:77.654948pt;}
.h2_c00128{height:81.148438pt;}
.h7_c00128{height:84.407552pt;}
.h6_c00128{height:89.610667pt;}
.h1_c00128{height:738.666667pt;}
.h0_c00128{height:738.733333pt;}
.w1_c00128{width:93.222667pt;}
.w0_c00128{width:495.333333pt;}
.x0_c00128{left:0.000000pt;}
.x5_c00128{left:22.800000pt;}
.x6_c00128{left:24.266667pt;}
.x8_c00128{left:25.466667pt;}
.x9_c00128{left:28.400000pt;}
.xa_c00128{left:30.266667pt;}
.xb_c00128{left:32.000000pt;}
.x4_c00128{left:42.800000pt;}
.x7_c00128{left:46.000000pt;}
.x3_c00128{left:47.733333pt;}
.xc_c00128{left:56.933333pt;}
.x2_c00128{left:84.266667pt;}
.x1_c00128{left:159.066667pt;}
.xd_c00128{left:204.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_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_8706f8b236ec802ea54eb23c.woff2')format("woff");}.ff1_c00129{font-family:ff1_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:ff2_c00129;src:url('chunks/assets/font_9d2521afc51ed85c7ecf8f1c.woff2')format("woff");}.ff2_c00129{font-family:ff2_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:ff3_c00129;src:url('chunks/assets/font_c10d885ac5fbee878384ec72.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;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_c00129;src:url('chunks/assets/font_d2685734958e6e8a390660e5.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_4a52963e24cc6e674e97d090.woff2')format("woff");}.ff5_c00129{font-family:ff5_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:ff6_c00129;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00129{letter-spacing:-12.000000px;}
.ls3_c00129{letter-spacing:0.000000px;}
.ls2_c00129{letter-spacing:3.000000px;}
.ls1_c00129{letter-spacing:4.050000px;}
.ls5_c00129{letter-spacing:6.000000px;}
.ls0_c00129{letter-spacing:15.525000px;}
.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;}
}
.ws6_c00129{word-spacing:-66.924000px;}
.ws5_c00129{word-spacing:-50.022000px;}
.ws7_c00129{word-spacing:-23.571000px;}
.ws3_c00129{word-spacing:-20.262000px;}
.ws0_c00129{word-spacing:-19.629000px;}
.ws2_c00129{word-spacing:-16.629000px;}
.ws4_c00129{word-spacing:-0.081000px;}
.ws8_c00129{word-spacing:0.000000px;}
.ws1_c00129{word-spacing:0.675000px;}
._1f_c00129{margin-left:-27.024000px;}
._14_c00129{margin-left:-21.273000px;}
._27_c00129{margin-left:-13.800000px;}
._1d_c00129{margin-left:-12.225000px;}
._1a_c00129{margin-left:-10.416000px;}
._7_c00129{margin-left:-8.970000px;}
._8_c00129{margin-left:-7.866000px;}
._6_c00129{margin-left:-6.072000px;}
._20_c00129{margin-left:-4.899000px;}
._0_c00129{margin-left:-3.657000px;}
._e_c00129{margin-left:-2.094000px;}
._10_c00129{margin-left:-1.059000px;}
._9_c00129{width:1.458000px;}
._d_c00129{width:2.904000px;}
._5_c00129{width:4.050000px;}
._4_c00129{width:5.175000px;}
._2_c00129{width:6.750000px;}
._1_c00129{width:8.685000px;}
._23_c00129{width:9.819000px;}
._a_c00129{width:11.004000px;}
._b_c00129{width:13.002000px;}
._1b_c00129{width:14.193000px;}
._12_c00129{width:15.378000px;}
._1e_c00129{width:16.557000px;}
._13_c00129{width:17.613000px;}
._17_c00129{width:18.618000px;}
._3_c00129{width:19.815000px;}
._f_c00129{width:21.120000px;}
._11_c00129{width:22.701000px;}
._16_c00129{width:24.339000px;}
._24_c00129{width:26.280000px;}
._18_c00129{width:29.550000px;}
._22_c00129{width:33.144000px;}
._1c_c00129{width:36.576000px;}
._19_c00129{width:39.924000px;}
._25_c00129{width:46.368000px;}
._29_c00129{width:49.128000px;}
._2b_c00129{width:74.739000px;}
._21_c00129{width:101.292000px;}
._28_c00129{width:117.714000px;}
._26_c00129{width:131.676000px;}
._2a_c00129{width:175.323000px;}
._15_c00129{width:226.320000px;}
._c_c00129{width:340.983000px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(128,128,128);}
.fc0_c00129{color:rgb(0,0,0);}
.fs1_c00129{font-size:45.000000px;}
.fs6_c00129{font-size:48.000000px;}
.fs3_c00129{font-size:66.000000px;}
.fs0_c00129{font-size:69.000000px;}
.fs5_c00129{font-size:81.000000px;}
.fs2_c00129{font-size:114.000000px;}
.fs4_c00129{font-size:117.000000px;}
.y0_c00129{bottom:0.000000px;}
.y24_c00129{bottom:3.105000px;}
.y23_c00129{bottom:7.228371px;}
.y22_c00129{bottom:62.565000px;}
.y21_c00129{bottom:138.015000px;}
.y20_c00129{bottom:163.065000px;}
.y1f_c00129{bottom:188.415000px;}
.y1e_c00129{bottom:213.765000px;}
.y1d_c00129{bottom:239.415000px;}
.y1c_c00129{bottom:264.315000px;}
.y1b_c00129{bottom:289.365000px;}
.y1a_c00129{bottom:314.265000px;}
.y19_c00129{bottom:339.315000px;}
.y18_c00129{bottom:363.465000px;}
.y17_c00129{bottom:388.665000px;}
.y16_c00129{bottom:413.865000px;}
.y15_c00129{bottom:439.065000px;}
.y14_c00129{bottom:463.815000px;}
.y13_c00129{bottom:488.415000px;}
.y12_c00129{bottom:514.815000px;}
.y6_c00129{bottom:532.365000px;}
.y11_c00129{bottom:538.515000px;}
.y10_c00129{bottom:563.265000px;}
.yf_c00129{bottom:588.015000px;}
.y5_c00129{bottom:598.365000px;}
.ye_c00129{bottom:612.315000px;}
.y4_c00129{bottom:612.915000px;}
.yd_c00129{bottom:637.515000px;}
.yc_c00129{bottom:662.865000px;}
.yb_c00129{bottom:687.465000px;}
.y3_c00129{bottom:709.215000px;}
.ya_c00129{bottom:713.265000px;}
.y2_c00129{bottom:730.815000px;}
.y9_c00129{bottom:738.165000px;}
.y1_c00129{bottom:744.915000px;}
.y8_c00129{bottom:763.065000px;}
.y7_c00129{bottom:787.815000px;}
.h9_c00129{height:13.200074px;}
.ha_c00129{height:43.804688px;}
.h3_c00129{height:56.975098px;}
.h6_c00129{height:77.247070px;}
.h4_c00129{height:80.758301px;}
.h2_c00129{height:87.361816px;}
.h8_c00129{height:102.555176px;}
.h5_c00129{height:123.576000px;}
.h7_c00129{height:148.135254px;}
.h1_c00129{height:836.250000px;}
.h0_c00129{height:836.475000px;}
.w2_c00129{width:104.875500px;}
.w1_c00129{width:554.250000px;}
.w0_c00129{width:554.550000px;}
.x0_c00129{left:0.000000px;}
.xa_c00129{left:25.650000px;}
.x2_c00129{left:29.400000px;}
.x4_c00129{left:41.550000px;}
.x3_c00129{left:43.200000px;}
.x1_c00129{left:44.250000px;}
.xe_c00129{left:54.450000px;}
.x10_c00129{left:65.850000px;}
.xc_c00129{left:69.900000px;}
.xb_c00129{left:89.100000px;}
.xd_c00129{left:90.450000px;}
.xf_c00129{left:91.500000px;}
.x9_c00129{left:92.850000px;}
.x8_c00129{left:95.550000px;}
.x7_c00129{left:96.600000px;}
.x5_c00129{left:107.100000px;}
.x6_c00129{left:114.750000px;}
.x12_c00129{left:229.089249px;}
.x11_c00129{left:497.550000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls4_c00129{letter-spacing:-10.666667pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.ls2_c00129{letter-spacing:2.666667pt;}
.ls1_c00129{letter-spacing:3.600000pt;}
.ls5_c00129{letter-spacing:5.333333pt;}
.ls0_c00129{letter-spacing:13.800000pt;}
.ws6_c00129{word-spacing:-59.488000pt;}
.ws5_c00129{word-spacing:-44.464000pt;}
.ws7_c00129{word-spacing:-20.952000pt;}
.ws3_c00129{word-spacing:-18.010667pt;}
.ws0_c00129{word-spacing:-17.448000pt;}
.ws2_c00129{word-spacing:-14.781333pt;}
.ws4_c00129{word-spacing:-0.072000pt;}
.ws8_c00129{word-spacing:0.000000pt;}
.ws1_c00129{word-spacing:0.600000pt;}
._1f_c00129{margin-left:-24.021333pt;}
._14_c00129{margin-left:-18.909333pt;}
._27_c00129{margin-left:-12.266667pt;}
._1d_c00129{margin-left:-10.866667pt;}
._1a_c00129{margin-left:-9.258667pt;}
._7_c00129{margin-left:-7.973333pt;}
._8_c00129{margin-left:-6.992000pt;}
._6_c00129{margin-left:-5.397333pt;}
._20_c00129{margin-left:-4.354667pt;}
._0_c00129{margin-left:-3.250667pt;}
._e_c00129{margin-left:-1.861333pt;}
._10_c00129{margin-left:-0.941333pt;}
._9_c00129{width:1.296000pt;}
._d_c00129{width:2.581333pt;}
._5_c00129{width:3.600000pt;}
._4_c00129{width:4.600000pt;}
._2_c00129{width:6.000000pt;}
._1_c00129{width:7.720000pt;}
._23_c00129{width:8.728000pt;}
._a_c00129{width:9.781333pt;}
._b_c00129{width:11.557333pt;}
._1b_c00129{width:12.616000pt;}
._12_c00129{width:13.669333pt;}
._1e_c00129{width:14.717333pt;}
._13_c00129{width:15.656000pt;}
._17_c00129{width:16.549333pt;}
._3_c00129{width:17.613333pt;}
._f_c00129{width:18.773333pt;}
._11_c00129{width:20.178667pt;}
._16_c00129{width:21.634667pt;}
._24_c00129{width:23.360000pt;}
._18_c00129{width:26.266667pt;}
._22_c00129{width:29.461333pt;}
._1c_c00129{width:32.512000pt;}
._19_c00129{width:35.488000pt;}
._25_c00129{width:41.216000pt;}
._29_c00129{width:43.669333pt;}
._2b_c00129{width:66.434667pt;}
._21_c00129{width:90.037333pt;}
._28_c00129{width:104.634667pt;}
._26_c00129{width:117.045333pt;}
._2a_c00129{width:155.842667pt;}
._15_c00129{width:201.173333pt;}
._c_c00129{width:303.096000pt;}
.fs1_c00129{font-size:40.000000pt;}
.fs6_c00129{font-size:42.666667pt;}
.fs3_c00129{font-size:58.666667pt;}
.fs0_c00129{font-size:61.333333pt;}
.fs5_c00129{font-size:72.000000pt;}
.fs2_c00129{font-size:101.333333pt;}
.fs4_c00129{font-size:104.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y24_c00129{bottom:2.760000pt;}
.y23_c00129{bottom:6.425219pt;}
.y22_c00129{bottom:55.613333pt;}
.y21_c00129{bottom:122.680000pt;}
.y20_c00129{bottom:144.946667pt;}
.y1f_c00129{bottom:167.480000pt;}
.y1e_c00129{bottom:190.013333pt;}
.y1d_c00129{bottom:212.813333pt;}
.y1c_c00129{bottom:234.946667pt;}
.y1b_c00129{bottom:257.213333pt;}
.y1a_c00129{bottom:279.346667pt;}
.y19_c00129{bottom:301.613333pt;}
.y18_c00129{bottom:323.080000pt;}
.y17_c00129{bottom:345.480000pt;}
.y16_c00129{bottom:367.880000pt;}
.y15_c00129{bottom:390.280000pt;}
.y14_c00129{bottom:412.280000pt;}
.y13_c00129{bottom:434.146667pt;}
.y12_c00129{bottom:457.613333pt;}
.y6_c00129{bottom:473.213333pt;}
.y11_c00129{bottom:478.680000pt;}
.y10_c00129{bottom:500.680000pt;}
.yf_c00129{bottom:522.680000pt;}
.y5_c00129{bottom:531.880000pt;}
.ye_c00129{bottom:544.280000pt;}
.y4_c00129{bottom:544.813333pt;}
.yd_c00129{bottom:566.680000pt;}
.yc_c00129{bottom:589.213333pt;}
.yb_c00129{bottom:611.080000pt;}
.y3_c00129{bottom:630.413333pt;}
.ya_c00129{bottom:634.013333pt;}
.y2_c00129{bottom:649.613333pt;}
.y9_c00129{bottom:656.146667pt;}
.y1_c00129{bottom:662.146667pt;}
.y8_c00129{bottom:678.280000pt;}
.y7_c00129{bottom:700.280000pt;}
.h9_c00129{height:11.733399pt;}
.ha_c00129{height:38.937500pt;}
.h3_c00129{height:50.644531pt;}
.h6_c00129{height:68.664062pt;}
.h4_c00129{height:71.785156pt;}
.h2_c00129{height:77.654948pt;}
.h8_c00129{height:91.160156pt;}
.h5_c00129{height:109.845333pt;}
.h7_c00129{height:131.675781pt;}
.h1_c00129{height:743.333333pt;}
.h0_c00129{height:743.533333pt;}
.w2_c00129{width:93.222667pt;}
.w1_c00129{width:492.666667pt;}
.w0_c00129{width:492.933333pt;}
.x0_c00129{left:0.000000pt;}
.xa_c00129{left:22.800000pt;}
.x2_c00129{left:26.133333pt;}
.x4_c00129{left:36.933333pt;}
.x3_c00129{left:38.400000pt;}
.x1_c00129{left:39.333333pt;}
.xe_c00129{left:48.400000pt;}
.x10_c00129{left:58.533333pt;}
.xc_c00129{left:62.133333pt;}
.xb_c00129{left:79.200000pt;}
.xd_c00129{left:80.400000pt;}
.xf_c00129{left:81.333333pt;}
.x9_c00129{left:82.533333pt;}
.x8_c00129{left:84.933333pt;}
.x7_c00129{left:85.866667pt;}
.x5_c00129{left:95.200000pt;}
.x6_c00129{left:102.000000pt;}
.x12_c00129{left:203.634888pt;}
.x11_c00129{left:442.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_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_a1879446ab1abaf73ff2f2d5.woff2')format("woff");}.ff1_c00130{font-family:ff1_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:ff2_c00130;src:url('chunks/assets/font_f39074d1fbaf8d4424047562.woff2')format("woff");}.ff2_c00130{font-family:ff2_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:ff3_c00130;src:url('chunks/assets/font_6ea2766a0d8ff9411673ce6c.woff2')format("woff");}.ff3_c00130{font-family:ff3_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:ff4_c00130;src:url('chunks/assets/font_4c58f3afeedf6b3bae9fca18.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;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_c00130;src:url('chunks/assets/font_a143b96c322745c453b6b22b.woff2')format("woff");}.ff5_c00130{font-family:ff5_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:ff6_c00130;src:url('chunks/assets/font_49228cb002717bc31316d873.woff2')format("woff");}.ff6_c00130{font-family:ff6_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:ff7_c00130;src:url('chunks/assets/font_986b7270fe3d7150bd26d919.woff2')format("woff");}.ff7_c00130{font-family:ff7_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:ff8_c00130;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00130{font-family:ff8_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);}
.m1_c00130{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00130{vertical-align:-76.800000px;}
.v0_c00130{vertical-align:0.000000px;}
.ls5_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.732000px;}
.ls3_c00130{letter-spacing:2.970000px;}
.ls6_c00130{letter-spacing:3.000000px;}
.ls1_c00130{letter-spacing:6.000000px;}
.ls4_c00130{letter-spacing:16.800000px;}
.ls8_c00130{letter-spacing:27.000000px;}
.ls7_c00130{letter-spacing:33.000000px;}
.ls2_c00130{letter-spacing:56.955000px;}
.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;}
}
.ws6_c00130{word-spacing:-43.845000px;}
.ws0_c00130{word-spacing:-43.164000px;}
.ws5_c00130{word-spacing:-42.846000px;}
.ws1_c00130{word-spacing:-34.531200px;}
.ws7_c00130{word-spacing:-34.320000px;}
.ws8_c00130{word-spacing:-33.000000px;}
.ws4_c00130{word-spacing:-21.906000px;}
.ws9_c00130{word-spacing:-16.629000px;}
.ws3_c00130{word-spacing:-13.737000px;}
.wsa_c00130{word-spacing:-2.241000px;}
.wsb_c00130{word-spacing:0.000000px;}
.ws2_c00130{word-spacing:579.120000px;}
._27_c00130{margin-left:-33.726000px;}
._1b_c00130{margin-left:-31.821000px;}
._1a_c00130{margin-left:-30.150000px;}
._1f_c00130{margin-left:-28.080000px;}
._1d_c00130{margin-left:-26.556000px;}
._18_c00130{margin-left:-22.275000px;}
._1c_c00130{margin-left:-19.260000px;}
._19_c00130{margin-left:-16.875000px;}
._24_c00130{margin-left:-15.153000px;}
._17_c00130{margin-left:-14.010600px;}
._36_c00130{margin-left:-12.933000px;}
._1e_c00130{margin-left:-11.814000px;}
._6_c00130{margin-left:-10.350000px;}
._e_c00130{margin-left:-9.177000px;}
._11_c00130{margin-left:-8.112000px;}
._d_c00130{margin-left:-6.384000px;}
._9_c00130{margin-left:-5.244000px;}
._14_c00130{margin-left:-4.242000px;}
._4_c00130{margin-left:-3.174000px;}
._3_c00130{margin-left:-2.070000px;}
._13_c00130{margin-left:-1.050000px;}
._0_c00130{width:1.242000px;}
._1_c00130{width:2.484000px;}
._12_c00130{width:4.278000px;}
._2_c00130{width:5.313000px;}
._10_c00130{width:6.726000px;}
._7_c00130{width:9.888000px;}
._15_c00130{width:11.862000px;}
._21_c00130{width:12.900000px;}
._c_c00130{width:15.054000px;}
._a_c00130{width:18.696000px;}
._8_c00130{width:20.565000px;}
._35_c00130{width:21.600000px;}
._b_c00130{width:22.617000px;}
._33_c00130{width:24.219000px;}
._34_c00130{width:26.547000px;}
._20_c00130{width:27.870000px;}
._2a_c00130{width:39.453000px;}
._23_c00130{width:41.049000px;}
._2f_c00130{width:43.380000px;}
._f_c00130{width:45.585000px;}
._2c_c00130{width:49.500000px;}
._31_c00130{width:69.588000px;}
._16_c00130{width:76.362000px;}
._2e_c00130{width:78.963000px;}
._2d_c00130{width:83.448000px;}
._30_c00130{width:95.067000px;}
._32_c00130{width:99.015000px;}
._25_c00130{width:101.364600px;}
._22_c00130{width:103.164000px;}
._29_c00130{width:104.559000px;}
._38_c00130{width:248.919600px;}
._2b_c00130{width:297.063000px;}
._37_c00130{width:357.036000px;}
._5_c00130{width:502.437000px;}
._28_c00130{width:597.630000px;}
._26_c00130{width:806.760000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(128,128,128);}
.fc0_c00130{color:rgb(0,0,0);}
.fs4_c00130{font-size:45.000000px;}
.fs5_c00130{font-size:48.000000px;}
.fs3_c00130{font-size:52.800000px;}
.fs6_c00130{font-size:54.000000px;}
.fs2_c00130{font-size:57.000000px;}
.fs7_c00130{font-size:60.000000px;}
.fs1_c00130{font-size:66.000000px;}
.fs0_c00130{font-size:69.000000px;}
.y0_c00130{bottom:0.000000px;}
.y20_c00130{bottom:3.105000px;}
.y1f_c00130{bottom:7.228369px;}
.y1e_c00130{bottom:60.420000px;}
.y1d_c00130{bottom:87.120000px;}
.y1c_c00130{bottom:132.270000px;}
.y1b_c00130{bottom:183.570000px;}
.y1a_c00130{bottom:200.070000px;}
.y19_c00130{bottom:218.070000px;}
.y18_c00130{bottom:236.220000px;}
.y17_c00130{bottom:253.170000px;}
.y16_c00130{bottom:270.720000px;}
.y15_c00130{bottom:288.120000px;}
.y14_c00130{bottom:322.920000px;}
.y13_c00130{bottom:357.420000px;}
.y12_c00130{bottom:374.970000px;}
.y11_c00130{bottom:392.370000px;}
.y10_c00130{bottom:409.770000px;}
.yf_c00130{bottom:427.170000px;}
.ye_c00130{bottom:461.370000px;}
.yd_c00130{bottom:495.720000px;}
.yc_c00130{bottom:512.670000px;}
.yb_c00130{bottom:529.170000px;}
.ya_c00130{bottom:547.470000px;}
.y9_c00130{bottom:564.870000px;}
.y8_c00130{bottom:599.370000px;}
.y7_c00130{bottom:634.770000px;}
.y6_c00130{bottom:652.320000px;}
.y5_c00130{bottom:670.170000px;}
.y4_c00130{bottom:687.870000px;}
.y3_c00130{bottom:705.270000px;}
.y2_c00130{bottom:740.070000px;}
.y1_c00130{bottom:777.270000px;}
.h9_c00130{height:13.200073px;}
.ha_c00130{height:43.804688px;}
.h5_c00130{height:52.668457px;}
.h6_c00130{height:55.914551px;}
.h7_c00130{height:75.966797px;}
.h3_c00130{height:77.247070px;}
.h8_c00130{height:80.758301px;}
.h4_c00130{height:83.563477px;}
.h2_c00130{height:87.361816px;}
.h1_c00130{height:810.750000px;}
.h0_c00130{height:811.050000px;}
.w1_c00130{width:104.875500px;}
.w0_c00130{width:543.750000px;}
.x0_c00130{left:0.000000px;}
.x7_c00130{left:21.000000px;}
.x4_c00130{left:22.200000px;}
.x5_c00130{left:24.300000px;}
.x3_c00130{left:38.400000px;}
.xa_c00130{left:45.600000px;}
.x9_c00130{left:55.950000px;}
.x6_c00130{left:151.800000px;}
.x8_c00130{left:154.800000px;}
.x2_c00130{left:160.650000px;}
.x1_c00130{left:172.050000px;}
.xc_c00130{left:223.689240px;}
.xb_c00130{left:304.050000px;}
@media print{
.v1_c00130{vertical-align:-68.266667pt;}
.v0_c00130{vertical-align:0.000000pt;}
.ls5_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.650667pt;}
.ls3_c00130{letter-spacing:2.640000pt;}
.ls6_c00130{letter-spacing:2.666667pt;}
.ls1_c00130{letter-spacing:5.333333pt;}
.ls4_c00130{letter-spacing:14.933333pt;}
.ls8_c00130{letter-spacing:24.000000pt;}
.ls7_c00130{letter-spacing:29.333333pt;}
.ls2_c00130{letter-spacing:50.626667pt;}
.ws6_c00130{word-spacing:-38.973333pt;}
.ws0_c00130{word-spacing:-38.368000pt;}
.ws5_c00130{word-spacing:-38.085333pt;}
.ws1_c00130{word-spacing:-30.694400pt;}
.ws7_c00130{word-spacing:-30.506667pt;}
.ws8_c00130{word-spacing:-29.333333pt;}
.ws4_c00130{word-spacing:-19.472000pt;}
.ws9_c00130{word-spacing:-14.781333pt;}
.ws3_c00130{word-spacing:-12.210667pt;}
.wsa_c00130{word-spacing:-1.992000pt;}
.wsb_c00130{word-spacing:0.000000pt;}
.ws2_c00130{word-spacing:514.773333pt;}
._27_c00130{margin-left:-29.978667pt;}
._1b_c00130{margin-left:-28.285333pt;}
._1a_c00130{margin-left:-26.800000pt;}
._1f_c00130{margin-left:-24.960000pt;}
._1d_c00130{margin-left:-23.605333pt;}
._18_c00130{margin-left:-19.800000pt;}
._1c_c00130{margin-left:-17.120000pt;}
._19_c00130{margin-left:-15.000000pt;}
._24_c00130{margin-left:-13.469333pt;}
._17_c00130{margin-left:-12.453867pt;}
._36_c00130{margin-left:-11.496000pt;}
._1e_c00130{margin-left:-10.501333pt;}
._6_c00130{margin-left:-9.200000pt;}
._e_c00130{margin-left:-8.157333pt;}
._11_c00130{margin-left:-7.210667pt;}
._d_c00130{margin-left:-5.674667pt;}
._9_c00130{margin-left:-4.661333pt;}
._14_c00130{margin-left:-3.770667pt;}
._4_c00130{margin-left:-2.821333pt;}
._3_c00130{margin-left:-1.840000pt;}
._13_c00130{margin-left:-0.933333pt;}
._0_c00130{width:1.104000pt;}
._1_c00130{width:2.208000pt;}
._12_c00130{width:3.802667pt;}
._2_c00130{width:4.722667pt;}
._10_c00130{width:5.978667pt;}
._7_c00130{width:8.789333pt;}
._15_c00130{width:10.544000pt;}
._21_c00130{width:11.466667pt;}
._c_c00130{width:13.381333pt;}
._a_c00130{width:16.618667pt;}
._8_c00130{width:18.280000pt;}
._35_c00130{width:19.200000pt;}
._b_c00130{width:20.104000pt;}
._33_c00130{width:21.528000pt;}
._34_c00130{width:23.597333pt;}
._20_c00130{width:24.773333pt;}
._2a_c00130{width:35.069333pt;}
._23_c00130{width:36.488000pt;}
._2f_c00130{width:38.560000pt;}
._f_c00130{width:40.520000pt;}
._2c_c00130{width:44.000000pt;}
._31_c00130{width:61.856000pt;}
._16_c00130{width:67.877333pt;}
._2e_c00130{width:70.189333pt;}
._2d_c00130{width:74.176000pt;}
._30_c00130{width:84.504000pt;}
._32_c00130{width:88.013333pt;}
._25_c00130{width:90.101867pt;}
._22_c00130{width:91.701333pt;}
._29_c00130{width:92.941333pt;}
._38_c00130{width:221.261867pt;}
._2b_c00130{width:264.056000pt;}
._37_c00130{width:317.365333pt;}
._5_c00130{width:446.610667pt;}
._28_c00130{width:531.226667pt;}
._26_c00130{width:717.120000pt;}
.fs4_c00130{font-size:40.000000pt;}
.fs5_c00130{font-size:42.666667pt;}
.fs3_c00130{font-size:46.933333pt;}
.fs6_c00130{font-size:48.000000pt;}
.fs2_c00130{font-size:50.666667pt;}
.fs7_c00130{font-size:53.333333pt;}
.fs1_c00130{font-size:58.666667pt;}
.fs0_c00130{font-size:61.333333pt;}
.y0_c00130{bottom:0.000000pt;}
.y20_c00130{bottom:2.760000pt;}
.y1f_c00130{bottom:6.425217pt;}
.y1e_c00130{bottom:53.706667pt;}
.y1d_c00130{bottom:77.440000pt;}
.y1c_c00130{bottom:117.573333pt;}
.y1b_c00130{bottom:163.173333pt;}
.y1a_c00130{bottom:177.840000pt;}
.y19_c00130{bottom:193.840000pt;}
.y18_c00130{bottom:209.973333pt;}
.y17_c00130{bottom:225.040000pt;}
.y16_c00130{bottom:240.640000pt;}
.y15_c00130{bottom:256.106667pt;}
.y14_c00130{bottom:287.040000pt;}
.y13_c00130{bottom:317.706667pt;}
.y12_c00130{bottom:333.306667pt;}
.y11_c00130{bottom:348.773333pt;}
.y10_c00130{bottom:364.240000pt;}
.yf_c00130{bottom:379.706667pt;}
.ye_c00130{bottom:410.106667pt;}
.yd_c00130{bottom:440.640000pt;}
.yc_c00130{bottom:455.706667pt;}
.yb_c00130{bottom:470.373333pt;}
.ya_c00130{bottom:486.640000pt;}
.y9_c00130{bottom:502.106667pt;}
.y8_c00130{bottom:532.773333pt;}
.y7_c00130{bottom:564.240000pt;}
.y6_c00130{bottom:579.840000pt;}
.y5_c00130{bottom:595.706667pt;}
.y4_c00130{bottom:611.440000pt;}
.y3_c00130{bottom:626.906667pt;}
.y2_c00130{bottom:657.840000pt;}
.y1_c00130{bottom:690.906667pt;}
.h9_c00130{height:11.733399pt;}
.ha_c00130{height:38.937500pt;}
.h5_c00130{height:46.816406pt;}
.h6_c00130{height:49.701823pt;}
.h7_c00130{height:67.526042pt;}
.h3_c00130{height:68.664062pt;}
.h8_c00130{height:71.785156pt;}
.h4_c00130{height:74.278646pt;}
.h2_c00130{height:77.654948pt;}
.h1_c00130{height:720.666667pt;}
.h0_c00130{height:720.933333pt;}
.w1_c00130{width:93.222667pt;}
.w0_c00130{width:483.333333pt;}
.x0_c00130{left:0.000000pt;}
.x7_c00130{left:18.666667pt;}
.x4_c00130{left:19.733333pt;}
.x5_c00130{left:21.600000pt;}
.x3_c00130{left:34.133333pt;}
.xa_c00130{left:40.533333pt;}
.x9_c00130{left:49.733333pt;}
.x6_c00130{left:134.933333pt;}
.x8_c00130{left:137.600000pt;}
.x2_c00130{left:142.800000pt;}
.x1_c00130{left:152.933333pt;}
.xc_c00130{left:198.834880pt;}
.xb_c00130{left:270.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_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_72d8fc120f008d5773cfe8c2.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_b0257cb6689bcc6fbbdfe204.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;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_c00131;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00131{font-family:ff3_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:ff4_c00131;src:url('chunks/assets/font_02283fecd04decf70a29a113.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_f8a635578786de4b5bea2bc6.woff2')format("woff");}.ff5_c00131{font-family:ff5_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:ff6_c00131;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls6_c00131{letter-spacing:0.000000px;}
.ls5_c00131{letter-spacing:2.325000px;}
.ls7_c00131{letter-spacing:3.000000px;}
.ls2_c00131{letter-spacing:4.350000px;}
.ls1_c00131{letter-spacing:4.704000px;}
.ls4_c00131{letter-spacing:13.725000px;}
.ls3_c00131{letter-spacing:20.304000px;}
.ls0_c00131{letter-spacing:30.618000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-32.361000px;}
.ws1_c00131{word-spacing:-16.215000px;}
.ws2_c00131{word-spacing:0.000000px;}
._18_c00131{margin-left:-28.014000px;}
._27_c00131{margin-left:-22.701000px;}
._23_c00131{margin-left:-19.941000px;}
._a_c00131{margin-left:-17.250000px;}
._c_c00131{margin-left:-14.214000px;}
._e_c00131{margin-left:-12.903000px;}
._13_c00131{margin-left:-11.730000px;}
._10_c00131{margin-left:-10.488000px;}
._19_c00131{margin-left:-8.970000px;}
._0_c00131{margin-left:-7.383000px;}
._11_c00131{margin-left:-6.072000px;}
._2a_c00131{margin-left:-4.761000px;}
._b_c00131{margin-left:-3.588000px;}
._6_c00131{margin-left:-2.415000px;}
._9_c00131{margin-left:-1.104000px;}
._3_c00131{width:1.518000px;}
._2_c00131{width:3.174000px;}
._5_c00131{width:4.209000px;}
._4_c00131{width:5.313000px;}
._1d_c00131{width:6.348000px;}
._d_c00131{width:7.452000px;}
._1c_c00131{width:8.556000px;}
._7_c00131{width:10.350000px;}
._22_c00131{width:11.592000px;}
._f_c00131{width:12.765000px;}
._16_c00131{width:14.007000px;}
._15_c00131{width:15.180000px;}
._1a_c00131{width:16.974000px;}
._1f_c00131{width:18.216000px;}
._8_c00131{width:19.320000px;}
._1e_c00131{width:20.907000px;}
._12_c00131{width:22.218000px;}
._24_c00131{width:24.114000px;}
._29_c00131{width:25.215000px;}
._1b_c00131{width:26.532000px;}
._2c_c00131{width:30.015000px;}
._2b_c00131{width:36.432000px;}
._21_c00131{width:45.816000px;}
._20_c00131{width:64.170000px;}
._28_c00131{width:97.014000px;}
._17_c00131{width:101.016000px;}
._25_c00131{width:102.465000px;}
._26_c00131{width:215.142000px;}
._14_c00131{width:293.871000px;}
._1_c00131{width:345.483000px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(128,128,128);}
.fc0_c00131{color:rgb(0,0,0);}
.fs1_c00131{font-size:48.000000px;}
.fs0_c00131{font-size:69.000000px;}
.y0_c00131{bottom:0.000000px;}
.y1f_c00131{bottom:3.105000px;}
.y1e_c00131{bottom:7.228369px;}
.y1d_c00131{bottom:95.520000px;}
.y1c_c00131{bottom:121.470000px;}
.y1b_c00131{bottom:146.820000px;}
.y1a_c00131{bottom:170.820000px;}
.y19_c00131{bottom:196.020000px;}
.y18_c00131{bottom:221.970000px;}
.y17_c00131{bottom:245.370000px;}
.y16_c00131{bottom:272.070000px;}
.y15_c00131{bottom:295.020000px;}
.y14_c00131{bottom:319.920000px;}
.y13_c00131{bottom:344.520000px;}
.y12_c00131{bottom:368.820000px;}
.y11_c00131{bottom:393.570000px;}
.y10_c00131{bottom:418.470000px;}
.yf_c00131{bottom:443.370000px;}
.ye_c00131{bottom:467.370000px;}
.yd_c00131{bottom:493.320000px;}
.yc_c00131{bottom:517.320000px;}
.yb_c00131{bottom:542.370000px;}
.ya_c00131{bottom:567.270000px;}
.y9_c00131{bottom:592.020000px;}
.y8_c00131{bottom:616.620000px;}
.y7_c00131{bottom:641.220000px;}
.y6_c00131{bottom:666.570000px;}
.y5_c00131{bottom:691.920000px;}
.y4_c00131{bottom:716.820000px;}
.y3_c00131{bottom:741.420000px;}
.y2_c00131{bottom:766.470000px;}
.y1_c00131{bottom:791.670000px;}
.h5_c00131{height:13.200073px;}
.h6_c00131{height:43.804688px;}
.h2_c00131{height:67.686035px;}
.h3_c00131{height:67.719727px;}
.h4_c00131{height:87.361816px;}
.h0_c00131{height:842.100000px;}
.h1_c00131{height:842.250000px;}
.w2_c00131{width:104.875500px;}
.w0_c00131{width:558.600000px;}
.w1_c00131{width:558.750000px;}
.x0_c00131{left:0.000000px;}
.xb_c00131{left:35.400000px;}
.x8_c00131{left:36.750000px;}
.xe_c00131{left:49.050000px;}
.xc_c00131{left:50.250000px;}
.xa_c00131{left:51.300000px;}
.x5_c00131{left:68.550000px;}
.xd_c00131{left:99.600000px;}
.x9_c00131{left:100.650000px;}
.x3_c00131{left:102.300000px;}
.x6_c00131{left:103.650000px;}
.x4_c00131{left:105.000000px;}
.x2_c00131{left:106.350000px;}
.x1_c00131{left:121.500000px;}
.x7_c00131{left:127.200000px;}
.xf_c00131{left:231.114258px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls6_c00131{letter-spacing:0.000000pt;}
.ls5_c00131{letter-spacing:2.066667pt;}
.ls7_c00131{letter-spacing:2.666667pt;}
.ls2_c00131{letter-spacing:3.866667pt;}
.ls1_c00131{letter-spacing:4.181333pt;}
.ls4_c00131{letter-spacing:12.200000pt;}
.ls3_c00131{letter-spacing:18.048000pt;}
.ls0_c00131{letter-spacing:27.216000pt;}
.ws0_c00131{word-spacing:-28.765333pt;}
.ws1_c00131{word-spacing:-14.413333pt;}
.ws2_c00131{word-spacing:0.000000pt;}
._18_c00131{margin-left:-24.901333pt;}
._27_c00131{margin-left:-20.178667pt;}
._23_c00131{margin-left:-17.725333pt;}
._a_c00131{margin-left:-15.333333pt;}
._c_c00131{margin-left:-12.634667pt;}
._e_c00131{margin-left:-11.469333pt;}
._13_c00131{margin-left:-10.426667pt;}
._10_c00131{margin-left:-9.322667pt;}
._19_c00131{margin-left:-7.973333pt;}
._0_c00131{margin-left:-6.562667pt;}
._11_c00131{margin-left:-5.397333pt;}
._2a_c00131{margin-left:-4.232000pt;}
._b_c00131{margin-left:-3.189333pt;}
._6_c00131{margin-left:-2.146667pt;}
._9_c00131{margin-left:-0.981333pt;}
._3_c00131{width:1.349333pt;}
._2_c00131{width:2.821333pt;}
._5_c00131{width:3.741333pt;}
._4_c00131{width:4.722667pt;}
._1d_c00131{width:5.642667pt;}
._d_c00131{width:6.624000pt;}
._1c_c00131{width:7.605333pt;}
._7_c00131{width:9.200000pt;}
._22_c00131{width:10.304000pt;}
._f_c00131{width:11.346667pt;}
._16_c00131{width:12.450667pt;}
._15_c00131{width:13.493333pt;}
._1a_c00131{width:15.088000pt;}
._1f_c00131{width:16.192000pt;}
._8_c00131{width:17.173333pt;}
._1e_c00131{width:18.584000pt;}
._12_c00131{width:19.749333pt;}
._24_c00131{width:21.434667pt;}
._29_c00131{width:22.413333pt;}
._1b_c00131{width:23.584000pt;}
._2c_c00131{width:26.680000pt;}
._2b_c00131{width:32.384000pt;}
._21_c00131{width:40.725333pt;}
._20_c00131{width:57.040000pt;}
._28_c00131{width:86.234667pt;}
._17_c00131{width:89.792000pt;}
._25_c00131{width:91.080000pt;}
._26_c00131{width:191.237333pt;}
._14_c00131{width:261.218667pt;}
._1_c00131{width:307.096000pt;}
.fs1_c00131{font-size:42.666667pt;}
.fs0_c00131{font-size:61.333333pt;}
.y0_c00131{bottom:0.000000pt;}
.y1f_c00131{bottom:2.760000pt;}
.y1e_c00131{bottom:6.425217pt;}
.y1d_c00131{bottom:84.906667pt;}
.y1c_c00131{bottom:107.973333pt;}
.y1b_c00131{bottom:130.506667pt;}
.y1a_c00131{bottom:151.840000pt;}
.y19_c00131{bottom:174.240000pt;}
.y18_c00131{bottom:197.306667pt;}
.y17_c00131{bottom:218.106667pt;}
.y16_c00131{bottom:241.840000pt;}
.y15_c00131{bottom:262.240000pt;}
.y14_c00131{bottom:284.373333pt;}
.y13_c00131{bottom:306.240000pt;}
.y12_c00131{bottom:327.840000pt;}
.y11_c00131{bottom:349.840000pt;}
.y10_c00131{bottom:371.973333pt;}
.yf_c00131{bottom:394.106667pt;}
.ye_c00131{bottom:415.440000pt;}
.yd_c00131{bottom:438.506667pt;}
.yc_c00131{bottom:459.840000pt;}
.yb_c00131{bottom:482.106667pt;}
.ya_c00131{bottom:504.240000pt;}
.y9_c00131{bottom:526.240000pt;}
.y8_c00131{bottom:548.106667pt;}
.y7_c00131{bottom:569.973333pt;}
.y6_c00131{bottom:592.506667pt;}
.y5_c00131{bottom:615.040000pt;}
.y4_c00131{bottom:637.173333pt;}
.y3_c00131{bottom:659.040000pt;}
.y2_c00131{bottom:681.306667pt;}
.y1_c00131{bottom:703.706667pt;}
.h5_c00131{height:11.733399pt;}
.h6_c00131{height:38.937500pt;}
.h2_c00131{height:60.165365pt;}
.h3_c00131{height:60.195312pt;}
.h4_c00131{height:77.654948pt;}
.h0_c00131{height:748.533333pt;}
.h1_c00131{height:748.666667pt;}
.w2_c00131{width:93.222667pt;}
.w0_c00131{width:496.533333pt;}
.w1_c00131{width:496.666667pt;}
.x0_c00131{left:0.000000pt;}
.xb_c00131{left:31.466667pt;}
.x8_c00131{left:32.666667pt;}
.xe_c00131{left:43.600000pt;}
.xc_c00131{left:44.666667pt;}
.xa_c00131{left:45.600000pt;}
.x5_c00131{left:60.933333pt;}
.xd_c00131{left:88.533333pt;}
.x9_c00131{left:89.466667pt;}
.x3_c00131{left:90.933333pt;}
.x6_c00131{left:92.133333pt;}
.x4_c00131{left:93.333333pt;}
.x2_c00131{left:94.533333pt;}
.x1_c00131{left:108.000000pt;}
.x7_c00131{left:113.066667pt;}
.xf_c00131{left:205.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_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_6413d658503a88a801a7519a.woff2')format("woff");}.ff1_c00132{font-family:ff1_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:ff2_c00132;src:url('chunks/assets/font_1719bcfb3718c77fd1e32811.woff2')format("woff");}.ff2_c00132{font-family:ff2_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:ff3_c00132;src:url('chunks/assets/font_f471475ad16040defc22d200.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00132{font-family:ff4_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;}
.v1_c00132{vertical-align:3.000000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:3.000000px;}
.ls2_c00132{letter-spacing:6.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00132{word-spacing:-50.022000px;}
.ws3_c00132{word-spacing:-21.075000px;}
.ws0_c00132{word-spacing:-16.629000px;}
.ws4_c00132{word-spacing:0.000000px;}
.ws2_c00132{word-spacing:506.415000px;}
._1a_c00132{margin-left:-22.212000px;}
._19_c00132{margin-left:-16.983000px;}
._11_c00132{margin-left:-13.179000px;}
._c_c00132{margin-left:-8.970000px;}
._f_c00132{margin-left:-7.521000px;}
._e_c00132{margin-left:-6.279000px;}
._8_c00132{margin-left:-4.554000px;}
._0_c00132{margin-left:-3.381000px;}
._3_c00132{margin-left:-2.070000px;}
._1_c00132{margin-left:-1.035000px;}
._15_c00132{width:1.104000px;}
._2_c00132{width:2.139000px;}
._6_c00132{width:3.174000px;}
._7_c00132{width:4.485000px;}
._b_c00132{width:6.486000px;}
._14_c00132{width:7.659000px;}
._5_c00132{width:9.936000px;}
._4_c00132{width:11.109000px;}
._16_c00132{width:12.282000px;}
._12_c00132{width:13.386000px;}
._13_c00132{width:14.835000px;}
._a_c00132{width:16.698000px;}
._9_c00132{width:17.802000px;}
._1c_c00132{width:21.183000px;}
._10_c00132{width:23.319000px;}
._1b_c00132{width:26.358000px;}
._1d_c00132{width:29.223000px;}
._d_c00132{width:31.032000px;}
._1e_c00132{width:33.534000px;}
._18_c00132{width:43.818000px;}
._17_c00132{width:213.141000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(128,128,128);}
.fc0_c00132{color:rgb(0,0,0);}
.fs3_c00132{font-size:48.000000px;}
.fs1_c00132{font-size:66.000000px;}
.fs0_c00132{font-size:69.000000px;}
.fs2_c00132{font-size:75.000000px;}
.y0_c00132{bottom:0.000000px;}
.ye_c00132{bottom:3.105000px;}
.yd_c00132{bottom:7.228363px;}
.yc_c00132{bottom:69.900000px;}
.yb_c00132{bottom:511.050000px;}
.ya_c00132{bottom:559.350000px;}
.y9_c00132{bottom:583.950000px;}
.y8_c00132{bottom:609.300000px;}
.y7_c00132{bottom:634.800000px;}
.y6_c00132{bottom:658.800000px;}
.y5_c00132{bottom:683.550000px;}
.y4_c00132{bottom:708.150000px;}
.y3_c00132{bottom:733.050000px;}
.y2_c00132{bottom:759.000000px;}
.y1_c00132{bottom:782.250000px;}
.h4_c00132{height:13.200074px;}
.h5_c00132{height:43.804688px;}
.h1_c00132{height:80.758301px;}
.h2_c00132{height:87.361816px;}
.h3_c00132{height:97.958496px;}
.h0_c00132{height:823.500000px;}
.w2_c00132{width:104.875500px;}
.w0_c00132{width:551.850000px;}
.w1_c00132{width:552.000000px;}
.x0_c00132{left:0.000000px;}
.x5_c00132{left:18.900000px;}
.x4_c00132{left:21.600000px;}
.x2_c00132{left:44.250000px;}
.x3_c00132{left:47.850000px;}
.x8_c00132{left:81.000000px;}
.x6_c00132{left:85.650000px;}
.x1_c00132{left:173.850000px;}
.x7_c00132{left:179.250000px;}
.xa_c00132{left:227.739258px;}
.x9_c00132{left:274.950000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:2.666667pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:2.666667pt;}
.ls2_c00132{letter-spacing:5.333333pt;}
.ws1_c00132{word-spacing:-44.464000pt;}
.ws3_c00132{word-spacing:-18.733333pt;}
.ws0_c00132{word-spacing:-14.781333pt;}
.ws4_c00132{word-spacing:0.000000pt;}
.ws2_c00132{word-spacing:450.146667pt;}
._1a_c00132{margin-left:-19.744000pt;}
._19_c00132{margin-left:-15.096000pt;}
._11_c00132{margin-left:-11.714667pt;}
._c_c00132{margin-left:-7.973333pt;}
._f_c00132{margin-left:-6.685333pt;}
._e_c00132{margin-left:-5.581333pt;}
._8_c00132{margin-left:-4.048000pt;}
._0_c00132{margin-left:-3.005333pt;}
._3_c00132{margin-left:-1.840000pt;}
._1_c00132{margin-left:-0.920000pt;}
._15_c00132{width:0.981333pt;}
._2_c00132{width:1.901333pt;}
._6_c00132{width:2.821333pt;}
._7_c00132{width:3.986667pt;}
._b_c00132{width:5.765333pt;}
._14_c00132{width:6.808000pt;}
._5_c00132{width:8.832000pt;}
._4_c00132{width:9.874667pt;}
._16_c00132{width:10.917333pt;}
._12_c00132{width:11.898667pt;}
._13_c00132{width:13.186667pt;}
._a_c00132{width:14.842667pt;}
._9_c00132{width:15.824000pt;}
._1c_c00132{width:18.829333pt;}
._10_c00132{width:20.728000pt;}
._1b_c00132{width:23.429333pt;}
._1d_c00132{width:25.976000pt;}
._d_c00132{width:27.584000pt;}
._1e_c00132{width:29.808000pt;}
._18_c00132{width:38.949333pt;}
._17_c00132{width:189.458667pt;}
.fs3_c00132{font-size:42.666667pt;}
.fs1_c00132{font-size:58.666667pt;}
.fs0_c00132{font-size:61.333333pt;}
.fs2_c00132{font-size:66.666667pt;}
.y0_c00132{bottom:0.000000pt;}
.ye_c00132{bottom:2.760000pt;}
.yd_c00132{bottom:6.425212pt;}
.yc_c00132{bottom:62.133333pt;}
.yb_c00132{bottom:454.266667pt;}
.ya_c00132{bottom:497.200000pt;}
.y9_c00132{bottom:519.066667pt;}
.y8_c00132{bottom:541.600000pt;}
.y7_c00132{bottom:564.266667pt;}
.y6_c00132{bottom:585.600000pt;}
.y5_c00132{bottom:607.600000pt;}
.y4_c00132{bottom:629.466667pt;}
.y3_c00132{bottom:651.600000pt;}
.y2_c00132{bottom:674.666667pt;}
.y1_c00132{bottom:695.333333pt;}
.h4_c00132{height:11.733399pt;}
.h5_c00132{height:38.937500pt;}
.h1_c00132{height:71.785156pt;}
.h2_c00132{height:77.654948pt;}
.h3_c00132{height:87.074219pt;}
.h0_c00132{height:732.000000pt;}
.w2_c00132{width:93.222667pt;}
.w0_c00132{width:490.533333pt;}
.w1_c00132{width:490.666667pt;}
.x0_c00132{left:0.000000pt;}
.x5_c00132{left:16.800000pt;}
.x4_c00132{left:19.200000pt;}
.x2_c00132{left:39.333333pt;}
.x3_c00132{left:42.533333pt;}
.x8_c00132{left:72.000000pt;}
.x6_c00132{left:76.133333pt;}
.x1_c00132{left:154.533333pt;}
.x7_c00132{left:159.333333pt;}
.xa_c00132{left:202.434896pt;}
.x9_c00132{left:244.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e42e572ebe807c056681b9eb.woff2')format("woff");}.ff1_c00133{font-family:ff1_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:ff2_c00133;src:url('chunks/assets/font_1b41d72dd6418d8a092d0fc4.woff2')format("woff");}.ff2_c00133{font-family:ff2_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:ff3_c00133;src:url('chunks/assets/font_a7475fba698c363fd6a15756.woff2')format("woff");}.ff3_c00133{font-family:ff3_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:ff4_c00133;src:url('chunks/assets/font_33a61c11d112f2cf41626e6e.woff2')format("woff");}.ff4_c00133{font-family:ff4_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:ff5_c00133;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00133{font-family:ff5_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;}
.ls5_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:3.000000px;}
.ls1_c00133{letter-spacing:9.000000px;}
.ls4_c00133{letter-spacing:21.000000px;}
.ls3_c00133{letter-spacing:27.000000px;}
.ls0_c00133{letter-spacing:120.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;}
}
.ws0_c00133{word-spacing:-343.080000px;}
.ws1_c00133{word-spacing:-89.523000px;}
.ws2_c00133{word-spacing:-43.629000px;}
.ws3_c00133{word-spacing:-37.629000px;}
.ws4_c00133{word-spacing:-16.629000px;}
.ws5_c00133{word-spacing:0.000000px;}
._3_c00133{margin-left:-50.310000px;}
._2_c00133{margin-left:-48.750000px;}
._0_c00133{margin-left:-45.240000px;}
._1_c00133{margin-left:-34.320000px;}
._24_c00133{margin-left:-22.770000px;}
._17_c00133{margin-left:-17.457000px;}
._1f_c00133{margin-left:-16.077000px;}
._1d_c00133{margin-left:-12.879000px;}
._18_c00133{margin-left:-11.766000px;}
._21_c00133{margin-left:-10.071000px;}
._23_c00133{margin-left:-8.838000px;}
._1c_c00133{margin-left:-7.293000px;}
._1a_c00133{margin-left:-5.796000px;}
._19_c00133{margin-left:-3.105000px;}
._f_c00133{margin-left:-1.863000px;}
._12_c00133{width:1.035000px;}
._13_c00133{width:2.520000px;}
._14_c00133{width:3.795000px;}
._10_c00133{width:5.244000px;}
._5_c00133{width:6.417000px;}
._4_c00133{width:7.866000px;}
._11_c00133{width:9.177000px;}
._d_c00133{width:10.488000px;}
._9_c00133{width:11.730000px;}
._16_c00133{width:12.792000px;}
._a_c00133{width:14.007000px;}
._15_c00133{width:15.036000px;}
._7_c00133{width:16.146000px;}
._c_c00133{width:17.319000px;}
._6_c00133{width:18.492000px;}
._b_c00133{width:21.459000px;}
._20_c00133{width:23.742000px;}
._1e_c00133{width:27.876000px;}
._22_c00133{width:30.705000px;}
._8_c00133{width:32.016000px;}
._25_c00133{width:33.189000px;}
._1b_c00133{width:41.817000px;}
._e_c00133{width:53.457000px;}
._26_c00133{width:909.693000px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs3_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:69.000000px;}
.fs1_c00133{font-size:207.000000px;}
.fs0_c00133{font-size:390.000000px;}
.y0_c00133{bottom:0.000000px;}
.y1a_c00133{bottom:3.105000px;}
.y19_c00133{bottom:7.228369px;}
.y17_c00133{bottom:67.170000px;}
.y16_c00133{bottom:92.070000px;}
.y15_c00133{bottom:117.720000px;}
.y14_c00133{bottom:142.770000px;}
.y13_c00133{bottom:166.770000px;}
.y12_c00133{bottom:192.720000px;}
.y11_c00133{bottom:218.370000px;}
.y10_c00133{bottom:242.670000px;}
.y18_c00133{bottom:258.570000px;}
.yf_c00133{bottom:267.870000px;}
.ye_c00133{bottom:292.320000px;}
.yd_c00133{bottom:316.920000px;}
.yc_c00133{bottom:342.870000px;}
.yb_c00133{bottom:365.220000px;}
.ya_c00133{bottom:390.720000px;}
.y9_c00133{bottom:415.470000px;}
.y8_c00133{bottom:440.370000px;}
.y7_c00133{bottom:465.420000px;}
.y6_c00133{bottom:490.320000px;}
.y5_c00133{bottom:541.320000px;}
.y4_c00133{bottom:581.520000px;}
.y3_c00133{bottom:613.620000px;}
.y2_c00133{bottom:643.620000px;}
.y1_c00133{bottom:705.270000px;}
.h6_c00133{height:13.200073px;}
.h7_c00133{height:43.804688px;}
.h5_c00133{height:80.758301px;}
.h4_c00133{height:87.361816px;}
.h3_c00133{height:216.936000px;}
.h2_c00133{height:493.784180px;}
.h1_c00133{height:832.500000px;}
.h0_c00133{height:832.650000px;}
.w2_c00133{width:104.875500px;}
.w0_c00133{width:551.850000px;}
.w1_c00133{width:552.000000px;}
.x0_c00133{left:0.000000px;}
.x12_c00133{left:33.150000px;}
.x10_c00133{left:89.700000px;}
.xc_c00133{left:96.450000px;}
.x3_c00133{left:98.250000px;}
.x1_c00133{left:104.700000px;}
.xe_c00133{left:114.300000px;}
.xf_c00133{left:116.700000px;}
.xd_c00133{left:118.050000px;}
.xb_c00133{left:119.100000px;}
.x2_c00133{left:191.700000px;}
.x5_c00133{left:206.850000px;}
.x4_c00133{left:219.000000px;}
.x13_c00133{left:227.739258px;}
.x11_c00133{left:246.600000px;}
.x6_c00133{left:249.450000px;}
.xa_c00133{left:253.800000px;}
.x9_c00133{left:256.800000px;}
.x8_c00133{left:258.150000px;}
.x7_c00133{left:260.550000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls5_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:2.666667pt;}
.ls1_c00133{letter-spacing:8.000000pt;}
.ls4_c00133{letter-spacing:18.666667pt;}
.ls3_c00133{letter-spacing:24.000000pt;}
.ls0_c00133{letter-spacing:106.666667pt;}
.ws0_c00133{word-spacing:-304.960000pt;}
.ws1_c00133{word-spacing:-79.576000pt;}
.ws2_c00133{word-spacing:-38.781333pt;}
.ws3_c00133{word-spacing:-33.448000pt;}
.ws4_c00133{word-spacing:-14.781333pt;}
.ws5_c00133{word-spacing:0.000000pt;}
._3_c00133{margin-left:-44.720000pt;}
._2_c00133{margin-left:-43.333333pt;}
._0_c00133{margin-left:-40.213333pt;}
._1_c00133{margin-left:-30.506667pt;}
._24_c00133{margin-left:-20.240000pt;}
._17_c00133{margin-left:-15.517333pt;}
._1f_c00133{margin-left:-14.290667pt;}
._1d_c00133{margin-left:-11.448000pt;}
._18_c00133{margin-left:-10.458667pt;}
._21_c00133{margin-left:-8.952000pt;}
._23_c00133{margin-left:-7.856000pt;}
._1c_c00133{margin-left:-6.482667pt;}
._1a_c00133{margin-left:-5.152000pt;}
._19_c00133{margin-left:-2.760000pt;}
._f_c00133{margin-left:-1.656000pt;}
._12_c00133{width:0.920000pt;}
._13_c00133{width:2.240000pt;}
._14_c00133{width:3.373333pt;}
._10_c00133{width:4.661333pt;}
._5_c00133{width:5.704000pt;}
._4_c00133{width:6.992000pt;}
._11_c00133{width:8.157333pt;}
._d_c00133{width:9.322667pt;}
._9_c00133{width:10.426667pt;}
._16_c00133{width:11.370667pt;}
._a_c00133{width:12.450667pt;}
._15_c00133{width:13.365333pt;}
._7_c00133{width:14.352000pt;}
._c_c00133{width:15.394667pt;}
._6_c00133{width:16.437333pt;}
._b_c00133{width:19.074667pt;}
._20_c00133{width:21.104000pt;}
._1e_c00133{width:24.778667pt;}
._22_c00133{width:27.293333pt;}
._8_c00133{width:28.458667pt;}
._25_c00133{width:29.501333pt;}
._1b_c00133{width:37.170667pt;}
._e_c00133{width:47.517333pt;}
._26_c00133{width:808.616000pt;}
.fs3_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:61.333333pt;}
.fs1_c00133{font-size:184.000000pt;}
.fs0_c00133{font-size:346.666667pt;}
.y0_c00133{bottom:0.000000pt;}
.y1a_c00133{bottom:2.760000pt;}
.y19_c00133{bottom:6.425217pt;}
.y17_c00133{bottom:59.706667pt;}
.y16_c00133{bottom:81.840000pt;}
.y15_c00133{bottom:104.640000pt;}
.y14_c00133{bottom:126.906667pt;}
.y13_c00133{bottom:148.240000pt;}
.y12_c00133{bottom:171.306667pt;}
.y11_c00133{bottom:194.106667pt;}
.y10_c00133{bottom:215.706667pt;}
.y18_c00133{bottom:229.840000pt;}
.yf_c00133{bottom:238.106667pt;}
.ye_c00133{bottom:259.840000pt;}
.yd_c00133{bottom:281.706667pt;}
.yc_c00133{bottom:304.773333pt;}
.yb_c00133{bottom:324.640000pt;}
.ya_c00133{bottom:347.306667pt;}
.y9_c00133{bottom:369.306667pt;}
.y8_c00133{bottom:391.440000pt;}
.y7_c00133{bottom:413.706667pt;}
.y6_c00133{bottom:435.840000pt;}
.y5_c00133{bottom:481.173333pt;}
.y4_c00133{bottom:516.906667pt;}
.y3_c00133{bottom:545.440000pt;}
.y2_c00133{bottom:572.106667pt;}
.y1_c00133{bottom:626.906667pt;}
.h6_c00133{height:11.733399pt;}
.h7_c00133{height:38.937500pt;}
.h5_c00133{height:71.785156pt;}
.h4_c00133{height:77.654948pt;}
.h3_c00133{height:192.832000pt;}
.h2_c00133{height:438.919271pt;}
.h1_c00133{height:740.000000pt;}
.h0_c00133{height:740.133333pt;}
.w2_c00133{width:93.222667pt;}
.w0_c00133{width:490.533333pt;}
.w1_c00133{width:490.666667pt;}
.x0_c00133{left:0.000000pt;}
.x12_c00133{left:29.466667pt;}
.x10_c00133{left:79.733333pt;}
.xc_c00133{left:85.733333pt;}
.x3_c00133{left:87.333333pt;}
.x1_c00133{left:93.066667pt;}
.xe_c00133{left:101.600000pt;}
.xf_c00133{left:103.733333pt;}
.xd_c00133{left:104.933333pt;}
.xb_c00133{left:105.866667pt;}
.x2_c00133{left:170.400000pt;}
.x5_c00133{left:183.866667pt;}
.x4_c00133{left:194.666667pt;}
.x13_c00133{left:202.434896pt;}
.x11_c00133{left:219.200000pt;}
.x6_c00133{left:221.733333pt;}
.xa_c00133{left:225.600000pt;}
.x9_c00133{left:228.266667pt;}
.x8_c00133{left:229.466667pt;}
.x7_c00133{left:231.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_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_b0ad753be2cd4bd549c951f4.woff2')format("woff");}.ff1_c00134{font-family:ff1_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:ff2_c00134;src:url('chunks/assets/font_ea7d601b8627ec3df50a81d0.woff2')format("woff");}.ff2_c00134{font-family:ff2_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:ff3_c00134;src:url('chunks/assets/font_524e1901eaa72e277f9e39c4.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;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_c00134;src:url('chunks/assets/font_bc4c4acd69b0eeddaafc4371.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_3ecb039bb1e29e2fcd227ecd.woff2')format("woff");}.ff5_c00134{font-family:ff5_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:ff6_c00134;src:url('chunks/assets/font_1a17445a9df93daa0c8f61e5.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00134;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00134{font-family:ff7_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;}
.ls2_c00134{letter-spacing:3.000000px;}
.ls3_c00134{letter-spacing:6.000000px;}
.ls0_c00134{letter-spacing:45.171000px;}
.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:-46.515000px;}
.ws4_c00134{word-spacing:-22.500000px;}
.ws3_c00134{word-spacing:-20.250000px;}
.ws6_c00134{word-spacing:-19.629000px;}
.ws5_c00134{word-spacing:-16.629000px;}
.ws2_c00134{word-spacing:-0.138000px;}
.ws7_c00134{word-spacing:0.000000px;}
.ws1_c00134{word-spacing:4.761000px;}
._25_c00134{margin-left:-36.144000px;}
._28_c00134{margin-left:-21.597000px;}
._21_c00134{margin-left:-18.945000px;}
._1f_c00134{margin-left:-16.668000px;}
._b_c00134{margin-left:-14.766000px;}
._22_c00134{margin-left:-13.731000px;}
._1e_c00134{margin-left:-11.730000px;}
._18_c00134{margin-left:-10.488000px;}
._a_c00134{margin-left:-8.211000px;}
._9_c00134{margin-left:-7.038000px;}
._11_c00134{margin-left:-5.727000px;}
._14_c00134{margin-left:-4.416000px;}
._4_c00134{margin-left:-2.553000px;}
._5_c00134{margin-left:-1.380000px;}
._0_c00134{width:1.173000px;}
._2_c00134{width:2.622000px;}
._f_c00134{width:3.696000px;}
._3_c00134{width:4.761000px;}
._16_c00134{width:5.811000px;}
._8_c00134{width:6.930000px;}
._15_c00134{width:8.310000px;}
._c_c00134{width:9.423000px;}
._6_c00134{width:11.040000px;}
._13_c00134{width:12.804000px;}
._1_c00134{width:14.214000px;}
._7_c00134{width:15.456000px;}
._23_c00134{width:16.668000px;}
._10_c00134{width:17.685000px;}
._1c_c00134{width:19.098000px;}
._1d_c00134{width:22.776000px;}
._26_c00134{width:26.901000px;}
._19_c00134{width:30.360000px;}
._1a_c00134{width:35.190000px;}
._e_c00134{width:36.225000px;}
._20_c00134{width:39.918000px;}
._1b_c00134{width:47.817000px;}
._12_c00134{width:49.335000px;}
._24_c00134{width:98.847000px;}
._27_c00134{width:125.871000px;}
._17_c00134{width:171.489000px;}
._d_c00134{width:708.828000px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(128,128,128);}
.fc0_c00134{color:rgb(0,0,0);}
.fs5_c00134{font-size:48.000000px;}
.fs2_c00134{font-size:51.000000px;}
.fs3_c00134{font-size:66.000000px;}
.fs0_c00134{font-size:69.000000px;}
.fs4_c00134{font-size:87.000000px;}
.fs1_c00134{font-size:105.000000px;}
.y0_c00134{bottom:0.000000px;}
.y1f_c00134{bottom:3.105000px;}
.y1e_c00134{bottom:7.228371px;}
.y1d_c00134{bottom:98.265000px;}
.y1c_c00134{bottom:123.315000px;}
.y1b_c00134{bottom:148.515000px;}
.y1a_c00134{bottom:173.115000px;}
.y19_c00134{bottom:198.165000px;}
.y18_c00134{bottom:223.215000px;}
.y17_c00134{bottom:248.115000px;}
.y16_c00134{bottom:272.715000px;}
.y15_c00134{bottom:297.765000px;}
.y14_c00134{bottom:322.065000px;}
.y13_c00134{bottom:347.265000px;}
.y12_c00134{bottom:371.715000px;}
.y11_c00134{bottom:397.365000px;}
.y10_c00134{bottom:421.965000px;}
.yf_c00134{bottom:446.865000px;}
.ye_c00134{bottom:471.615000px;}
.yd_c00134{bottom:495.165000px;}
.yc_c00134{bottom:520.065000px;}
.yb_c00134{bottom:545.415000px;}
.ya_c00134{bottom:569.115000px;}
.y9_c00134{bottom:595.365000px;}
.y8_c00134{bottom:618.615000px;}
.y7_c00134{bottom:643.065000px;}
.y6_c00134{bottom:668.565000px;}
.y5_c00134{bottom:692.865000px;}
.y4_c00134{bottom:717.315000px;}
.y3_c00134{bottom:742.965000px;}
.y2_c00134{bottom:767.115000px;}
.y1_c00134{bottom:791.415000px;}
.h7_c00134{height:13.200074px;}
.h8_c00134{height:43.804688px;}
.h4_c00134{height:64.571777px;}
.h5_c00134{height:80.758301px;}
.h2_c00134{height:87.361816px;}
.h6_c00134{height:110.151855px;}
.h3_c00134{height:113.820000px;}
.h1_c00134{height:831.000000px;}
.h0_c00134{height:831.075000px;}
.w1_c00134{width:104.875500px;}
.w0_c00134{width:557.250000px;}
.x0_c00134{left:0.000000px;}
.xa_c00134{left:24.300000px;}
.x7_c00134{left:25.650000px;}
.x3_c00134{left:28.950000px;}
.x5_c00134{left:30.600000px;}
.xb_c00134{left:31.650000px;}
.x2_c00134{left:49.500000px;}
.x4_c00134{left:52.350000px;}
.x6_c00134{left:54.000000px;}
.x9_c00134{left:55.650000px;}
.x8_c00134{left:76.500000px;}
.x1_c00134{left:190.050000px;}
.xc_c00134{left:230.439240px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls2_c00134{letter-spacing:2.666667pt;}
.ls3_c00134{letter-spacing:5.333333pt;}
.ls0_c00134{letter-spacing:40.152000pt;}
.ws0_c00134{word-spacing:-41.346667pt;}
.ws4_c00134{word-spacing:-20.000000pt;}
.ws3_c00134{word-spacing:-18.000000pt;}
.ws6_c00134{word-spacing:-17.448000pt;}
.ws5_c00134{word-spacing:-14.781333pt;}
.ws2_c00134{word-spacing:-0.122667pt;}
.ws7_c00134{word-spacing:0.000000pt;}
.ws1_c00134{word-spacing:4.232000pt;}
._25_c00134{margin-left:-32.128000pt;}
._28_c00134{margin-left:-19.197333pt;}
._21_c00134{margin-left:-16.840000pt;}
._1f_c00134{margin-left:-14.816000pt;}
._b_c00134{margin-left:-13.125333pt;}
._22_c00134{margin-left:-12.205333pt;}
._1e_c00134{margin-left:-10.426667pt;}
._18_c00134{margin-left:-9.322667pt;}
._a_c00134{margin-left:-7.298667pt;}
._9_c00134{margin-left:-6.256000pt;}
._11_c00134{margin-left:-5.090667pt;}
._14_c00134{margin-left:-3.925333pt;}
._4_c00134{margin-left:-2.269333pt;}
._5_c00134{margin-left:-1.226667pt;}
._0_c00134{width:1.042667pt;}
._2_c00134{width:2.330667pt;}
._f_c00134{width:3.285333pt;}
._3_c00134{width:4.232000pt;}
._16_c00134{width:5.165333pt;}
._8_c00134{width:6.160000pt;}
._15_c00134{width:7.386667pt;}
._c_c00134{width:8.376000pt;}
._6_c00134{width:9.813333pt;}
._13_c00134{width:11.381333pt;}
._1_c00134{width:12.634667pt;}
._7_c00134{width:13.738667pt;}
._23_c00134{width:14.816000pt;}
._10_c00134{width:15.720000pt;}
._1c_c00134{width:16.976000pt;}
._1d_c00134{width:20.245333pt;}
._26_c00134{width:23.912000pt;}
._19_c00134{width:26.986667pt;}
._1a_c00134{width:31.280000pt;}
._e_c00134{width:32.200000pt;}
._20_c00134{width:35.482667pt;}
._1b_c00134{width:42.504000pt;}
._12_c00134{width:43.853333pt;}
._24_c00134{width:87.864000pt;}
._27_c00134{width:111.885333pt;}
._17_c00134{width:152.434667pt;}
._d_c00134{width:630.069333pt;}
.fs5_c00134{font-size:42.666667pt;}
.fs2_c00134{font-size:45.333333pt;}
.fs3_c00134{font-size:58.666667pt;}
.fs0_c00134{font-size:61.333333pt;}
.fs4_c00134{font-size:77.333333pt;}
.fs1_c00134{font-size:93.333333pt;}
.y0_c00134{bottom:0.000000pt;}
.y1f_c00134{bottom:2.760000pt;}
.y1e_c00134{bottom:6.425219pt;}
.y1d_c00134{bottom:87.346667pt;}
.y1c_c00134{bottom:109.613333pt;}
.y1b_c00134{bottom:132.013333pt;}
.y1a_c00134{bottom:153.880000pt;}
.y19_c00134{bottom:176.146667pt;}
.y18_c00134{bottom:198.413333pt;}
.y17_c00134{bottom:220.546667pt;}
.y16_c00134{bottom:242.413333pt;}
.y15_c00134{bottom:264.680000pt;}
.y14_c00134{bottom:286.280000pt;}
.y13_c00134{bottom:308.680000pt;}
.y12_c00134{bottom:330.413333pt;}
.y11_c00134{bottom:353.213333pt;}
.y10_c00134{bottom:375.080000pt;}
.yf_c00134{bottom:397.213333pt;}
.ye_c00134{bottom:419.213333pt;}
.yd_c00134{bottom:440.146667pt;}
.yc_c00134{bottom:462.280000pt;}
.yb_c00134{bottom:484.813333pt;}
.ya_c00134{bottom:505.880000pt;}
.y9_c00134{bottom:529.213333pt;}
.y8_c00134{bottom:549.880000pt;}
.y7_c00134{bottom:571.613333pt;}
.y6_c00134{bottom:594.280000pt;}
.y5_c00134{bottom:615.880000pt;}
.y4_c00134{bottom:637.613333pt;}
.y3_c00134{bottom:660.413333pt;}
.y2_c00134{bottom:681.880000pt;}
.y1_c00134{bottom:703.480000pt;}
.h7_c00134{height:11.733399pt;}
.h8_c00134{height:38.937500pt;}
.h4_c00134{height:57.397135pt;}
.h5_c00134{height:71.785156pt;}
.h2_c00134{height:77.654948pt;}
.h6_c00134{height:97.912760pt;}
.h3_c00134{height:101.173333pt;}
.h1_c00134{height:738.666667pt;}
.h0_c00134{height:738.733333pt;}
.w1_c00134{width:93.222667pt;}
.w0_c00134{width:495.333333pt;}
.x0_c00134{left:0.000000pt;}
.xa_c00134{left:21.600000pt;}
.x7_c00134{left:22.800000pt;}
.x3_c00134{left:25.733333pt;}
.x5_c00134{left:27.200000pt;}
.xb_c00134{left:28.133333pt;}
.x2_c00134{left:44.000000pt;}
.x4_c00134{left:46.533333pt;}
.x6_c00134{left:48.000000pt;}
.x9_c00134{left:49.466667pt;}
.x8_c00134{left:68.000000pt;}
.x1_c00134{left:168.933333pt;}
.xc_c00134{left:204.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_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_e5fbe0c875d124070e76a18e.woff2')format("woff");}.ff1_c00135{font-family:ff1_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:ff2_c00135;src:url('chunks/assets/font_a1c9120cb9233e1f2b1a746a.woff2')format("woff");}.ff2_c00135{font-family:ff2_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:ff3_c00135;src:url('chunks/assets/font_11cf142ac71d688574136f44.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_f290aee9c473ce38ecd7266c.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;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_c00135;src:url('chunks/assets/font_aca23f4a01b6a8c15f847b8e.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;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_c00135;src:url('chunks/assets/font_6baf0a82185d4b51936d92cb.woff2')format("woff");}.ff6_c00135{font-family:ff6_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:ff7_c00135;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00135{font-family:ff7_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;}
.ls2_c00135{letter-spacing:2.400000px;}
.ls5_c00135{letter-spacing:3.000000px;}
.ls3_c00135{letter-spacing:3.720000px;}
.ls4_c00135{letter-spacing:4.125000px;}
.ls7_c00135{letter-spacing:6.000000px;}
.ls1_c00135{letter-spacing:16.380000px;}
.ls0_c00135{letter-spacing:16.800000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00135{word-spacing:-17.250000px;}
.ws6_c00135{word-spacing:-16.629000px;}
.ws4_c00135{word-spacing:-14.460000px;}
.ws0_c00135{word-spacing:-1.104000px;}
.ws1_c00135{word-spacing:-0.639000px;}
.ws5_c00135{word-spacing:-0.483000px;}
.ws8_c00135{word-spacing:0.000000px;}
.ws3_c00135{word-spacing:0.069000px;}
.ws7_c00135{word-spacing:2.697000px;}
._1a_c00135{margin-left:-30.843000px;}
._28_c00135{margin-left:-21.108000px;}
._20_c00135{margin-left:-16.782000px;}
._19_c00135{margin-left:-15.414000px;}
._16_c00135{margin-left:-13.587000px;}
._17_c00135{margin-left:-11.049000px;}
._1f_c00135{margin-left:-9.108000px;}
._a_c00135{margin-left:-7.935000px;}
._14_c00135{margin-left:-6.885000px;}
._1_c00135{margin-left:-5.865000px;}
._15_c00135{margin-left:-4.209000px;}
._13_c00135{margin-left:-3.192000px;}
._3_c00135{margin-left:-1.863000px;}
._5_c00135{width:1.104000px;}
._4_c00135{width:2.415000px;}
._b_c00135{width:3.450000px;}
._6_c00135{width:4.623000px;}
._7_c00135{width:6.141000px;}
._9_c00135{width:7.728000px;}
._11_c00135{width:9.609000px;}
._10_c00135{width:10.902000px;}
._8_c00135{width:12.558000px;}
._f_c00135{width:14.559000px;}
._0_c00135{width:15.939000px;}
._c_c00135{width:17.733000px;}
._26_c00135{width:18.780000px;}
._22_c00135{width:20.631000px;}
._23_c00135{width:22.161000px;}
._d_c00135{width:23.598000px;}
._1c_c00135{width:24.924000px;}
._21_c00135{width:26.997000px;}
._1d_c00135{width:28.896000px;}
._18_c00135{width:31.122000px;}
._12_c00135{width:35.655000px;}
._e_c00135{width:37.710000px;}
._27_c00135{width:40.044000px;}
._1e_c00135{width:85.767000px;}
._24_c00135{width:99.705000px;}
._1b_c00135{width:109.917000px;}
._25_c00135{width:190.716000px;}
._2_c00135{width:373.608000px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(128,128,128);}
.fc0_c00135{color:rgb(0,0,0);}
.fs1_c00135{font-size:48.000000px;}
.fs3_c00135{font-size:57.000000px;}
.fs2_c00135{font-size:60.000000px;}
.fs4_c00135{font-size:63.000000px;}
.fs0_c00135{font-size:69.000000px;}
.y0_c00135{bottom:0.000000px;}
.y1c_c00135{bottom:3.105000px;}
.y1b_c00135{bottom:7.228369px;}
.y19_c00135{bottom:146.820000px;}
.y18_c00135{bottom:173.070000px;}
.y17_c00135{bottom:198.420000px;}
.y1a_c00135{bottom:207.570000px;}
.y16_c00135{bottom:223.320000px;}
.y15_c00135{bottom:248.370000px;}
.y14_c00135{bottom:273.720000px;}
.y13_c00135{bottom:297.570000px;}
.y12_c00135{bottom:322.920000px;}
.y11_c00135{bottom:346.920000px;}
.y10_c00135{bottom:371.520000px;}
.yf_c00135{bottom:396.270000px;}
.ye_c00135{bottom:421.170000px;}
.yd_c00135{bottom:446.220000px;}
.yc_c00135{bottom:471.120000px;}
.yb_c00135{bottom:496.170000px;}
.ya_c00135{bottom:521.070000px;}
.y9_c00135{bottom:544.770000px;}
.y8_c00135{bottom:569.670000px;}
.y7_c00135{bottom:594.570000px;}
.y6_c00135{bottom:619.020000px;}
.y5_c00135{bottom:644.220000px;}
.y4_c00135{bottom:694.170000px;}
.y3_c00135{bottom:743.820000px;}
.y2_c00135{bottom:769.470000px;}
.y1_c00135{bottom:794.820000px;}
.h5_c00135{height:13.200073px;}
.h6_c00135{height:43.804688px;}
.h3_c00135{height:67.686035px;}
.h4_c00135{height:79.765137px;}
.h2_c00135{height:87.361816px;}
.h0_c00135{height:842.100000px;}
.h1_c00135{height:842.250000px;}
.w2_c00135{width:104.875500px;}
.w0_c00135{width:558.600000px;}
.w1_c00135{width:558.750000px;}
.x0_c00135{left:0.000000px;}
.x7_c00135{left:28.650000px;}
.xd_c00135{left:32.100000px;}
.xe_c00135{left:43.200000px;}
.xb_c00135{left:45.600000px;}
.xc_c00135{left:46.650000px;}
.x9_c00135{left:57.150000px;}
.xa_c00135{left:91.500000px;}
.x2_c00135{left:93.150000px;}
.x5_c00135{left:94.200000px;}
.x1_c00135{left:103.650000px;}
.x6_c00135{left:118.500000px;}
.x4_c00135{left:119.550000px;}
.x8_c00135{left:130.350000px;}
.x3_c00135{left:139.350000px;}
.xf_c00135{left:231.114258px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls6_c00135{letter-spacing:0.000000pt;}
.ls2_c00135{letter-spacing:2.133333pt;}
.ls5_c00135{letter-spacing:2.666667pt;}
.ls3_c00135{letter-spacing:3.306667pt;}
.ls4_c00135{letter-spacing:3.666667pt;}
.ls7_c00135{letter-spacing:5.333333pt;}
.ls1_c00135{letter-spacing:14.560000pt;}
.ls0_c00135{letter-spacing:14.933333pt;}
.ws2_c00135{word-spacing:-15.333333pt;}
.ws6_c00135{word-spacing:-14.781333pt;}
.ws4_c00135{word-spacing:-12.853333pt;}
.ws0_c00135{word-spacing:-0.981333pt;}
.ws1_c00135{word-spacing:-0.568000pt;}
.ws5_c00135{word-spacing:-0.429333pt;}
.ws8_c00135{word-spacing:0.000000pt;}
.ws3_c00135{word-spacing:0.061333pt;}
.ws7_c00135{word-spacing:2.397333pt;}
._1a_c00135{margin-left:-27.416000pt;}
._28_c00135{margin-left:-18.762667pt;}
._20_c00135{margin-left:-14.917333pt;}
._19_c00135{margin-left:-13.701333pt;}
._16_c00135{margin-left:-12.077333pt;}
._17_c00135{margin-left:-9.821333pt;}
._1f_c00135{margin-left:-8.096000pt;}
._a_c00135{margin-left:-7.053333pt;}
._14_c00135{margin-left:-6.120000pt;}
._1_c00135{margin-left:-5.213333pt;}
._15_c00135{margin-left:-3.741333pt;}
._13_c00135{margin-left:-2.837333pt;}
._3_c00135{margin-left:-1.656000pt;}
._5_c00135{width:0.981333pt;}
._4_c00135{width:2.146667pt;}
._b_c00135{width:3.066667pt;}
._6_c00135{width:4.109333pt;}
._7_c00135{width:5.458667pt;}
._9_c00135{width:6.869333pt;}
._11_c00135{width:8.541333pt;}
._10_c00135{width:9.690667pt;}
._8_c00135{width:11.162667pt;}
._f_c00135{width:12.941333pt;}
._0_c00135{width:14.168000pt;}
._c_c00135{width:15.762667pt;}
._26_c00135{width:16.693333pt;}
._22_c00135{width:18.338667pt;}
._23_c00135{width:19.698667pt;}
._d_c00135{width:20.976000pt;}
._1c_c00135{width:22.154667pt;}
._21_c00135{width:23.997333pt;}
._1d_c00135{width:25.685333pt;}
._18_c00135{width:27.664000pt;}
._12_c00135{width:31.693333pt;}
._e_c00135{width:33.520000pt;}
._27_c00135{width:35.594667pt;}
._1e_c00135{width:76.237333pt;}
._24_c00135{width:88.626667pt;}
._1b_c00135{width:97.704000pt;}
._25_c00135{width:169.525333pt;}
._2_c00135{width:332.096000pt;}
.fs1_c00135{font-size:42.666667pt;}
.fs3_c00135{font-size:50.666667pt;}
.fs2_c00135{font-size:53.333333pt;}
.fs4_c00135{font-size:56.000000pt;}
.fs0_c00135{font-size:61.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y1c_c00135{bottom:2.760000pt;}
.y1b_c00135{bottom:6.425217pt;}
.y19_c00135{bottom:130.506667pt;}
.y18_c00135{bottom:153.840000pt;}
.y17_c00135{bottom:176.373333pt;}
.y1a_c00135{bottom:184.506667pt;}
.y16_c00135{bottom:198.506667pt;}
.y15_c00135{bottom:220.773333pt;}
.y14_c00135{bottom:243.306667pt;}
.y13_c00135{bottom:264.506667pt;}
.y12_c00135{bottom:287.040000pt;}
.y11_c00135{bottom:308.373333pt;}
.y10_c00135{bottom:330.240000pt;}
.yf_c00135{bottom:352.240000pt;}
.ye_c00135{bottom:374.373333pt;}
.yd_c00135{bottom:396.640000pt;}
.yc_c00135{bottom:418.773333pt;}
.yb_c00135{bottom:441.040000pt;}
.ya_c00135{bottom:463.173333pt;}
.y9_c00135{bottom:484.240000pt;}
.y8_c00135{bottom:506.373333pt;}
.y7_c00135{bottom:528.506667pt;}
.y6_c00135{bottom:550.240000pt;}
.y5_c00135{bottom:572.640000pt;}
.y4_c00135{bottom:617.040000pt;}
.y3_c00135{bottom:661.173333pt;}
.y2_c00135{bottom:683.973333pt;}
.y1_c00135{bottom:706.506667pt;}
.h5_c00135{height:11.733399pt;}
.h6_c00135{height:38.937500pt;}
.h3_c00135{height:60.165365pt;}
.h4_c00135{height:70.902344pt;}
.h2_c00135{height:77.654948pt;}
.h0_c00135{height:748.533333pt;}
.h1_c00135{height:748.666667pt;}
.w2_c00135{width:93.222667pt;}
.w0_c00135{width:496.533333pt;}
.w1_c00135{width:496.666667pt;}
.x0_c00135{left:0.000000pt;}
.x7_c00135{left:25.466667pt;}
.xd_c00135{left:28.533333pt;}
.xe_c00135{left:38.400000pt;}
.xb_c00135{left:40.533333pt;}
.xc_c00135{left:41.466667pt;}
.x9_c00135{left:50.800000pt;}
.xa_c00135{left:81.333333pt;}
.x2_c00135{left:82.800000pt;}
.x5_c00135{left:83.733333pt;}
.x1_c00135{left:92.133333pt;}
.x6_c00135{left:105.333333pt;}
.x4_c00135{left:106.266667pt;}
.x8_c00135{left:115.866667pt;}
.x3_c00135{left:123.866667pt;}
.xf_c00135{left:205.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_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_7ee2ffcffb792f2ef7befb23.woff2')format("woff");}.ff1_c00136{font-family:ff1_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:ff2_c00136;src:url('chunks/assets/font_a90ee7003edc3cbed6a69a5b.woff2')format("woff");}.ff2_c00136{font-family:ff2_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:ff3_c00136;src:url('chunks/assets/font_aa5150a4562d176a9a52ab72.woff2')format("woff");}.ff3_c00136{font-family:ff3_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:ff4_c00136;src:url('chunks/assets/font_fd9bb623df9b0b6e113bab61.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00136{font-family:ff5_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:ff6_c00136;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00136{font-family:ff6_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;}
.ls8_c00136{letter-spacing:0.000000px;}
.ls7_c00136{letter-spacing:1.800000px;}
.ls3_c00136{letter-spacing:3.000000px;}
.ls1_c00136{letter-spacing:5.400000px;}
.ls5_c00136{letter-spacing:6.000000px;}
.ls6_c00136{letter-spacing:10.200000px;}
.ls4_c00136{letter-spacing:11.925000px;}
.ls0_c00136{letter-spacing:39.171000px;}
.ls2_c00136{letter-spacing:45.771000px;}
.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;}
}
.ws4_c00136{word-spacing:-50.022000px;}
.ws2_c00136{word-spacing:-16.629000px;}
.ws0_c00136{word-spacing:-1.119000px;}
.ws3_c00136{word-spacing:-0.690000px;}
.ws5_c00136{word-spacing:-0.345000px;}
.ws7_c00136{word-spacing:0.000000px;}
.ws6_c00136{word-spacing:0.690000px;}
.ws1_c00136{word-spacing:4.347000px;}
._2c_c00136{margin-left:-33.552000px;}
._24_c00136{margin-left:-29.946000px;}
._30_c00136{margin-left:-20.976000px;}
._2d_c00136{margin-left:-19.878000px;}
._2f_c00136{margin-left:-16.020000px;}
._9_c00136{margin-left:-13.386000px;}
._1c_c00136{margin-left:-12.351000px;}
._22_c00136{margin-left:-11.109000px;}
._2a_c00136{margin-left:-9.177000px;}
._17_c00136{margin-left:-8.142000px;}
._18_c00136{margin-left:-6.072000px;}
._19_c00136{margin-left:-4.830000px;}
._3_c00136{margin-left:-3.450000px;}
._16_c00136{margin-left:-2.415000px;}
._4_c00136{margin-left:-1.035000px;}
._1_c00136{width:1.449000px;}
._0_c00136{width:2.691000px;}
._a_c00136{width:3.864000px;}
._7_c00136{width:5.106000px;}
._8_c00136{width:6.486000px;}
._20_c00136{width:7.521000px;}
._f_c00136{width:8.556000px;}
._15_c00136{width:9.660000px;}
._13_c00136{width:10.902000px;}
._28_c00136{width:11.904000px;}
._2_c00136{width:13.110000px;}
._b_c00136{width:14.421000px;}
._1d_c00136{width:15.717000px;}
._c_c00136{width:17.127000px;}
._27_c00136{width:18.561000px;}
._d_c00136{width:20.454000px;}
._1a_c00136{width:21.651000px;}
._10_c00136{width:23.046000px;}
._11_c00136{width:24.288000px;}
._21_c00136{width:26.979000px;}
._14_c00136{width:28.428000px;}
._26_c00136{width:29.532000px;}
._23_c00136{width:31.248000px;}
._12_c00136{width:32.982000px;}
._29_c00136{width:35.340000px;}
._1b_c00136{width:37.605000px;}
._2e_c00136{width:38.733000px;}
._e_c00136{width:47.409000px;}
._5_c00136{width:66.360000px;}
._25_c00136{width:108.213000px;}
._1e_c00136{width:120.900000px;}
._1f_c00136{width:177.951000px;}
._31_c00136{width:201.141000px;}
._2b_c00136{width:237.651000px;}
._6_c00136{width:358.965000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(128,128,128);}
.fc0_c00136{color:rgb(0,0,0);}
.fs4_c00136{font-size:48.000000px;}
.fs3_c00136{font-size:66.000000px;}
.fs0_c00136{font-size:69.000000px;}
.fs1_c00136{font-size:75.000000px;}
.fs2_c00136{font-size:81.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1d_c00136{bottom:3.105000px;}
.y1c_c00136{bottom:7.228363px;}
.y1b_c00136{bottom:90.900000px;}
.y1a_c00136{bottom:116.400000px;}
.y19_c00136{bottom:141.150000px;}
.y18_c00136{bottom:165.450000px;}
.y17_c00136{bottom:190.650000px;}
.y16_c00136{bottom:214.950000px;}
.y15_c00136{bottom:240.600000px;}
.y14_c00136{bottom:264.900000px;}
.y13_c00136{bottom:289.650000px;}
.y12_c00136{bottom:313.950000px;}
.y11_c00136{bottom:339.300000px;}
.y10_c00136{bottom:363.900000px;}
.yf_c00136{bottom:387.900000px;}
.ye_c00136{bottom:413.400000px;}
.yd_c00136{bottom:438.000000px;}
.yc_c00136{bottom:462.750000px;}
.yb_c00136{bottom:487.650000px;}
.ya_c00136{bottom:511.350000px;}
.y9_c00136{bottom:535.650000px;}
.y8_c00136{bottom:559.950000px;}
.y7_c00136{bottom:584.850000px;}
.y6_c00136{bottom:609.600000px;}
.y5_c00136{bottom:634.950000px;}
.y4_c00136{bottom:659.100000px;}
.y3_c00136{bottom:684.450000px;}
.y2_c00136{bottom:734.400000px;}
.y1_c00136{bottom:783.300000px;}
.h5_c00136{height:13.200074px;}
.h6_c00136{height:43.804688px;}
.h4_c00136{height:80.758301px;}
.h2_c00136{height:87.361816px;}
.h3_c00136{height:94.958496px;}
.h1_c00136{height:815.250000px;}
.h0_c00136{height:815.400000px;}
.w2_c00136{width:104.875500px;}
.w0_c00136{width:546.450000px;}
.w1_c00136{width:546.750000px;}
.x0_c00136{left:0.000000px;}
.x4_c00136{left:24.600000px;}
.x6_c00136{left:25.650000px;}
.x7_c00136{left:27.000000px;}
.x9_c00136{left:28.050000px;}
.xa_c00136{left:29.250000px;}
.x3_c00136{left:48.150000px;}
.x5_c00136{left:49.950000px;}
.x8_c00136{left:62.400000px;}
.x2_c00136{left:68.400000px;}
.x1_c00136{left:186.000000px;}
.xb_c00136{left:225.039230px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls8_c00136{letter-spacing:0.000000pt;}
.ls7_c00136{letter-spacing:1.600000pt;}
.ls3_c00136{letter-spacing:2.666667pt;}
.ls1_c00136{letter-spacing:4.800000pt;}
.ls5_c00136{letter-spacing:5.333333pt;}
.ls6_c00136{letter-spacing:9.066667pt;}
.ls4_c00136{letter-spacing:10.600000pt;}
.ls0_c00136{letter-spacing:34.818667pt;}
.ls2_c00136{letter-spacing:40.685333pt;}
.ws4_c00136{word-spacing:-44.464000pt;}
.ws2_c00136{word-spacing:-14.781333pt;}
.ws0_c00136{word-spacing:-0.994667pt;}
.ws3_c00136{word-spacing:-0.613333pt;}
.ws5_c00136{word-spacing:-0.306667pt;}
.ws7_c00136{word-spacing:0.000000pt;}
.ws6_c00136{word-spacing:0.613333pt;}
.ws1_c00136{word-spacing:3.864000pt;}
._2c_c00136{margin-left:-29.824000pt;}
._24_c00136{margin-left:-26.618667pt;}
._30_c00136{margin-left:-18.645333pt;}
._2d_c00136{margin-left:-17.669333pt;}
._2f_c00136{margin-left:-14.240000pt;}
._9_c00136{margin-left:-11.898667pt;}
._1c_c00136{margin-left:-10.978667pt;}
._22_c00136{margin-left:-9.874667pt;}
._2a_c00136{margin-left:-8.157333pt;}
._17_c00136{margin-left:-7.237333pt;}
._18_c00136{margin-left:-5.397333pt;}
._19_c00136{margin-left:-4.293333pt;}
._3_c00136{margin-left:-3.066667pt;}
._16_c00136{margin-left:-2.146667pt;}
._4_c00136{margin-left:-0.920000pt;}
._1_c00136{width:1.288000pt;}
._0_c00136{width:2.392000pt;}
._a_c00136{width:3.434667pt;}
._7_c00136{width:4.538667pt;}
._8_c00136{width:5.765333pt;}
._20_c00136{width:6.685333pt;}
._f_c00136{width:7.605333pt;}
._15_c00136{width:8.586667pt;}
._13_c00136{width:9.690667pt;}
._28_c00136{width:10.581333pt;}
._2_c00136{width:11.653333pt;}
._b_c00136{width:12.818667pt;}
._1d_c00136{width:13.970667pt;}
._c_c00136{width:15.224000pt;}
._27_c00136{width:16.498667pt;}
._d_c00136{width:18.181333pt;}
._1a_c00136{width:19.245333pt;}
._10_c00136{width:20.485333pt;}
._11_c00136{width:21.589333pt;}
._21_c00136{width:23.981333pt;}
._14_c00136{width:25.269333pt;}
._26_c00136{width:26.250667pt;}
._23_c00136{width:27.776000pt;}
._12_c00136{width:29.317333pt;}
._29_c00136{width:31.413333pt;}
._1b_c00136{width:33.426667pt;}
._2e_c00136{width:34.429333pt;}
._e_c00136{width:42.141333pt;}
._5_c00136{width:58.986667pt;}
._25_c00136{width:96.189333pt;}
._1e_c00136{width:107.466667pt;}
._1f_c00136{width:158.178667pt;}
._31_c00136{width:178.792000pt;}
._2b_c00136{width:211.245333pt;}
._6_c00136{width:319.080000pt;}
.fs4_c00136{font-size:42.666667pt;}
.fs3_c00136{font-size:58.666667pt;}
.fs0_c00136{font-size:61.333333pt;}
.fs1_c00136{font-size:66.666667pt;}
.fs2_c00136{font-size:72.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y1d_c00136{bottom:2.760000pt;}
.y1c_c00136{bottom:6.425212pt;}
.y1b_c00136{bottom:80.800000pt;}
.y1a_c00136{bottom:103.466667pt;}
.y19_c00136{bottom:125.466667pt;}
.y18_c00136{bottom:147.066667pt;}
.y17_c00136{bottom:169.466667pt;}
.y16_c00136{bottom:191.066667pt;}
.y15_c00136{bottom:213.866667pt;}
.y14_c00136{bottom:235.466667pt;}
.y13_c00136{bottom:257.466667pt;}
.y12_c00136{bottom:279.066667pt;}
.y11_c00136{bottom:301.600000pt;}
.y10_c00136{bottom:323.466667pt;}
.yf_c00136{bottom:344.800000pt;}
.ye_c00136{bottom:367.466667pt;}
.yd_c00136{bottom:389.333333pt;}
.yc_c00136{bottom:411.333333pt;}
.yb_c00136{bottom:433.466667pt;}
.ya_c00136{bottom:454.533333pt;}
.y9_c00136{bottom:476.133333pt;}
.y8_c00136{bottom:497.733333pt;}
.y7_c00136{bottom:519.866667pt;}
.y6_c00136{bottom:541.866667pt;}
.y5_c00136{bottom:564.400000pt;}
.y4_c00136{bottom:585.866667pt;}
.y3_c00136{bottom:608.400000pt;}
.y2_c00136{bottom:652.800000pt;}
.y1_c00136{bottom:696.266667pt;}
.h5_c00136{height:11.733399pt;}
.h6_c00136{height:38.937500pt;}
.h4_c00136{height:71.785156pt;}
.h2_c00136{height:77.654948pt;}
.h3_c00136{height:84.407552pt;}
.h1_c00136{height:724.666667pt;}
.h0_c00136{height:724.800000pt;}
.w2_c00136{width:93.222667pt;}
.w0_c00136{width:485.733333pt;}
.w1_c00136{width:486.000000pt;}
.x0_c00136{left:0.000000pt;}
.x4_c00136{left:21.866667pt;}
.x6_c00136{left:22.800000pt;}
.x7_c00136{left:24.000000pt;}
.x9_c00136{left:24.933333pt;}
.xa_c00136{left:26.000000pt;}
.x3_c00136{left:42.800000pt;}
.x5_c00136{left:44.400000pt;}
.x8_c00136{left:55.466667pt;}
.x2_c00136{left:60.800000pt;}
.x1_c00136{left:165.333333pt;}
.xb_c00136{left:200.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97066c9428f4683a90f99028.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_1f17c1b526cb7c3b46da896d.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.568848;font-style:normal;font-weight:normal;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_bcd1a2a57a6b19e17ee0c290.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.568848;font-style:normal;font-weight:normal;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_2f5f4e8724c737f60d9df92e.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;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_c00137;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00137{font-family:ff5_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;}
.ls0_c00137{letter-spacing:0.000000px;}
.ls1_c00137{letter-spacing:3.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00137{word-spacing:-39.100800px;}
.ws3_c00137{word-spacing:-25.554000px;}
.ws2_c00137{word-spacing:-16.629000px;}
.ws0_c00137{word-spacing:-1.122000px;}
.ws5_c00137{word-spacing:0.000000px;}
.ws1_c00137{word-spacing:1.980000px;}
._1b_c00137{margin-left:-21.639000px;}
._a_c00137{margin-left:-9.315000px;}
._21_c00137{margin-left:-8.307000px;}
._9_c00137{margin-left:-7.218000px;}
._18_c00137{margin-left:-6.168000px;}
._5_c00137{margin-left:-4.212000px;}
._14_c00137{margin-left:-3.123000px;}
._6_c00137{margin-left:-2.106000px;}
._e_c00137{margin-left:-1.014000px;}
._f_c00137{width:1.326000px;}
._d_c00137{width:2.829000px;}
._c_c00137{width:3.864000px;}
._11_c00137{width:5.658000px;}
._17_c00137{width:7.299000px;}
._19_c00137{width:8.556000px;}
._1d_c00137{width:10.017000px;}
._15_c00137{width:11.166000px;}
._8_c00137{width:13.134000px;}
._12_c00137{width:14.898000px;}
._2_c00137{width:15.906000px;}
._1_c00137{width:17.820000px;}
._0_c00137{width:20.856000px;}
._1a_c00137{width:22.023000px;}
._3_c00137{width:23.430000px;}
._1e_c00137{width:25.353000px;}
._4_c00137{width:27.516000px;}
._7_c00137{width:36.072000px;}
._1c_c00137{width:40.719000px;}
._16_c00137{width:42.084000px;}
._22_c00137{width:58.995000px;}
._1f_c00137{width:95.070000px;}
._13_c00137{width:100.878000px;}
._20_c00137{width:202.881000px;}
._b_c00137{width:240.480000px;}
._10_c00137{width:241.983000px;}
._25_c00137{width:279.807000px;}
._23_c00137{width:413.547000px;}
._24_c00137{width:834.210000px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(128,128,128);}
.fc0_c00137{color:rgb(0,0,0);}
.fs4_c00137{font-size:24.000000px;}
.fs5_c00137{font-size:48.000000px;}
.fs3_c00137{font-size:55.200000px;}
.fs0_c00137{font-size:66.000000px;}
.fs2_c00137{font-size:69.000000px;}
.fs1_c00137{font-size:78.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1a_c00137{bottom:3.105000px;}
.y19_c00137{bottom:7.228369px;}
.y18_c00137{bottom:71.220000px;}
.y17_c00137{bottom:146.070000px;}
.y16_c00137{bottom:170.370000px;}
.y15_c00137{bottom:196.320000px;}
.y14_c00137{bottom:220.320000px;}
.y13_c00137{bottom:244.620000px;}
.y12_c00137{bottom:270.270000px;}
.y11_c00137{bottom:294.270000px;}
.y10_c00137{bottom:319.620000px;}
.yf_c00137{bottom:343.620000px;}
.ye_c00137{bottom:368.220000px;}
.yd_c00137{bottom:392.520000px;}
.yc_c00137{bottom:417.720000px;}
.yb_c00137{bottom:442.470000px;}
.ya_c00137{bottom:467.670000px;}
.y9_c00137{bottom:492.420000px;}
.y8_c00137{bottom:517.020000px;}
.y7_c00137{bottom:541.620000px;}
.y6_c00137{bottom:566.370000px;}
.y5_c00137{bottom:591.270000px;}
.y4_c00137{bottom:615.870000px;}
.y3_c00137{bottom:640.920000px;}
.y2_c00137{bottom:691.770000px;}
.y1_c00137{bottom:741.120000px;}
.h4_c00137{height:13.200073px;}
.h5_c00137{height:43.804688px;}
.h3_c00137{height:87.361816px;}
.h2_c00137{height:98.756836px;}
.h0_c00137{height:842.100000px;}
.h1_c00137{height:842.250000px;}
.w2_c00137{width:104.875500px;}
.w0_c00137{width:558.600000px;}
.w1_c00137{width:558.750000px;}
.x0_c00137{left:0.000000px;}
.x3_c00137{left:35.550000px;}
.x4_c00137{left:52.650000px;}
.x7_c00137{left:54.750000px;}
.x8_c00137{left:78.300000px;}
.x2_c00137{left:99.750000px;}
.x6_c00137{left:101.250000px;}
.x5_c00137{left:102.600000px;}
.x9_c00137{left:103.950000px;}
.xa_c00137{left:137.700000px;}
.x1_c00137{left:148.800000px;}
.xb_c00137{left:231.114258px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ls1_c00137{letter-spacing:2.666667pt;}
.ws4_c00137{word-spacing:-34.756267pt;}
.ws3_c00137{word-spacing:-22.714667pt;}
.ws2_c00137{word-spacing:-14.781333pt;}
.ws0_c00137{word-spacing:-0.997333pt;}
.ws5_c00137{word-spacing:0.000000pt;}
.ws1_c00137{word-spacing:1.760000pt;}
._1b_c00137{margin-left:-19.234667pt;}
._a_c00137{margin-left:-8.280000pt;}
._21_c00137{margin-left:-7.384000pt;}
._9_c00137{margin-left:-6.416000pt;}
._18_c00137{margin-left:-5.482667pt;}
._5_c00137{margin-left:-3.744000pt;}
._14_c00137{margin-left:-2.776000pt;}
._6_c00137{margin-left:-1.872000pt;}
._e_c00137{margin-left:-0.901333pt;}
._f_c00137{width:1.178667pt;}
._d_c00137{width:2.514667pt;}
._c_c00137{width:3.434667pt;}
._11_c00137{width:5.029333pt;}
._17_c00137{width:6.488000pt;}
._19_c00137{width:7.605333pt;}
._1d_c00137{width:8.904000pt;}
._15_c00137{width:9.925333pt;}
._8_c00137{width:11.674667pt;}
._12_c00137{width:13.242667pt;}
._2_c00137{width:14.138667pt;}
._1_c00137{width:15.840000pt;}
._0_c00137{width:18.538667pt;}
._1a_c00137{width:19.576000pt;}
._3_c00137{width:20.826667pt;}
._1e_c00137{width:22.536000pt;}
._4_c00137{width:24.458667pt;}
._7_c00137{width:32.064000pt;}
._1c_c00137{width:36.194667pt;}
._16_c00137{width:37.408000pt;}
._22_c00137{width:52.440000pt;}
._1f_c00137{width:84.506667pt;}
._13_c00137{width:89.669333pt;}
._20_c00137{width:180.338667pt;}
._b_c00137{width:213.760000pt;}
._10_c00137{width:215.096000pt;}
._25_c00137{width:248.717333pt;}
._23_c00137{width:367.597333pt;}
._24_c00137{width:741.520000pt;}
.fs4_c00137{font-size:21.333333pt;}
.fs5_c00137{font-size:42.666667pt;}
.fs3_c00137{font-size:49.066667pt;}
.fs0_c00137{font-size:58.666667pt;}
.fs2_c00137{font-size:61.333333pt;}
.fs1_c00137{font-size:69.333333pt;}
.y0_c00137{bottom:0.000000pt;}
.y1a_c00137{bottom:2.760000pt;}
.y19_c00137{bottom:6.425217pt;}
.y18_c00137{bottom:63.306667pt;}
.y17_c00137{bottom:129.840000pt;}
.y16_c00137{bottom:151.440000pt;}
.y15_c00137{bottom:174.506667pt;}
.y14_c00137{bottom:195.840000pt;}
.y13_c00137{bottom:217.440000pt;}
.y12_c00137{bottom:240.240000pt;}
.y11_c00137{bottom:261.573333pt;}
.y10_c00137{bottom:284.106667pt;}
.yf_c00137{bottom:305.440000pt;}
.ye_c00137{bottom:327.306667pt;}
.yd_c00137{bottom:348.906667pt;}
.yc_c00137{bottom:371.306667pt;}
.yb_c00137{bottom:393.306667pt;}
.ya_c00137{bottom:415.706667pt;}
.y9_c00137{bottom:437.706667pt;}
.y8_c00137{bottom:459.573333pt;}
.y7_c00137{bottom:481.440000pt;}
.y6_c00137{bottom:503.440000pt;}
.y5_c00137{bottom:525.573333pt;}
.y4_c00137{bottom:547.440000pt;}
.y3_c00137{bottom:569.706667pt;}
.y2_c00137{bottom:614.906667pt;}
.y1_c00137{bottom:658.773333pt;}
.h4_c00137{height:11.733399pt;}
.h5_c00137{height:38.937500pt;}
.h3_c00137{height:77.654948pt;}
.h2_c00137{height:87.783854pt;}
.h0_c00137{height:748.533333pt;}
.h1_c00137{height:748.666667pt;}
.w2_c00137{width:93.222667pt;}
.w0_c00137{width:496.533333pt;}
.w1_c00137{width:496.666667pt;}
.x0_c00137{left:0.000000pt;}
.x3_c00137{left:31.600000pt;}
.x4_c00137{left:46.800000pt;}
.x7_c00137{left:48.666667pt;}
.x8_c00137{left:69.600000pt;}
.x2_c00137{left:88.666667pt;}
.x6_c00137{left:90.000000pt;}
.x5_c00137{left:91.200000pt;}
.x9_c00137{left:92.400000pt;}
.xa_c00137{left:122.400000pt;}
.x1_c00137{left:132.266667pt;}
.xb_c00137{left:205.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_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_6f4fbf45162571e0a3ff8111.woff2')format("woff");}.ff1_c00138{font-family:ff1_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:ff2_c00138;src:url('chunks/assets/font_4dafa3a39603229384277541.woff2')format("woff");}.ff2_c00138{font-family:ff2_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:ff3_c00138;src:url('chunks/assets/font_739a1604bdbe542c750b9924.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;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_c00138;src:url('chunks/assets/font_d6f2754d707c79fecfe1ba1f.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;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_c00138;src:url('chunks/assets/font_1ff4cb1928feeb4982126d46.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_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:3.000000px;}
.ls3_c00138{letter-spacing:12.000000px;}
.ls0_c00138{letter-spacing:13.725000px;}
.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;}
}
.ws4_c00138{word-spacing:-19.629000px;}
.ws0_c00138{word-spacing:-16.629000px;}
.ws3_c00138{word-spacing:-0.804000px;}
.ws1_c00138{word-spacing:-0.069000px;}
.ws5_c00138{word-spacing:0.000000px;}
.ws2_c00138{word-spacing:1.104000px;}
._1f_c00138{margin-left:-30.642000px;}
._20_c00138{margin-left:-28.950000px;}
._22_c00138{margin-left:-27.213000px;}
._21_c00138{margin-left:-14.250000px;}
._23_c00138{margin-left:-11.232000px;}
._11_c00138{margin-left:-9.453000px;}
._e_c00138{margin-left:-8.142000px;}
._f_c00138{margin-left:-7.107000px;}
._10_c00138{margin-left:-5.094000px;}
._3_c00138{margin-left:-3.294000px;}
._0_c00138{margin-left:-1.656000px;}
._2_c00138{width:1.386000px;}
._1_c00138{width:3.366000px;}
._12_c00138{width:4.416000px;}
._13_c00138{width:5.880000px;}
._14_c00138{width:6.900000px;}
._18_c00138{width:8.088000px;}
._15_c00138{width:9.453000px;}
._d_c00138{width:10.971000px;}
._b_c00138{width:12.006000px;}
._5_c00138{width:13.041000px;}
._4_c00138{width:15.042000px;}
._17_c00138{width:16.974000px;}
._16_c00138{width:18.354000px;}
._9_c00138{width:19.734000px;}
._6_c00138{width:20.838000px;}
._1c_c00138{width:22.053000px;}
._c_c00138{width:23.184000px;}
._1d_c00138{width:25.305000px;}
._24_c00138{width:26.922000px;}
._a_c00138{width:30.429000px;}
._7_c00138{width:33.315000px;}
._8_c00138{width:38.547000px;}
._1b_c00138{width:45.564000px;}
._19_c00138{width:97.008000px;}
._1e_c00138{width:101.811000px;}
._1a_c00138{width:177.948000px;}
._25_c00138{width:556.350000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(128,128,128);}
.fc0_c00138{color:rgb(0,0,0);}
.fs5_c00138{font-size:48.000000px;}
.fs1_c00138{font-size:66.000000px;}
.fs0_c00138{font-size:69.000000px;}
.fs4_c00138{font-size:72.000000px;}
.fs3_c00138{font-size:75.000000px;}
.fs2_c00138{font-size:78.000000px;}
.y0_c00138{bottom:0.000000px;}
.y1f_c00138{bottom:3.105000px;}
.y1e_c00138{bottom:7.228363px;}
.y1b_c00138{bottom:71.550000px;}
.y1a_c00138{bottom:96.450000px;}
.y1d_c00138{bottom:118.050000px;}
.y19_c00138{bottom:121.500000px;}
.y1c_c00138{bottom:133.950000px;}
.y18_c00138{bottom:145.500000px;}
.y17_c00138{bottom:171.000000px;}
.y16_c00138{bottom:220.050000px;}
.y15_c00138{bottom:272.400000px;}
.y14_c00138{bottom:294.900000px;}
.y13_c00138{bottom:320.250000px;}
.y12_c00138{bottom:343.950000px;}
.y11_c00138{bottom:368.850000px;}
.y10_c00138{bottom:393.450000px;}
.yf_c00138{bottom:416.850000px;}
.ye_c00138{bottom:442.050000px;}
.yd_c00138{bottom:467.700000px;}
.yc_c00138{bottom:492.000000px;}
.yb_c00138{bottom:516.300000px;}
.ya_c00138{bottom:540.300000px;}
.y9_c00138{bottom:564.600000px;}
.y8_c00138{bottom:589.500000px;}
.y7_c00138{bottom:613.950000px;}
.y6_c00138{bottom:639.000000px;}
.y5_c00138{bottom:663.450000px;}
.y1_c00138{bottom:678.750000px;}
.y4_c00138{bottom:688.200000px;}
.y3_c00138{bottom:737.700000px;}
.y2_c00138{bottom:787.950000px;}
.h7_c00138{height:13.200074px;}
.h8_c00138{height:43.804688px;}
.h2_c00138{height:77.247070px;}
.h1_c00138{height:80.758301px;}
.h4_c00138{height:84.552000px;}
.h3_c00138{height:87.361816px;}
.h5_c00138{height:87.780762px;}
.h6_c00138{height:91.160156px;}
.h0_c00138{height:823.500000px;}
.w2_c00138{width:104.875500px;}
.w1_c00138{width:554.250000px;}
.w0_c00138{width:554.550000px;}
.x0_c00138{left:0.000000px;}
.x6_c00138{left:22.950000px;}
.x7_c00138{left:24.300000px;}
.xa_c00138{left:26.400000px;}
.x5_c00138{left:48.300000px;}
.x3_c00138{left:69.300000px;}
.x8_c00138{left:70.650000px;}
.x4_c00138{left:79.350000px;}
.x9_c00138{left:88.800000px;}
.x2_c00138{left:186.000000px;}
.xe_c00138{left:229.089249px;}
.xb_c00138{left:275.700000px;}
.xd_c00138{left:477.000000px;}
.xc_c00138{left:490.350000px;}
.x1_c00138{left:506.250000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls2_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:2.666667pt;}
.ls3_c00138{letter-spacing:10.666667pt;}
.ls0_c00138{letter-spacing:12.200000pt;}
.ws4_c00138{word-spacing:-17.448000pt;}
.ws0_c00138{word-spacing:-14.781333pt;}
.ws3_c00138{word-spacing:-0.714667pt;}
.ws1_c00138{word-spacing:-0.061333pt;}
.ws5_c00138{word-spacing:0.000000pt;}
.ws2_c00138{word-spacing:0.981333pt;}
._1f_c00138{margin-left:-27.237333pt;}
._20_c00138{margin-left:-25.733333pt;}
._22_c00138{margin-left:-24.189333pt;}
._21_c00138{margin-left:-12.666667pt;}
._23_c00138{margin-left:-9.984000pt;}
._11_c00138{margin-left:-8.402667pt;}
._e_c00138{margin-left:-7.237333pt;}
._f_c00138{margin-left:-6.317333pt;}
._10_c00138{margin-left:-4.528000pt;}
._3_c00138{margin-left:-2.928000pt;}
._0_c00138{margin-left:-1.472000pt;}
._2_c00138{width:1.232000pt;}
._1_c00138{width:2.992000pt;}
._12_c00138{width:3.925333pt;}
._13_c00138{width:5.226667pt;}
._14_c00138{width:6.133333pt;}
._18_c00138{width:7.189333pt;}
._15_c00138{width:8.402667pt;}
._d_c00138{width:9.752000pt;}
._b_c00138{width:10.672000pt;}
._5_c00138{width:11.592000pt;}
._4_c00138{width:13.370667pt;}
._17_c00138{width:15.088000pt;}
._16_c00138{width:16.314667pt;}
._9_c00138{width:17.541333pt;}
._6_c00138{width:18.522667pt;}
._1c_c00138{width:19.602667pt;}
._c_c00138{width:20.608000pt;}
._1d_c00138{width:22.493333pt;}
._24_c00138{width:23.930667pt;}
._a_c00138{width:27.048000pt;}
._7_c00138{width:29.613333pt;}
._8_c00138{width:34.264000pt;}
._1b_c00138{width:40.501333pt;}
._19_c00138{width:86.229333pt;}
._1e_c00138{width:90.498667pt;}
._1a_c00138{width:158.176000pt;}
._25_c00138{width:494.533333pt;}
.fs5_c00138{font-size:42.666667pt;}
.fs1_c00138{font-size:58.666667pt;}
.fs0_c00138{font-size:61.333333pt;}
.fs4_c00138{font-size:64.000000pt;}
.fs3_c00138{font-size:66.666667pt;}
.fs2_c00138{font-size:69.333333pt;}
.y0_c00138{bottom:0.000000pt;}
.y1f_c00138{bottom:2.760000pt;}
.y1e_c00138{bottom:6.425212pt;}
.y1b_c00138{bottom:63.600000pt;}
.y1a_c00138{bottom:85.733333pt;}
.y1d_c00138{bottom:104.933333pt;}
.y19_c00138{bottom:108.000000pt;}
.y1c_c00138{bottom:119.066667pt;}
.y18_c00138{bottom:129.333333pt;}
.y17_c00138{bottom:152.000000pt;}
.y16_c00138{bottom:195.600000pt;}
.y15_c00138{bottom:242.133333pt;}
.y14_c00138{bottom:262.133333pt;}
.y13_c00138{bottom:284.666667pt;}
.y12_c00138{bottom:305.733333pt;}
.y11_c00138{bottom:327.866667pt;}
.y10_c00138{bottom:349.733333pt;}
.yf_c00138{bottom:370.533333pt;}
.ye_c00138{bottom:392.933333pt;}
.yd_c00138{bottom:415.733333pt;}
.yc_c00138{bottom:437.333333pt;}
.yb_c00138{bottom:458.933333pt;}
.ya_c00138{bottom:480.266667pt;}
.y9_c00138{bottom:501.866667pt;}
.y8_c00138{bottom:524.000000pt;}
.y7_c00138{bottom:545.733333pt;}
.y6_c00138{bottom:568.000000pt;}
.y5_c00138{bottom:589.733333pt;}
.y1_c00138{bottom:603.333333pt;}
.y4_c00138{bottom:611.733333pt;}
.y3_c00138{bottom:655.733333pt;}
.y2_c00138{bottom:700.400000pt;}
.h7_c00138{height:11.733399pt;}
.h8_c00138{height:38.937500pt;}
.h2_c00138{height:68.664062pt;}
.h1_c00138{height:71.785156pt;}
.h4_c00138{height:75.157333pt;}
.h3_c00138{height:77.654948pt;}
.h5_c00138{height:78.027344pt;}
.h6_c00138{height:81.031250pt;}
.h0_c00138{height:732.000000pt;}
.w2_c00138{width:93.222667pt;}
.w1_c00138{width:492.666667pt;}
.w0_c00138{width:492.933333pt;}
.x0_c00138{left:0.000000pt;}
.x6_c00138{left:20.400000pt;}
.x7_c00138{left:21.600000pt;}
.xa_c00138{left:23.466667pt;}
.x5_c00138{left:42.933333pt;}
.x3_c00138{left:61.600000pt;}
.x8_c00138{left:62.800000pt;}
.x4_c00138{left:70.533333pt;}
.x9_c00138{left:78.933333pt;}
.x2_c00138{left:165.333333pt;}
.xe_c00138{left:203.634888pt;}
.xb_c00138{left:245.066667pt;}
.xd_c00138{left:424.000000pt;}
.xc_c00138{left:435.866667pt;}
.x1_c00138{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_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_fd2c9ef088fca61551ef422d.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;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_c00139;src:url('chunks/assets/font_6cce6429a6b8361a9956ee81.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_ef0d7de7355a32ef9385ddad.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.568848;font-style:normal;font-weight:normal;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_d7a53df567dd5e4490b7d2fe.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;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:ff5_c00139;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00139{font-family:ff5_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);}
.v1_c00139{vertical-align:-94.800000px;}
.v0_c00139{vertical-align:0.000000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls4_c00139{letter-spacing:3.000000px;}
.ls5_c00139{letter-spacing:6.000000px;}
.ls6_c00139{letter-spacing:9.000000px;}
.ls0_c00139{letter-spacing:14.175000px;}
.ls2_c00139{letter-spacing:17.775000px;}
.ls1_c00139{letter-spacing:22.701000px;}
.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;}
}
.ws2_c00139{word-spacing:-25.629000px;}
.ws0_c00139{word-spacing:-21.183000px;}
.ws3_c00139{word-spacing:-16.629000px;}
.ws1_c00139{word-spacing:-0.084000px;}
.ws4_c00139{word-spacing:0.000000px;}
._14_c00139{margin-left:-26.634000px;}
._23_c00139{margin-left:-22.200000px;}
._1b_c00139{margin-left:-17.514000px;}
._10_c00139{margin-left:-15.387000px;}
._24_c00139{margin-left:-13.800000px;}
._11_c00139{margin-left:-12.075000px;}
._27_c00139{margin-left:-10.488000px;}
._4_c00139{margin-left:-9.438000px;}
._28_c00139{margin-left:-8.349000px;}
._2_c00139{margin-left:-6.864000px;}
._3_c00139{margin-left:-5.550000px;}
._5_c00139{margin-left:-4.032000px;}
._0_c00139{margin-left:-2.484000px;}
._17_c00139{margin-left:-1.176000px;}
._8_c00139{width:1.035000px;}
._9_c00139{width:2.760000px;}
._b_c00139{width:4.002000px;}
._7_c00139{width:5.106000px;}
._a_c00139{width:6.831000px;}
._2a_c00139{width:7.935000px;}
._6_c00139{width:9.126000px;}
._1e_c00139{width:10.725000px;}
._1f_c00139{width:11.763000px;}
._20_c00139{width:13.443000px;}
._f_c00139{width:14.559000px;}
._19_c00139{width:16.371000px;}
._13_c00139{width:17.526000px;}
._1a_c00139{width:18.597000px;}
._16_c00139{width:20.943000px;}
._d_c00139{width:22.254000px;}
._c_c00139{width:28.635000px;}
._18_c00139{width:30.336000px;}
._e_c00139{width:36.666000px;}
._21_c00139{width:39.735000px;}
._22_c00139{width:45.255000px;}
._15_c00139{width:54.717000px;}
._26_c00139{width:73.692000px;}
._12_c00139{width:103.761000px;}
._25_c00139{width:105.264000px;}
._1c_c00139{width:141.714000px;}
._29_c00139{width:203.373000px;}
._2c_c00139{width:304.992000px;}
._1_c00139{width:338.196000px;}
._1d_c00139{width:403.512000px;}
._2b_c00139{width:1327.251000px;}
.fc2_c00139{color:transparent;}
.fc1_c00139{color:rgb(128,128,128);}
.fc0_c00139{color:rgb(0,0,0);}
.fs4_c00139{font-size:48.000000px;}
.fs2_c00139{font-size:63.000000px;}
.fs0_c00139{font-size:69.000000px;}
.fs1_c00139{font-size:78.000000px;}
.fs3_c00139{font-size:84.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1f_c00139{bottom:3.105000px;}
.y1e_c00139{bottom:7.228369px;}
.y1b_c00139{bottom:92.820000px;}
.y1a_c00139{bottom:115.320000px;}
.y19_c00139{bottom:143.670000px;}
.y18_c00139{bottom:168.420000px;}
.y17_c00139{bottom:193.770000px;}
.y16_c00139{bottom:218.670000px;}
.y15_c00139{bottom:242.970000px;}
.y14_c00139{bottom:268.920000px;}
.y13_c00139{bottom:293.520000px;}
.y12_c00139{bottom:318.870000px;}
.y11_c00139{bottom:343.170000px;}
.y1d_c00139{bottom:354.270000px;}
.y10_c00139{bottom:367.620000px;}
.y1c_c00139{bottom:388.470000px;}
.yf_c00139{bottom:392.520000px;}
.ye_c00139{bottom:417.420000px;}
.yd_c00139{bottom:442.170000px;}
.yc_c00139{bottom:467.370000px;}
.yb_c00139{bottom:517.020000px;}
.ya_c00139{bottom:566.670000px;}
.y9_c00139{bottom:591.870000px;}
.y8_c00139{bottom:615.870000px;}
.y7_c00139{bottom:641.820000px;}
.y6_c00139{bottom:665.820000px;}
.y5_c00139{bottom:690.870000px;}
.y4_c00139{bottom:715.470000px;}
.y3_c00139{bottom:740.820000px;}
.y2_c00139{bottom:765.420000px;}
.y1_c00139{bottom:790.770000px;}
.h6_c00139{height:13.200073px;}
.h7_c00139{height:43.804688px;}
.h3_c00139{height:87.361816px;}
.h4_c00139{height:87.445312px;}
.h5_c00139{height:87.961816px;}
.h2_c00139{height:91.291992px;}
.h0_c00139{height:842.100000px;}
.h1_c00139{height:842.250000px;}
.w2_c00139{width:104.875500px;}
.w0_c00139{width:558.600000px;}
.w1_c00139{width:558.750000px;}
.x0_c00139{left:0.000000px;}
.x3_c00139{left:29.400000px;}
.xd_c00139{left:31.650000px;}
.x9_c00139{left:33.000000px;}
.x4_c00139{left:46.800000px;}
.x8_c00139{left:47.850000px;}
.xc_c00139{left:60.450000px;}
.x5_c00139{left:72.600000px;}
.xa_c00139{left:75.900000px;}
.x2_c00139{left:96.900000px;}
.xb_c00139{left:98.250000px;}
.x1_c00139{left:110.400000px;}
.x7_c00139{left:120.450000px;}
.x6_c00139{left:142.350000px;}
.xe_c00139{left:231.114258px;}
@media print{
.v1_c00139{vertical-align:-84.266667pt;}
.v0_c00139{vertical-align:0.000000pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls4_c00139{letter-spacing:2.666667pt;}
.ls5_c00139{letter-spacing:5.333333pt;}
.ls6_c00139{letter-spacing:8.000000pt;}
.ls0_c00139{letter-spacing:12.600000pt;}
.ls2_c00139{letter-spacing:15.800000pt;}
.ls1_c00139{letter-spacing:20.178667pt;}
.ws2_c00139{word-spacing:-22.781333pt;}
.ws0_c00139{word-spacing:-18.829333pt;}
.ws3_c00139{word-spacing:-14.781333pt;}
.ws1_c00139{word-spacing:-0.074667pt;}
.ws4_c00139{word-spacing:0.000000pt;}
._14_c00139{margin-left:-23.674667pt;}
._23_c00139{margin-left:-19.733333pt;}
._1b_c00139{margin-left:-15.568000pt;}
._10_c00139{margin-left:-13.677333pt;}
._24_c00139{margin-left:-12.266667pt;}
._11_c00139{margin-left:-10.733333pt;}
._27_c00139{margin-left:-9.322667pt;}
._4_c00139{margin-left:-8.389333pt;}
._28_c00139{margin-left:-7.421333pt;}
._2_c00139{margin-left:-6.101333pt;}
._3_c00139{margin-left:-4.933333pt;}
._5_c00139{margin-left:-3.584000pt;}
._0_c00139{margin-left:-2.208000pt;}
._17_c00139{margin-left:-1.045333pt;}
._8_c00139{width:0.920000pt;}
._9_c00139{width:2.453333pt;}
._b_c00139{width:3.557333pt;}
._7_c00139{width:4.538667pt;}
._a_c00139{width:6.072000pt;}
._2a_c00139{width:7.053333pt;}
._6_c00139{width:8.112000pt;}
._1e_c00139{width:9.533333pt;}
._1f_c00139{width:10.456000pt;}
._20_c00139{width:11.949333pt;}
._f_c00139{width:12.941333pt;}
._19_c00139{width:14.552000pt;}
._13_c00139{width:15.578667pt;}
._1a_c00139{width:16.530667pt;}
._16_c00139{width:18.616000pt;}
._d_c00139{width:19.781333pt;}
._c_c00139{width:25.453333pt;}
._18_c00139{width:26.965333pt;}
._e_c00139{width:32.592000pt;}
._21_c00139{width:35.320000pt;}
._22_c00139{width:40.226667pt;}
._15_c00139{width:48.637333pt;}
._26_c00139{width:65.504000pt;}
._12_c00139{width:92.232000pt;}
._25_c00139{width:93.568000pt;}
._1c_c00139{width:125.968000pt;}
._29_c00139{width:180.776000pt;}
._2c_c00139{width:271.104000pt;}
._1_c00139{width:300.618667pt;}
._1d_c00139{width:358.677333pt;}
._2b_c00139{width:1179.778667pt;}
.fs4_c00139{font-size:42.666667pt;}
.fs2_c00139{font-size:56.000000pt;}
.fs0_c00139{font-size:61.333333pt;}
.fs1_c00139{font-size:69.333333pt;}
.fs3_c00139{font-size:74.666667pt;}
.y0_c00139{bottom:0.000000pt;}
.y1f_c00139{bottom:2.760000pt;}
.y1e_c00139{bottom:6.425217pt;}
.y1b_c00139{bottom:82.506667pt;}
.y1a_c00139{bottom:102.506667pt;}
.y19_c00139{bottom:127.706667pt;}
.y18_c00139{bottom:149.706667pt;}
.y17_c00139{bottom:172.240000pt;}
.y16_c00139{bottom:194.373333pt;}
.y15_c00139{bottom:215.973333pt;}
.y14_c00139{bottom:239.040000pt;}
.y13_c00139{bottom:260.906667pt;}
.y12_c00139{bottom:283.440000pt;}
.y11_c00139{bottom:305.040000pt;}
.y1d_c00139{bottom:314.906667pt;}
.y10_c00139{bottom:326.773333pt;}
.y1c_c00139{bottom:345.306667pt;}
.yf_c00139{bottom:348.906667pt;}
.ye_c00139{bottom:371.040000pt;}
.yd_c00139{bottom:393.040000pt;}
.yc_c00139{bottom:415.440000pt;}
.yb_c00139{bottom:459.573333pt;}
.ya_c00139{bottom:503.706667pt;}
.y9_c00139{bottom:526.106667pt;}
.y8_c00139{bottom:547.440000pt;}
.y7_c00139{bottom:570.506667pt;}
.y6_c00139{bottom:591.840000pt;}
.y5_c00139{bottom:614.106667pt;}
.y4_c00139{bottom:635.973333pt;}
.y3_c00139{bottom:658.506667pt;}
.y2_c00139{bottom:680.373333pt;}
.y1_c00139{bottom:702.906667pt;}
.h6_c00139{height:11.733399pt;}
.h7_c00139{height:38.937500pt;}
.h3_c00139{height:77.654948pt;}
.h4_c00139{height:77.729167pt;}
.h5_c00139{height:78.188281pt;}
.h2_c00139{height:81.148438pt;}
.h0_c00139{height:748.533333pt;}
.h1_c00139{height:748.666667pt;}
.w2_c00139{width:93.222667pt;}
.w0_c00139{width:496.533333pt;}
.w1_c00139{width:496.666667pt;}
.x0_c00139{left:0.000000pt;}
.x3_c00139{left:26.133333pt;}
.xd_c00139{left:28.133333pt;}
.x9_c00139{left:29.333333pt;}
.x4_c00139{left:41.600000pt;}
.x8_c00139{left:42.533333pt;}
.xc_c00139{left:53.733333pt;}
.x5_c00139{left:64.533333pt;}
.xa_c00139{left:67.466667pt;}
.x2_c00139{left:86.133333pt;}
.xb_c00139{left:87.333333pt;}
.x1_c00139{left:98.133333pt;}
.x7_c00139{left:107.066667pt;}
.x6_c00139{left:126.533333pt;}
.xe_c00139{left:205.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_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_dee2f504cc872836c69a0eea.woff2')format("woff");}.ff1_c00140{font-family:ff1_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:ff2_c00140;src:url('chunks/assets/font_143203a511e8f50c092357c0.woff2')format("woff");}.ff2_c00140{font-family:ff2_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:ff3_c00140;src:url('chunks/assets/font_c6f188057542010f8731c045.woff2')format("woff");}.ff3_c00140{font-family:ff3_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:ff4_c00140;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff4_c00140{font-family:ff4_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:ff5_c00140;src:url('chunks/assets/font_b7e7a78fe7e1868b0b3be8dd.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;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_c00140;src:url('chunks/assets/font_cecd6d3af61222fa43857f96.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00140{font-family:ff7_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;}
.ls9_c00140{letter-spacing:0.000000px;}
.ls3_c00140{letter-spacing:1.530000px;}
.ls5_c00140{letter-spacing:3.000000px;}
.ls7_c00140{letter-spacing:5.250000px;}
.lsa_c00140{letter-spacing:6.000000px;}
.ls6_c00140{letter-spacing:9.000000px;}
.ls0_c00140{letter-spacing:12.555000px;}
.ls8_c00140{letter-spacing:19.356000px;}
.ls4_c00140{letter-spacing:19.800000px;}
.ls2_c00140{letter-spacing:26.349000px;}
.ls1_c00140{letter-spacing:86.355000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-34.320000px;}
.ws5_c00140{word-spacing:-33.582000px;}
.ws2_c00140{word-spacing:-33.000000px;}
.ws3_c00140{word-spacing:-25.629000px;}
.ws9_c00140{word-spacing:-24.582000px;}
.ws7_c00140{word-spacing:-23.325000px;}
.ws0_c00140{word-spacing:-16.845000px;}
.ws8_c00140{word-spacing:-16.728000px;}
.ws4_c00140{word-spacing:-16.629000px;}
.ws6_c00140{word-spacing:-0.108000px;}
.wsa_c00140{word-spacing:0.000000px;}
._28_c00140{margin-left:-36.402000px;}
._22_c00140{margin-left:-30.642000px;}
._20_c00140{margin-left:-27.846000px;}
._1e_c00140{margin-left:-24.378000px;}
._1b_c00140{margin-left:-22.416000px;}
._1f_c00140{margin-left:-21.114000px;}
._1a_c00140{margin-left:-19.596000px;}
._26_c00140{margin-left:-18.210000px;}
._29_c00140{margin-left:-16.203000px;}
._7_c00140{margin-left:-14.976000px;}
._21_c00140{margin-left:-12.546000px;}
._17_c00140{margin-left:-10.620000px;}
._18_c00140{margin-left:-9.177000px;}
._19_c00140{margin-left:-7.320000px;}
._8_c00140{margin-left:-5.616000px;}
._23_c00140{margin-left:-4.563000px;}
._11_c00140{margin-left:-3.495000px;}
._3_c00140{margin-left:-2.442000px;}
._c_c00140{margin-left:-1.431000px;}
._1_c00140{width:1.386000px;}
._0_c00140{width:3.366000px;}
._e_c00140{width:5.355000px;}
._a_c00140{width:6.795000px;}
._6_c00140{width:7.956000px;}
._10_c00140{width:9.021000px;}
._2_c00140{width:10.032000px;}
._5_c00140{width:12.090000px;}
._15_c00140{width:14.007000px;}
._16_c00140{width:15.906000px;}
._f_c00140{width:17.625000px;}
._1c_c00140{width:19.431000px;}
._d_c00140{width:21.555000px;}
._b_c00140{width:23.670000px;}
._24_c00140{width:25.551000px;}
._25_c00140{width:26.673000px;}
._9_c00140{width:28.224000px;}
._13_c00140{width:34.704000px;}
._14_c00140{width:37.668000px;}
._2b_c00140{width:51.066000px;}
._27_c00140{width:102.060000px;}
._2a_c00140{width:105.495000px;}
._12_c00140{width:108.489000px;}
._1d_c00140{width:162.753000px;}
._4_c00140{width:496.272000px;}
._2c_c00140{width:621.138000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(128,128,128);}
.fc0_c00140{color:rgb(0,0,0);}
.fs2_c00140{font-size:45.000000px;}
.fs3_c00140{font-size:48.000000px;}
.fs4_c00140{font-size:60.000000px;}
.fs0_c00140{font-size:66.000000px;}
.fs5_c00140{font-size:69.000000px;}
.fs8_c00140{font-size:75.000000px;}
.fs1_c00140{font-size:78.000000px;}
.fs6_c00140{font-size:102.000000px;}
.fs7_c00140{font-size:108.000000px;}
.y0_c00140{bottom:0.000000px;}
.y21_c00140{bottom:3.105000px;}
.y20_c00140{bottom:7.228371px;}
.y1f_c00140{bottom:75.615000px;}
.y1e_c00140{bottom:97.965000px;}
.y1d_c00140{bottom:121.965000px;}
.y1c_c00140{bottom:147.615000px;}
.y1b_c00140{bottom:172.815000px;}
.y1a_c00140{bottom:197.415000px;}
.y19_c00140{bottom:222.465000px;}
.y18_c00140{bottom:247.515000px;}
.y17_c00140{bottom:272.415000px;}
.y16_c00140{bottom:297.315000px;}
.y15_c00140{bottom:320.715000px;}
.y14_c00140{bottom:346.365000px;}
.y13_c00140{bottom:371.565000px;}
.y12_c00140{bottom:396.315000px;}
.y11_c00140{bottom:421.215000px;}
.y10_c00140{bottom:445.965000px;}
.yf_c00140{bottom:470.115000px;}
.ye_c00140{bottom:494.565000px;}
.yd_c00140{bottom:519.165000px;}
.yc_c00140{bottom:543.165000px;}
.yb_c00140{bottom:567.765000px;}
.ya_c00140{bottom:592.965000px;}
.y9_c00140{bottom:617.715000px;}
.y8_c00140{bottom:642.315000px;}
.y7_c00140{bottom:672.615000px;}
.y6_c00140{bottom:703.365000px;}
.y5_c00140{bottom:721.215000px;}
.y4_c00140{bottom:738.765000px;}
.y3_c00140{bottom:756.315000px;}
.y2_c00140{bottom:773.865000px;}
.y1_c00140{bottom:793.215000px;}
.hb_c00140{height:13.200074px;}
.hc_c00140{height:43.804688px;}
.h3_c00140{height:52.668457px;}
.h4_c00140{height:56.975098px;}
.h5_c00140{height:75.966797px;}
.h9_c00140{height:83.226000px;}
.h6_c00140{height:87.361816px;}
.h2_c00140{height:98.756836px;}
.ha_c00140{height:113.184000px;}
.h7_c00140{height:119.381836px;}
.h8_c00140{height:129.143555px;}
.h1_c00140{height:831.000000px;}
.h0_c00140{height:831.075000px;}
.w1_c00140{width:104.875500px;}
.w0_c00140{width:560.250000px;}
.x0_c00140{left:0.000000px;}
.x9_c00140{left:22.650000px;}
.xb_c00140{left:27.000000px;}
.x8_c00140{left:29.100000px;}
.x4_c00140{left:30.150000px;}
.xa_c00140{left:31.800000px;}
.x3_c00140{left:45.900000px;}
.x7_c00140{left:55.050000px;}
.x5_c00140{left:77.250000px;}
.x6_c00140{left:92.850000px;}
.x1_c00140{left:185.250000px;}
.x2_c00140{left:192.000000px;}
.xc_c00140{left:231.939240px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls9_c00140{letter-spacing:0.000000pt;}
.ls3_c00140{letter-spacing:1.360000pt;}
.ls5_c00140{letter-spacing:2.666667pt;}
.ls7_c00140{letter-spacing:4.666667pt;}
.lsa_c00140{letter-spacing:5.333333pt;}
.ls6_c00140{letter-spacing:8.000000pt;}
.ls0_c00140{letter-spacing:11.160000pt;}
.ls8_c00140{letter-spacing:17.205333pt;}
.ls4_c00140{letter-spacing:17.600000pt;}
.ls2_c00140{letter-spacing:23.421333pt;}
.ls1_c00140{letter-spacing:76.760000pt;}
.ws1_c00140{word-spacing:-30.506667pt;}
.ws5_c00140{word-spacing:-29.850667pt;}
.ws2_c00140{word-spacing:-29.333333pt;}
.ws3_c00140{word-spacing:-22.781333pt;}
.ws9_c00140{word-spacing:-21.850667pt;}
.ws7_c00140{word-spacing:-20.733333pt;}
.ws0_c00140{word-spacing:-14.973333pt;}
.ws8_c00140{word-spacing:-14.869333pt;}
.ws4_c00140{word-spacing:-14.781333pt;}
.ws6_c00140{word-spacing:-0.096000pt;}
.wsa_c00140{word-spacing:0.000000pt;}
._28_c00140{margin-left:-32.357333pt;}
._22_c00140{margin-left:-27.237333pt;}
._20_c00140{margin-left:-24.752000pt;}
._1e_c00140{margin-left:-21.669333pt;}
._1b_c00140{margin-left:-19.925333pt;}
._1f_c00140{margin-left:-18.768000pt;}
._1a_c00140{margin-left:-17.418667pt;}
._26_c00140{margin-left:-16.186667pt;}
._29_c00140{margin-left:-14.402667pt;}
._7_c00140{margin-left:-13.312000pt;}
._21_c00140{margin-left:-11.152000pt;}
._17_c00140{margin-left:-9.440000pt;}
._18_c00140{margin-left:-8.157333pt;}
._19_c00140{margin-left:-6.506667pt;}
._8_c00140{margin-left:-4.992000pt;}
._23_c00140{margin-left:-4.056000pt;}
._11_c00140{margin-left:-3.106667pt;}
._3_c00140{margin-left:-2.170667pt;}
._c_c00140{margin-left:-1.272000pt;}
._1_c00140{width:1.232000pt;}
._0_c00140{width:2.992000pt;}
._e_c00140{width:4.760000pt;}
._a_c00140{width:6.040000pt;}
._6_c00140{width:7.072000pt;}
._10_c00140{width:8.018667pt;}
._2_c00140{width:8.917333pt;}
._5_c00140{width:10.746667pt;}
._15_c00140{width:12.450667pt;}
._16_c00140{width:14.138667pt;}
._f_c00140{width:15.666667pt;}
._1c_c00140{width:17.272000pt;}
._d_c00140{width:19.160000pt;}
._b_c00140{width:21.040000pt;}
._24_c00140{width:22.712000pt;}
._25_c00140{width:23.709333pt;}
._9_c00140{width:25.088000pt;}
._13_c00140{width:30.848000pt;}
._14_c00140{width:33.482667pt;}
._2b_c00140{width:45.392000pt;}
._27_c00140{width:90.720000pt;}
._2a_c00140{width:93.773333pt;}
._12_c00140{width:96.434667pt;}
._1d_c00140{width:144.669333pt;}
._4_c00140{width:441.130667pt;}
._2c_c00140{width:552.122667pt;}
.fs2_c00140{font-size:40.000000pt;}
.fs3_c00140{font-size:42.666667pt;}
.fs4_c00140{font-size:53.333333pt;}
.fs0_c00140{font-size:58.666667pt;}
.fs5_c00140{font-size:61.333333pt;}
.fs8_c00140{font-size:66.666667pt;}
.fs1_c00140{font-size:69.333333pt;}
.fs6_c00140{font-size:90.666667pt;}
.fs7_c00140{font-size:96.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y21_c00140{bottom:2.760000pt;}
.y20_c00140{bottom:6.425219pt;}
.y1f_c00140{bottom:67.213333pt;}
.y1e_c00140{bottom:87.080000pt;}
.y1d_c00140{bottom:108.413333pt;}
.y1c_c00140{bottom:131.213333pt;}
.y1b_c00140{bottom:153.613333pt;}
.y1a_c00140{bottom:175.480000pt;}
.y19_c00140{bottom:197.746667pt;}
.y18_c00140{bottom:220.013333pt;}
.y17_c00140{bottom:242.146667pt;}
.y16_c00140{bottom:264.280000pt;}
.y15_c00140{bottom:285.080000pt;}
.y14_c00140{bottom:307.880000pt;}
.y13_c00140{bottom:330.280000pt;}
.y12_c00140{bottom:352.280000pt;}
.y11_c00140{bottom:374.413333pt;}
.y10_c00140{bottom:396.413333pt;}
.yf_c00140{bottom:417.880000pt;}
.ye_c00140{bottom:439.613333pt;}
.yd_c00140{bottom:461.480000pt;}
.yc_c00140{bottom:482.813333pt;}
.yb_c00140{bottom:504.680000pt;}
.ya_c00140{bottom:527.080000pt;}
.y9_c00140{bottom:549.080000pt;}
.y8_c00140{bottom:570.946667pt;}
.y7_c00140{bottom:597.880000pt;}
.y6_c00140{bottom:625.213333pt;}
.y5_c00140{bottom:641.080000pt;}
.y4_c00140{bottom:656.680000pt;}
.y3_c00140{bottom:672.280000pt;}
.y2_c00140{bottom:687.880000pt;}
.y1_c00140{bottom:705.080000pt;}
.hb_c00140{height:11.733399pt;}
.hc_c00140{height:38.937500pt;}
.h3_c00140{height:46.816406pt;}
.h4_c00140{height:50.644531pt;}
.h5_c00140{height:67.526042pt;}
.h9_c00140{height:73.978667pt;}
.h6_c00140{height:77.654948pt;}
.h2_c00140{height:87.783854pt;}
.ha_c00140{height:100.608000pt;}
.h7_c00140{height:106.117188pt;}
.h8_c00140{height:114.794271pt;}
.h1_c00140{height:738.666667pt;}
.h0_c00140{height:738.733333pt;}
.w1_c00140{width:93.222667pt;}
.w0_c00140{width:498.000000pt;}
.x0_c00140{left:0.000000pt;}
.x9_c00140{left:20.133333pt;}
.xb_c00140{left:24.000000pt;}
.x8_c00140{left:25.866667pt;}
.x4_c00140{left:26.800000pt;}
.xa_c00140{left:28.266667pt;}
.x3_c00140{left:40.800000pt;}
.x7_c00140{left:48.933333pt;}
.x5_c00140{left:68.666667pt;}
.x6_c00140{left:82.533333pt;}
.x1_c00140{left:164.666667pt;}
.x2_c00140{left:170.666667pt;}
.xc_c00140{left:206.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_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_1c2f5cf96350ba8df638e6e4.woff2')format("woff");}.ff1_c00141{font-family:ff1_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:ff2_c00141;src:url('chunks/assets/font_6e247c77b850cae17d79acab.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_0e534946269b7a9c8d8e2ff5.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_e60a437bb740518eb84db76f.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;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_c00141;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00141{letter-spacing:-6.000000px;}
.ls2_c00141{letter-spacing:0.000000px;}
.ls4_c00141{letter-spacing:3.000000px;}
.ls0_c00141{letter-spacing:11.400000px;}
.ls1_c00141{letter-spacing:30.714000px;}
.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;}
}
.ws1_c00141{word-spacing:-36.000000px;}
.ws3_c00141{word-spacing:-29.484000px;}
.ws5_c00141{word-spacing:-21.075000px;}
.ws4_c00141{word-spacing:-19.629000px;}
.ws0_c00141{word-spacing:-16.629000px;}
.ws6_c00141{word-spacing:0.000000px;}
.ws2_c00141{word-spacing:1.554000px;}
._23_c00141{margin-left:-58.167000px;}
._19_c00141{margin-left:-19.923000px;}
._10_c00141{margin-left:-16.008000px;}
._12_c00141{margin-left:-14.904000px;}
._1e_c00141{margin-left:-11.274000px;}
._11_c00141{margin-left:-9.453000px;}
._f_c00141{margin-left:-8.349000px;}
._13_c00141{margin-left:-6.969000px;}
._d_c00141{margin-left:-5.037000px;}
._c_c00141{margin-left:-4.002000px;}
._b_c00141{margin-left:-2.829000px;}
._a_c00141{margin-left:-1.380000px;}
._17_c00141{width:1.035000px;}
._e_c00141{width:2.070000px;}
._16_c00141{width:3.747000px;}
._6_c00141{width:4.899000px;}
._21_c00141{width:6.057000px;}
._1_c00141{width:7.107000px;}
._5_c00141{width:8.418000px;}
._8_c00141{width:9.777000px;}
._25_c00141{width:10.854000px;}
._7_c00141{width:11.931000px;}
._1a_c00141{width:13.023000px;}
._0_c00141{width:14.283000px;}
._3_c00141{width:15.525000px;}
._20_c00141{width:16.656000px;}
._9_c00141{width:17.661000px;}
._18_c00141{width:20.913000px;}
._2_c00141{width:22.149000px;}
._1b_c00141{width:24.195000px;}
._14_c00141{width:26.565000px;}
._27_c00141{width:29.049000px;}
._29_c00141{width:33.066000px;}
._26_c00141{width:39.825000px;}
._24_c00141{width:40.917000px;}
._28_c00141{width:42.558000px;}
._2a_c00141{width:44.181000px;}
._1c_c00141{width:77.211000px;}
._1d_c00141{width:97.782000px;}
._2b_c00141{width:121.269000px;}
._15_c00141{width:128.145000px;}
._4_c00141{width:140.898000px;}
._1f_c00141{width:228.021000px;}
._22_c00141{width:328.119000px;}
._2c_c00141{width:831.987000px;}
.fc2_c00141{color:transparent;}
.fc1_c00141{color:rgb(128,128,128);}
.fc0_c00141{color:rgb(0,0,0);}
.fs4_c00141{font-size:48.000000px;}
.fs0_c00141{font-size:69.000000px;}
.fs3_c00141{font-size:75.000000px;}
.fs2_c00141{font-size:81.000000px;}
.fs1_c00141{font-size:84.000000px;}
.y0_c00141{bottom:0.000000px;}
.y1c_c00141{bottom:3.105000px;}
.y1b_c00141{bottom:7.228369px;}
.y1a_c00141{bottom:61.770000px;}
.y19_c00141{bottom:85.770000px;}
.y18_c00141{bottom:113.370000px;}
.y17_c00141{bottom:139.320000px;}
.y16_c00141{bottom:164.070000px;}
.y15_c00141{bottom:212.970000px;}
.y14_c00141{bottom:238.920000px;}
.y13_c00141{bottom:263.520000px;}
.y12_c00141{bottom:288.570000px;}
.y11_c00141{bottom:313.170000px;}
.y10_c00141{bottom:337.770000px;}
.yf_c00141{bottom:361.770000px;}
.ye_c00141{bottom:386.670000px;}
.yd_c00141{bottom:411.420000px;}
.yc_c00141{bottom:436.320000px;}
.yb_c00141{bottom:460.920000px;}
.ya_c00141{bottom:484.920000px;}
.y9_c00141{bottom:510.270000px;}
.y8_c00141{bottom:535.320000px;}
.y7_c00141{bottom:560.220000px;}
.y6_c00141{bottom:584.820000px;}
.y5_c00141{bottom:609.420000px;}
.y4_c00141{bottom:634.170000px;}
.y3_c00141{bottom:659.820000px;}
.y2_c00141{bottom:685.020000px;}
.y1_c00141{bottom:734.070000px;}
.h5_c00141{height:13.200073px;}
.h6_c00141{height:43.804688px;}
.h3_c00141{height:80.758301px;}
.h2_c00141{height:87.361816px;}
.h4_c00141{height:94.958496px;}
.h0_c00141{height:829.950000px;}
.h1_c00141{height:830.250000px;}
.w2_c00141{width:104.875500px;}
.w0_c00141{width:550.275000px;}
.w1_c00141{width:550.500000px;}
.x0_c00141{left:0.000000px;}
.x3_c00141{left:28.650000px;}
.xc_c00141{left:32.700000px;}
.x5_c00141{left:44.850000px;}
.xb_c00141{left:63.150000px;}
.x8_c00141{left:76.200000px;}
.x7_c00141{left:92.400000px;}
.x4_c00141{left:93.750000px;}
.x6_c00141{left:95.400000px;}
.xa_c00141{left:119.850000px;}
.x9_c00141{left:122.850000px;}
.x1_c00141{left:139.350000px;}
.x2_c00141{left:145.800000px;}
.xe_c00141{left:226.951767px;}
.xd_c00141{left:492.150000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls3_c00141{letter-spacing:-5.333333pt;}
.ls2_c00141{letter-spacing:0.000000pt;}
.ls4_c00141{letter-spacing:2.666667pt;}
.ls0_c00141{letter-spacing:10.133333pt;}
.ls1_c00141{letter-spacing:27.301333pt;}
.ws1_c00141{word-spacing:-32.000000pt;}
.ws3_c00141{word-spacing:-26.208000pt;}
.ws5_c00141{word-spacing:-18.733333pt;}
.ws4_c00141{word-spacing:-17.448000pt;}
.ws0_c00141{word-spacing:-14.781333pt;}
.ws6_c00141{word-spacing:0.000000pt;}
.ws2_c00141{word-spacing:1.381333pt;}
._23_c00141{margin-left:-51.704000pt;}
._19_c00141{margin-left:-17.709333pt;}
._10_c00141{margin-left:-14.229333pt;}
._12_c00141{margin-left:-13.248000pt;}
._1e_c00141{margin-left:-10.021333pt;}
._11_c00141{margin-left:-8.402667pt;}
._f_c00141{margin-left:-7.421333pt;}
._13_c00141{margin-left:-6.194667pt;}
._d_c00141{margin-left:-4.477333pt;}
._c_c00141{margin-left:-3.557333pt;}
._b_c00141{margin-left:-2.514667pt;}
._a_c00141{margin-left:-1.226667pt;}
._17_c00141{width:0.920000pt;}
._e_c00141{width:1.840000pt;}
._16_c00141{width:3.330667pt;}
._6_c00141{width:4.354667pt;}
._21_c00141{width:5.384000pt;}
._1_c00141{width:6.317333pt;}
._5_c00141{width:7.482667pt;}
._8_c00141{width:8.690667pt;}
._25_c00141{width:9.648000pt;}
._7_c00141{width:10.605333pt;}
._1a_c00141{width:11.576000pt;}
._0_c00141{width:12.696000pt;}
._3_c00141{width:13.800000pt;}
._20_c00141{width:14.805333pt;}
._9_c00141{width:15.698667pt;}
._18_c00141{width:18.589333pt;}
._2_c00141{width:19.688000pt;}
._1b_c00141{width:21.506667pt;}
._14_c00141{width:23.613333pt;}
._27_c00141{width:25.821333pt;}
._29_c00141{width:29.392000pt;}
._26_c00141{width:35.400000pt;}
._24_c00141{width:36.370667pt;}
._28_c00141{width:37.829333pt;}
._2a_c00141{width:39.272000pt;}
._1c_c00141{width:68.632000pt;}
._1d_c00141{width:86.917333pt;}
._2b_c00141{width:107.794667pt;}
._15_c00141{width:113.906667pt;}
._4_c00141{width:125.242667pt;}
._1f_c00141{width:202.685333pt;}
._22_c00141{width:291.661333pt;}
._2c_c00141{width:739.544000pt;}
.fs4_c00141{font-size:42.666667pt;}
.fs0_c00141{font-size:61.333333pt;}
.fs3_c00141{font-size:66.666667pt;}
.fs2_c00141{font-size:72.000000pt;}
.fs1_c00141{font-size:74.666667pt;}
.y0_c00141{bottom:0.000000pt;}
.y1c_c00141{bottom:2.760000pt;}
.y1b_c00141{bottom:6.425217pt;}
.y1a_c00141{bottom:54.906667pt;}
.y19_c00141{bottom:76.240000pt;}
.y18_c00141{bottom:100.773333pt;}
.y17_c00141{bottom:123.840000pt;}
.y16_c00141{bottom:145.840000pt;}
.y15_c00141{bottom:189.306667pt;}
.y14_c00141{bottom:212.373333pt;}
.y13_c00141{bottom:234.240000pt;}
.y12_c00141{bottom:256.506667pt;}
.y11_c00141{bottom:278.373333pt;}
.y10_c00141{bottom:300.240000pt;}
.yf_c00141{bottom:321.573333pt;}
.ye_c00141{bottom:343.706667pt;}
.yd_c00141{bottom:365.706667pt;}
.yc_c00141{bottom:387.840000pt;}
.yb_c00141{bottom:409.706667pt;}
.ya_c00141{bottom:431.040000pt;}
.y9_c00141{bottom:453.573333pt;}
.y8_c00141{bottom:475.840000pt;}
.y7_c00141{bottom:497.973333pt;}
.y6_c00141{bottom:519.840000pt;}
.y5_c00141{bottom:541.706667pt;}
.y4_c00141{bottom:563.706667pt;}
.y3_c00141{bottom:586.506667pt;}
.y2_c00141{bottom:608.906667pt;}
.y1_c00141{bottom:652.506667pt;}
.h5_c00141{height:11.733399pt;}
.h6_c00141{height:38.937500pt;}
.h3_c00141{height:71.785156pt;}
.h2_c00141{height:77.654948pt;}
.h4_c00141{height:84.407552pt;}
.h0_c00141{height:737.733333pt;}
.h1_c00141{height:738.000000pt;}
.w2_c00141{width:93.222667pt;}
.w0_c00141{width:489.133333pt;}
.w1_c00141{width:489.333333pt;}
.x0_c00141{left:0.000000pt;}
.x3_c00141{left:25.466667pt;}
.xc_c00141{left:29.066667pt;}
.x5_c00141{left:39.866667pt;}
.xb_c00141{left:56.133333pt;}
.x8_c00141{left:67.733333pt;}
.x7_c00141{left:82.133333pt;}
.x4_c00141{left:83.333333pt;}
.x6_c00141{left:84.800000pt;}
.xa_c00141{left:106.533333pt;}
.x9_c00141{left:109.200000pt;}
.x1_c00141{left:123.866667pt;}
.x2_c00141{left:129.600000pt;}
.xe_c00141{left:201.734904pt;}
.xd_c00141{left:437.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_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_f712618543ee64bb196294c9.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_f5c211314c3b7e7dd49b17dd.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_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_9cf01ba6a0b998a83c4f2276.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;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_c00142;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00142{font-family:ff5_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;}
.ls2_c00142{letter-spacing:0.000000px;}
.ls3_c00142{letter-spacing:3.000000px;}
.ls5_c00142{letter-spacing:6.000000px;}
.ls4_c00142{letter-spacing:9.000000px;}
.ls0_c00142{letter-spacing:15.171000px;}
.ls1_c00142{letter-spacing:16.971000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00142{word-spacing:-33.000000px;}
.ws2_c00142{word-spacing:-25.629000px;}
.ws7_c00142{word-spacing:-19.629000px;}
.ws0_c00142{word-spacing:-16.629000px;}
.ws5_c00142{word-spacing:-15.735000px;}
.ws6_c00142{word-spacing:-0.552000px;}
.ws4_c00142{word-spacing:-0.198000px;}
.ws8_c00142{word-spacing:0.000000px;}
.ws1_c00142{word-spacing:0.621000px;}
._27_c00142{margin-left:-17.475000px;}
._1e_c00142{margin-left:-16.146000px;}
._16_c00142{margin-left:-14.175000px;}
._6_c00142{margin-left:-12.075000px;}
._25_c00142{margin-left:-10.611000px;}
._1a_c00142{margin-left:-9.306000px;}
._e_c00142{margin-left:-7.659000px;}
._7_c00142{margin-left:-6.624000px;}
._5_c00142{margin-left:-5.451000px;}
._2_c00142{margin-left:-3.450000px;}
._8_c00142{margin-left:-2.277000px;}
._3_c00142{margin-left:-1.035000px;}
._0_c00142{width:1.794000px;}
._1_c00142{width:3.726000px;}
._c_c00142{width:5.244000px;}
._a_c00142{width:6.831000px;}
._b_c00142{width:8.763000px;}
._9_c00142{width:10.005000px;}
._d_c00142{width:11.316000px;}
._13_c00142{width:12.525000px;}
._14_c00142{width:13.662000px;}
._12_c00142{width:14.871000px;}
._18_c00142{width:16.353000px;}
._10_c00142{width:17.526000px;}
._23_c00142{width:19.830000px;}
._11_c00142{width:21.390000px;}
._19_c00142{width:22.908000px;}
._f_c00142{width:25.047000px;}
._15_c00142{width:30.027000px;}
._20_c00142{width:31.860000px;}
._1b_c00142{width:35.937000px;}
._17_c00142{width:40.257000px;}
._1c_c00142{width:96.357000px;}
._1f_c00142{width:100.077000px;}
._22_c00142{width:104.802000px;}
._24_c00142{width:118.383000px;}
._1d_c00142{width:187.128000px;}
._21_c00142{width:218.799000px;}
._26_c00142{width:276.069000px;}
._4_c00142{width:498.867000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:45.000000px;}
.fs4_c00142{font-size:48.000000px;}
.fs2_c00142{font-size:66.000000px;}
.fs0_c00142{font-size:69.000000px;}
.fs1_c00142{font-size:81.000000px;}
.y0_c00142{bottom:0.000000px;}
.y21_c00142{bottom:3.105000px;}
.y20_c00142{bottom:7.228369px;}
.y1f_c00142{bottom:56.970000px;}
.y1e_c00142{bottom:83.670000px;}
.y1d_c00142{bottom:109.320000px;}
.y1c_c00142{bottom:132.270000px;}
.y1b_c00142{bottom:158.520000px;}
.y1a_c00142{bottom:182.820000px;}
.y19_c00142{bottom:207.870000px;}
.y18_c00142{bottom:228.720000px;}
.y17_c00142{bottom:233.220000px;}
.y16_c00142{bottom:257.070000px;}
.y15_c00142{bottom:282.870000px;}
.y14_c00142{bottom:308.070000px;}
.y13_c00142{bottom:332.670000px;}
.y12_c00142{bottom:357.120000px;}
.y11_c00142{bottom:382.320000px;}
.y10_c00142{bottom:405.720000px;}
.yf_c00142{bottom:430.920000px;}
.ye_c00142{bottom:456.270000px;}
.yd_c00142{bottom:481.320000px;}
.yc_c00142{bottom:505.470000px;}
.yb_c00142{bottom:529.770000px;}
.ya_c00142{bottom:554.820000px;}
.y9_c00142{bottom:579.420000px;}
.y8_c00142{bottom:604.170000px;}
.y7_c00142{bottom:628.770000px;}
.y6_c00142{bottom:653.670000px;}
.y5_c00142{bottom:678.420000px;}
.y4_c00142{bottom:703.020000px;}
.y3_c00142{bottom:728.220000px;}
.y2_c00142{bottom:752.970000px;}
.y1_c00142{bottom:777.870000px;}
.h5_c00142{height:13.200073px;}
.h6_c00142{height:43.804688px;}
.h4_c00142{height:48.780000px;}
.h2_c00142{height:87.361816px;}
.h3_c00142{height:102.555176px;}
.h0_c00142{height:821.850000px;}
.h1_c00142{height:822.000000px;}
.w1_c00142{width:104.875500px;}
.w0_c00142{width:553.500000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:31.050000px;}
.x3_c00142{left:32.100000px;}
.x4_c00142{left:33.450000px;}
.x5_c00142{left:35.400000px;}
.x6_c00142{left:36.450000px;}
.x7_c00142{left:37.500000px;}
.x1_c00142{left:185.700000px;}
.xa_c00142{left:228.564240px;}
.x9_c00142{left:437.400000px;}
.x8_c00142{left:485.700000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls2_c00142{letter-spacing:0.000000pt;}
.ls3_c00142{letter-spacing:2.666667pt;}
.ls5_c00142{letter-spacing:5.333333pt;}
.ls4_c00142{letter-spacing:8.000000pt;}
.ls0_c00142{letter-spacing:13.485333pt;}
.ls1_c00142{letter-spacing:15.085333pt;}
.ws3_c00142{word-spacing:-29.333333pt;}
.ws2_c00142{word-spacing:-22.781333pt;}
.ws7_c00142{word-spacing:-17.448000pt;}
.ws0_c00142{word-spacing:-14.781333pt;}
.ws5_c00142{word-spacing:-13.986667pt;}
.ws6_c00142{word-spacing:-0.490667pt;}
.ws4_c00142{word-spacing:-0.176000pt;}
.ws8_c00142{word-spacing:0.000000pt;}
.ws1_c00142{word-spacing:0.552000pt;}
._27_c00142{margin-left:-15.533333pt;}
._1e_c00142{margin-left:-14.352000pt;}
._16_c00142{margin-left:-12.600000pt;}
._6_c00142{margin-left:-10.733333pt;}
._25_c00142{margin-left:-9.432000pt;}
._1a_c00142{margin-left:-8.272000pt;}
._e_c00142{margin-left:-6.808000pt;}
._7_c00142{margin-left:-5.888000pt;}
._5_c00142{margin-left:-4.845333pt;}
._2_c00142{margin-left:-3.066667pt;}
._8_c00142{margin-left:-2.024000pt;}
._3_c00142{margin-left:-0.920000pt;}
._0_c00142{width:1.594667pt;}
._1_c00142{width:3.312000pt;}
._c_c00142{width:4.661333pt;}
._a_c00142{width:6.072000pt;}
._b_c00142{width:7.789333pt;}
._9_c00142{width:8.893333pt;}
._d_c00142{width:10.058667pt;}
._13_c00142{width:11.133333pt;}
._14_c00142{width:12.144000pt;}
._12_c00142{width:13.218667pt;}
._18_c00142{width:14.536000pt;}
._10_c00142{width:15.578667pt;}
._23_c00142{width:17.626667pt;}
._11_c00142{width:19.013333pt;}
._19_c00142{width:20.362667pt;}
._f_c00142{width:22.264000pt;}
._15_c00142{width:26.690667pt;}
._20_c00142{width:28.320000pt;}
._1b_c00142{width:31.944000pt;}
._17_c00142{width:35.784000pt;}
._1c_c00142{width:85.650667pt;}
._1f_c00142{width:88.957333pt;}
._22_c00142{width:93.157333pt;}
._24_c00142{width:105.229333pt;}
._1d_c00142{width:166.336000pt;}
._21_c00142{width:194.488000pt;}
._26_c00142{width:245.394667pt;}
._4_c00142{width:443.437333pt;}
.fs3_c00142{font-size:40.000000pt;}
.fs4_c00142{font-size:42.666667pt;}
.fs2_c00142{font-size:58.666667pt;}
.fs0_c00142{font-size:61.333333pt;}
.fs1_c00142{font-size:72.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y21_c00142{bottom:2.760000pt;}
.y20_c00142{bottom:6.425217pt;}
.y1f_c00142{bottom:50.640000pt;}
.y1e_c00142{bottom:74.373333pt;}
.y1d_c00142{bottom:97.173333pt;}
.y1c_c00142{bottom:117.573333pt;}
.y1b_c00142{bottom:140.906667pt;}
.y1a_c00142{bottom:162.506667pt;}
.y19_c00142{bottom:184.773333pt;}
.y18_c00142{bottom:203.306667pt;}
.y17_c00142{bottom:207.306667pt;}
.y16_c00142{bottom:228.506667pt;}
.y15_c00142{bottom:251.440000pt;}
.y14_c00142{bottom:273.840000pt;}
.y13_c00142{bottom:295.706667pt;}
.y12_c00142{bottom:317.440000pt;}
.y11_c00142{bottom:339.840000pt;}
.y10_c00142{bottom:360.640000pt;}
.yf_c00142{bottom:383.040000pt;}
.ye_c00142{bottom:405.573333pt;}
.yd_c00142{bottom:427.840000pt;}
.yc_c00142{bottom:449.306667pt;}
.yb_c00142{bottom:470.906667pt;}
.ya_c00142{bottom:493.173333pt;}
.y9_c00142{bottom:515.040000pt;}
.y8_c00142{bottom:537.040000pt;}
.y7_c00142{bottom:558.906667pt;}
.y6_c00142{bottom:581.040000pt;}
.y5_c00142{bottom:603.040000pt;}
.y4_c00142{bottom:624.906667pt;}
.y3_c00142{bottom:647.306667pt;}
.y2_c00142{bottom:669.306667pt;}
.y1_c00142{bottom:691.440000pt;}
.h5_c00142{height:11.733399pt;}
.h6_c00142{height:38.937500pt;}
.h4_c00142{height:43.360000pt;}
.h2_c00142{height:77.654948pt;}
.h3_c00142{height:91.160156pt;}
.h0_c00142{height:730.533333pt;}
.h1_c00142{height:730.666667pt;}
.w1_c00142{width:93.222667pt;}
.w0_c00142{width:492.000000pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:27.600000pt;}
.x3_c00142{left:28.533333pt;}
.x4_c00142{left:29.733333pt;}
.x5_c00142{left:31.466667pt;}
.x6_c00142{left:32.400000pt;}
.x7_c00142{left:33.333333pt;}
.x1_c00142{left:165.066667pt;}
.xa_c00142{left:203.168213pt;}
.x9_c00142{left:388.800000pt;}
.x8_c00142{left:431.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_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_f664792ec6ba21edf0c3a2c3.woff2')format("woff");}.ff1_c00143{font-family:ff1_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:ff2_c00143;src:url('chunks/assets/font_f3feafa96231870e769d7e52.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_d0d154276605f707f73f885f.woff2')format("woff");}.ff3_c00143{font-family:ff3_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:ff4_c00143;src:url('chunks/assets/font_6a9e8069cc772cd3ad01a6df.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_240a462bcc9d96130ed3c4d3.woff2')format("woff");}.ff5_c00143{font-family:ff5_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:ff6_c00143;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00143{font-family:ff6_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;}
.ls4_c00143{letter-spacing:0.000000px;}
.ls2_c00143{letter-spacing:3.000000px;}
.ls5_c00143{letter-spacing:9.000000px;}
.ls0_c00143{letter-spacing:10.902000px;}
.ls1_c00143{letter-spacing:22.360800px;}
.ls3_c00143{letter-spacing:33.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00143{word-spacing:-44.988000px;}
.ws0_c00143{word-spacing:-43.845000px;}
.ws4_c00143{word-spacing:-39.975000px;}
.ws2_c00143{word-spacing:-25.629000px;}
.ws6_c00143{word-spacing:-19.629000px;}
.ws3_c00143{word-spacing:-16.629000px;}
.ws1_c00143{word-spacing:-8.931000px;}
.ws7_c00143{word-spacing:0.000000px;}
._1d_c00143{margin-left:-17.373000px;}
._17_c00143{margin-left:-12.696000px;}
._23_c00143{margin-left:-10.764000px;}
._13_c00143{margin-left:-9.006000px;}
._8_c00143{margin-left:-7.728000px;}
._7_c00143{margin-left:-6.003000px;}
._10_c00143{margin-left:-4.485000px;}
._e_c00143{margin-left:-2.967000px;}
._2_c00143{margin-left:-1.932000px;}
._5_c00143{width:1.449000px;}
._0_c00143{width:2.760000px;}
._3_c00143{width:3.933000px;}
._1_c00143{width:5.037000px;}
._9_c00143{width:6.141000px;}
._c_c00143{width:7.521000px;}
._4_c00143{width:8.556000px;}
._11_c00143{width:9.729000px;}
._f_c00143{width:11.559000px;}
._a_c00143{width:12.765000px;}
._6_c00143{width:14.283000px;}
._18_c00143{width:15.417000px;}
._d_c00143{width:16.974000px;}
._16_c00143{width:18.180000px;}
._b_c00143{width:21.597000px;}
._19_c00143{width:23.085000px;}
._12_c00143{width:25.188000px;}
._1b_c00143{width:38.130000px;}
._1a_c00143{width:39.768000px;}
._1f_c00143{width:41.661000px;}
._1c_c00143{width:44.547000px;}
._21_c00143{width:80.658000px;}
._22_c00143{width:101.571000px;}
._15_c00143{width:177.024000px;}
._1e_c00143{width:233.013000px;}
._20_c00143{width:267.483000px;}
._24_c00143{width:272.271000px;}
._14_c00143{width:687.186000px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(128,128,128);}
.fc0_c00143{color:rgb(0,0,0);}
.fs1_c00143{font-size:45.000000px;}
.fs4_c00143{font-size:48.000000px;}
.fs3_c00143{font-size:55.200000px;}
.fs2_c00143{font-size:57.000000px;}
.fs0_c00143{font-size:69.000000px;}
.y0_c00143{bottom:0.000000px;}
.y1f_c00143{bottom:3.105000px;}
.y1e_c00143{bottom:7.228357px;}
.y1d_c00143{bottom:65.130000px;}
.y1c_c00143{bottom:87.780000px;}
.y1b_c00143{bottom:113.730000px;}
.y1a_c00143{bottom:138.030000px;}
.y19_c00143{bottom:163.080000px;}
.y18_c00143{bottom:188.430000px;}
.y17_c00143{bottom:213.330000px;}
.y16_c00143{bottom:238.230000px;}
.y15_c00143{bottom:263.280000px;}
.y14_c00143{bottom:287.880000px;}
.y13_c00143{bottom:312.930000px;}
.y12_c00143{bottom:336.780000px;}
.y11_c00143{bottom:361.230000px;}
.y10_c00143{bottom:385.830000px;}
.yf_c00143{bottom:411.030000px;}
.ye_c00143{bottom:460.680000px;}
.yd_c00143{bottom:507.930000px;}
.yc_c00143{bottom:525.780000px;}
.yb_c00143{bottom:543.330000px;}
.ya_c00143{bottom:560.880000px;}
.y9_c00143{bottom:578.130000px;}
.y8_c00143{bottom:595.980000px;}
.y7_c00143{bottom:612.180000px;}
.y6_c00143{bottom:636.630000px;}
.y5_c00143{bottom:662.280000px;}
.y4_c00143{bottom:687.480000px;}
.y3_c00143{bottom:711.780000px;}
.y2_c00143{bottom:737.130000px;}
.y1_c00143{bottom:761.730000px;}
.h6_c00143{height:13.200074px;}
.h7_c00143{height:43.804688px;}
.h3_c00143{height:52.668457px;}
.h4_c00143{height:55.942383px;}
.h5_c00143{height:80.758301px;}
.h2_c00143{height:87.361816px;}
.h0_c00143{height:827.850000px;}
.h1_c00143{height:828.000000px;}
.w2_c00143{width:104.875500px;}
.w0_c00143{width:548.625000px;}
.w1_c00143{width:549.000000px;}
.x0_c00143{left:0.000000px;}
.x4_c00143{left:26.400000px;}
.x8_c00143{left:43.200000px;}
.x9_c00143{left:84.750000px;}
.xa_c00143{left:89.700000px;}
.x2_c00143{left:90.750000px;}
.x1_c00143{left:92.250000px;}
.x7_c00143{left:116.100000px;}
.x5_c00143{left:117.450000px;}
.xc_c00143{left:226.126740px;}
.x3_c00143{left:236.550000px;}
.x6_c00143{left:270.900000px;}
.xb_c00143{left:492.750000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls4_c00143{letter-spacing:0.000000pt;}
.ls2_c00143{letter-spacing:2.666667pt;}
.ls5_c00143{letter-spacing:8.000000pt;}
.ls0_c00143{letter-spacing:9.690667pt;}
.ls1_c00143{letter-spacing:19.876267pt;}
.ls3_c00143{letter-spacing:29.333333pt;}
.ws5_c00143{word-spacing:-39.989333pt;}
.ws0_c00143{word-spacing:-38.973333pt;}
.ws4_c00143{word-spacing:-35.533333pt;}
.ws2_c00143{word-spacing:-22.781333pt;}
.ws6_c00143{word-spacing:-17.448000pt;}
.ws3_c00143{word-spacing:-14.781333pt;}
.ws1_c00143{word-spacing:-7.938667pt;}
.ws7_c00143{word-spacing:0.000000pt;}
._1d_c00143{margin-left:-15.442667pt;}
._17_c00143{margin-left:-11.285333pt;}
._23_c00143{margin-left:-9.568000pt;}
._13_c00143{margin-left:-8.005333pt;}
._8_c00143{margin-left:-6.869333pt;}
._7_c00143{margin-left:-5.336000pt;}
._10_c00143{margin-left:-3.986667pt;}
._e_c00143{margin-left:-2.637333pt;}
._2_c00143{margin-left:-1.717333pt;}
._5_c00143{width:1.288000pt;}
._0_c00143{width:2.453333pt;}
._3_c00143{width:3.496000pt;}
._1_c00143{width:4.477333pt;}
._9_c00143{width:5.458667pt;}
._c_c00143{width:6.685333pt;}
._4_c00143{width:7.605333pt;}
._11_c00143{width:8.648000pt;}
._f_c00143{width:10.274667pt;}
._a_c00143{width:11.346667pt;}
._6_c00143{width:12.696000pt;}
._18_c00143{width:13.704000pt;}
._d_c00143{width:15.088000pt;}
._16_c00143{width:16.160000pt;}
._b_c00143{width:19.197333pt;}
._19_c00143{width:20.520000pt;}
._12_c00143{width:22.389333pt;}
._1b_c00143{width:33.893333pt;}
._1a_c00143{width:35.349333pt;}
._1f_c00143{width:37.032000pt;}
._1c_c00143{width:39.597333pt;}
._21_c00143{width:71.696000pt;}
._22_c00143{width:90.285333pt;}
._15_c00143{width:157.354667pt;}
._1e_c00143{width:207.122667pt;}
._20_c00143{width:237.762667pt;}
._24_c00143{width:242.018667pt;}
._14_c00143{width:610.832000pt;}
.fs1_c00143{font-size:40.000000pt;}
.fs4_c00143{font-size:42.666667pt;}
.fs3_c00143{font-size:49.066667pt;}
.fs2_c00143{font-size:50.666667pt;}
.fs0_c00143{font-size:61.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.y1f_c00143{bottom:2.760000pt;}
.y1e_c00143{bottom:6.425206pt;}
.y1d_c00143{bottom:57.893333pt;}
.y1c_c00143{bottom:78.026667pt;}
.y1b_c00143{bottom:101.093333pt;}
.y1a_c00143{bottom:122.693333pt;}
.y19_c00143{bottom:144.960000pt;}
.y18_c00143{bottom:167.493333pt;}
.y17_c00143{bottom:189.626667pt;}
.y16_c00143{bottom:211.760000pt;}
.y15_c00143{bottom:234.026667pt;}
.y14_c00143{bottom:255.893333pt;}
.y13_c00143{bottom:278.160000pt;}
.y12_c00143{bottom:299.360000pt;}
.y11_c00143{bottom:321.093333pt;}
.y10_c00143{bottom:342.960000pt;}
.yf_c00143{bottom:365.360000pt;}
.ye_c00143{bottom:409.493333pt;}
.yd_c00143{bottom:451.493333pt;}
.yc_c00143{bottom:467.360000pt;}
.yb_c00143{bottom:482.960000pt;}
.ya_c00143{bottom:498.560000pt;}
.y9_c00143{bottom:513.893333pt;}
.y8_c00143{bottom:529.760000pt;}
.y7_c00143{bottom:544.160000pt;}
.y6_c00143{bottom:565.893333pt;}
.y5_c00143{bottom:588.693333pt;}
.y4_c00143{bottom:611.093333pt;}
.y3_c00143{bottom:632.693333pt;}
.y2_c00143{bottom:655.226667pt;}
.y1_c00143{bottom:677.093333pt;}
.h6_c00143{height:11.733399pt;}
.h7_c00143{height:38.937500pt;}
.h3_c00143{height:46.816406pt;}
.h4_c00143{height:49.726562pt;}
.h5_c00143{height:71.785156pt;}
.h2_c00143{height:77.654948pt;}
.h0_c00143{height:735.866667pt;}
.h1_c00143{height:736.000000pt;}
.w2_c00143{width:93.222667pt;}
.w0_c00143{width:487.666667pt;}
.w1_c00143{width:488.000000pt;}
.x0_c00143{left:0.000000pt;}
.x4_c00143{left:23.466667pt;}
.x8_c00143{left:38.400000pt;}
.x9_c00143{left:75.333333pt;}
.xa_c00143{left:79.733333pt;}
.x2_c00143{left:80.666667pt;}
.x1_c00143{left:82.000000pt;}
.x7_c00143{left:103.200000pt;}
.x5_c00143{left:104.400000pt;}
.xc_c00143{left:201.001546pt;}
.x3_c00143{left:210.266667pt;}
.x6_c00143{left:240.800000pt;}
.xb_c00143{left:438.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_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_fd8ceab5e30ffad9aa918f33.woff2')format("woff");}.ff1_c00144{font-family:ff1_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:ff2_c00144;src:url('chunks/assets/font_2e9db2ed0ff8876a4ae5e82b.woff2')format("woff");}.ff2_c00144{font-family:ff2_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:ff3_c00144;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.311035;font-style:normal;font-weight:normal;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_d30ed7f50b92f0dd9dfe2abd.woff2')format("woff");}.ff4_c00144{font-family:ff4_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:ff5_c00144;src:url('chunks/assets/font_8d87a59abd092105ff05f30a.woff2')format("woff");}.ff5_c00144{font-family:ff5_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:ff6_c00144;src:url('chunks/assets/font_6faad58c3f81d4255d310577.woff2')format("woff");}.ff6_c00144{font-family:ff6_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:ff7_c00144;src:url('chunks/assets/font_6d63fbffc5e76bcfde7a8e7d.woff2')format("woff");}.ff7_c00144{font-family:ff7_c00144;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_c00144;src:url('chunks/assets/font_169782ae85235f127123e5d4.woff2')format("woff");}.ff8_c00144{font-family:ff8_c00144;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_c00144;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff9_c00144{font-family:ff9_c00144;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_c00144;src:url('chunks/assets/font_2cbc30eb1c83a8b80313ad0d.woff2')format("woff");}.ffa_c00144{font-family:ffa_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:ffb_c00144;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00144{font-family:ffb_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;}
.m1_c00144{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_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);}
.m2_c00144{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_c00144{vertical-align:0.000000px;}
.ls10_c00144{letter-spacing:-6.000000px;}
.lsb_c00144{letter-spacing:0.000000px;}
.ls3_c00144{letter-spacing:0.450000px;}
.lsc_c00144{letter-spacing:3.000000px;}
.ls5_c00144{letter-spacing:4.644000px;}
.ls4_c00144{letter-spacing:5.244000px;}
.ls9_c00144{letter-spacing:5.775000px;}
.ls8_c00144{letter-spacing:5.844000px;}
.lse_c00144{letter-spacing:6.000000px;}
.ls2_c00144{letter-spacing:7.578000px;}
.ls6_c00144{letter-spacing:8.955000px;}
.lsd_c00144{letter-spacing:9.000000px;}
.ls7_c00144{letter-spacing:12.444000px;}
.lsa_c00144{letter-spacing:15.105000px;}
.ls0_c00144{letter-spacing:16.725000px;}
.ls1_c00144{letter-spacing:27.000000px;}
.lsf_c00144{letter-spacing:30.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;}
}
.ws2_c00144{word-spacing:-50.022000px;}
.ws3_c00144{word-spacing:-44.250000px;}
.ws0_c00144{word-spacing:-25.629000px;}
.ws9_c00144{word-spacing:-16.845000px;}
.ws1_c00144{word-spacing:-16.629000px;}
.ws4_c00144{word-spacing:-14.460000px;}
.ws7_c00144{word-spacing:-10.845000px;}
.ws5_c00144{word-spacing:-10.680000px;}
.ws8_c00144{word-spacing:-8.676000px;}
.ws6_c00144{word-spacing:-0.084000px;}
.wsa_c00144{word-spacing:0.000000px;}
._13_c00144{margin-left:-20.010000px;}
._14_c00144{margin-left:-14.733000px;}
._15_c00144{margin-left:-13.200000px;}
._24_c00144{margin-left:-10.845000px;}
._25_c00144{margin-left:-9.072000px;}
._f_c00144{margin-left:-7.797000px;}
._9_c00144{margin-left:-6.288000px;}
._a_c00144{margin-left:-5.244000px;}
._8_c00144{margin-left:-4.200000px;}
._16_c00144{margin-left:-3.129000px;}
._d_c00144{margin-left:-2.070000px;}
._c_c00144{margin-left:-1.035000px;}
._3_c00144{width:1.614000px;}
._0_c00144{width:2.706000px;}
._6_c00144{width:3.777000px;}
._10_c00144{width:5.448000px;}
._27_c00144{width:6.459000px;}
._11_c00144{width:7.470000px;}
._7_c00144{width:9.231000px;}
._b_c00144{width:10.557000px;}
._1b_c00144{width:11.868000px;}
._20_c00144{width:12.957000px;}
._4_c00144{width:13.962000px;}
._17_c00144{width:15.201000px;}
._1_c00144{width:17.160000px;}
._1f_c00144{width:18.639000px;}
._1c_c00144{width:20.898000px;}
._1d_c00144{width:22.779000px;}
._1e_c00144{width:24.219000px;}
._19_c00144{width:26.739000px;}
._5_c00144{width:29.256000px;}
._18_c00144{width:32.958000px;}
._1a_c00144{width:46.998000px;}
._23_c00144{width:78.144000px;}
._e_c00144{width:105.540000px;}
._28_c00144{width:115.095000px;}
._12_c00144{width:141.045000px;}
._2c_c00144{width:160.800000px;}
._29_c00144{width:184.971000px;}
._21_c00144{width:231.165000px;}
._2a_c00144{width:241.215000px;}
._2_c00144{width:449.694000px;}
._26_c00144{width:452.334000px;}
._2b_c00144{width:749.316000px;}
._22_c00144{width:844.671000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs9_c00144{font-size:36.000000px;}
.fs8_c00144{font-size:42.000000px;}
.fs7_c00144{font-size:45.000000px;}
.fs5_c00144{font-size:48.000000px;}
.fs6_c00144{font-size:54.000000px;}
.fs3_c00144{font-size:57.000000px;}
.fs4_c00144{font-size:60.000000px;}
.fs0_c00144{font-size:66.000000px;}
.fs2_c00144{font-size:69.000000px;}
.fs1_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y25_c00144{bottom:3.105000px;}
.y24_c00144{bottom:7.228357px;}
.y23_c00144{bottom:52.680000px;}
.y22_c00144{bottom:69.630000px;}
.y21_c00144{bottom:86.730000px;}
.y20_c00144{bottom:105.330000px;}
.y1f_c00144{bottom:122.580000px;}
.y1e_c00144{bottom:140.430000px;}
.y1d_c00144{bottom:159.330000px;}
.y1c_c00144{bottom:184.980000px;}
.y1b_c00144{bottom:207.180000px;}
.y1a_c00144{bottom:226.830000px;}
.y19_c00144{bottom:243.330000px;}
.y18_c00144{bottom:260.280000px;}
.y17_c00144{bottom:278.430000px;}
.y16_c00144{bottom:294.330000px;}
.y15_c00144{bottom:313.530000px;}
.y14_c00144{bottom:331.080000px;}
.y13_c00144{bottom:348.330000px;}
.y12_c00144{bottom:365.580000px;}
.y11_c00144{bottom:386.430000px;}
.y10_c00144{bottom:410.430000px;}
.yf_c00144{bottom:435.030000px;}
.ye_c00144{bottom:460.080000px;}
.yd_c00144{bottom:484.380000px;}
.yc_c00144{bottom:508.380000px;}
.yb_c00144{bottom:532.980000px;}
.ya_c00144{bottom:557.280000px;}
.y9_c00144{bottom:582.180000px;}
.y8_c00144{bottom:606.930000px;}
.y7_c00144{bottom:631.530000px;}
.y6_c00144{bottom:656.130000px;}
.y5_c00144{bottom:681.030000px;}
.y4_c00144{bottom:705.780000px;}
.y3_c00144{bottom:730.980000px;}
.y2_c00144{bottom:755.430000px;}
.y1_c00144{bottom:780.030000px;}
.hb_c00144{height:13.200074px;}
.hc_c00144{height:43.804688px;}
.ha_c00144{height:52.668457px;}
.h3_c00144{height:55.942383px;}
.h9_c00144{height:56.975098px;}
.h6_c00144{height:57.618000px;}
.h8_c00144{height:58.536000px;}
.h5_c00144{height:60.773438px;}
.h4_c00144{height:70.224609px;}
.h7_c00144{height:77.247070px;}
.h2_c00144{height:87.361816px;}
.h1_c00144{height:91.160156px;}
.h0_c00144{height:819.750000px;}
.w2_c00144{width:104.875500px;}
.w0_c00144{width:551.850000px;}
.w1_c00144{width:552.000000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:27.300000px;}
.x3_c00144{left:28.350000px;}
.x4_c00144{left:30.300000px;}
.x5_c00144{left:31.350000px;}
.x6_c00144{left:32.400000px;}
.x7_c00144{left:33.450000px;}
.x8_c00144{left:35.400000px;}
.xa_c00144{left:51.900000px;}
.xd_c00144{left:134.550000px;}
.x9_c00144{left:166.950000px;}
.xb_c00144{left:180.450000px;}
.x1_c00144{left:192.600000px;}
.xc_c00144{left:200.100000px;}
.xe_c00144{left:227.739258px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls10_c00144{letter-spacing:-5.333333pt;}
.lsb_c00144{letter-spacing:0.000000pt;}
.ls3_c00144{letter-spacing:0.400000pt;}
.lsc_c00144{letter-spacing:2.666667pt;}
.ls5_c00144{letter-spacing:4.128000pt;}
.ls4_c00144{letter-spacing:4.661333pt;}
.ls9_c00144{letter-spacing:5.133333pt;}
.ls8_c00144{letter-spacing:5.194667pt;}
.lse_c00144{letter-spacing:5.333333pt;}
.ls2_c00144{letter-spacing:6.736000pt;}
.ls6_c00144{letter-spacing:7.960000pt;}
.lsd_c00144{letter-spacing:8.000000pt;}
.ls7_c00144{letter-spacing:11.061333pt;}
.lsa_c00144{letter-spacing:13.426667pt;}
.ls0_c00144{letter-spacing:14.866667pt;}
.ls1_c00144{letter-spacing:24.000000pt;}
.lsf_c00144{letter-spacing:26.666667pt;}
.ws2_c00144{word-spacing:-44.464000pt;}
.ws3_c00144{word-spacing:-39.333333pt;}
.ws0_c00144{word-spacing:-22.781333pt;}
.ws9_c00144{word-spacing:-14.973333pt;}
.ws1_c00144{word-spacing:-14.781333pt;}
.ws4_c00144{word-spacing:-12.853333pt;}
.ws7_c00144{word-spacing:-9.640000pt;}
.ws5_c00144{word-spacing:-9.493333pt;}
.ws8_c00144{word-spacing:-7.712000pt;}
.ws6_c00144{word-spacing:-0.074667pt;}
.wsa_c00144{word-spacing:0.000000pt;}
._13_c00144{margin-left:-17.786667pt;}
._14_c00144{margin-left:-13.096000pt;}
._15_c00144{margin-left:-11.733333pt;}
._24_c00144{margin-left:-9.640000pt;}
._25_c00144{margin-left:-8.064000pt;}
._f_c00144{margin-left:-6.930667pt;}
._9_c00144{margin-left:-5.589333pt;}
._a_c00144{margin-left:-4.661333pt;}
._8_c00144{margin-left:-3.733333pt;}
._16_c00144{margin-left:-2.781333pt;}
._d_c00144{margin-left:-1.840000pt;}
._c_c00144{margin-left:-0.920000pt;}
._3_c00144{width:1.434667pt;}
._0_c00144{width:2.405333pt;}
._6_c00144{width:3.357333pt;}
._10_c00144{width:4.842667pt;}
._27_c00144{width:5.741333pt;}
._11_c00144{width:6.640000pt;}
._7_c00144{width:8.205333pt;}
._b_c00144{width:9.384000pt;}
._1b_c00144{width:10.549333pt;}
._20_c00144{width:11.517333pt;}
._4_c00144{width:12.410667pt;}
._17_c00144{width:13.512000pt;}
._1_c00144{width:15.253333pt;}
._1f_c00144{width:16.568000pt;}
._1c_c00144{width:18.576000pt;}
._1d_c00144{width:20.248000pt;}
._1e_c00144{width:21.528000pt;}
._19_c00144{width:23.768000pt;}
._5_c00144{width:26.005333pt;}
._18_c00144{width:29.296000pt;}
._1a_c00144{width:41.776000pt;}
._23_c00144{width:69.461333pt;}
._e_c00144{width:93.813333pt;}
._28_c00144{width:102.306667pt;}
._12_c00144{width:125.373333pt;}
._2c_c00144{width:142.933333pt;}
._29_c00144{width:164.418667pt;}
._21_c00144{width:205.480000pt;}
._2a_c00144{width:214.413333pt;}
._2_c00144{width:399.728000pt;}
._26_c00144{width:402.074667pt;}
._2b_c00144{width:666.058667pt;}
._22_c00144{width:750.818667pt;}
.fs9_c00144{font-size:32.000000pt;}
.fs8_c00144{font-size:37.333333pt;}
.fs7_c00144{font-size:40.000000pt;}
.fs5_c00144{font-size:42.666667pt;}
.fs6_c00144{font-size:48.000000pt;}
.fs3_c00144{font-size:50.666667pt;}
.fs4_c00144{font-size:53.333333pt;}
.fs0_c00144{font-size:58.666667pt;}
.fs2_c00144{font-size:61.333333pt;}
.fs1_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y25_c00144{bottom:2.760000pt;}
.y24_c00144{bottom:6.425206pt;}
.y23_c00144{bottom:46.826667pt;}
.y22_c00144{bottom:61.893333pt;}
.y21_c00144{bottom:77.093333pt;}
.y20_c00144{bottom:93.626667pt;}
.y1f_c00144{bottom:108.960000pt;}
.y1e_c00144{bottom:124.826667pt;}
.y1d_c00144{bottom:141.626667pt;}
.y1c_c00144{bottom:164.426667pt;}
.y1b_c00144{bottom:184.160000pt;}
.y1a_c00144{bottom:201.626667pt;}
.y19_c00144{bottom:216.293333pt;}
.y18_c00144{bottom:231.360000pt;}
.y17_c00144{bottom:247.493333pt;}
.y16_c00144{bottom:261.626667pt;}
.y15_c00144{bottom:278.693333pt;}
.y14_c00144{bottom:294.293333pt;}
.y13_c00144{bottom:309.626667pt;}
.y12_c00144{bottom:324.960000pt;}
.y11_c00144{bottom:343.493333pt;}
.y10_c00144{bottom:364.826667pt;}
.yf_c00144{bottom:386.693333pt;}
.ye_c00144{bottom:408.960000pt;}
.yd_c00144{bottom:430.560000pt;}
.yc_c00144{bottom:451.893333pt;}
.yb_c00144{bottom:473.760000pt;}
.ya_c00144{bottom:495.360000pt;}
.y9_c00144{bottom:517.493333pt;}
.y8_c00144{bottom:539.493333pt;}
.y7_c00144{bottom:561.360000pt;}
.y6_c00144{bottom:583.226667pt;}
.y5_c00144{bottom:605.360000pt;}
.y4_c00144{bottom:627.360000pt;}
.y3_c00144{bottom:649.760000pt;}
.y2_c00144{bottom:671.493333pt;}
.y1_c00144{bottom:693.360000pt;}
.hb_c00144{height:11.733399pt;}
.hc_c00144{height:38.937500pt;}
.ha_c00144{height:46.816406pt;}
.h3_c00144{height:49.726562pt;}
.h9_c00144{height:50.644531pt;}
.h6_c00144{height:51.216000pt;}
.h8_c00144{height:52.032000pt;}
.h5_c00144{height:54.020833pt;}
.h4_c00144{height:62.421875pt;}
.h7_c00144{height:68.664062pt;}
.h2_c00144{height:77.654948pt;}
.h1_c00144{height:81.031250pt;}
.h0_c00144{height:728.666667pt;}
.w2_c00144{width:93.222667pt;}
.w0_c00144{width:490.533333pt;}
.w1_c00144{width:490.666667pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:24.266667pt;}
.x3_c00144{left:25.200000pt;}
.x4_c00144{left:26.933333pt;}
.x5_c00144{left:27.866667pt;}
.x6_c00144{left:28.800000pt;}
.x7_c00144{left:29.733333pt;}
.x8_c00144{left:31.466667pt;}
.xa_c00144{left:46.133333pt;}
.xd_c00144{left:119.600000pt;}
.x9_c00144{left:148.400000pt;}
.xb_c00144{left:160.400000pt;}
.x1_c00144{left:171.200000pt;}
.xc_c00144{left:177.866667pt;}
.xe_c00144{left:202.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_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_b4eb56398f633ad73013dc15.woff2')format("woff");}.ff1_c00145{font-family:ff1_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:ff2_c00145;src:url('chunks/assets/font_2ab3675d68acc0e4f120cd9a.woff2')format("woff");}.ff2_c00145{font-family:ff2_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:ff3_c00145;src:url('chunks/assets/font_56e3c107ff1d30c6d21969cb.woff2')format("woff");}.ff3_c00145{font-family:ff3_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:ff4_c00145;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00145{font-family:ff4_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:ff5_c00145;src:url('chunks/assets/font_3c89d2af5b33956eb6d9fe26.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;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_c00145;src:url('chunks/assets/font_ff32f5ba009e020c24dc5300.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:1.437000;font-style:normal;font-weight:normal;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_59a641fc039432fcb51708d1.woff2')format("woff");}.ff7_c00145{font-family:ff7_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:ff8_c00145;src:url('chunks/assets/font_c50b181e5d99c894a90d648b.woff2')format("woff");}.ff8_c00145{font-family:ff8_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:ff9_c00145;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.lsd_c00145{letter-spacing:0.000000px;}
.ls4_c00145{letter-spacing:1.200000px;}
.lsc_c00145{letter-spacing:3.000000px;}
.ls0_c00145{letter-spacing:3.762000px;}
.ls3_c00145{letter-spacing:7.200000px;}
.ls1_c00145{letter-spacing:9.000000px;}
.ls2_c00145{letter-spacing:11.955000px;}
.ls7_c00145{letter-spacing:13.800000px;}
.ls9_c00145{letter-spacing:18.525000px;}
.ls5_c00145{letter-spacing:18.555000px;}
.lsb_c00145{letter-spacing:22.725000px;}
.lsa_c00145{letter-spacing:44.355000px;}
.ls6_c00145{letter-spacing:45.171000px;}
.ls8_c00145{letter-spacing:173.355000px;}
.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;}
}
.ws5_c00145{word-spacing:-25.629000px;}
.ws1_c00145{word-spacing:-20.250000px;}
.ws8_c00145{word-spacing:-17.250000px;}
.ws7_c00145{word-spacing:-16.629000px;}
.ws2_c00145{word-spacing:-11.250000px;}
.ws4_c00145{word-spacing:-7.965000px;}
.ws6_c00145{word-spacing:-2.250000px;}
.ws0_c00145{word-spacing:-0.435000px;}
.ws3_c00145{word-spacing:-0.069000px;}
.ws9_c00145{word-spacing:0.000000px;}
._2e_c00145{margin-left:-37.800000px;}
._2c_c00145{margin-left:-25.110000px;}
._24_c00145{margin-left:-17.679000px;}
._25_c00145{margin-left:-14.973000px;}
._1d_c00145{margin-left:-13.020000px;}
._28_c00145{margin-left:-11.490000px;}
._14_c00145{margin-left:-9.990000px;}
._2_c00145{margin-left:-7.935000px;}
._4_c00145{margin-left:-6.624000px;}
._17_c00145{margin-left:-5.577000px;}
._1_c00145{margin-left:-4.485000px;}
._1a_c00145{margin-left:-2.982000px;}
._6_c00145{margin-left:-1.863000px;}
._7_c00145{width:1.863000px;}
._3_c00145{width:3.312000px;}
._c_c00145{width:4.320000px;}
._8_c00145{width:5.556000px;}
._d_c00145{width:6.603000px;}
._e_c00145{width:8.349000px;}
._a_c00145{width:9.474000px;}
._20_c00145{width:10.626000px;}
._15_c00145{width:12.402000px;}
._0_c00145{width:13.524000px;}
._12_c00145{width:14.883000px;}
._11_c00145{width:16.212000px;}
._f_c00145{width:17.640000px;}
._18_c00145{width:19.707000px;}
._21_c00145{width:20.880000px;}
._9_c00145{width:22.455000px;}
._22_c00145{width:24.054000px;}
._19_c00145{width:26.706000px;}
._1f_c00145{width:28.197000px;}
._16_c00145{width:32.592000px;}
._26_c00145{width:35.040000px;}
._1e_c00145{width:38.148000px;}
._1b_c00145{width:40.542000px;}
._13_c00145{width:48.576000px;}
._30_c00145{width:51.174000px;}
._2f_c00145{width:77.295000px;}
._2b_c00145{width:82.266000px;}
._27_c00145{width:95.043000px;}
._23_c00145{width:104.742000px;}
._b_c00145{width:111.990000px;}
._10_c00145{width:144.300000px;}
._2d_c00145{width:162.162000px;}
._29_c00145{width:165.876000px;}
._1c_c00145{width:202.002000px;}
._5_c00145{width:361.995000px;}
._2a_c00145{width:1025.799000px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(128,128,128);}
.fc0_c00145{color:rgb(0,0,0);}
.fs1_c00145{font-size:45.000000px;}
.fs4_c00145{font-size:48.000000px;}
.fs3_c00145{font-size:54.000000px;}
.fs2_c00145{font-size:66.000000px;}
.fs0_c00145{font-size:69.000000px;}
.y0_c00145{bottom:0.000000px;}
.y24_c00145{bottom:3.105000px;}
.y23_c00145{bottom:7.228369px;}
.y20_c00145{bottom:79.920000px;}
.y1f_c00145{bottom:99.870000px;}
.y1e_c00145{bottom:125.820000px;}
.y1d_c00145{bottom:150.870000px;}
.y1c_c00145{bottom:175.770000px;}
.y1b_c00145{bottom:200.820000px;}
.y22_c00145{bottom:222.420000px;}
.y1a_c00145{bottom:225.120000px;}
.y21_c00145{bottom:236.520000px;}
.y19_c00145{bottom:251.370000px;}
.y18_c00145{bottom:276.120000px;}
.y17_c00145{bottom:301.020000px;}
.y16_c00145{bottom:325.620000px;}
.y15_c00145{bottom:350.220000px;}
.y14_c00145{bottom:386.070000px;}
.y13_c00145{bottom:410.970000px;}
.y12_c00145{bottom:460.920000px;}
.y11_c00145{bottom:514.920000px;}
.y10_c00145{bottom:532.170000px;}
.yf_c00145{bottom:550.020000px;}
.ye_c00145{bottom:567.570000px;}
.yd_c00145{bottom:585.120000px;}
.yc_c00145{bottom:602.370000px;}
.yb_c00145{bottom:619.920000px;}
.ya_c00145{bottom:637.470000px;}
.y9_c00145{bottom:654.720000px;}
.y8_c00145{bottom:672.570000px;}
.y7_c00145{bottom:690.120000px;}
.y6_c00145{bottom:707.670000px;}
.y5_c00145{bottom:724.920000px;}
.y4_c00145{bottom:742.470000px;}
.y3_c00145{bottom:759.720000px;}
.y2_c00145{bottom:777.570000px;}
.y1_c00145{bottom:797.820000px;}
.h9_c00145{height:13.200073px;}
.ha_c00145{height:43.804688px;}
.h6_c00145{height:44.143066px;}
.h4_c00145{height:44.165039px;}
.h3_c00145{height:56.975098px;}
.h8_c00145{height:69.539062px;}
.h5_c00145{height:71.544000px;}
.h7_c00145{height:80.758301px;}
.h2_c00145{height:87.361816px;}
.h0_c00145{height:842.100000px;}
.h1_c00145{height:842.250000px;}
.w2_c00145{width:104.875500px;}
.w0_c00145{width:558.600000px;}
.w1_c00145{width:558.750000px;}
.x0_c00145{left:0.000000px;}
.x11_c00145{left:21.600000px;}
.x10_c00145{left:22.650000px;}
.xa_c00145{left:25.200000px;}
.xd_c00145{left:26.700000px;}
.x12_c00145{left:28.050000px;}
.x2_c00145{left:30.150000px;}
.x7_c00145{left:32.700000px;}
.xc_c00145{left:42.150000px;}
.xe_c00145{left:43.200000px;}
.x3_c00145{left:44.250000px;}
.xf_c00145{left:88.800000px;}
.x6_c00145{left:89.850000px;}
.xb_c00145{left:91.500000px;}
.x5_c00145{left:92.550000px;}
.x4_c00145{left:93.750000px;}
.x1_c00145{left:108.900000px;}
.x9_c00145{left:114.750000px;}
.x8_c00145{left:125.100000px;}
.x13_c00145{left:231.114258px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.lsd_c00145{letter-spacing:0.000000pt;}
.ls4_c00145{letter-spacing:1.066667pt;}
.lsc_c00145{letter-spacing:2.666667pt;}
.ls0_c00145{letter-spacing:3.344000pt;}
.ls3_c00145{letter-spacing:6.400000pt;}
.ls1_c00145{letter-spacing:8.000000pt;}
.ls2_c00145{letter-spacing:10.626667pt;}
.ls7_c00145{letter-spacing:12.266667pt;}
.ls9_c00145{letter-spacing:16.466667pt;}
.ls5_c00145{letter-spacing:16.493333pt;}
.lsb_c00145{letter-spacing:20.200000pt;}
.lsa_c00145{letter-spacing:39.426667pt;}
.ls6_c00145{letter-spacing:40.152000pt;}
.ls8_c00145{letter-spacing:154.093333pt;}
.ws5_c00145{word-spacing:-22.781333pt;}
.ws1_c00145{word-spacing:-18.000000pt;}
.ws8_c00145{word-spacing:-15.333333pt;}
.ws7_c00145{word-spacing:-14.781333pt;}
.ws2_c00145{word-spacing:-10.000000pt;}
.ws4_c00145{word-spacing:-7.080000pt;}
.ws6_c00145{word-spacing:-2.000000pt;}
.ws0_c00145{word-spacing:-0.386667pt;}
.ws3_c00145{word-spacing:-0.061333pt;}
.ws9_c00145{word-spacing:0.000000pt;}
._2e_c00145{margin-left:-33.600000pt;}
._2c_c00145{margin-left:-22.320000pt;}
._24_c00145{margin-left:-15.714667pt;}
._25_c00145{margin-left:-13.309333pt;}
._1d_c00145{margin-left:-11.573333pt;}
._28_c00145{margin-left:-10.213333pt;}
._14_c00145{margin-left:-8.880000pt;}
._2_c00145{margin-left:-7.053333pt;}
._4_c00145{margin-left:-5.888000pt;}
._17_c00145{margin-left:-4.957333pt;}
._1_c00145{margin-left:-3.986667pt;}
._1a_c00145{margin-left:-2.650667pt;}
._6_c00145{margin-left:-1.656000pt;}
._7_c00145{width:1.656000pt;}
._3_c00145{width:2.944000pt;}
._c_c00145{width:3.840000pt;}
._8_c00145{width:4.938667pt;}
._d_c00145{width:5.869333pt;}
._e_c00145{width:7.421333pt;}
._a_c00145{width:8.421333pt;}
._20_c00145{width:9.445333pt;}
._15_c00145{width:11.024000pt;}
._0_c00145{width:12.021333pt;}
._12_c00145{width:13.229333pt;}
._11_c00145{width:14.410667pt;}
._f_c00145{width:15.680000pt;}
._18_c00145{width:17.517333pt;}
._21_c00145{width:18.560000pt;}
._9_c00145{width:19.960000pt;}
._22_c00145{width:21.381333pt;}
._19_c00145{width:23.738667pt;}
._1f_c00145{width:25.064000pt;}
._16_c00145{width:28.970667pt;}
._26_c00145{width:31.146667pt;}
._1e_c00145{width:33.909333pt;}
._1b_c00145{width:36.037333pt;}
._13_c00145{width:43.178667pt;}
._30_c00145{width:45.488000pt;}
._2f_c00145{width:68.706667pt;}
._2b_c00145{width:73.125333pt;}
._27_c00145{width:84.482667pt;}
._23_c00145{width:93.104000pt;}
._b_c00145{width:99.546667pt;}
._10_c00145{width:128.266667pt;}
._2d_c00145{width:144.144000pt;}
._29_c00145{width:147.445333pt;}
._1c_c00145{width:179.557333pt;}
._5_c00145{width:321.773333pt;}
._2a_c00145{width:911.821333pt;}
.fs1_c00145{font-size:40.000000pt;}
.fs4_c00145{font-size:42.666667pt;}
.fs3_c00145{font-size:48.000000pt;}
.fs2_c00145{font-size:58.666667pt;}
.fs0_c00145{font-size:61.333333pt;}
.y0_c00145{bottom:0.000000pt;}
.y24_c00145{bottom:2.760000pt;}
.y23_c00145{bottom:6.425217pt;}
.y20_c00145{bottom:71.040000pt;}
.y1f_c00145{bottom:88.773333pt;}
.y1e_c00145{bottom:111.840000pt;}
.y1d_c00145{bottom:134.106667pt;}
.y1c_c00145{bottom:156.240000pt;}
.y1b_c00145{bottom:178.506667pt;}
.y22_c00145{bottom:197.706667pt;}
.y1a_c00145{bottom:200.106667pt;}
.y21_c00145{bottom:210.240000pt;}
.y19_c00145{bottom:223.440000pt;}
.y18_c00145{bottom:245.440000pt;}
.y17_c00145{bottom:267.573333pt;}
.y16_c00145{bottom:289.440000pt;}
.y15_c00145{bottom:311.306667pt;}
.y14_c00145{bottom:343.173333pt;}
.y13_c00145{bottom:365.306667pt;}
.y12_c00145{bottom:409.706667pt;}
.y11_c00145{bottom:457.706667pt;}
.y10_c00145{bottom:473.040000pt;}
.yf_c00145{bottom:488.906667pt;}
.ye_c00145{bottom:504.506667pt;}
.yd_c00145{bottom:520.106667pt;}
.yc_c00145{bottom:535.440000pt;}
.yb_c00145{bottom:551.040000pt;}
.ya_c00145{bottom:566.640000pt;}
.y9_c00145{bottom:581.973333pt;}
.y8_c00145{bottom:597.840000pt;}
.y7_c00145{bottom:613.440000pt;}
.y6_c00145{bottom:629.040000pt;}
.y5_c00145{bottom:644.373333pt;}
.y4_c00145{bottom:659.973333pt;}
.y3_c00145{bottom:675.306667pt;}
.y2_c00145{bottom:691.173333pt;}
.y1_c00145{bottom:709.173333pt;}
.h9_c00145{height:11.733399pt;}
.ha_c00145{height:38.937500pt;}
.h6_c00145{height:39.238281pt;}
.h4_c00145{height:39.257812pt;}
.h3_c00145{height:50.644531pt;}
.h8_c00145{height:61.812500pt;}
.h5_c00145{height:63.594667pt;}
.h7_c00145{height:71.785156pt;}
.h2_c00145{height:77.654948pt;}
.h0_c00145{height:748.533333pt;}
.h1_c00145{height:748.666667pt;}
.w2_c00145{width:93.222667pt;}
.w0_c00145{width:496.533333pt;}
.w1_c00145{width:496.666667pt;}
.x0_c00145{left:0.000000pt;}
.x11_c00145{left:19.200000pt;}
.x10_c00145{left:20.133333pt;}
.xa_c00145{left:22.400000pt;}
.xd_c00145{left:23.733333pt;}
.x12_c00145{left:24.933333pt;}
.x2_c00145{left:26.800000pt;}
.x7_c00145{left:29.066667pt;}
.xc_c00145{left:37.466667pt;}
.xe_c00145{left:38.400000pt;}
.x3_c00145{left:39.333333pt;}
.xf_c00145{left:78.933333pt;}
.x6_c00145{left:79.866667pt;}
.xb_c00145{left:81.333333pt;}
.x5_c00145{left:82.266667pt;}
.x4_c00145{left:83.333333pt;}
.x1_c00145{left:96.800000pt;}
.x9_c00145{left:102.000000pt;}
.x8_c00145{left:111.200000pt;}
.x13_c00145{left:205.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_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_c50019bfaeb3e175f80cb1bb.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_f3ea3a37252aeeabe9007a0f.woff2')format("woff");}.ff2_c00146{font-family:ff2_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:ff3_c00146;src:url('chunks/assets/font_00f7b93943b08da96736fe16.woff2')format("woff");}.ff3_c00146{font-family:ff3_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:ff4_c00146;src:url('chunks/assets/font_acbf77bd3c8138eecb95f424.woff2')format("woff");}.ff4_c00146{font-family:ff4_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:ff5_c00146;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00146{font-family:ff5_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;}
.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;}
.ls6_c00146{letter-spacing:0.000000px;}
.ls4_c00146{letter-spacing:3.000000px;}
.ls8_c00146{letter-spacing:6.000000px;}
.ls3_c00146{letter-spacing:8.694000px;}
.ls0_c00146{letter-spacing:9.000000px;}
.ls1_c00146{letter-spacing:10.080000px;}
.ls2_c00146{letter-spacing:14.094000px;}
.ls5_c00146{letter-spacing:14.325000px;}
.ls7_c00146{letter-spacing:21.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-37.629000px;}
.ws1_c00146{word-spacing:-25.629000px;}
.ws7_c00146{word-spacing:-19.629000px;}
.ws3_c00146{word-spacing:-16.629000px;}
.ws2_c00146{word-spacing:-8.172000px;}
.ws4_c00146{word-spacing:-7.896000px;}
.ws6_c00146{word-spacing:-6.530400px;}
.ws5_c00146{word-spacing:-3.348000px;}
.ws8_c00146{word-spacing:0.000000px;}
._14_c00146{margin-left:-18.879000px;}
._23_c00146{margin-left:-15.870000px;}
._1f_c00146{margin-left:-12.354000px;}
._1b_c00146{margin-left:-10.722000px;}
._17_c00146{margin-left:-8.775000px;}
._1c_c00146{margin-left:-7.689000px;}
._d_c00146{margin-left:-6.516000px;}
._a_c00146{margin-left:-3.663000px;}
._0_c00146{margin-left:-2.376000px;}
._2_c00146{margin-left:-1.230000px;}
._7_c00146{width:1.371000px;}
._4_c00146{width:2.760000px;}
._5_c00146{width:3.795000px;}
._9_c00146{width:4.989000px;}
._6_c00146{width:5.991000px;}
._e_c00146{width:7.383000px;}
._b_c00146{width:8.469000px;}
._c_c00146{width:9.729000px;}
._8_c00146{width:11.232000px;}
._20_c00146{width:12.399000px;}
._1_c00146{width:13.992000px;}
._18_c00146{width:15.096000px;}
._11_c00146{width:16.203000px;}
._10_c00146{width:17.322000px;}
._15_c00146{width:19.173000px;}
._12_c00146{width:21.276000px;}
._16_c00146{width:22.683000px;}
._f_c00146{width:24.747000px;}
._21_c00146{width:27.378000px;}
._1d_c00146{width:28.755000px;}
._19_c00146{width:32.391000px;}
._22_c00146{width:37.620000px;}
._1e_c00146{width:218.640000px;}
._13_c00146{width:232.134000px;}
._1a_c00146{width:322.785000px;}
._3_c00146{width:444.366000px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs5_c00146{font-size:31.200000px;}
.fs4_c00146{font-size:39.000000px;}
.fs6_c00146{font-size:48.000000px;}
.fs3_c00146{font-size:57.000000px;}
.fs0_c00146{font-size:66.000000px;}
.fs2_c00146{font-size:69.000000px;}
.fs1_c00146{font-size:78.000000px;}
.y0_c00146{bottom:0.000000px;}
.y20_c00146{bottom:3.105000px;}
.y1f_c00146{bottom:7.228371px;}
.y1e_c00146{bottom:58.515000px;}
.y1d_c00146{bottom:82.665000px;}
.y1c_c00146{bottom:107.415000px;}
.y1b_c00146{bottom:132.315000px;}
.y1a_c00146{bottom:156.765000px;}
.y19_c00146{bottom:181.665000px;}
.y18_c00146{bottom:206.565000px;}
.y17_c00146{bottom:231.165000px;}
.y16_c00146{bottom:256.515000px;}
.y15_c00146{bottom:280.815000px;}
.y14_c00146{bottom:305.565000px;}
.y13_c00146{bottom:330.765000px;}
.y12_c00146{bottom:355.515000px;}
.y11_c00146{bottom:379.665000px;}
.y10_c00146{bottom:405.315000px;}
.yf_c00146{bottom:429.615000px;}
.ye_c00146{bottom:454.365000px;}
.yd_c00146{bottom:479.265000px;}
.yc_c00146{bottom:502.965000px;}
.yb_c00146{bottom:528.165000px;}
.ya_c00146{bottom:552.465000px;}
.y9_c00146{bottom:577.815000px;}
.y8_c00146{bottom:602.865000px;}
.y7_c00146{bottom:627.765000px;}
.y6_c00146{bottom:652.515000px;}
.y5_c00146{bottom:677.715000px;}
.y4_c00146{bottom:702.315000px;}
.y3_c00146{bottom:727.065000px;}
.y2_c00146{bottom:752.265000px;}
.y1_c00146{bottom:777.315000px;}
.h4_c00146{height:13.200074px;}
.h5_c00146{height:43.804688px;}
.h3_c00146{height:87.361816px;}
.h2_c00146{height:98.756836px;}
.h1_c00146{height:831.000000px;}
.h0_c00146{height:831.075000px;}
.w1_c00146{width:104.875500px;}
.w0_c00146{width:560.250000px;}
.x0_c00146{left:0.000000px;}
.x4_c00146{left:28.050000px;}
.x3_c00146{left:29.250000px;}
.x2_c00146{left:30.300000px;}
.x1_c00146{left:193.350000px;}
.x6_c00146{left:231.939240px;}
.x5_c00146{left:438.450000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls6_c00146{letter-spacing:0.000000pt;}
.ls4_c00146{letter-spacing:2.666667pt;}
.ls8_c00146{letter-spacing:5.333333pt;}
.ls3_c00146{letter-spacing:7.728000pt;}
.ls0_c00146{letter-spacing:8.000000pt;}
.ls1_c00146{letter-spacing:8.960000pt;}
.ls2_c00146{letter-spacing:12.528000pt;}
.ls5_c00146{letter-spacing:12.733333pt;}
.ls7_c00146{letter-spacing:18.666667pt;}
.ws0_c00146{word-spacing:-33.448000pt;}
.ws1_c00146{word-spacing:-22.781333pt;}
.ws7_c00146{word-spacing:-17.448000pt;}
.ws3_c00146{word-spacing:-14.781333pt;}
.ws2_c00146{word-spacing:-7.264000pt;}
.ws4_c00146{word-spacing:-7.018667pt;}
.ws6_c00146{word-spacing:-5.804800pt;}
.ws5_c00146{word-spacing:-2.976000pt;}
.ws8_c00146{word-spacing:0.000000pt;}
._14_c00146{margin-left:-16.781333pt;}
._23_c00146{margin-left:-14.106667pt;}
._1f_c00146{margin-left:-10.981333pt;}
._1b_c00146{margin-left:-9.530667pt;}
._17_c00146{margin-left:-7.800000pt;}
._1c_c00146{margin-left:-6.834667pt;}
._d_c00146{margin-left:-5.792000pt;}
._a_c00146{margin-left:-3.256000pt;}
._0_c00146{margin-left:-2.112000pt;}
._2_c00146{margin-left:-1.093333pt;}
._7_c00146{width:1.218667pt;}
._4_c00146{width:2.453333pt;}
._5_c00146{width:3.373333pt;}
._9_c00146{width:4.434667pt;}
._6_c00146{width:5.325333pt;}
._e_c00146{width:6.562667pt;}
._b_c00146{width:7.528000pt;}
._c_c00146{width:8.648000pt;}
._8_c00146{width:9.984000pt;}
._20_c00146{width:11.021333pt;}
._1_c00146{width:12.437333pt;}
._18_c00146{width:13.418667pt;}
._11_c00146{width:14.402667pt;}
._10_c00146{width:15.397333pt;}
._15_c00146{width:17.042667pt;}
._12_c00146{width:18.912000pt;}
._16_c00146{width:20.162667pt;}
._f_c00146{width:21.997333pt;}
._21_c00146{width:24.336000pt;}
._1d_c00146{width:25.560000pt;}
._19_c00146{width:28.792000pt;}
._22_c00146{width:33.440000pt;}
._1e_c00146{width:194.346667pt;}
._13_c00146{width:206.341333pt;}
._1a_c00146{width:286.920000pt;}
._3_c00146{width:394.992000pt;}
.fs5_c00146{font-size:27.733333pt;}
.fs4_c00146{font-size:34.666667pt;}
.fs6_c00146{font-size:42.666667pt;}
.fs3_c00146{font-size:50.666667pt;}
.fs0_c00146{font-size:58.666667pt;}
.fs2_c00146{font-size:61.333333pt;}
.fs1_c00146{font-size:69.333333pt;}
.y0_c00146{bottom:0.000000pt;}
.y20_c00146{bottom:2.760000pt;}
.y1f_c00146{bottom:6.425219pt;}
.y1e_c00146{bottom:52.013333pt;}
.y1d_c00146{bottom:73.480000pt;}
.y1c_c00146{bottom:95.480000pt;}
.y1b_c00146{bottom:117.613333pt;}
.y1a_c00146{bottom:139.346667pt;}
.y19_c00146{bottom:161.480000pt;}
.y18_c00146{bottom:183.613333pt;}
.y17_c00146{bottom:205.480000pt;}
.y16_c00146{bottom:228.013333pt;}
.y15_c00146{bottom:249.613333pt;}
.y14_c00146{bottom:271.613333pt;}
.y13_c00146{bottom:294.013333pt;}
.y12_c00146{bottom:316.013333pt;}
.y11_c00146{bottom:337.480000pt;}
.y10_c00146{bottom:360.280000pt;}
.yf_c00146{bottom:381.880000pt;}
.ye_c00146{bottom:403.880000pt;}
.yd_c00146{bottom:426.013333pt;}
.yc_c00146{bottom:447.080000pt;}
.yb_c00146{bottom:469.480000pt;}
.ya_c00146{bottom:491.080000pt;}
.y9_c00146{bottom:513.613333pt;}
.y8_c00146{bottom:535.880000pt;}
.y7_c00146{bottom:558.013333pt;}
.y6_c00146{bottom:580.013333pt;}
.y5_c00146{bottom:602.413333pt;}
.y4_c00146{bottom:624.280000pt;}
.y3_c00146{bottom:646.280000pt;}
.y2_c00146{bottom:668.680000pt;}
.y1_c00146{bottom:690.946667pt;}
.h4_c00146{height:11.733399pt;}
.h5_c00146{height:38.937500pt;}
.h3_c00146{height:77.654948pt;}
.h2_c00146{height:87.783854pt;}
.h1_c00146{height:738.666667pt;}
.h0_c00146{height:738.733333pt;}
.w1_c00146{width:93.222667pt;}
.w0_c00146{width:498.000000pt;}
.x0_c00146{left:0.000000pt;}
.x4_c00146{left:24.933333pt;}
.x3_c00146{left:26.000000pt;}
.x2_c00146{left:26.933333pt;}
.x1_c00146{left:171.866667pt;}
.x6_c00146{left:206.168213pt;}
.x5_c00146{left:389.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_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_0f04b2834fd7c5939c933496.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.568848;font-style:normal;font-weight:normal;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_0b5624c34260059ac1fdf56e.woff2')format("woff");}.ff2_c00147{font-family:ff2_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:ff3_c00147;src:url('chunks/assets/font_a7611f813eea2654d0cd483b.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.568848;font-style:normal;font-weight:normal;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_1e4333e0546c3e0129f37c23.woff2')format("woff");}.ff4_c00147{font-family:ff4_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:ff5_c00147;src:url('chunks/assets/font_a42ab12f117fa2b7dfa15b63.woff2')format("woff");}.ff5_c00147{font-family:ff5_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:ff6_c00147;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00147{font-family:ff6_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;}
.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;}
.ls3_c00147{letter-spacing:0.000000px;}
.ls4_c00147{letter-spacing:3.000000px;}
.ls1_c00147{letter-spacing:4.800000px;}
.ls7_c00147{letter-spacing:6.000000px;}
.ls0_c00147{letter-spacing:7.062000px;}
.ls2_c00147{letter-spacing:8.370000px;}
.ls6_c00147{letter-spacing:12.000000px;}
.ls5_c00147{letter-spacing:33.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;}
}
.ws5_c00147{word-spacing:-50.022000px;}
.ws0_c00147{word-spacing:-43.845000px;}
.ws1_c00147{word-spacing:-26.640000px;}
.ws4_c00147{word-spacing:-19.629000px;}
.ws3_c00147{word-spacing:-16.629000px;}
.ws2_c00147{word-spacing:-12.858000px;}
.ws6_c00147{word-spacing:0.000000px;}
._0_c00147{margin-left:-78.561000px;}
._25_c00147{margin-left:-22.710000px;}
._1e_c00147{margin-left:-13.677000px;}
._14_c00147{margin-left:-11.457000px;}
._20_c00147{margin-left:-9.768000px;}
._e_c00147{margin-left:-8.727000px;}
._10_c00147{margin-left:-7.473000px;}
._f_c00147{margin-left:-6.297000px;}
._13_c00147{margin-left:-4.545000px;}
._c_c00147{margin-left:-3.243000px;}
._d_c00147{margin-left:-2.094000px;}
._4_c00147{margin-left:-1.035000px;}
._2_c00147{width:1.716000px;}
._11_c00147{width:2.733000px;}
._3_c00147{width:3.762000px;}
._12_c00147{width:5.064000px;}
._8_c00147{width:6.279000px;}
._5_c00147{width:8.154000px;}
._18_c00147{width:10.098000px;}
._b_c00147{width:11.481000px;}
._7_c00147{width:12.903000px;}
._1c_c00147{width:13.965000px;}
._6_c00147{width:15.111000px;}
._9_c00147{width:16.560000px;}
._a_c00147{width:17.871000px;}
._16_c00147{width:19.050000px;}
._1f_c00147{width:20.736000px;}
._1a_c00147{width:22.320000px;}
._17_c00147{width:23.958000px;}
._19_c00147{width:26.046000px;}
._1b_c00147{width:28.248000px;}
._26_c00147{width:30.081000px;}
._15_c00147{width:31.596000px;}
._23_c00147{width:33.234000px;}
._1d_c00147{width:38.109000px;}
._22_c00147{width:43.431000px;}
._24_c00147{width:104.556000px;}
._21_c00147{width:372.201000px;}
._1_c00147{width:539.463000px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(128,128,128);}
.fc0_c00147{color:rgb(0,0,0);}
.fs3_c00147{font-size:45.000000px;}
.fs5_c00147{font-size:48.000000px;}
.fs4_c00147{font-size:60.000000px;}
.fs1_c00147{font-size:66.000000px;}
.fs2_c00147{font-size:69.000000px;}
.fs0_c00147{font-size:87.000000px;}
.y0_c00147{bottom:0.000000px;}
.y1e_c00147{bottom:3.105000px;}
.y1d_c00147{bottom:7.228369px;}
.y1c_c00147{bottom:62.070000px;}
.y1b_c00147{bottom:87.720000px;}
.y1a_c00147{bottom:113.370000px;}
.y19_c00147{bottom:138.420000px;}
.y18_c00147{bottom:162.720000px;}
.y17_c00147{bottom:188.370000px;}
.y16_c00147{bottom:213.270000px;}
.y15_c00147{bottom:237.270000px;}
.y14_c00147{bottom:263.520000px;}
.y13_c00147{bottom:288.120000px;}
.y12_c00147{bottom:313.170000px;}
.y11_c00147{bottom:337.470000px;}
.y10_c00147{bottom:363.120000px;}
.yf_c00147{bottom:412.320000px;}
.ye_c00147{bottom:436.770000px;}
.yd_c00147{bottom:486.570000px;}
.yc_c00147{bottom:533.970000px;}
.yb_c00147{bottom:551.370000px;}
.ya_c00147{bottom:568.920000px;}
.y9_c00147{bottom:586.470000px;}
.y8_c00147{bottom:604.020000px;}
.y7_c00147{bottom:621.570000px;}
.y6_c00147{bottom:656.820000px;}
.y5_c00147{bottom:693.870000px;}
.y4_c00147{bottom:718.770000px;}
.y3_c00147{bottom:743.520000px;}
.y2_c00147{bottom:768.870000px;}
.y1_c00147{bottom:794.370000px;}
.h7_c00147{height:13.200073px;}
.h8_c00147{height:43.804688px;}
.h4_c00147{height:52.668457px;}
.h6_c00147{height:80.758301px;}
.h5_c00147{height:83.563477px;}
.h3_c00147{height:87.361816px;}
.h2_c00147{height:110.151855px;}
.h0_c00147{height:842.100000px;}
.h1_c00147{height:842.250000px;}
.w2_c00147{width:104.875500px;}
.w0_c00147{width:558.600000px;}
.w1_c00147{width:558.750000px;}
.x0_c00147{left:0.000000px;}
.xc_c00147{left:32.100000px;}
.xa_c00147{left:63.750000px;}
.x2_c00147{left:89.100000px;}
.x3_c00147{left:90.450000px;}
.x1_c00147{left:92.100000px;}
.x6_c00147{left:93.150000px;}
.xb_c00147{left:96.300000px;}
.x5_c00147{left:108.900000px;}
.x8_c00147{left:117.750000px;}
.x7_c00147{left:135.900000px;}
.xe_c00147{left:231.114258px;}
.x4_c00147{left:238.500000px;}
.x9_c00147{left:268.950000px;}
.xd_c00147{left:501.300000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.ls4_c00147{letter-spacing:2.666667pt;}
.ls1_c00147{letter-spacing:4.266667pt;}
.ls7_c00147{letter-spacing:5.333333pt;}
.ls0_c00147{letter-spacing:6.277333pt;}
.ls2_c00147{letter-spacing:7.440000pt;}
.ls6_c00147{letter-spacing:10.666667pt;}
.ls5_c00147{letter-spacing:29.333333pt;}
.ws5_c00147{word-spacing:-44.464000pt;}
.ws0_c00147{word-spacing:-38.973333pt;}
.ws1_c00147{word-spacing:-23.680000pt;}
.ws4_c00147{word-spacing:-17.448000pt;}
.ws3_c00147{word-spacing:-14.781333pt;}
.ws2_c00147{word-spacing:-11.429333pt;}
.ws6_c00147{word-spacing:0.000000pt;}
._0_c00147{margin-left:-69.832000pt;}
._25_c00147{margin-left:-20.186667pt;}
._1e_c00147{margin-left:-12.157333pt;}
._14_c00147{margin-left:-10.184000pt;}
._20_c00147{margin-left:-8.682667pt;}
._e_c00147{margin-left:-7.757333pt;}
._10_c00147{margin-left:-6.642667pt;}
._f_c00147{margin-left:-5.597333pt;}
._13_c00147{margin-left:-4.040000pt;}
._c_c00147{margin-left:-2.882667pt;}
._d_c00147{margin-left:-1.861333pt;}
._4_c00147{margin-left:-0.920000pt;}
._2_c00147{width:1.525333pt;}
._11_c00147{width:2.429333pt;}
._3_c00147{width:3.344000pt;}
._12_c00147{width:4.501333pt;}
._8_c00147{width:5.581333pt;}
._5_c00147{width:7.248000pt;}
._18_c00147{width:8.976000pt;}
._b_c00147{width:10.205333pt;}
._7_c00147{width:11.469333pt;}
._1c_c00147{width:12.413333pt;}
._6_c00147{width:13.432000pt;}
._9_c00147{width:14.720000pt;}
._a_c00147{width:15.885333pt;}
._16_c00147{width:16.933333pt;}
._1f_c00147{width:18.432000pt;}
._1a_c00147{width:19.840000pt;}
._17_c00147{width:21.296000pt;}
._19_c00147{width:23.152000pt;}
._1b_c00147{width:25.109333pt;}
._26_c00147{width:26.738667pt;}
._15_c00147{width:28.085333pt;}
._23_c00147{width:29.541333pt;}
._1d_c00147{width:33.874667pt;}
._22_c00147{width:38.605333pt;}
._24_c00147{width:92.938667pt;}
._21_c00147{width:330.845333pt;}
._1_c00147{width:479.522667pt;}
.fs3_c00147{font-size:40.000000pt;}
.fs5_c00147{font-size:42.666667pt;}
.fs4_c00147{font-size:53.333333pt;}
.fs1_c00147{font-size:58.666667pt;}
.fs2_c00147{font-size:61.333333pt;}
.fs0_c00147{font-size:77.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y1e_c00147{bottom:2.760000pt;}
.y1d_c00147{bottom:6.425217pt;}
.y1c_c00147{bottom:55.173333pt;}
.y1b_c00147{bottom:77.973333pt;}
.y1a_c00147{bottom:100.773333pt;}
.y19_c00147{bottom:123.040000pt;}
.y18_c00147{bottom:144.640000pt;}
.y17_c00147{bottom:167.440000pt;}
.y16_c00147{bottom:189.573333pt;}
.y15_c00147{bottom:210.906667pt;}
.y14_c00147{bottom:234.240000pt;}
.y13_c00147{bottom:256.106667pt;}
.y12_c00147{bottom:278.373333pt;}
.y11_c00147{bottom:299.973333pt;}
.y10_c00147{bottom:322.773333pt;}
.yf_c00147{bottom:366.506667pt;}
.ye_c00147{bottom:388.240000pt;}
.yd_c00147{bottom:432.506667pt;}
.yc_c00147{bottom:474.640000pt;}
.yb_c00147{bottom:490.106667pt;}
.ya_c00147{bottom:505.706667pt;}
.y9_c00147{bottom:521.306667pt;}
.y8_c00147{bottom:536.906667pt;}
.y7_c00147{bottom:552.506667pt;}
.y6_c00147{bottom:583.840000pt;}
.y5_c00147{bottom:616.773333pt;}
.y4_c00147{bottom:638.906667pt;}
.y3_c00147{bottom:660.906667pt;}
.y2_c00147{bottom:683.440000pt;}
.y1_c00147{bottom:706.106667pt;}
.h7_c00147{height:11.733399pt;}
.h8_c00147{height:38.937500pt;}
.h4_c00147{height:46.816406pt;}
.h6_c00147{height:71.785156pt;}
.h5_c00147{height:74.278646pt;}
.h3_c00147{height:77.654948pt;}
.h2_c00147{height:97.912760pt;}
.h0_c00147{height:748.533333pt;}
.h1_c00147{height:748.666667pt;}
.w2_c00147{width:93.222667pt;}
.w0_c00147{width:496.533333pt;}
.w1_c00147{width:496.666667pt;}
.x0_c00147{left:0.000000pt;}
.xc_c00147{left:28.533333pt;}
.xa_c00147{left:56.666667pt;}
.x2_c00147{left:79.200000pt;}
.x3_c00147{left:80.400000pt;}
.x1_c00147{left:81.866667pt;}
.x6_c00147{left:82.800000pt;}
.xb_c00147{left:85.600000pt;}
.x5_c00147{left:96.800000pt;}
.x8_c00147{left:104.666667pt;}
.x7_c00147{left:120.800000pt;}
.xe_c00147{left:205.434896pt;}
.x4_c00147{left:212.000000pt;}
.x9_c00147{left:239.066667pt;}
.xd_c00147{left:445.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_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_0a092dd48e7b73b65a444920.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_d08f8aa7cda5041865f3681f.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;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_c00148;src:url('chunks/assets/font_555fc769d80fe48c18764621.woff2')format("woff");}.ff3_c00148{font-family:ff3_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:ff4_c00148;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00148{font-family:ff4_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:ff5_c00148;src:url('chunks/assets/font_8ddc1e3065f11172c2f2de83.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;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_c00148;src:url('chunks/assets/font_78ee65f18e5853f2157cc376.woff2')format("woff");}.ff6_c00148{font-family:ff6_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:ff7_c00148;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00148{letter-spacing:0.000000px;}
.ls3_c00148{letter-spacing:3.000000px;}
.ls0_c00148{letter-spacing:9.000000px;}
.ls1_c00148{letter-spacing:19.200000px;}
.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:-25.629000px;}
.ws1_c00148{word-spacing:-16.629000px;}
.ws2_c00148{word-spacing:-13.620000px;}
.ws3_c00148{word-spacing:0.000000px;}
._23_c00148{margin-left:-31.767000px;}
._19_c00148{margin-left:-22.398000px;}
._16_c00148{margin-left:-17.967000px;}
._25_c00148{margin-left:-16.665000px;}
._4_c00148{margin-left:-14.586000px;}
._26_c00148{margin-left:-13.029000px;}
._21_c00148{margin-left:-11.937000px;}
._5_c00148{margin-left:-10.530000px;}
._3_c00148{margin-left:-8.502000px;}
._2_c00148{margin-left:-7.410000px;}
._6_c00148{margin-left:-6.240000px;}
._20_c00148{margin-left:-5.109000px;}
._0_c00148{margin-left:-3.588000px;}
._1_c00148{margin-left:-1.872000px;}
._b_c00148{width:1.932000px;}
._d_c00148{width:3.225000px;}
._c_c00148{width:4.425000px;}
._9_c00148{width:5.520000px;}
._17_c00148{width:6.849000px;}
._e_c00148{width:7.851000px;}
._1d_c00148{width:8.913000px;}
._f_c00148{width:10.011000px;}
._a_c00148{width:11.868000px;}
._8_c00148{width:12.972000px;}
._1c_c00148{width:14.649000px;}
._12_c00148{width:16.302000px;}
._14_c00148{width:18.447000px;}
._24_c00148{width:19.860000px;}
._1a_c00148{width:21.057000px;}
._13_c00148{width:22.524000px;}
._1e_c00148{width:23.550000px;}
._11_c00148{width:26.289000px;}
._1f_c00148{width:31.158000px;}
._1b_c00148{width:33.012000px;}
._15_c00148{width:34.779000px;}
._10_c00148{width:106.812000px;}
._18_c00148{width:112.158000px;}
._22_c00148{width:200.511000px;}
._7_c00148{width:498.687000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs4_c00148{font-size:30.000000px;}
.fs3_c00148{font-size:48.000000px;}
.fs5_c00148{font-size:51.000000px;}
.fs2_c00148{font-size:66.000000px;}
.fs1_c00148{font-size:69.000000px;}
.fs0_c00148{font-size:78.000000px;}
.y0_c00148{bottom:0.000000px;}
.y1d_c00148{bottom:3.105000px;}
.y1c_c00148{bottom:7.228371px;}
.y1b_c00148{bottom:143.115000px;}
.y1a_c00148{bottom:160.965000px;}
.y19_c00148{bottom:178.665000px;}
.y18_c00148{bottom:196.215000px;}
.y17_c00148{bottom:213.765000px;}
.y16_c00148{bottom:248.865000px;}
.y15_c00148{bottom:286.965000px;}
.y14_c00148{bottom:311.565000px;}
.y13_c00148{bottom:336.465000px;}
.y12_c00148{bottom:361.215000px;}
.y11_c00148{bottom:385.515000px;}
.y10_c00148{bottom:410.415000px;}
.yf_c00148{bottom:435.765000px;}
.ye_c00148{bottom:460.065000px;}
.yd_c00148{bottom:484.065000px;}
.yc_c00148{bottom:508.665000px;}
.yb_c00148{bottom:532.965000px;}
.ya_c00148{bottom:557.565000px;}
.y9_c00148{bottom:582.615000px;}
.y8_c00148{bottom:608.265000px;}
.y7_c00148{bottom:632.565000px;}
.y6_c00148{bottom:657.465000px;}
.y5_c00148{bottom:682.815000px;}
.y4_c00148{bottom:707.865000px;}
.y3_c00148{bottom:732.765000px;}
.y2_c00148{bottom:757.665000px;}
.y1_c00148{bottom:781.365000px;}
.h7_c00148{height:13.200074px;}
.h8_c00148{height:43.804688px;}
.h4_c00148{height:56.179688px;}
.h5_c00148{height:60.773438px;}
.h6_c00148{height:64.571777px;}
.h3_c00148{height:87.361816px;}
.h2_c00148{height:91.291992px;}
.h1_c00148{height:831.000000px;}
.h0_c00148{height:831.075000px;}
.w1_c00148{width:104.875500px;}
.w0_c00148{width:560.250000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:29.700000px;}
.x3_c00148{left:30.750000px;}
.x4_c00148{left:31.800000px;}
.x5_c00148{left:33.450000px;}
.x8_c00148{left:34.500000px;}
.x9_c00148{left:35.550000px;}
.xa_c00148{left:36.900000px;}
.x7_c00148{left:52.350000px;}
.x1_c00148{left:186.000000px;}
.x6_c00148{left:198.150000px;}
.xb_c00148{left:231.939240px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls2_c00148{letter-spacing:0.000000pt;}
.ls3_c00148{letter-spacing:2.666667pt;}
.ls0_c00148{letter-spacing:8.000000pt;}
.ls1_c00148{letter-spacing:17.066667pt;}
.ws0_c00148{word-spacing:-22.781333pt;}
.ws1_c00148{word-spacing:-14.781333pt;}
.ws2_c00148{word-spacing:-12.106667pt;}
.ws3_c00148{word-spacing:0.000000pt;}
._23_c00148{margin-left:-28.237333pt;}
._19_c00148{margin-left:-19.909333pt;}
._16_c00148{margin-left:-15.970667pt;}
._25_c00148{margin-left:-14.813333pt;}
._4_c00148{margin-left:-12.965333pt;}
._26_c00148{margin-left:-11.581333pt;}
._21_c00148{margin-left:-10.610667pt;}
._5_c00148{margin-left:-9.360000pt;}
._3_c00148{margin-left:-7.557333pt;}
._2_c00148{margin-left:-6.586667pt;}
._6_c00148{margin-left:-5.546667pt;}
._20_c00148{margin-left:-4.541333pt;}
._0_c00148{margin-left:-3.189333pt;}
._1_c00148{margin-left:-1.664000pt;}
._b_c00148{width:1.717333pt;}
._d_c00148{width:2.866667pt;}
._c_c00148{width:3.933333pt;}
._9_c00148{width:4.906667pt;}
._17_c00148{width:6.088000pt;}
._e_c00148{width:6.978667pt;}
._1d_c00148{width:7.922667pt;}
._f_c00148{width:8.898667pt;}
._a_c00148{width:10.549333pt;}
._8_c00148{width:11.530667pt;}
._1c_c00148{width:13.021333pt;}
._12_c00148{width:14.490667pt;}
._14_c00148{width:16.397333pt;}
._24_c00148{width:17.653333pt;}
._1a_c00148{width:18.717333pt;}
._13_c00148{width:20.021333pt;}
._1e_c00148{width:20.933333pt;}
._11_c00148{width:23.368000pt;}
._1f_c00148{width:27.696000pt;}
._1b_c00148{width:29.344000pt;}
._15_c00148{width:30.914667pt;}
._10_c00148{width:94.944000pt;}
._18_c00148{width:99.696000pt;}
._22_c00148{width:178.232000pt;}
._7_c00148{width:443.277333pt;}
.fs4_c00148{font-size:26.666667pt;}
.fs3_c00148{font-size:42.666667pt;}
.fs5_c00148{font-size:45.333333pt;}
.fs2_c00148{font-size:58.666667pt;}
.fs1_c00148{font-size:61.333333pt;}
.fs0_c00148{font-size:69.333333pt;}
.y0_c00148{bottom:0.000000pt;}
.y1d_c00148{bottom:2.760000pt;}
.y1c_c00148{bottom:6.425219pt;}
.y1b_c00148{bottom:127.213333pt;}
.y1a_c00148{bottom:143.080000pt;}
.y19_c00148{bottom:158.813333pt;}
.y18_c00148{bottom:174.413333pt;}
.y17_c00148{bottom:190.013333pt;}
.y16_c00148{bottom:221.213333pt;}
.y15_c00148{bottom:255.080000pt;}
.y14_c00148{bottom:276.946667pt;}
.y13_c00148{bottom:299.080000pt;}
.y12_c00148{bottom:321.080000pt;}
.y11_c00148{bottom:342.680000pt;}
.y10_c00148{bottom:364.813333pt;}
.yf_c00148{bottom:387.346667pt;}
.ye_c00148{bottom:408.946667pt;}
.yd_c00148{bottom:430.280000pt;}
.yc_c00148{bottom:452.146667pt;}
.yb_c00148{bottom:473.746667pt;}
.ya_c00148{bottom:495.613333pt;}
.y9_c00148{bottom:517.880000pt;}
.y8_c00148{bottom:540.680000pt;}
.y7_c00148{bottom:562.280000pt;}
.y6_c00148{bottom:584.413333pt;}
.y5_c00148{bottom:606.946667pt;}
.y4_c00148{bottom:629.213333pt;}
.y3_c00148{bottom:651.346667pt;}
.y2_c00148{bottom:673.480000pt;}
.y1_c00148{bottom:694.546667pt;}
.h7_c00148{height:11.733399pt;}
.h8_c00148{height:38.937500pt;}
.h4_c00148{height:49.937500pt;}
.h5_c00148{height:54.020833pt;}
.h6_c00148{height:57.397135pt;}
.h3_c00148{height:77.654948pt;}
.h2_c00148{height:81.148438pt;}
.h1_c00148{height:738.666667pt;}
.h0_c00148{height:738.733333pt;}
.w1_c00148{width:93.222667pt;}
.w0_c00148{width:498.000000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:26.400000pt;}
.x3_c00148{left:27.333333pt;}
.x4_c00148{left:28.266667pt;}
.x5_c00148{left:29.733333pt;}
.x8_c00148{left:30.666667pt;}
.x9_c00148{left:31.600000pt;}
.xa_c00148{left:32.800000pt;}
.x7_c00148{left:46.533333pt;}
.x1_c00148{left:165.333333pt;}
.x6_c00148{left:176.133333pt;}
.xb_c00148{left:206.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_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_1863bcdd3bfc6106784071d0.woff2')format("woff");}.ff1_c00149{font-family:ff1_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:ff2_c00149;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_0d7410b97364582ddcfa0b34.woff2')format("woff");}.ff3_c00149{font-family:ff3_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:ff4_c00149;src:url('chunks/assets/font_a50cdd6b5710d97566355bb6.woff2')format("woff");}.ff4_c00149{font-family:ff4_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:ff5_c00149;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00149{font-family:ff5_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);}
.v1_c00149{vertical-align:-101.400000px;}
.v0_c00149{vertical-align:0.000000px;}
.ls3_c00149{letter-spacing:0.000000px;}
.ls4_c00149{letter-spacing:3.000000px;}
.ls5_c00149{letter-spacing:6.000000px;}
.ls2_c00149{letter-spacing:9.000000px;}
.ls0_c00149{letter-spacing:18.600000px;}
.ls1_c00149{letter-spacing:29.514000px;}
.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:-25.629000px;}
.ws2_c00149{word-spacing:-18.612000px;}
.ws1_c00149{word-spacing:-16.629000px;}
.ws3_c00149{word-spacing:-0.552000px;}
.ws4_c00149{word-spacing:0.000000px;}
._1b_c00149{margin-left:-14.214000px;}
._1a_c00149{margin-left:-11.385000px;}
._f_c00149{margin-left:-9.453000px;}
._c_c00149{margin-left:-7.107000px;}
._d_c00149{margin-left:-5.589000px;}
._18_c00149{margin-left:-3.828000px;}
._a_c00149{margin-left:-2.277000px;}
._b_c00149{margin-left:-1.035000px;}
._e_c00149{width:1.656000px;}
._12_c00149{width:3.036000px;}
._1_c00149{width:4.071000px;}
._13_c00149{width:5.520000px;}
._0_c00149{width:7.107000px;}
._10_c00149{width:8.625000px;}
._1e_c00149{width:9.936000px;}
._2_c00149{width:10.971000px;}
._4_c00149{width:13.041000px;}
._8_c00149{width:14.580000px;}
._19_c00149{width:15.696000px;}
._5_c00149{width:17.733000px;}
._17_c00149{width:21.636000px;}
._7_c00149{width:23.889000px;}
._3_c00149{width:25.053000px;}
._9_c00149{width:26.292000px;}
._6_c00149{width:28.221000px;}
._11_c00149{width:33.051000px;}
._14_c00149{width:43.194000px;}
._15_c00149{width:46.920000px;}
._16_c00149{width:50.439000px;}
._1f_c00149{width:57.840000px;}
._22_c00149{width:62.100000px;}
._20_c00149{width:65.166000px;}
._1d_c00149{width:72.558000px;}
._21_c00149{width:91.455000px;}
._1c_c00149{width:98.670000px;}
._23_c00149{width:259.785000px;}
._24_c00149{width:308.412000px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(128,128,128);}
.fc0_c00149{color:rgb(0,0,0);}
.fs3_c00149{font-size:48.000000px;}
.fs2_c00149{font-size:54.000000px;}
.fs1_c00149{font-size:66.000000px;}
.fs0_c00149{font-size:69.000000px;}
.y0_c00149{bottom:0.000000px;}
.y1c_c00149{bottom:3.105000px;}
.y1b_c00149{bottom:7.228369px;}
.y1a_c00149{bottom:95.220000px;}
.y19_c00149{bottom:120.720000px;}
.y18_c00149{bottom:146.070000px;}
.y17_c00149{bottom:171.120000px;}
.y16_c00149{bottom:196.320000px;}
.y15_c00149{bottom:221.070000px;}
.y14_c00149{bottom:246.420000px;}
.y13_c00149{bottom:271.620000px;}
.y12_c00149{bottom:296.370000px;}
.y11_c00149{bottom:321.570000px;}
.y10_c00149{bottom:346.320000px;}
.yf_c00149{bottom:370.620000px;}
.ye_c00149{bottom:396.120000px;}
.yd_c00149{bottom:420.570000px;}
.yc_c00149{bottom:446.070000px;}
.yb_c00149{bottom:470.520000px;}
.ya_c00149{bottom:495.720000px;}
.y9_c00149{bottom:520.470000px;}
.y8_c00149{bottom:545.070000px;}
.y7_c00149{bottom:570.720000px;}
.y6_c00149{bottom:595.020000px;}
.y5_c00149{bottom:619.920000px;}
.y4_c00149{bottom:644.670000px;}
.y3_c00149{bottom:670.170000px;}
.y2_c00149{bottom:694.620000px;}
.y1_c00149{bottom:744.870000px;}
.h4_c00149{height:13.200073px;}
.h5_c00149{height:43.804688px;}
.h3_c00149{height:80.758301px;}
.h2_c00149{height:87.361816px;}
.h0_c00149{height:842.100000px;}
.h1_c00149{height:842.250000px;}
.w2_c00149{width:104.875500px;}
.w0_c00149{width:558.600000px;}
.w1_c00149{width:558.750000px;}
.x0_c00149{left:0.000000px;}
.xb_c00149{left:25.650000px;}
.x7_c00149{left:27.750000px;}
.x6_c00149{left:43.200000px;}
.xc_c00149{left:59.700000px;}
.xa_c00149{left:89.550000px;}
.x9_c00149{left:90.750000px;}
.x8_c00149{left:91.800000px;}
.x5_c00149{left:93.600000px;}
.x2_c00149{left:117.000000px;}
.x4_c00149{left:126.300000px;}
.x1_c00149{left:134.100000px;}
.xd_c00149{left:231.114258px;}
.x3_c00149{left:273.150000px;}
@media print{
.v1_c00149{vertical-align:-90.133333pt;}
.v0_c00149{vertical-align:0.000000pt;}
.ls3_c00149{letter-spacing:0.000000pt;}
.ls4_c00149{letter-spacing:2.666667pt;}
.ls5_c00149{letter-spacing:5.333333pt;}
.ls2_c00149{letter-spacing:8.000000pt;}
.ls0_c00149{letter-spacing:16.533333pt;}
.ls1_c00149{letter-spacing:26.234667pt;}
.ws0_c00149{word-spacing:-22.781333pt;}
.ws2_c00149{word-spacing:-16.544000pt;}
.ws1_c00149{word-spacing:-14.781333pt;}
.ws3_c00149{word-spacing:-0.490667pt;}
.ws4_c00149{word-spacing:0.000000pt;}
._1b_c00149{margin-left:-12.634667pt;}
._1a_c00149{margin-left:-10.120000pt;}
._f_c00149{margin-left:-8.402667pt;}
._c_c00149{margin-left:-6.317333pt;}
._d_c00149{margin-left:-4.968000pt;}
._18_c00149{margin-left:-3.402667pt;}
._a_c00149{margin-left:-2.024000pt;}
._b_c00149{margin-left:-0.920000pt;}
._e_c00149{width:1.472000pt;}
._12_c00149{width:2.698667pt;}
._1_c00149{width:3.618667pt;}
._13_c00149{width:4.906667pt;}
._0_c00149{width:6.317333pt;}
._10_c00149{width:7.666667pt;}
._1e_c00149{width:8.832000pt;}
._2_c00149{width:9.752000pt;}
._4_c00149{width:11.592000pt;}
._8_c00149{width:12.960000pt;}
._19_c00149{width:13.952000pt;}
._5_c00149{width:15.762667pt;}
._17_c00149{width:19.232000pt;}
._7_c00149{width:21.234667pt;}
._3_c00149{width:22.269333pt;}
._9_c00149{width:23.370667pt;}
._6_c00149{width:25.085333pt;}
._11_c00149{width:29.378667pt;}
._14_c00149{width:38.394667pt;}
._15_c00149{width:41.706667pt;}
._16_c00149{width:44.834667pt;}
._1f_c00149{width:51.413333pt;}
._22_c00149{width:55.200000pt;}
._20_c00149{width:57.925333pt;}
._1d_c00149{width:64.496000pt;}
._21_c00149{width:81.293333pt;}
._1c_c00149{width:87.706667pt;}
._23_c00149{width:230.920000pt;}
._24_c00149{width:274.144000pt;}
.fs3_c00149{font-size:42.666667pt;}
.fs2_c00149{font-size:48.000000pt;}
.fs1_c00149{font-size:58.666667pt;}
.fs0_c00149{font-size:61.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.y1c_c00149{bottom:2.760000pt;}
.y1b_c00149{bottom:6.425217pt;}
.y1a_c00149{bottom:84.640000pt;}
.y19_c00149{bottom:107.306667pt;}
.y18_c00149{bottom:129.840000pt;}
.y17_c00149{bottom:152.106667pt;}
.y16_c00149{bottom:174.506667pt;}
.y15_c00149{bottom:196.506667pt;}
.y14_c00149{bottom:219.040000pt;}
.y13_c00149{bottom:241.440000pt;}
.y12_c00149{bottom:263.440000pt;}
.y11_c00149{bottom:285.840000pt;}
.y10_c00149{bottom:307.840000pt;}
.yf_c00149{bottom:329.440000pt;}
.ye_c00149{bottom:352.106667pt;}
.yd_c00149{bottom:373.840000pt;}
.yc_c00149{bottom:396.506667pt;}
.yb_c00149{bottom:418.240000pt;}
.ya_c00149{bottom:440.640000pt;}
.y9_c00149{bottom:462.640000pt;}
.y8_c00149{bottom:484.506667pt;}
.y7_c00149{bottom:507.306667pt;}
.y6_c00149{bottom:528.906667pt;}
.y5_c00149{bottom:551.040000pt;}
.y4_c00149{bottom:573.040000pt;}
.y3_c00149{bottom:595.706667pt;}
.y2_c00149{bottom:617.440000pt;}
.y1_c00149{bottom:662.106667pt;}
.h4_c00149{height:11.733399pt;}
.h5_c00149{height:38.937500pt;}
.h3_c00149{height:71.785156pt;}
.h2_c00149{height:77.654948pt;}
.h0_c00149{height:748.533333pt;}
.h1_c00149{height:748.666667pt;}
.w2_c00149{width:93.222667pt;}
.w0_c00149{width:496.533333pt;}
.w1_c00149{width:496.666667pt;}
.x0_c00149{left:0.000000pt;}
.xb_c00149{left:22.800000pt;}
.x7_c00149{left:24.666667pt;}
.x6_c00149{left:38.400000pt;}
.xc_c00149{left:53.066667pt;}
.xa_c00149{left:79.600000pt;}
.x9_c00149{left:80.666667pt;}
.x8_c00149{left:81.600000pt;}
.x5_c00149{left:83.200000pt;}
.x2_c00149{left:104.000000pt;}
.x4_c00149{left:112.266667pt;}
.x1_c00149{left:119.200000pt;}
.xd_c00149{left:205.434896pt;}
.x3_c00149{left:242.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_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_bf026e96f0a892ece9a8bc7f.woff2')format("woff");}.ff1_c00150{font-family:ff1_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:ff2_c00150;src:url('chunks/assets/font_966e716d8679d78b3172f4d6.woff2')format("woff");}.ff2_c00150{font-family:ff2_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:ff3_c00150;src:url('chunks/assets/font_3a4114588e8bdebd98b38456.woff2')format("woff");}.ff3_c00150{font-family:ff3_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:ff4_c00150;src:url('chunks/assets/font_1dca50808b68fdc36a2516a4.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.437000;font-style:normal;font-weight:normal;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_67a0ea1cf3c04b61da9d14c9.woff2')format("woff");}.ff5_c00150{font-family:ff5_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:ff6_c00150;src:url('chunks/assets/font_b4f5a422c805ff1073ce734a.woff2')format("woff");}.ff6_c00150{font-family:ff6_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:ff7_c00150;src:url('chunks/assets/font_1337bc37413a76be54178aa4.woff2')format("woff");}.ff7_c00150{font-family:ff7_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:ff8_c00150;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00150{font-family:ff8_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;}
.m1_c00150{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_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;}
.ls6_c00150{letter-spacing:0.000000px;}
.ls4_c00150{letter-spacing:1.200000px;}
.ls0_c00150{letter-spacing:2.700000px;}
.ls3_c00150{letter-spacing:2.970000px;}
.ls5_c00150{letter-spacing:3.000000px;}
.ls8_c00150{letter-spacing:6.000000px;}
.ls9_c00150{letter-spacing:9.000000px;}
.lsa_c00150{letter-spacing:18.000000px;}
.ls7_c00150{letter-spacing:27.000000px;}
.ls1_c00150{letter-spacing:39.879000px;}
.ls2_c00150{letter-spacing:43.479000px;}
.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;}
}
.ws2_c00150{word-spacing:-45.000000px;}
.ws3_c00150{word-spacing:-36.075000px;}
.ws1_c00150{word-spacing:-22.737000px;}
.ws5_c00150{word-spacing:-22.500000px;}
.ws6_c00150{word-spacing:-19.629000px;}
.ws4_c00150{word-spacing:-16.629000px;}
.ws0_c00150{word-spacing:-13.737000px;}
.ws7_c00150{word-spacing:0.000000px;}
._c_c00150{margin-left:-37.278000px;}
._b_c00150{margin-left:-36.024000px;}
._8_c00150{margin-left:-31.635000px;}
._6_c00150{margin-left:-27.588000px;}
._a_c00150{margin-left:-26.277000px;}
._2c_c00150{margin-left:-21.756000px;}
._17_c00150{margin-left:-18.810000px;}
._16_c00150{margin-left:-17.613000px;}
._21_c00150{margin-left:-14.799000px;}
._2b_c00150{margin-left:-11.847000px;}
._19_c00150{margin-left:-10.671000px;}
._7_c00150{margin-left:-8.835000px;}
._18_c00150{margin-left:-7.593000px;}
._e_c00150{margin-left:-6.261000px;}
._9_c00150{margin-left:-4.617000px;}
._2_c00150{margin-left:-2.622000px;}
._15_c00150{margin-left:-1.335000px;}
._0_c00150{width:1.794000px;}
._1_c00150{width:2.829000px;}
._13_c00150{width:4.038000px;}
._4_c00150{width:6.003000px;}
._5_c00150{width:7.797000px;}
._d_c00150{width:9.063000px;}
._f_c00150{width:10.242000px;}
._1c_c00150{width:11.790000px;}
._1f_c00150{width:13.290000px;}
._28_c00150{width:14.496000px;}
._1e_c00150{width:15.507000px;}
._14_c00150{width:17.379000px;}
._26_c00150{width:18.576000px;}
._10_c00150{width:20.169000px;}
._12_c00150{width:21.801000px;}
._20_c00150{width:23.913000px;}
._11_c00150{width:25.254000px;}
._1b_c00150{width:27.576000px;}
._1d_c00150{width:34.089000px;}
._25_c00150{width:36.687000px;}
._1a_c00150{width:39.015000px;}
._2a_c00150{width:41.301000px;}
._24_c00150{width:45.588000px;}
._2e_c00150{width:48.072000px;}
._29_c00150{width:103.293000px;}
._27_c00150{width:107.376000px;}
._2d_c00150{width:114.768000px;}
._22_c00150{width:159.270000px;}
._23_c00150{width:221.544000px;}
._3_c00150{width:503.304000px;}
.fc2_c00150{color:transparent;}
.fc1_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs3_c00150{font-size:39.000000px;}
.fs8_c00150{font-size:48.000000px;}
.fs2_c00150{font-size:54.000000px;}
.fs1_c00150{font-size:57.000000px;}
.fs7_c00150{font-size:66.000000px;}
.fs0_c00150{font-size:69.000000px;}
.fs6_c00150{font-size:75.000000px;}
.fs4_c00150{font-size:78.000000px;}
.fs5_c00150{font-size:81.000000px;}
.y0_c00150{bottom:0.000000px;}
.y1d_c00150{bottom:3.105000px;}
.y1c_c00150{bottom:7.228371px;}
.y1b_c00150{bottom:67.815000px;}
.y1a_c00150{bottom:92.565000px;}
.y19_c00150{bottom:119.115000px;}
.y18_c00150{bottom:143.865000px;}
.y17_c00150{bottom:169.215000px;}
.y16_c00150{bottom:194.115000px;}
.y15_c00150{bottom:219.165000px;}
.y14_c00150{bottom:244.365000px;}
.y13_c00150{bottom:268.365000px;}
.y12_c00150{bottom:292.065000px;}
.y11_c00150{bottom:319.365000px;}
.y10_c00150{bottom:343.665000px;}
.yf_c00150{bottom:368.865000px;}
.ye_c00150{bottom:393.915000px;}
.yd_c00150{bottom:418.965000px;}
.yc_c00150{bottom:444.915000px;}
.yb_c00150{bottom:469.515000px;}
.ya_c00150{bottom:493.515000px;}
.y9_c00150{bottom:543.015000px;}
.y8_c00150{bottom:568.065000px;}
.y7_c00150{bottom:618.015000px;}
.y6_c00150{bottom:665.265000px;}
.y5_c00150{bottom:683.415000px;}
.y4_c00150{bottom:701.715000px;}
.y3_c00150{bottom:718.665000px;}
.y2_c00150{bottom:754.065000px;}
.y1_c00150{bottom:791.565000px;}
.h9_c00150{height:13.200074px;}
.ha_c00150{height:43.804688px;}
.h3_c00150{height:55.914551px;}
.h6_c00150{height:56.592000px;}
.h5_c00150{height:66.713379px;}
.h4_c00150{height:72.168457px;}
.h8_c00150{height:80.758301px;}
.h2_c00150{height:87.361816px;}
.h7_c00150{height:102.555176px;}
.h1_c00150{height:831.000000px;}
.h0_c00150{height:831.075000px;}
.w1_c00150{width:104.875500px;}
.w0_c00150{width:560.250000px;}
.x0_c00150{left:0.000000px;}
.x7_c00150{left:26.250000px;}
.x4_c00150{left:28.950000px;}
.xe_c00150{left:30.000000px;}
.x12_c00150{left:31.950000px;}
.x14_c00150{left:33.300000px;}
.x15_c00150{left:35.100000px;}
.x13_c00150{left:36.150000px;}
.x10_c00150{left:42.450000px;}
.x3_c00150{left:46.650000px;}
.xf_c00150{left:56.400000px;}
.x8_c00150{left:70.800000px;}
.x9_c00150{left:107.550000px;}
.x1_c00150{left:185.250000px;}
.x2_c00150{left:194.700000px;}
.x11_c00150{left:205.800000px;}
.x17_c00150{left:231.939240px;}
.xa_c00150{left:280.500000px;}
.xb_c00150{left:343.500000px;}
.xc_c00150{left:413.100000px;}
.x5_c00150{left:425.850000px;}
.xd_c00150{left:433.650000px;}
.x6_c00150{left:442.500000px;}
.x16_c00150{left:450.600000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls6_c00150{letter-spacing:0.000000pt;}
.ls4_c00150{letter-spacing:1.066667pt;}
.ls0_c00150{letter-spacing:2.400000pt;}
.ls3_c00150{letter-spacing:2.640000pt;}
.ls5_c00150{letter-spacing:2.666667pt;}
.ls8_c00150{letter-spacing:5.333333pt;}
.ls9_c00150{letter-spacing:8.000000pt;}
.lsa_c00150{letter-spacing:16.000000pt;}
.ls7_c00150{letter-spacing:24.000000pt;}
.ls1_c00150{letter-spacing:35.448000pt;}
.ls2_c00150{letter-spacing:38.648000pt;}
.ws2_c00150{word-spacing:-40.000000pt;}
.ws3_c00150{word-spacing:-32.066667pt;}
.ws1_c00150{word-spacing:-20.210667pt;}
.ws5_c00150{word-spacing:-20.000000pt;}
.ws6_c00150{word-spacing:-17.448000pt;}
.ws4_c00150{word-spacing:-14.781333pt;}
.ws0_c00150{word-spacing:-12.210667pt;}
.ws7_c00150{word-spacing:0.000000pt;}
._c_c00150{margin-left:-33.136000pt;}
._b_c00150{margin-left:-32.021333pt;}
._8_c00150{margin-left:-28.120000pt;}
._6_c00150{margin-left:-24.522667pt;}
._a_c00150{margin-left:-23.357333pt;}
._2c_c00150{margin-left:-19.338667pt;}
._17_c00150{margin-left:-16.720000pt;}
._16_c00150{margin-left:-15.656000pt;}
._21_c00150{margin-left:-13.154667pt;}
._2b_c00150{margin-left:-10.530667pt;}
._19_c00150{margin-left:-9.485333pt;}
._7_c00150{margin-left:-7.853333pt;}
._18_c00150{margin-left:-6.749333pt;}
._e_c00150{margin-left:-5.565333pt;}
._9_c00150{margin-left:-4.104000pt;}
._2_c00150{margin-left:-2.330667pt;}
._15_c00150{margin-left:-1.186667pt;}
._0_c00150{width:1.594667pt;}
._1_c00150{width:2.514667pt;}
._13_c00150{width:3.589333pt;}
._4_c00150{width:5.336000pt;}
._5_c00150{width:6.930667pt;}
._d_c00150{width:8.056000pt;}
._f_c00150{width:9.104000pt;}
._1c_c00150{width:10.480000pt;}
._1f_c00150{width:11.813333pt;}
._28_c00150{width:12.885333pt;}
._1e_c00150{width:13.784000pt;}
._14_c00150{width:15.448000pt;}
._26_c00150{width:16.512000pt;}
._10_c00150{width:17.928000pt;}
._12_c00150{width:19.378667pt;}
._20_c00150{width:21.256000pt;}
._11_c00150{width:22.448000pt;}
._1b_c00150{width:24.512000pt;}
._1d_c00150{width:30.301333pt;}
._25_c00150{width:32.610667pt;}
._1a_c00150{width:34.680000pt;}
._2a_c00150{width:36.712000pt;}
._24_c00150{width:40.522667pt;}
._2e_c00150{width:42.730667pt;}
._29_c00150{width:91.816000pt;}
._27_c00150{width:95.445333pt;}
._2d_c00150{width:102.016000pt;}
._22_c00150{width:141.573333pt;}
._23_c00150{width:196.928000pt;}
._3_c00150{width:447.381333pt;}
.fs3_c00150{font-size:34.666667pt;}
.fs8_c00150{font-size:42.666667pt;}
.fs2_c00150{font-size:48.000000pt;}
.fs1_c00150{font-size:50.666667pt;}
.fs7_c00150{font-size:58.666667pt;}
.fs0_c00150{font-size:61.333333pt;}
.fs6_c00150{font-size:66.666667pt;}
.fs4_c00150{font-size:69.333333pt;}
.fs5_c00150{font-size:72.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y1d_c00150{bottom:2.760000pt;}
.y1c_c00150{bottom:6.425219pt;}
.y1b_c00150{bottom:60.280000pt;}
.y1a_c00150{bottom:82.280000pt;}
.y19_c00150{bottom:105.880000pt;}
.y18_c00150{bottom:127.880000pt;}
.y17_c00150{bottom:150.413333pt;}
.y16_c00150{bottom:172.546667pt;}
.y15_c00150{bottom:194.813333pt;}
.y14_c00150{bottom:217.213333pt;}
.y13_c00150{bottom:238.546667pt;}
.y12_c00150{bottom:259.613333pt;}
.y11_c00150{bottom:283.880000pt;}
.y10_c00150{bottom:305.480000pt;}
.yf_c00150{bottom:327.880000pt;}
.ye_c00150{bottom:350.146667pt;}
.yd_c00150{bottom:372.413333pt;}
.yc_c00150{bottom:395.480000pt;}
.yb_c00150{bottom:417.346667pt;}
.ya_c00150{bottom:438.680000pt;}
.y9_c00150{bottom:482.680000pt;}
.y8_c00150{bottom:504.946667pt;}
.y7_c00150{bottom:549.346667pt;}
.y6_c00150{bottom:591.346667pt;}
.y5_c00150{bottom:607.480000pt;}
.y4_c00150{bottom:623.746667pt;}
.y3_c00150{bottom:638.813333pt;}
.y2_c00150{bottom:670.280000pt;}
.y1_c00150{bottom:703.613333pt;}
.h9_c00150{height:11.733399pt;}
.ha_c00150{height:38.937500pt;}
.h3_c00150{height:49.701823pt;}
.h6_c00150{height:50.304000pt;}
.h5_c00150{height:59.300781pt;}
.h4_c00150{height:64.149740pt;}
.h8_c00150{height:71.785156pt;}
.h2_c00150{height:77.654948pt;}
.h7_c00150{height:91.160156pt;}
.h1_c00150{height:738.666667pt;}
.h0_c00150{height:738.733333pt;}
.w1_c00150{width:93.222667pt;}
.w0_c00150{width:498.000000pt;}
.x0_c00150{left:0.000000pt;}
.x7_c00150{left:23.333333pt;}
.x4_c00150{left:25.733333pt;}
.xe_c00150{left:26.666667pt;}
.x12_c00150{left:28.400000pt;}
.x14_c00150{left:29.600000pt;}
.x15_c00150{left:31.200000pt;}
.x13_c00150{left:32.133333pt;}
.x10_c00150{left:37.733333pt;}
.x3_c00150{left:41.466667pt;}
.xf_c00150{left:50.133333pt;}
.x8_c00150{left:62.933333pt;}
.x9_c00150{left:95.600000pt;}
.x1_c00150{left:164.666667pt;}
.x2_c00150{left:173.066667pt;}
.x11_c00150{left:182.933333pt;}
.x17_c00150{left:206.168213pt;}
.xa_c00150{left:249.333333pt;}
.xb_c00150{left:305.333333pt;}
.xc_c00150{left:367.200000pt;}
.x5_c00150{left:378.533333pt;}
.xd_c00150{left:385.466667pt;}
.x6_c00150{left:393.333333pt;}
.x16_c00150{left:400.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_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_a6b23c0b52b651c78cf5a7a3.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_8286546b2f59e7aff9cf5997.woff2')format("woff");}.ff2_c00151{font-family:ff2_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:ff3_c00151;src:url('chunks/assets/font_b1da3aa06b4ab6687099aa2d.woff2')format("woff");}.ff3_c00151{font-family:ff3_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:ff4_c00151;src:url('chunks/assets/font_14b8b443c57ce64ed2271a23.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_2354762df32b194dd52890a8.woff2')format("woff");}.ff5_c00151{font-family:ff5_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:ff6_c00151;src:url('chunks/assets/font_7e4b719dd1c58da4973e9f0a.woff2')format("woff");}.ff6_c00151{font-family:ff6_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:ff7_c00151;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00151{font-family:ff7_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;}
.ls7_c00151{letter-spacing:0.000000px;}
.ls6_c00151{letter-spacing:3.000000px;}
.ls2_c00151{letter-spacing:3.900000px;}
.ls4_c00151{letter-spacing:6.000000px;}
.ls5_c00151{letter-spacing:9.762000px;}
.ls8_c00151{letter-spacing:18.000000px;}
.ls3_c00151{letter-spacing:24.300000px;}
.ls9_c00151{letter-spacing:30.000000px;}
.ls1_c00151{letter-spacing:36.204000px;}
.ls0_c00151{letter-spacing:39.105000px;}
.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;}
}
.ws5_c00151{word-spacing:-44.460000px;}
.ws6_c00151{word-spacing:-19.716000px;}
.ws8_c00151{word-spacing:-19.629000px;}
.ws4_c00151{word-spacing:-16.740000px;}
.ws7_c00151{word-spacing:-13.014000px;}
.ws2_c00151{word-spacing:-0.855000px;}
.ws9_c00151{word-spacing:0.000000px;}
.ws1_c00151{word-spacing:0.150000px;}
.ws0_c00151{word-spacing:1.680000px;}
.ws3_c00151{word-spacing:7.035000px;}
._17_c00151{margin-left:-24.705000px;}
._15_c00151{margin-left:-17.124000px;}
._2c_c00151{margin-left:-15.039000px;}
._29_c00151{margin-left:-13.815000px;}
._f_c00151{margin-left:-12.324000px;}
._a_c00151{margin-left:-11.115000px;}
._10_c00151{margin-left:-9.480000px;}
._11_c00151{margin-left:-8.460000px;}
._12_c00151{margin-left:-6.861000px;}
._13_c00151{margin-left:-4.860000px;}
._16_c00151{margin-left:-3.630000px;}
._6_c00151{margin-left:-2.070000px;}
._b_c00151{margin-left:-1.020000px;}
._c_c00151{width:1.590000px;}
._5_c00151{width:2.865000px;}
._7_c00151{width:4.398000px;}
._d_c00151{width:5.499000px;}
._0_c00151{width:6.630000px;}
._e_c00151{width:8.127000px;}
._4_c00151{width:9.180000px;}
._1_c00151{width:10.620000px;}
._3_c00151{width:12.225000px;}
._28_c00151{width:13.602000px;}
._9_c00151{width:14.625000px;}
._2_c00151{width:15.840000px;}
._1a_c00151{width:16.983000px;}
._8_c00151{width:18.405000px;}
._18_c00151{width:20.715000px;}
._21_c00151{width:22.263000px;}
._2b_c00151{width:23.901000px;}
._20_c00151{width:24.951000px;}
._1e_c00151{width:27.405000px;}
._27_c00151{width:29.130000px;}
._2a_c00151{width:30.321000px;}
._22_c00151{width:32.142000px;}
._25_c00151{width:33.636000px;}
._14_c00151{width:35.550000px;}
._24_c00151{width:38.040000px;}
._1d_c00151{width:45.510000px;}
._23_c00151{width:46.725000px;}
._19_c00151{width:99.540000px;}
._1c_c00151{width:207.435000px;}
._1f_c00151{width:215.595000px;}
._26_c00151{width:252.216000px;}
._1b_c00151{width:365.637000px;}
.fc2_c00151{color:transparent;}
.fc1_c00151{color:rgb(128,128,128);}
.fc0_c00151{color:rgb(0,0,0);}
.fs3_c00151{font-size:36.000000px;}
.fs0_c00151{font-size:45.000000px;}
.fs5_c00151{font-size:48.000000px;}
.fs4_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:60.000000px;}
.fs1_c00151{font-size:69.000000px;}
.y0_c00151{bottom:0.000000px;}
.y23_c00151{bottom:3.105000px;}
.y22_c00151{bottom:7.228369px;}
.y21_c00151{bottom:71.220000px;}
.y20_c00151{bottom:89.070000px;}
.y1f_c00151{bottom:107.220000px;}
.y1e_c00151{bottom:124.920000px;}
.y1d_c00151{bottom:142.470000px;}
.y1c_c00151{bottom:159.870000px;}
.y1b_c00151{bottom:177.420000px;}
.y1a_c00151{bottom:196.320000px;}
.y19_c00151{bottom:212.970000px;}
.y18_c00151{bottom:230.820000px;}
.y17_c00151{bottom:248.970000px;}
.y16_c00151{bottom:266.520000px;}
.y15_c00151{bottom:284.520000px;}
.y14_c00151{bottom:301.770000px;}
.y13_c00151{bottom:336.720000px;}
.y12_c00151{bottom:374.220000px;}
.y11_c00151{bottom:398.520000px;}
.y10_c00151{bottom:423.870000px;}
.yf_c00151{bottom:448.920000px;}
.ye_c00151{bottom:474.120000px;}
.yd_c00151{bottom:498.420000px;}
.yc_c00151{bottom:523.770000px;}
.yb_c00151{bottom:548.670000px;}
.ya_c00151{bottom:573.420000px;}
.y9_c00151{bottom:598.020000px;}
.y8_c00151{bottom:623.370000px;}
.y7_c00151{bottom:648.270000px;}
.y6_c00151{bottom:673.320000px;}
.y5_c00151{bottom:697.920000px;}
.y4_c00151{bottom:722.970000px;}
.y3_c00151{bottom:748.470000px;}
.y2_c00151{bottom:773.220000px;}
.y1_c00151{bottom:798.870000px;}
.h6_c00151{height:13.200073px;}
.h7_c00151{height:43.804688px;}
.h5_c00151{height:68.370117px;}
.h3_c00151{height:75.966797px;}
.h2_c00151{height:80.758301px;}
.h4_c00151{height:87.361816px;}
.h0_c00151{height:842.100000px;}
.h1_c00151{height:842.250000px;}
.w2_c00151{width:104.875500px;}
.w0_c00151{width:558.600000px;}
.w1_c00151{width:558.750000px;}
.x0_c00151{left:0.000000px;}
.x8_c00151{left:27.300000px;}
.x6_c00151{left:29.250000px;}
.x5_c00151{left:31.650000px;}
.x4_c00151{left:43.800000px;}
.xb_c00151{left:88.800000px;}
.x9_c00151{left:90.450000px;}
.x7_c00151{left:91.500000px;}
.x3_c00151{left:94.050000px;}
.x2_c00151{left:95.100000px;}
.xa_c00151{left:218.400000px;}
.xd_c00151{left:231.114258px;}
.x1_c00151{left:247.050000px;}
.xc_c00151{left:500.550000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls7_c00151{letter-spacing:0.000000pt;}
.ls6_c00151{letter-spacing:2.666667pt;}
.ls2_c00151{letter-spacing:3.466667pt;}
.ls4_c00151{letter-spacing:5.333333pt;}
.ls5_c00151{letter-spacing:8.677333pt;}
.ls8_c00151{letter-spacing:16.000000pt;}
.ls3_c00151{letter-spacing:21.600000pt;}
.ls9_c00151{letter-spacing:26.666667pt;}
.ls1_c00151{letter-spacing:32.181333pt;}
.ls0_c00151{letter-spacing:34.760000pt;}
.ws5_c00151{word-spacing:-39.520000pt;}
.ws6_c00151{word-spacing:-17.525333pt;}
.ws8_c00151{word-spacing:-17.448000pt;}
.ws4_c00151{word-spacing:-14.880000pt;}
.ws7_c00151{word-spacing:-11.568000pt;}
.ws2_c00151{word-spacing:-0.760000pt;}
.ws9_c00151{word-spacing:0.000000pt;}
.ws1_c00151{word-spacing:0.133333pt;}
.ws0_c00151{word-spacing:1.493333pt;}
.ws3_c00151{word-spacing:6.253333pt;}
._17_c00151{margin-left:-21.960000pt;}
._15_c00151{margin-left:-15.221333pt;}
._2c_c00151{margin-left:-13.368000pt;}
._29_c00151{margin-left:-12.280000pt;}
._f_c00151{margin-left:-10.954667pt;}
._a_c00151{margin-left:-9.880000pt;}
._10_c00151{margin-left:-8.426667pt;}
._11_c00151{margin-left:-7.520000pt;}
._12_c00151{margin-left:-6.098667pt;}
._13_c00151{margin-left:-4.320000pt;}
._16_c00151{margin-left:-3.226667pt;}
._6_c00151{margin-left:-1.840000pt;}
._b_c00151{margin-left:-0.906667pt;}
._c_c00151{width:1.413333pt;}
._5_c00151{width:2.546667pt;}
._7_c00151{width:3.909333pt;}
._d_c00151{width:4.888000pt;}
._0_c00151{width:5.893333pt;}
._e_c00151{width:7.224000pt;}
._4_c00151{width:8.160000pt;}
._1_c00151{width:9.440000pt;}
._3_c00151{width:10.866667pt;}
._28_c00151{width:12.090667pt;}
._9_c00151{width:13.000000pt;}
._2_c00151{width:14.080000pt;}
._1a_c00151{width:15.096000pt;}
._8_c00151{width:16.360000pt;}
._18_c00151{width:18.413333pt;}
._21_c00151{width:19.789333pt;}
._2b_c00151{width:21.245333pt;}
._20_c00151{width:22.178667pt;}
._1e_c00151{width:24.360000pt;}
._27_c00151{width:25.893333pt;}
._2a_c00151{width:26.952000pt;}
._22_c00151{width:28.570667pt;}
._25_c00151{width:29.898667pt;}
._14_c00151{width:31.600000pt;}
._24_c00151{width:33.813333pt;}
._1d_c00151{width:40.453333pt;}
._23_c00151{width:41.533333pt;}
._19_c00151{width:88.480000pt;}
._1c_c00151{width:184.386667pt;}
._1f_c00151{width:191.640000pt;}
._26_c00151{width:224.192000pt;}
._1b_c00151{width:325.010667pt;}
.fs3_c00151{font-size:32.000000pt;}
.fs0_c00151{font-size:40.000000pt;}
.fs5_c00151{font-size:42.666667pt;}
.fs4_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:53.333333pt;}
.fs1_c00151{font-size:61.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.y23_c00151{bottom:2.760000pt;}
.y22_c00151{bottom:6.425217pt;}
.y21_c00151{bottom:63.306667pt;}
.y20_c00151{bottom:79.173333pt;}
.y1f_c00151{bottom:95.306667pt;}
.y1e_c00151{bottom:111.040000pt;}
.y1d_c00151{bottom:126.640000pt;}
.y1c_c00151{bottom:142.106667pt;}
.y1b_c00151{bottom:157.706667pt;}
.y1a_c00151{bottom:174.506667pt;}
.y19_c00151{bottom:189.306667pt;}
.y18_c00151{bottom:205.173333pt;}
.y17_c00151{bottom:221.306667pt;}
.y16_c00151{bottom:236.906667pt;}
.y15_c00151{bottom:252.906667pt;}
.y14_c00151{bottom:268.240000pt;}
.y13_c00151{bottom:299.306667pt;}
.y12_c00151{bottom:332.640000pt;}
.y11_c00151{bottom:354.240000pt;}
.y10_c00151{bottom:376.773333pt;}
.yf_c00151{bottom:399.040000pt;}
.ye_c00151{bottom:421.440000pt;}
.yd_c00151{bottom:443.040000pt;}
.yc_c00151{bottom:465.573333pt;}
.yb_c00151{bottom:487.706667pt;}
.ya_c00151{bottom:509.706667pt;}
.y9_c00151{bottom:531.573333pt;}
.y8_c00151{bottom:554.106667pt;}
.y7_c00151{bottom:576.240000pt;}
.y6_c00151{bottom:598.506667pt;}
.y5_c00151{bottom:620.373333pt;}
.y4_c00151{bottom:642.640000pt;}
.y3_c00151{bottom:665.306667pt;}
.y2_c00151{bottom:687.306667pt;}
.y1_c00151{bottom:710.106667pt;}
.h6_c00151{height:11.733399pt;}
.h7_c00151{height:38.937500pt;}
.h5_c00151{height:60.773438pt;}
.h3_c00151{height:67.526042pt;}
.h2_c00151{height:71.785156pt;}
.h4_c00151{height:77.654948pt;}
.h0_c00151{height:748.533333pt;}
.h1_c00151{height:748.666667pt;}
.w2_c00151{width:93.222667pt;}
.w0_c00151{width:496.533333pt;}
.w1_c00151{width:496.666667pt;}
.x0_c00151{left:0.000000pt;}
.x8_c00151{left:24.266667pt;}
.x6_c00151{left:26.000000pt;}
.x5_c00151{left:28.133333pt;}
.x4_c00151{left:38.933333pt;}
.xb_c00151{left:78.933333pt;}
.x9_c00151{left:80.400000pt;}
.x7_c00151{left:81.333333pt;}
.x3_c00151{left:83.600000pt;}
.x2_c00151{left:84.533333pt;}
.xa_c00151{left:194.133333pt;}
.xd_c00151{left:205.434896pt;}
.x1_c00151{left:219.600000pt;}
.xc_c00151{left:444.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_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_77740caf4180c7b76944458e.woff2')format("woff");}.ff1_c00152{font-family:ff1_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:ff2_c00152;src:url('chunks/assets/font_9bd09f008798ff2c4f605112.woff2')format("woff");}.ff2_c00152{font-family:ff2_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:ff3_c00152;src:url('chunks/assets/font_5a49b7128e88b2367462bbbd.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_1d33e6750bbde031cb8c4aa0.woff2')format("woff");}.ff4_c00152{font-family:ff4_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:ff5_c00152;src:url('chunks/assets/font_43c8ed95fdcde6a578a11cbe.woff2')format("woff");}.ff5_c00152{font-family:ff5_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:ff6_c00152;src:url('chunks/assets/font_acc857029cbf23929d7fb996.woff2')format("woff");}.ff6_c00152{font-family:ff6_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:ff7_c00152;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m1_c00152{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_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);}
.v1_c00152{vertical-align:-75.000000px;}
.v0_c00152{vertical-align:0.000000px;}
.ls5_c00152{letter-spacing:0.000000px;}
.ls6_c00152{letter-spacing:3.000000px;}
.ls2_c00152{letter-spacing:3.846000px;}
.ls0_c00152{letter-spacing:4.386000px;}
.ls1_c00152{letter-spacing:4.800000px;}
.ls4_c00152{letter-spacing:5.520000px;}
.ls7_c00152{letter-spacing:12.000000px;}
.ls3_c00152{letter-spacing:15.063000px;}
.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;}
}
.ws8_c00152{word-spacing:-44.022000px;}
.ws0_c00152{word-spacing:-13.014000px;}
.ws5_c00152{word-spacing:-12.954000px;}
.ws3_c00152{word-spacing:-11.568000px;}
.ws4_c00152{word-spacing:-5.307000px;}
.ws7_c00152{word-spacing:-0.384000px;}
.ws1_c00152{word-spacing:-0.288000px;}
.ws2_c00152{word-spacing:-0.048000px;}
.ws9_c00152{word-spacing:0.000000px;}
.ws6_c00152{word-spacing:6.924000px;}
._2c_c00152{margin-left:-37.026000px;}
._28_c00152{margin-left:-25.671000px;}
._1d_c00152{margin-left:-21.735000px;}
._1c_c00152{margin-left:-20.010000px;}
._29_c00152{margin-left:-18.210000px;}
._1a_c00152{margin-left:-17.043000px;}
._21_c00152{margin-left:-14.241000px;}
._23_c00152{margin-left:-12.672000px;}
._1b_c00152{margin-left:-10.764000px;}
._14_c00152{margin-left:-9.036000px;}
._12_c00152{margin-left:-7.866000px;}
._10_c00152{margin-left:-5.994000px;}
._8_c00152{margin-left:-4.896000px;}
._1_c00152{margin-left:-3.105000px;}
._2_c00152{margin-left:-2.070000px;}
._e_c00152{margin-left:-1.020000px;}
._0_c00152{width:1.242000px;}
._6_c00152{width:2.817000px;}
._4_c00152{width:3.933000px;}
._5_c00152{width:5.658000px;}
._17_c00152{width:6.933000px;}
._7_c00152{width:7.938000px;}
._9_c00152{width:9.693000px;}
._27_c00152{width:10.773000px;}
._a_c00152{width:11.817000px;}
._13_c00152{width:14.076000px;}
._b_c00152{width:16.092000px;}
._20_c00152{width:17.715000px;}
._25_c00152{width:19.179000px;}
._15_c00152{width:21.030000px;}
._11_c00152{width:22.500000px;}
._c_c00152{width:23.922000px;}
._18_c00152{width:28.887000px;}
._16_c00152{width:48.123000px;}
._24_c00152{width:54.627000px;}
._1e_c00152{width:61.251000px;}
._2d_c00152{width:74.337000px;}
._1f_c00152{width:89.826000px;}
._22_c00152{width:113.838000px;}
._d_c00152{width:183.564000px;}
._2a_c00152{width:230.226000px;}
._3_c00152{width:466.914000px;}
._2b_c00152{width:578.439000px;}
._f_c00152{width:1094.202000px;}
._26_c00152{width:1118.742000px;}
._19_c00152{width:1549.836000px;}
.fc2_c00152{color:transparent;}
.fc1_c00152{color:rgb(128,128,128);}
.fc0_c00152{color:rgb(0,0,0);}
.fs7_c00152{font-size:45.000000px;}
.fs3_c00152{font-size:48.000000px;}
.fs2_c00152{font-size:51.000000px;}
.fs1_c00152{font-size:54.000000px;}
.fs6_c00152{font-size:57.000000px;}
.fs5_c00152{font-size:66.000000px;}
.fs0_c00152{font-size:69.000000px;}
.fs4_c00152{font-size:87.000000px;}
.y0_c00152{bottom:0.000000px;}
.y23_c00152{bottom:3.105000px;}
.y22_c00152{bottom:7.228355px;}
.y21_c00152{bottom:184.185000px;}
.y20_c00152{bottom:203.085000px;}
.y1f_c00152{bottom:220.935000px;}
.y1e_c00152{bottom:238.935000px;}
.y1d_c00152{bottom:282.735000px;}
.y1c_c00152{bottom:316.785000px;}
.y1b_c00152{bottom:334.035000px;}
.y1a_c00152{bottom:352.335000px;}
.y19_c00152{bottom:369.435000px;}
.y18_c00152{bottom:386.985000px;}
.y17_c00152{bottom:404.535000px;}
.y16_c00152{bottom:422.085000px;}
.y15_c00152{bottom:439.635000px;}
.y14_c00152{bottom:456.885000px;}
.y13_c00152{bottom:474.435000px;}
.y12_c00152{bottom:491.685000px;}
.y11_c00152{bottom:508.635000px;}
.y10_c00152{bottom:517.635000px;}
.yf_c00152{bottom:530.835000px;}
.ye_c00152{bottom:548.385000px;}
.yd_c00152{bottom:566.235000px;}
.yc_c00152{bottom:583.785000px;}
.yb_c00152{bottom:601.335000px;}
.ya_c00152{bottom:619.185000px;}
.y9_c00152{bottom:636.735000px;}
.y8_c00152{bottom:652.935000px;}
.y7_c00152{bottom:671.835000px;}
.y6_c00152{bottom:689.385000px;}
.y5_c00152{bottom:707.085000px;}
.y4_c00152{bottom:724.935000px;}
.y3_c00152{bottom:741.135000px;}
.y2_c00152{bottom:759.285000px;}
.y1_c00152{bottom:779.535000px;}
.h8_c00152{height:13.200074px;}
.h9_c00152{height:43.804688px;}
.h4_c00152{height:64.571777px;}
.h3_c00152{height:68.370117px;}
.h6_c00152{height:72.168457px;}
.h2_c00152{height:87.361816px;}
.h5_c00152{height:91.176000px;}
.h7_c00152{height:110.151855px;}
.h0_c00152{height:815.925000px;}
.h1_c00152{height:816.000000px;}
.w2_c00152{width:104.875500px;}
.w1_c00152{width:549.000000px;}
.w0_c00152{width:549.150000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:11.250000px;}
.x3_c00152{left:13.200000px;}
.x4_c00152{left:14.400000px;}
.x5_c00152{left:15.900000px;}
.x6_c00152{left:17.250000px;}
.x9_c00152{left:19.500000px;}
.xb_c00152{left:20.550000px;}
.x10_c00152{left:22.950000px;}
.x11_c00152{left:24.600000px;}
.x12_c00152{left:26.100000px;}
.x15_c00152{left:28.800000px;}
.x14_c00152{left:43.200000px;}
.x7_c00152{left:64.350000px;}
.x8_c00152{left:68.400000px;}
.x1_c00152{left:176.850000px;}
.x13_c00152{left:184.650000px;}
.x16_c00152{left:226.389267px;}
.xe_c00152{left:421.500000px;}
.xf_c00152{left:430.350000px;}
.xa_c00152{left:474.900000px;}
.xc_c00152{left:477.000000px;}
.xd_c00152{left:495.000000px;}
@media print{
.v1_c00152{vertical-align:-66.666667pt;}
.v0_c00152{vertical-align:0.000000pt;}
.ls5_c00152{letter-spacing:0.000000pt;}
.ls6_c00152{letter-spacing:2.666667pt;}
.ls2_c00152{letter-spacing:3.418667pt;}
.ls0_c00152{letter-spacing:3.898667pt;}
.ls1_c00152{letter-spacing:4.266667pt;}
.ls4_c00152{letter-spacing:4.906667pt;}
.ls7_c00152{letter-spacing:10.666667pt;}
.ls3_c00152{letter-spacing:13.389333pt;}
.ws8_c00152{word-spacing:-39.130667pt;}
.ws0_c00152{word-spacing:-11.568000pt;}
.ws5_c00152{word-spacing:-11.514667pt;}
.ws3_c00152{word-spacing:-10.282667pt;}
.ws4_c00152{word-spacing:-4.717333pt;}
.ws7_c00152{word-spacing:-0.341333pt;}
.ws1_c00152{word-spacing:-0.256000pt;}
.ws2_c00152{word-spacing:-0.042667pt;}
.ws9_c00152{word-spacing:0.000000pt;}
.ws6_c00152{word-spacing:6.154667pt;}
._2c_c00152{margin-left:-32.912000pt;}
._28_c00152{margin-left:-22.818667pt;}
._1d_c00152{margin-left:-19.320000pt;}
._1c_c00152{margin-left:-17.786667pt;}
._29_c00152{margin-left:-16.186667pt;}
._1a_c00152{margin-left:-15.149333pt;}
._21_c00152{margin-left:-12.658667pt;}
._23_c00152{margin-left:-11.264000pt;}
._1b_c00152{margin-left:-9.568000pt;}
._14_c00152{margin-left:-8.032000pt;}
._12_c00152{margin-left:-6.992000pt;}
._10_c00152{margin-left:-5.328000pt;}
._8_c00152{margin-left:-4.352000pt;}
._1_c00152{margin-left:-2.760000pt;}
._2_c00152{margin-left:-1.840000pt;}
._e_c00152{margin-left:-0.906667pt;}
._0_c00152{width:1.104000pt;}
._6_c00152{width:2.504000pt;}
._4_c00152{width:3.496000pt;}
._5_c00152{width:5.029333pt;}
._17_c00152{width:6.162667pt;}
._7_c00152{width:7.056000pt;}
._9_c00152{width:8.616000pt;}
._27_c00152{width:9.576000pt;}
._a_c00152{width:10.504000pt;}
._13_c00152{width:12.512000pt;}
._b_c00152{width:14.304000pt;}
._20_c00152{width:15.746667pt;}
._25_c00152{width:17.048000pt;}
._15_c00152{width:18.693333pt;}
._11_c00152{width:20.000000pt;}
._c_c00152{width:21.264000pt;}
._18_c00152{width:25.677333pt;}
._16_c00152{width:42.776000pt;}
._24_c00152{width:48.557333pt;}
._1e_c00152{width:54.445333pt;}
._2d_c00152{width:66.077333pt;}
._1f_c00152{width:79.845333pt;}
._22_c00152{width:101.189333pt;}
._d_c00152{width:163.168000pt;}
._2a_c00152{width:204.645333pt;}
._3_c00152{width:415.034667pt;}
._2b_c00152{width:514.168000pt;}
._f_c00152{width:972.624000pt;}
._26_c00152{width:994.437333pt;}
._19_c00152{width:1377.632000pt;}
.fs7_c00152{font-size:40.000000pt;}
.fs3_c00152{font-size:42.666667pt;}
.fs2_c00152{font-size:45.333333pt;}
.fs1_c00152{font-size:48.000000pt;}
.fs6_c00152{font-size:50.666667pt;}
.fs5_c00152{font-size:58.666667pt;}
.fs0_c00152{font-size:61.333333pt;}
.fs4_c00152{font-size:77.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y23_c00152{bottom:2.760000pt;}
.y22_c00152{bottom:6.425204pt;}
.y21_c00152{bottom:163.720000pt;}
.y20_c00152{bottom:180.520000pt;}
.y1f_c00152{bottom:196.386667pt;}
.y1e_c00152{bottom:212.386667pt;}
.y1d_c00152{bottom:251.320000pt;}
.y1c_c00152{bottom:281.586667pt;}
.y1b_c00152{bottom:296.920000pt;}
.y1a_c00152{bottom:313.186667pt;}
.y19_c00152{bottom:328.386667pt;}
.y18_c00152{bottom:343.986667pt;}
.y17_c00152{bottom:359.586667pt;}
.y16_c00152{bottom:375.186667pt;}
.y15_c00152{bottom:390.786667pt;}
.y14_c00152{bottom:406.120000pt;}
.y13_c00152{bottom:421.720000pt;}
.y12_c00152{bottom:437.053333pt;}
.y11_c00152{bottom:452.120000pt;}
.y10_c00152{bottom:460.120000pt;}
.yf_c00152{bottom:471.853333pt;}
.ye_c00152{bottom:487.453333pt;}
.yd_c00152{bottom:503.320000pt;}
.yc_c00152{bottom:518.920000pt;}
.yb_c00152{bottom:534.520000pt;}
.ya_c00152{bottom:550.386667pt;}
.y9_c00152{bottom:565.986667pt;}
.y8_c00152{bottom:580.386667pt;}
.y7_c00152{bottom:597.186667pt;}
.y6_c00152{bottom:612.786667pt;}
.y5_c00152{bottom:628.520000pt;}
.y4_c00152{bottom:644.386667pt;}
.y3_c00152{bottom:658.786667pt;}
.y2_c00152{bottom:674.920000pt;}
.y1_c00152{bottom:692.920000pt;}
.h8_c00152{height:11.733399pt;}
.h9_c00152{height:38.937500pt;}
.h4_c00152{height:57.397135pt;}
.h3_c00152{height:60.773438pt;}
.h6_c00152{height:64.149740pt;}
.h2_c00152{height:77.654948pt;}
.h5_c00152{height:81.045333pt;}
.h7_c00152{height:97.912760pt;}
.h0_c00152{height:725.266667pt;}
.h1_c00152{height:725.333333pt;}
.w2_c00152{width:93.222667pt;}
.w1_c00152{width:488.000000pt;}
.w0_c00152{width:488.133333pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:10.000000pt;}
.x3_c00152{left:11.733333pt;}
.x4_c00152{left:12.800000pt;}
.x5_c00152{left:14.133333pt;}
.x6_c00152{left:15.333333pt;}
.x9_c00152{left:17.333333pt;}
.xb_c00152{left:18.266667pt;}
.x10_c00152{left:20.400000pt;}
.x11_c00152{left:21.866667pt;}
.x12_c00152{left:23.200000pt;}
.x15_c00152{left:25.600000pt;}
.x14_c00152{left:38.400000pt;}
.x7_c00152{left:57.200000pt;}
.x8_c00152{left:60.800000pt;}
.x1_c00152{left:157.200000pt;}
.x13_c00152{left:164.133333pt;}
.x16_c00152{left:201.234904pt;}
.xe_c00152{left:374.666667pt;}
.xf_c00152{left:382.533333pt;}
.xa_c00152{left:422.133333pt;}
.xc_c00152{left:424.000000pt;}
.xd_c00152{left:440.000000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_370ff84caac4d079ddf8f2b4.woff2')format("woff");}.ff1_c00154{font-family:ff1_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:ff2_c00154;src:url('chunks/assets/font_bc49eeec3c870e39c7c39680.woff2')format("woff");}.ff2_c00154{font-family:ff2_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:ff3_c00154;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00154{font-family:ff3_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:ff4_c00154;src:url('chunks/assets/font_ba3f3111c657a7b7a4addfa9.woff2')format("woff");}.ff4_c00154{font-family:ff4_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:ff5_c00154;src:url('chunks/assets/font_0df7c9f0777c71a2620f7122.woff2')format("woff");}.ff5_c00154{font-family:ff5_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:ff6_c00154;src:url('chunks/assets/font_92fb846c31b13e5c87a4fa3a.woff2')format("woff");}.ff6_c00154{font-family:ff6_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:ff7_c00154;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00154{font-family:ff7_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;}
.ls1_c00154{letter-spacing:0.000000px;}
.ls2_c00154{letter-spacing:3.000000px;}
.ls3_c00154{letter-spacing:6.000000px;}
.ls0_c00154{letter-spacing:7.371000px;}
.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:-66.924000px;}
.ws0_c00154{word-spacing:-24.000000px;}
.ws1_c00154{word-spacing:-16.629000px;}
.ws3_c00154{word-spacing:0.000000px;}
._20_c00154{margin-left:-29.250000px;}
._21_c00154{margin-left:-19.188000px;}
._13_c00154{margin-left:-16.464000px;}
._c_c00154{margin-left:-14.562000px;}
._2_c00154{margin-left:-12.627000px;}
._14_c00154{margin-left:-10.590000px;}
._9_c00154{margin-left:-8.730000px;}
._e_c00154{margin-left:-7.494000px;}
._11_c00154{margin-left:-5.541000px;}
._12_c00154{margin-left:-4.347000px;}
._10_c00154{margin-left:-3.114000px;}
._3_c00154{margin-left:-1.440000px;}
._b_c00154{width:1.026000px;}
._1_c00154{width:2.415000px;}
._6_c00154{width:3.417000px;}
._0_c00154{width:4.554000px;}
._7_c00154{width:6.555000px;}
._1c_c00154{width:7.593000px;}
._5_c00154{width:8.658000px;}
._d_c00154{width:10.488000px;}
._8_c00154{width:11.868000px;}
._a_c00154{width:12.939000px;}
._19_c00154{width:14.907000px;}
._18_c00154{width:15.996000px;}
._15_c00154{width:18.375000px;}
._f_c00154{width:19.974000px;}
._16_c00154{width:21.183000px;}
._17_c00154{width:22.677000px;}
._1d_c00154{width:27.117000px;}
._1e_c00154{width:32.322000px;}
._1f_c00154{width:33.474000px;}
._1a_c00154{width:67.371000px;}
._1b_c00154{width:156.453000px;}
._4_c00154{width:499.353000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(128,128,128);}
.fc0_c00154{color:rgb(0,0,0);}
.fs4_c00154{font-size:48.000000px;}
.fs0_c00154{font-size:69.000000px;}
.fs1_c00154{font-size:72.000000px;}
.fs2_c00154{font-size:81.000000px;}
.fs3_c00154{font-size:117.000000px;}
.y0_c00154{bottom:0.000000px;}
.y19_c00154{bottom:3.105000px;}
.y18_c00154{bottom:7.228371px;}
.y17_c00154{bottom:73.365000px;}
.y16_c00154{bottom:246.015000px;}
.y15_c00154{bottom:290.265000px;}
.y14_c00154{bottom:314.265000px;}
.y13_c00154{bottom:338.565000px;}
.y12_c00154{bottom:363.465000px;}
.y11_c00154{bottom:387.765000px;}
.y10_c00154{bottom:413.115000px;}
.yf_c00154{bottom:437.415000px;}
.ye_c00154{bottom:462.165000px;}
.yd_c00154{bottom:487.065000px;}
.yc_c00154{bottom:511.065000px;}
.yb_c00154{bottom:535.365000px;}
.ya_c00154{bottom:560.265000px;}
.y9_c00154{bottom:584.865000px;}
.y8_c00154{bottom:609.615000px;}
.y7_c00154{bottom:634.515000px;}
.y6_c00154{bottom:659.265000px;}
.y5_c00154{bottom:684.165000px;}
.y4_c00154{bottom:708.765000px;}
.y3_c00154{bottom:733.815000px;}
.y2_c00154{bottom:758.715000px;}
.y1_c00154{bottom:782.715000px;}
.ha_c00154{height:13.200074px;}
.hb_c00154{height:43.804688px;}
.h4_c00154{height:67.686035px;}
.h3_c00154{height:67.719727px;}
.h7_c00154{height:69.539062px;}
.h2_c00154{height:72.562500px;}
.h6_c00154{height:80.758301px;}
.h5_c00154{height:87.361816px;}
.h8_c00154{height:102.555176px;}
.h9_c00154{height:148.135254px;}
.h0_c00154{height:828.375000px;}
.h1_c00154{height:828.750000px;}
.w2_c00154{width:104.875500px;}
.w0_c00154{width:557.850000px;}
.w1_c00154{width:558.000000px;}
.x0_c00154{left:0.000000px;}
.x3_c00154{left:19.950000px;}
.x4_c00154{left:21.900000px;}
.x5_c00154{left:23.250000px;}
.x7_c00154{left:25.050000px;}
.x6_c00154{left:26.700000px;}
.x2_c00154{left:43.950000px;}
.x8_c00154{left:52.050000px;}
.xb_c00154{left:89.550000px;}
.x9_c00154{left:136.650000px;}
.x1_c00154{left:183.150000px;}
.xa_c00154{left:211.650000px;}
.xd_c00154{left:230.739258px;}
.xc_c00154{left:435.000000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls1_c00154{letter-spacing:0.000000pt;}
.ls2_c00154{letter-spacing:2.666667pt;}
.ls3_c00154{letter-spacing:5.333333pt;}
.ls0_c00154{letter-spacing:6.552000pt;}
.ws2_c00154{word-spacing:-59.488000pt;}
.ws0_c00154{word-spacing:-21.333333pt;}
.ws1_c00154{word-spacing:-14.781333pt;}
.ws3_c00154{word-spacing:0.000000pt;}
._20_c00154{margin-left:-26.000000pt;}
._21_c00154{margin-left:-17.056000pt;}
._13_c00154{margin-left:-14.634667pt;}
._c_c00154{margin-left:-12.944000pt;}
._2_c00154{margin-left:-11.224000pt;}
._14_c00154{margin-left:-9.413333pt;}
._9_c00154{margin-left:-7.760000pt;}
._e_c00154{margin-left:-6.661333pt;}
._11_c00154{margin-left:-4.925333pt;}
._12_c00154{margin-left:-3.864000pt;}
._10_c00154{margin-left:-2.768000pt;}
._3_c00154{margin-left:-1.280000pt;}
._b_c00154{width:0.912000pt;}
._1_c00154{width:2.146667pt;}
._6_c00154{width:3.037333pt;}
._0_c00154{width:4.048000pt;}
._7_c00154{width:5.826667pt;}
._1c_c00154{width:6.749333pt;}
._5_c00154{width:7.696000pt;}
._d_c00154{width:9.322667pt;}
._8_c00154{width:10.549333pt;}
._a_c00154{width:11.501333pt;}
._19_c00154{width:13.250667pt;}
._18_c00154{width:14.218667pt;}
._15_c00154{width:16.333333pt;}
._f_c00154{width:17.754667pt;}
._16_c00154{width:18.829333pt;}
._17_c00154{width:20.157333pt;}
._1d_c00154{width:24.104000pt;}
._1e_c00154{width:28.730667pt;}
._1f_c00154{width:29.754667pt;}
._1a_c00154{width:59.885333pt;}
._1b_c00154{width:139.069333pt;}
._4_c00154{width:443.869333pt;}
.fs4_c00154{font-size:42.666667pt;}
.fs0_c00154{font-size:61.333333pt;}
.fs1_c00154{font-size:64.000000pt;}
.fs2_c00154{font-size:72.000000pt;}
.fs3_c00154{font-size:104.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y19_c00154{bottom:2.760000pt;}
.y18_c00154{bottom:6.425219pt;}
.y17_c00154{bottom:65.213333pt;}
.y16_c00154{bottom:218.680000pt;}
.y15_c00154{bottom:258.013333pt;}
.y14_c00154{bottom:279.346667pt;}
.y13_c00154{bottom:300.946667pt;}
.y12_c00154{bottom:323.080000pt;}
.y11_c00154{bottom:344.680000pt;}
.y10_c00154{bottom:367.213333pt;}
.yf_c00154{bottom:388.813333pt;}
.ye_c00154{bottom:410.813333pt;}
.yd_c00154{bottom:432.946667pt;}
.yc_c00154{bottom:454.280000pt;}
.yb_c00154{bottom:475.880000pt;}
.ya_c00154{bottom:498.013333pt;}
.y9_c00154{bottom:519.880000pt;}
.y8_c00154{bottom:541.880000pt;}
.y7_c00154{bottom:564.013333pt;}
.y6_c00154{bottom:586.013333pt;}
.y5_c00154{bottom:608.146667pt;}
.y4_c00154{bottom:630.013333pt;}
.y3_c00154{bottom:652.280000pt;}
.y2_c00154{bottom:674.413333pt;}
.y1_c00154{bottom:695.746667pt;}
.ha_c00154{height:11.733399pt;}
.hb_c00154{height:38.937500pt;}
.h4_c00154{height:60.165365pt;}
.h3_c00154{height:60.195312pt;}
.h7_c00154{height:61.812500pt;}
.h2_c00154{height:64.500000pt;}
.h6_c00154{height:71.785156pt;}
.h5_c00154{height:77.654948pt;}
.h8_c00154{height:91.160156pt;}
.h9_c00154{height:131.675781pt;}
.h0_c00154{height:736.333333pt;}
.h1_c00154{height:736.666667pt;}
.w2_c00154{width:93.222667pt;}
.w0_c00154{width:495.866667pt;}
.w1_c00154{width:496.000000pt;}
.x0_c00154{left:0.000000pt;}
.x3_c00154{left:17.733333pt;}
.x4_c00154{left:19.466667pt;}
.x5_c00154{left:20.666667pt;}
.x7_c00154{left:22.266667pt;}
.x6_c00154{left:23.733333pt;}
.x2_c00154{left:39.066667pt;}
.x8_c00154{left:46.266667pt;}
.xb_c00154{left:79.600000pt;}
.x9_c00154{left:121.466667pt;}
.x1_c00154{left:162.800000pt;}
.xa_c00154{left:188.133333pt;}
.xd_c00154{left:205.101563pt;}
.xc_c00154{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_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_84710428e971665325a679fc.woff2')format("woff");}.ff1_c00155{font-family:ff1_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:ff2_c00155;src:url('chunks/assets/font_fe947d4fa4f70905b23a2ba1.woff2')format("woff");}.ff2_c00155{font-family:ff2_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:ff3_c00155;src:url('chunks/assets/font_13552084b33f6cbc8367b91a.woff2')format("woff");}.ff3_c00155{font-family:ff3_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:ff4_c00155;src:url('chunks/assets/font_79ba8a74500892062df7bc7c.woff2')format("woff");}.ff4_c00155{font-family:ff4_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:ff5_c00155;src:url('chunks/assets/font_d3383723356a0ca6efac881b.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_88ea78382f7604da494cc547.woff2')format("woff");}.ff6_c00155{font-family:ff6_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:ff7_c00155;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.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_2406b01e78d282c0fc1b33c1.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;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_c00155;src:url('chunks/assets/font_69416c63529ee5c50221feae.woff2')format("woff");}.ff9_c00155{font-family:ff9_c00155;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_c00155;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffa_c00155{font-family:ffa_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.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_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;}
.ls6_c00155{letter-spacing:0.000000px;}
.ls7_c00155{letter-spacing:3.000000px;}
.ls1_c00155{letter-spacing:3.150000px;}
.ls5_c00155{letter-spacing:9.000000px;}
.ls3_c00155{letter-spacing:9.384000px;}
.ls2_c00155{letter-spacing:9.750000px;}
.ls0_c00155{letter-spacing:12.000000px;}
.ls4_c00155{letter-spacing:120.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:-219.060000px;}
.ws1_c00155{word-spacing:-89.523000px;}
.ws2_c00155{word-spacing:-18.798000px;}
.ws3_c00155{word-spacing:-17.250000px;}
.ws4_c00155{word-spacing:-16.629000px;}
.ws5_c00155{word-spacing:0.000000px;}
._3_c00155{margin-left:-52.260000px;}
._2_c00155{margin-left:-50.700000px;}
._0_c00155{margin-left:-47.970000px;}
._1_c00155{margin-left:-35.490000px;}
._14_c00155{margin-left:-22.386000px;}
._1f_c00155{margin-left:-20.286000px;}
._16_c00155{margin-left:-16.110000px;}
._15_c00155{margin-left:-14.820000px;}
._13_c00155{margin-left:-13.416000px;}
._12_c00155{margin-left:-11.424000px;}
._1c_c00155{margin-left:-8.847000px;}
._1a_c00155{margin-left:-7.272000px;}
._4_c00155{margin-left:-5.382000px;}
._1b_c00155{margin-left:-4.350000px;}
._5_c00155{margin-left:-3.105000px;}
._d_c00155{margin-left:-1.035000px;}
._f_c00155{width:1.242000px;}
._10_c00155{width:2.346000px;}
._11_c00155{width:3.882000px;}
._e_c00155{width:5.640000px;}
._b_c00155{width:7.452000px;}
._9_c00155{width:8.505000px;}
._7_c00155{width:10.368000px;}
._6_c00155{width:12.231000px;}
._a_c00155{width:13.689000px;}
._19_c00155{width:14.973000px;}
._8_c00155{width:16.200000px;}
._17_c00155{width:21.210000px;}
._18_c00155{width:23.220000px;}
._1d_c00155{width:28.374000px;}
._c_c00155{width:30.636000px;}
._1e_c00155{width:479.652000px;}
._20_c00155{width:903.762000px;}
.fc2_c00155{color:transparent;}
.fc1_c00155{color:rgb(128,128,128);}
.fc0_c00155{color:rgb(0,0,0);}
.fs5_c00155{font-size:48.000000px;}
.fs6_c00155{font-size:51.000000px;}
.fs8_c00155{font-size:60.000000px;}
.fs3_c00155{font-size:69.000000px;}
.fs4_c00155{font-size:78.000000px;}
.fs2_c00155{font-size:81.000000px;}
.fs7_c00155{font-size:87.000000px;}
.fs1_c00155{font-size:207.000000px;}
.fs0_c00155{font-size:390.000000px;}
.y0_c00155{bottom:0.000000px;}
.y14_c00155{bottom:3.105000px;}
.y13_c00155{bottom:7.228369px;}
.y12_c00155{bottom:88.320000px;}
.y11_c00155{bottom:118.470000px;}
.y10_c00155{bottom:159.570000px;}
.yf_c00155{bottom:199.170000px;}
.ye_c00155{bottom:222.720000px;}
.yd_c00155{bottom:248.070000px;}
.yc_c00155{bottom:273.270000px;}
.yb_c00155{bottom:298.620000px;}
.ya_c00155{bottom:322.020000px;}
.y9_c00155{bottom:345.870000px;}
.y8_c00155{bottom:370.620000px;}
.y7_c00155{bottom:394.920000px;}
.y6_c00155{bottom:420.570000px;}
.y5_c00155{bottom:445.470000px;}
.y4_c00155{bottom:521.820000px;}
.y3_c00155{bottom:557.520000px;}
.y2_c00155{bottom:595.320000px;}
.y1_c00155{bottom:666.570000px;}
.hc_c00155{height:13.200073px;}
.hd_c00155{height:43.804688px;}
.ha_c00155{height:64.571777px;}
.h7_c00155{height:67.686035px;}
.h5_c00155{height:67.719727px;}
.h9_c00155{height:80.758301px;}
.h8_c00155{height:87.361816px;}
.hb_c00155{height:91.176000px;}
.h6_c00155{height:98.756836px;}
.h4_c00155{height:102.555176px;}
.h3_c00155{height:216.936000px;}
.h2_c00155{height:493.784180px;}
.h0_c00155{height:842.100000px;}
.h1_c00155{height:842.250000px;}
.w2_c00155{width:104.875500px;}
.w0_c00155{width:558.600000px;}
.w1_c00155{width:558.750000px;}
.x0_c00155{left:0.000000px;}
.xa_c00155{left:94.800000px;}
.x9_c00155{left:99.600000px;}
.x3_c00155{left:100.950000px;}
.x1_c00155{left:102.150000px;}
.xe_c00155{left:103.650000px;}
.x2_c00155{left:208.350000px;}
.x5_c00155{left:231.300000px;}
.x4_c00155{left:237.900000px;}
.xb_c00155{left:241.050000px;}
.x8_c00155{left:243.600000px;}
.x6_c00155{left:244.650000px;}
.x7_c00155{left:245.700000px;}
.xc_c00155{left:371.250000px;}
.xd_c00155{left:379.350000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls6_c00155{letter-spacing:0.000000pt;}
.ls7_c00155{letter-spacing:2.666667pt;}
.ls1_c00155{letter-spacing:2.800000pt;}
.ls5_c00155{letter-spacing:8.000000pt;}
.ls3_c00155{letter-spacing:8.341333pt;}
.ls2_c00155{letter-spacing:8.666667pt;}
.ls0_c00155{letter-spacing:10.666667pt;}
.ls4_c00155{letter-spacing:106.666667pt;}
.ws0_c00155{word-spacing:-194.720000pt;}
.ws1_c00155{word-spacing:-79.576000pt;}
.ws2_c00155{word-spacing:-16.709333pt;}
.ws3_c00155{word-spacing:-15.333333pt;}
.ws4_c00155{word-spacing:-14.781333pt;}
.ws5_c00155{word-spacing:0.000000pt;}
._3_c00155{margin-left:-46.453333pt;}
._2_c00155{margin-left:-45.066667pt;}
._0_c00155{margin-left:-42.640000pt;}
._1_c00155{margin-left:-31.546667pt;}
._14_c00155{margin-left:-19.898667pt;}
._1f_c00155{margin-left:-18.032000pt;}
._16_c00155{margin-left:-14.320000pt;}
._15_c00155{margin-left:-13.173333pt;}
._13_c00155{margin-left:-11.925333pt;}
._12_c00155{margin-left:-10.154667pt;}
._1c_c00155{margin-left:-7.864000pt;}
._1a_c00155{margin-left:-6.464000pt;}
._4_c00155{margin-left:-4.784000pt;}
._1b_c00155{margin-left:-3.866667pt;}
._5_c00155{margin-left:-2.760000pt;}
._d_c00155{margin-left:-0.920000pt;}
._f_c00155{width:1.104000pt;}
._10_c00155{width:2.085333pt;}
._11_c00155{width:3.450667pt;}
._e_c00155{width:5.013333pt;}
._b_c00155{width:6.624000pt;}
._9_c00155{width:7.560000pt;}
._7_c00155{width:9.216000pt;}
._6_c00155{width:10.872000pt;}
._a_c00155{width:12.168000pt;}
._19_c00155{width:13.309333pt;}
._8_c00155{width:14.400000pt;}
._17_c00155{width:18.853333pt;}
._18_c00155{width:20.640000pt;}
._1d_c00155{width:25.221333pt;}
._c_c00155{width:27.232000pt;}
._1e_c00155{width:426.357333pt;}
._20_c00155{width:803.344000pt;}
.fs5_c00155{font-size:42.666667pt;}
.fs6_c00155{font-size:45.333333pt;}
.fs8_c00155{font-size:53.333333pt;}
.fs3_c00155{font-size:61.333333pt;}
.fs4_c00155{font-size:69.333333pt;}
.fs2_c00155{font-size:72.000000pt;}
.fs7_c00155{font-size:77.333333pt;}
.fs1_c00155{font-size:184.000000pt;}
.fs0_c00155{font-size:346.666667pt;}
.y0_c00155{bottom:0.000000pt;}
.y14_c00155{bottom:2.760000pt;}
.y13_c00155{bottom:6.425217pt;}
.y12_c00155{bottom:78.506667pt;}
.y11_c00155{bottom:105.306667pt;}
.y10_c00155{bottom:141.840000pt;}
.yf_c00155{bottom:177.040000pt;}
.ye_c00155{bottom:197.973333pt;}
.yd_c00155{bottom:220.506667pt;}
.yc_c00155{bottom:242.906667pt;}
.yb_c00155{bottom:265.440000pt;}
.ya_c00155{bottom:286.240000pt;}
.y9_c00155{bottom:307.440000pt;}
.y8_c00155{bottom:329.440000pt;}
.y7_c00155{bottom:351.040000pt;}
.y6_c00155{bottom:373.840000pt;}
.y5_c00155{bottom:395.973333pt;}
.y4_c00155{bottom:463.840000pt;}
.y3_c00155{bottom:495.573333pt;}
.y2_c00155{bottom:529.173333pt;}
.y1_c00155{bottom:592.506667pt;}
.hc_c00155{height:11.733399pt;}
.hd_c00155{height:38.937500pt;}
.ha_c00155{height:57.397135pt;}
.h7_c00155{height:60.165365pt;}
.h5_c00155{height:60.195312pt;}
.h9_c00155{height:71.785156pt;}
.h8_c00155{height:77.654948pt;}
.hb_c00155{height:81.045333pt;}
.h6_c00155{height:87.783854pt;}
.h4_c00155{height:91.160156pt;}
.h3_c00155{height:192.832000pt;}
.h2_c00155{height:438.919271pt;}
.h0_c00155{height:748.533333pt;}
.h1_c00155{height:748.666667pt;}
.w2_c00155{width:93.222667pt;}
.w0_c00155{width:496.533333pt;}
.w1_c00155{width:496.666667pt;}
.x0_c00155{left:0.000000pt;}
.xa_c00155{left:84.266667pt;}
.x9_c00155{left:88.533333pt;}
.x3_c00155{left:89.733333pt;}
.x1_c00155{left:90.800000pt;}
.xe_c00155{left:92.133333pt;}
.x2_c00155{left:185.200000pt;}
.x5_c00155{left:205.600000pt;}
.x4_c00155{left:211.466667pt;}
.xb_c00155{left:214.266667pt;}
.x8_c00155{left:216.533333pt;}
.x6_c00155{left:217.466667pt;}
.x7_c00155{left:218.400000pt;}
.xc_c00155{left:330.000000pt;}
.xd_c00155{left:337.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_2d170bc8cde811e4818a68f1.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_b685d3be0e629c42e5453b3e.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_ccf31e38ac31396115f7662d.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_d42151b70bed855aad31a72f.woff2')format("woff");}.ff4_c00156{font-family:ff4_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:ff5_c00156;src:url('chunks/assets/font_1be44732ccb455531c7cdaf1.woff2')format("woff");}.ff5_c00156{font-family:ff5_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:ff6_c00156;src:url('chunks/assets/font_dbb2bdf2a3700696e90c3c2c.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_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls5_c00156{letter-spacing:-9.000000px;}
.ls4_c00156{letter-spacing:0.000000px;}
.ls1_c00156{letter-spacing:3.000000px;}
.ls2_c00156{letter-spacing:13.584000px;}
.ls3_c00156{letter-spacing:17.184000px;}
.ls6_c00156{letter-spacing:24.000000px;}
.ls0_c00156{letter-spacing:297.150000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-17.250000px;}
.ws1_c00156{word-spacing:-2.691000px;}
.ws3_c00156{word-spacing:0.000000px;}
.ws2_c00156{word-spacing:37.341000px;}
._24_c00156{margin-left:-31.533000px;}
._23_c00156{margin-left:-24.909000px;}
._22_c00156{margin-left:-23.808000px;}
._15_c00156{margin-left:-16.422000px;}
._7_c00156{margin-left:-15.042000px;}
._1b_c00156{margin-left:-12.765000px;}
._8_c00156{margin-left:-10.626000px;}
._d_c00156{margin-left:-8.556000px;}
._17_c00156{margin-left:-7.443000px;}
._16_c00156{margin-left:-6.336000px;}
._5_c00156{margin-left:-5.244000px;}
._2_c00156{margin-left:-3.450000px;}
._f_c00156{margin-left:-2.139000px;}
._19_c00156{margin-left:-1.035000px;}
._3_c00156{width:1.794000px;}
._1_c00156{width:3.036000px;}
._b_c00156{width:4.347000px;}
._0_c00156{width:5.451000px;}
._9_c00156{width:6.624000px;}
._a_c00156{width:7.797000px;}
._10_c00156{width:10.281000px;}
._28_c00156{width:11.553000px;}
._11_c00156{width:12.765000px;}
._e_c00156{width:14.544000px;}
._1a_c00156{width:16.203000px;}
._c_c00156{width:18.252000px;}
._12_c00156{width:19.836000px;}
._1f_c00156{width:21.537000px;}
._1e_c00156{width:26.835000px;}
._20_c00156{width:27.876000px;}
._25_c00156{width:30.033000px;}
._14_c00156{width:32.607000px;}
._21_c00156{width:34.845000px;}
._1c_c00156{width:36.978000px;}
._27_c00156{width:47.955000px;}
._29_c00156{width:55.395000px;}
._13_c00156{width:85.398000px;}
._4_c00156{width:89.286000px;}
._1d_c00156{width:107.856000px;}
._26_c00156{width:134.946000px;}
._18_c00156{width:147.213000px;}
._6_c00156{width:368.874000px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs3_c00156{font-size:48.000000px;}
.fs2_c00156{font-size:57.000000px;}
.fs1_c00156{font-size:60.000000px;}
.fs0_c00156{font-size:69.000000px;}
.y0_c00156{bottom:0.000000px;}
.y1e_c00156{bottom:3.105000px;}
.y1d_c00156{bottom:7.228357px;}
.y1c_c00156{bottom:107.730000px;}
.y1b_c00156{bottom:131.280000px;}
.y1a_c00156{bottom:156.030000px;}
.y19_c00156{bottom:181.230000px;}
.y18_c00156{bottom:206.280000px;}
.y17_c00156{bottom:231.180000px;}
.y16_c00156{bottom:256.830000px;}
.y15_c00156{bottom:280.530000px;}
.y14_c00156{bottom:305.730000px;}
.y13_c00156{bottom:330.780000px;}
.y12_c00156{bottom:355.080000px;}
.y11_c00156{bottom:379.980000px;}
.y10_c00156{bottom:404.730000px;}
.yf_c00156{bottom:428.730000px;}
.ye_c00156{bottom:453.330000px;}
.yd_c00156{bottom:478.680000px;}
.yc_c00156{bottom:502.530000px;}
.yb_c00156{bottom:526.830000px;}
.ya_c00156{bottom:551.580000px;}
.y9_c00156{bottom:576.780000px;}
.y8_c00156{bottom:601.530000px;}
.y7_c00156{bottom:626.130000px;}
.y6_c00156{bottom:651.030000px;}
.y5_c00156{bottom:675.780000px;}
.y4_c00156{bottom:701.280000px;}
.y3_c00156{bottom:725.580000px;}
.y2_c00156{bottom:750.630000px;}
.y1_c00156{bottom:774.630000px;}
.h6_c00156{height:13.200074px;}
.h7_c00156{height:43.804688px;}
.h5_c00156{height:67.686035px;}
.h4_c00156{height:67.719727px;}
.h2_c00156{height:69.539062px;}
.h3_c00156{height:72.168457px;}
.h1_c00156{height:816.750000px;}
.h0_c00156{height:817.050000px;}
.w2_c00156{width:104.875500px;}
.w0_c00156{width:550.275000px;}
.w1_c00156{width:550.500000px;}
.x0_c00156{left:0.000000px;}
.x7_c00156{left:13.200000px;}
.x8_c00156{left:16.650000px;}
.x6_c00156{left:17.850000px;}
.x5_c00156{left:20.550000px;}
.x3_c00156{left:21.600000px;}
.x2_c00156{left:23.550000px;}
.x9_c00156{left:39.900000px;}
.x4_c00156{left:47.550000px;}
.x1_c00156{left:176.400000px;}
.xa_c00156{left:226.951767px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls5_c00156{letter-spacing:-8.000000pt;}
.ls4_c00156{letter-spacing:0.000000pt;}
.ls1_c00156{letter-spacing:2.666667pt;}
.ls2_c00156{letter-spacing:12.074667pt;}
.ls3_c00156{letter-spacing:15.274667pt;}
.ls6_c00156{letter-spacing:21.333333pt;}
.ls0_c00156{letter-spacing:264.133333pt;}
.ws0_c00156{word-spacing:-15.333333pt;}
.ws1_c00156{word-spacing:-2.392000pt;}
.ws3_c00156{word-spacing:0.000000pt;}
.ws2_c00156{word-spacing:33.192000pt;}
._24_c00156{margin-left:-28.029333pt;}
._23_c00156{margin-left:-22.141333pt;}
._22_c00156{margin-left:-21.162667pt;}
._15_c00156{margin-left:-14.597333pt;}
._7_c00156{margin-left:-13.370667pt;}
._1b_c00156{margin-left:-11.346667pt;}
._8_c00156{margin-left:-9.445333pt;}
._d_c00156{margin-left:-7.605333pt;}
._17_c00156{margin-left:-6.616000pt;}
._16_c00156{margin-left:-5.632000pt;}
._5_c00156{margin-left:-4.661333pt;}
._2_c00156{margin-left:-3.066667pt;}
._f_c00156{margin-left:-1.901333pt;}
._19_c00156{margin-left:-0.920000pt;}
._3_c00156{width:1.594667pt;}
._1_c00156{width:2.698667pt;}
._b_c00156{width:3.864000pt;}
._0_c00156{width:4.845333pt;}
._9_c00156{width:5.888000pt;}
._a_c00156{width:6.930667pt;}
._10_c00156{width:9.138667pt;}
._28_c00156{width:10.269333pt;}
._11_c00156{width:11.346667pt;}
._e_c00156{width:12.928000pt;}
._1a_c00156{width:14.402667pt;}
._c_c00156{width:16.224000pt;}
._12_c00156{width:17.632000pt;}
._1f_c00156{width:19.144000pt;}
._1e_c00156{width:23.853333pt;}
._20_c00156{width:24.778667pt;}
._25_c00156{width:26.696000pt;}
._14_c00156{width:28.984000pt;}
._21_c00156{width:30.973333pt;}
._1c_c00156{width:32.869333pt;}
._27_c00156{width:42.626667pt;}
._29_c00156{width:49.240000pt;}
._13_c00156{width:75.909333pt;}
._4_c00156{width:79.365333pt;}
._1d_c00156{width:95.872000pt;}
._26_c00156{width:119.952000pt;}
._18_c00156{width:130.856000pt;}
._6_c00156{width:327.888000pt;}
.fs3_c00156{font-size:42.666667pt;}
.fs2_c00156{font-size:50.666667pt;}
.fs1_c00156{font-size:53.333333pt;}
.fs0_c00156{font-size:61.333333pt;}
.y0_c00156{bottom:0.000000pt;}
.y1e_c00156{bottom:2.760000pt;}
.y1d_c00156{bottom:6.425206pt;}
.y1c_c00156{bottom:95.760000pt;}
.y1b_c00156{bottom:116.693333pt;}
.y1a_c00156{bottom:138.693333pt;}
.y19_c00156{bottom:161.093333pt;}
.y18_c00156{bottom:183.360000pt;}
.y17_c00156{bottom:205.493333pt;}
.y16_c00156{bottom:228.293333pt;}
.y15_c00156{bottom:249.360000pt;}
.y14_c00156{bottom:271.760000pt;}
.y13_c00156{bottom:294.026667pt;}
.y12_c00156{bottom:315.626667pt;}
.y11_c00156{bottom:337.760000pt;}
.y10_c00156{bottom:359.760000pt;}
.yf_c00156{bottom:381.093333pt;}
.ye_c00156{bottom:402.960000pt;}
.yd_c00156{bottom:425.493333pt;}
.yc_c00156{bottom:446.693333pt;}
.yb_c00156{bottom:468.293333pt;}
.ya_c00156{bottom:490.293333pt;}
.y9_c00156{bottom:512.693333pt;}
.y8_c00156{bottom:534.693333pt;}
.y7_c00156{bottom:556.560000pt;}
.y6_c00156{bottom:578.693333pt;}
.y5_c00156{bottom:600.693333pt;}
.y4_c00156{bottom:623.360000pt;}
.y3_c00156{bottom:644.960000pt;}
.y2_c00156{bottom:667.226667pt;}
.y1_c00156{bottom:688.560000pt;}
.h6_c00156{height:11.733399pt;}
.h7_c00156{height:38.937500pt;}
.h5_c00156{height:60.165365pt;}
.h4_c00156{height:60.195312pt;}
.h2_c00156{height:61.812500pt;}
.h3_c00156{height:64.149740pt;}
.h1_c00156{height:726.000000pt;}
.h0_c00156{height:726.266667pt;}
.w2_c00156{width:93.222667pt;}
.w0_c00156{width:489.133333pt;}
.w1_c00156{width:489.333333pt;}
.x0_c00156{left:0.000000pt;}
.x7_c00156{left:11.733333pt;}
.x8_c00156{left:14.800000pt;}
.x6_c00156{left:15.866667pt;}
.x5_c00156{left:18.266667pt;}
.x3_c00156{left:19.200000pt;}
.x2_c00156{left:20.933333pt;}
.x9_c00156{left:35.466667pt;}
.x4_c00156{left:42.266667pt;}
.x1_c00156{left:156.800000pt;}
.xa_c00156{left:201.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_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_b5c9342cb3f96922699dc84c.woff2')format("woff");}.ff1_c00157{font-family:ff1_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:ff2_c00157;src:url('chunks/assets/font_b453e3010c7ab9f9cf1f635e.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00157{font-family:ff3_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:ff4_c00157;src:url('chunks/assets/font_19912fa83add89192dff6185.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;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_c00157;src:url('chunks/assets/font_bd3b3a8d9d15aa68acd8c0ff.woff2')format("woff");}.ff5_c00157{font-family:ff5_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:ff6_c00157;src:url('chunks/assets/font_5c8857df75f32190efa53a60.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00157;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00157{font-family:ff7_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;}
.lsa_c00157{letter-spacing:0.000000px;}
.ls2_c00157{letter-spacing:3.000000px;}
.ls7_c00157{letter-spacing:4.350000px;}
.lsb_c00157{letter-spacing:6.000000px;}
.ls4_c00157{letter-spacing:9.423000px;}
.ls3_c00157{letter-spacing:9.900000px;}
.ls6_c00157{letter-spacing:14.100000px;}
.ls1_c00157{letter-spacing:18.750000px;}
.ls8_c00157{letter-spacing:20.550000px;}
.ls9_c00157{letter-spacing:22.350000px;}
.ls5_c00157{letter-spacing:23.784000px;}
.ls0_c00157{letter-spacing:33.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00157{word-spacing:-24.000000px;}
.ws0_c00157{word-spacing:-17.250000px;}
.ws2_c00157{word-spacing:-16.629000px;}
.ws3_c00157{word-spacing:0.000000px;}
._16_c00157{margin-left:-17.940000px;}
._e_c00157{margin-left:-16.698000px;}
._d_c00157{margin-left:-13.869000px;}
._1_c00157{margin-left:-11.178000px;}
._21_c00157{margin-left:-9.921000px;}
._17_c00157{margin-left:-8.901000px;}
._10_c00157{margin-left:-6.555000px;}
._c_c00157{margin-left:-4.761000px;}
._b_c00157{margin-left:-3.381000px;}
._8_c00157{margin-left:-1.794000px;}
._6_c00157{width:1.380000px;}
._4_c00157{width:2.898000px;}
._3_c00157{width:4.140000px;}
._5_c00157{width:5.244000px;}
._12_c00157{width:6.486000px;}
._1f_c00157{width:7.581000px;}
._13_c00157{width:8.625000px;}
._18_c00157{width:9.744000px;}
._a_c00157{width:11.454000px;}
._9_c00157{width:12.903000px;}
._14_c00157{width:13.992000px;}
._1a_c00157{width:16.215000px;}
._7_c00157{width:18.354000px;}
._20_c00157{width:19.458000px;}
._0_c00157{width:21.045000px;}
._1d_c00157{width:22.563000px;}
._15_c00157{width:29.202000px;}
._19_c00157{width:41.967000px;}
._11_c00157{width:49.128000px;}
._f_c00157{width:53.130000px;}
._2_c00157{width:82.938000px;}
._1e_c00157{width:110.604000px;}
._1b_c00157{width:172.104000px;}
._1c_c00157{width:198.858000px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(128,128,128);}
.fc0_c00157{color:rgb(0,0,0);}
.fs1_c00157{font-size:48.000000px;}
.fs2_c00157{font-size:57.000000px;}
.fs0_c00157{font-size:69.000000px;}
.fs3_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1d_c00157{bottom:3.105000px;}
.y1c_c00157{bottom:7.228369px;}
.y1b_c00157{bottom:73.470000px;}
.y1a_c00157{bottom:98.520000px;}
.y19_c00157{bottom:123.570000px;}
.y18_c00157{bottom:149.070000px;}
.y17_c00157{bottom:174.420000px;}
.y16_c00157{bottom:199.170000px;}
.y15_c00157{bottom:223.770000px;}
.y14_c00157{bottom:248.970000px;}
.y13_c00157{bottom:274.020000px;}
.y12_c00157{bottom:299.670000px;}
.y11_c00157{bottom:324.270000px;}
.y10_c00157{bottom:349.620000px;}
.yf_c00157{bottom:373.320000px;}
.ye_c00157{bottom:397.620000px;}
.yd_c00157{bottom:422.520000px;}
.yc_c00157{bottom:447.420000px;}
.yb_c00157{bottom:470.520000px;}
.ya_c00157{bottom:496.770000px;}
.y9_c00157{bottom:520.320000px;}
.y8_c00157{bottom:545.070000px;}
.y7_c00157{bottom:570.420000px;}
.y6_c00157{bottom:595.320000px;}
.y5_c00157{bottom:619.920000px;}
.y4_c00157{bottom:644.970000px;}
.y3_c00157{bottom:669.870000px;}
.y2_c00157{bottom:694.620000px;}
.y1_c00157{bottom:743.820000px;}
.h8_c00157{height:13.200073px;}
.h9_c00157{height:43.804688px;}
.h4_c00157{height:67.686035px;}
.h3_c00157{height:67.719727px;}
.h5_c00157{height:69.539062px;}
.h6_c00157{height:72.562500px;}
.h7_c00157{height:80.758301px;}
.h2_c00157{height:87.361816px;}
.h0_c00157{height:842.100000px;}
.h1_c00157{height:842.250000px;}
.w2_c00157{width:104.875500px;}
.w0_c00157{width:558.600000px;}
.w1_c00157{width:558.750000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:92.250000px;}
.x3_c00157{left:94.500000px;}
.x4_c00157{left:95.550000px;}
.x5_c00157{left:96.900000px;}
.x6_c00157{left:98.250000px;}
.x2_c00157{left:118.500000px;}
.x8_c00157{left:231.114258px;}
.x7_c00157{left:487.650000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.lsa_c00157{letter-spacing:0.000000pt;}
.ls2_c00157{letter-spacing:2.666667pt;}
.ls7_c00157{letter-spacing:3.866667pt;}
.lsb_c00157{letter-spacing:5.333333pt;}
.ls4_c00157{letter-spacing:8.376000pt;}
.ls3_c00157{letter-spacing:8.800000pt;}
.ls6_c00157{letter-spacing:12.533333pt;}
.ls1_c00157{letter-spacing:16.666667pt;}
.ls8_c00157{letter-spacing:18.266667pt;}
.ls9_c00157{letter-spacing:19.866667pt;}
.ls5_c00157{letter-spacing:21.141333pt;}
.ls0_c00157{letter-spacing:29.333333pt;}
.ws1_c00157{word-spacing:-21.333333pt;}
.ws0_c00157{word-spacing:-15.333333pt;}
.ws2_c00157{word-spacing:-14.781333pt;}
.ws3_c00157{word-spacing:0.000000pt;}
._16_c00157{margin-left:-15.946667pt;}
._e_c00157{margin-left:-14.842667pt;}
._d_c00157{margin-left:-12.328000pt;}
._1_c00157{margin-left:-9.936000pt;}
._21_c00157{margin-left:-8.818667pt;}
._17_c00157{margin-left:-7.912000pt;}
._10_c00157{margin-left:-5.826667pt;}
._c_c00157{margin-left:-4.232000pt;}
._b_c00157{margin-left:-3.005333pt;}
._8_c00157{margin-left:-1.594667pt;}
._6_c00157{width:1.226667pt;}
._4_c00157{width:2.576000pt;}
._3_c00157{width:3.680000pt;}
._5_c00157{width:4.661333pt;}
._12_c00157{width:5.765333pt;}
._1f_c00157{width:6.738667pt;}
._13_c00157{width:7.666667pt;}
._18_c00157{width:8.661333pt;}
._a_c00157{width:10.181333pt;}
._9_c00157{width:11.469333pt;}
._14_c00157{width:12.437333pt;}
._1a_c00157{width:14.413333pt;}
._7_c00157{width:16.314667pt;}
._20_c00157{width:17.296000pt;}
._0_c00157{width:18.706667pt;}
._1d_c00157{width:20.056000pt;}
._15_c00157{width:25.957333pt;}
._19_c00157{width:37.304000pt;}
._11_c00157{width:43.669333pt;}
._f_c00157{width:47.226667pt;}
._2_c00157{width:73.722667pt;}
._1e_c00157{width:98.314667pt;}
._1b_c00157{width:152.981333pt;}
._1c_c00157{width:176.762667pt;}
.fs1_c00157{font-size:42.666667pt;}
.fs2_c00157{font-size:50.666667pt;}
.fs0_c00157{font-size:61.333333pt;}
.fs3_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y1d_c00157{bottom:2.760000pt;}
.y1c_c00157{bottom:6.425217pt;}
.y1b_c00157{bottom:65.306667pt;}
.y1a_c00157{bottom:87.573333pt;}
.y19_c00157{bottom:109.840000pt;}
.y18_c00157{bottom:132.506667pt;}
.y17_c00157{bottom:155.040000pt;}
.y16_c00157{bottom:177.040000pt;}
.y15_c00157{bottom:198.906667pt;}
.y14_c00157{bottom:221.306667pt;}
.y13_c00157{bottom:243.573333pt;}
.y12_c00157{bottom:266.373333pt;}
.y11_c00157{bottom:288.240000pt;}
.y10_c00157{bottom:310.773333pt;}
.yf_c00157{bottom:331.840000pt;}
.ye_c00157{bottom:353.440000pt;}
.yd_c00157{bottom:375.573333pt;}
.yc_c00157{bottom:397.706667pt;}
.yb_c00157{bottom:418.240000pt;}
.ya_c00157{bottom:441.573333pt;}
.y9_c00157{bottom:462.506667pt;}
.y8_c00157{bottom:484.506667pt;}
.y7_c00157{bottom:507.040000pt;}
.y6_c00157{bottom:529.173333pt;}
.y5_c00157{bottom:551.040000pt;}
.y4_c00157{bottom:573.306667pt;}
.y3_c00157{bottom:595.440000pt;}
.y2_c00157{bottom:617.440000pt;}
.y1_c00157{bottom:661.173333pt;}
.h8_c00157{height:11.733399pt;}
.h9_c00157{height:38.937500pt;}
.h4_c00157{height:60.165365pt;}
.h3_c00157{height:60.195312pt;}
.h5_c00157{height:61.812500pt;}
.h6_c00157{height:64.500000pt;}
.h7_c00157{height:71.785156pt;}
.h2_c00157{height:77.654948pt;}
.h0_c00157{height:748.533333pt;}
.h1_c00157{height:748.666667pt;}
.w2_c00157{width:93.222667pt;}
.w0_c00157{width:496.533333pt;}
.w1_c00157{width:496.666667pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:82.000000pt;}
.x3_c00157{left:84.000000pt;}
.x4_c00157{left:84.933333pt;}
.x5_c00157{left:86.133333pt;}
.x6_c00157{left:87.333333pt;}
.x2_c00157{left:105.333333pt;}
.x8_c00157{left:205.434896pt;}
.x7_c00157{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_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_1a23f62dd729835aecf8db86.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_3bb6b2fd8408c34d77daf430.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_0842fb29ba7aa9fce674bdff.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_f9886fe9741dcb4c1cf381a3.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00158{font-family:ff5_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);}
.v0_c00158{vertical-align:0.000000px;}
.ls2_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.600000px;}
.ls3_c00158{letter-spacing:3.000000px;}
.ls4_c00158{letter-spacing:6.000000px;}
.ls0_c00158{letter-spacing:8.700000px;}
.ls5_c00158{letter-spacing:9.000000px;}
.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;}
}
.ws1_c00158{word-spacing:-25.629000px;}
.ws2_c00158{word-spacing:-19.629000px;}
.ws3_c00158{word-spacing:-17.250000px;}
.ws0_c00158{word-spacing:-16.629000px;}
.ws4_c00158{word-spacing:0.000000px;}
._1c_c00158{margin-left:-30.162000px;}
._1b_c00158{margin-left:-26.511000px;}
._20_c00158{margin-left:-16.749000px;}
._14_c00158{margin-left:-15.318000px;}
._1d_c00158{margin-left:-13.455000px;}
._1e_c00158{margin-left:-12.300000px;}
._12_c00158{margin-left:-10.626000px;}
._5_c00158{margin-left:-9.414000px;}
._e_c00158{margin-left:-8.142000px;}
._11_c00158{margin-left:-6.318000px;}
._c_c00158{margin-left:-5.244000px;}
._7_c00158{margin-left:-4.071000px;}
._2_c00158{margin-left:-2.691000px;}
._3_c00158{margin-left:-1.242000px;}
._0_c00158{width:1.242000px;}
._1_c00158{width:2.277000px;}
._a_c00158{width:3.519000px;}
._13_c00158{width:4.593000px;}
._4_c00158{width:5.934000px;}
._15_c00158{width:7.866000px;}
._17_c00158{width:9.303000px;}
._16_c00158{width:10.419000px;}
._9_c00158{width:12.441000px;}
._10_c00158{width:15.102000px;}
._21_c00158{width:16.902000px;}
._6_c00158{width:18.423000px;}
._1f_c00158{width:19.698000px;}
._8_c00158{width:21.249000px;}
._18_c00158{width:22.956000px;}
._b_c00158{width:24.288000px;}
._22_c00158{width:26.388000px;}
._1a_c00158{width:32.232000px;}
._f_c00158{width:37.398000px;}
._d_c00158{width:39.468000px;}
._19_c00158{width:41.952000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(128,128,128);}
.fc0_c00158{color:rgb(0,0,0);}
.fs1_c00158{font-size:45.000000px;}
.fs3_c00158{font-size:48.000000px;}
.fs2_c00158{font-size:66.000000px;}
.fs0_c00158{font-size:69.000000px;}
.y0_c00158{bottom:0.000000px;}
.y20_c00158{bottom:3.105000px;}
.y1f_c00158{bottom:7.228363px;}
.y1e_c00158{bottom:38.850000px;}
.y1d_c00158{bottom:61.800000px;}
.y1c_c00158{bottom:87.000000px;}
.y1b_c00158{bottom:111.600000px;}
.y1a_c00158{bottom:136.350000px;}
.y19_c00158{bottom:161.700000px;}
.y18_c00158{bottom:186.600000px;}
.y17_c00158{bottom:211.500000px;}
.y16_c00158{bottom:236.550000px;}
.y15_c00158{bottom:261.600000px;}
.y14_c00158{bottom:287.100000px;}
.y13_c00158{bottom:311.550000px;}
.y12_c00158{bottom:336.750000px;}
.y11_c00158{bottom:360.900000px;}
.y10_c00158{bottom:385.350000px;}
.yf_c00158{bottom:410.700000px;}
.ye_c00158{bottom:433.050000px;}
.yd_c00158{bottom:460.050000px;}
.yc_c00158{bottom:485.250000px;}
.yb_c00158{bottom:510.000000px;}
.ya_c00158{bottom:534.150000px;}
.y9_c00158{bottom:558.600000px;}
.y8_c00158{bottom:583.500000px;}
.y7_c00158{bottom:608.550000px;}
.y6_c00158{bottom:633.750000px;}
.y5_c00158{bottom:658.050000px;}
.y4_c00158{bottom:682.800000px;}
.y3_c00158{bottom:723.150000px;}
.y2_c00158{bottom:760.050000px;}
.y1_c00158{bottom:786.450000px;}
.h7_c00158{height:13.200074px;}
.h8_c00158{height:43.804688px;}
.h2_c00158{height:52.668457px;}
.h6_c00158{height:67.686035px;}
.h5_c00158{height:69.539062px;}
.h3_c00158{height:80.758301px;}
.h1_c00158{height:87.361816px;}
.h4_c00158{height:87.961816px;}
.h0_c00158{height:823.500000px;}
.w2_c00158{width:104.875500px;}
.w1_c00158{width:554.250000px;}
.w0_c00158{width:554.550000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:23.700000px;}
.x9_c00158{left:28.050000px;}
.x5_c00158{left:29.400000px;}
.x6_c00158{left:30.750000px;}
.x8_c00158{left:32.700000px;}
.xa_c00158{left:34.200000px;}
.x4_c00158{left:52.350000px;}
.x7_c00158{left:56.100000px;}
.xb_c00158{left:59.100000px;}
.x3_c00158{left:136.800000px;}
.x1_c00158{left:197.400000px;}
.xd_c00158{left:229.089249px;}
.xc_c00158{left:430.350000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.533333pt;}
.ls3_c00158{letter-spacing:2.666667pt;}
.ls4_c00158{letter-spacing:5.333333pt;}
.ls0_c00158{letter-spacing:7.733333pt;}
.ls5_c00158{letter-spacing:8.000000pt;}
.ws1_c00158{word-spacing:-22.781333pt;}
.ws2_c00158{word-spacing:-17.448000pt;}
.ws3_c00158{word-spacing:-15.333333pt;}
.ws0_c00158{word-spacing:-14.781333pt;}
.ws4_c00158{word-spacing:0.000000pt;}
._1c_c00158{margin-left:-26.810667pt;}
._1b_c00158{margin-left:-23.565333pt;}
._20_c00158{margin-left:-14.888000pt;}
._14_c00158{margin-left:-13.616000pt;}
._1d_c00158{margin-left:-11.960000pt;}
._1e_c00158{margin-left:-10.933333pt;}
._12_c00158{margin-left:-9.445333pt;}
._5_c00158{margin-left:-8.368000pt;}
._e_c00158{margin-left:-7.237333pt;}
._11_c00158{margin-left:-5.616000pt;}
._c_c00158{margin-left:-4.661333pt;}
._7_c00158{margin-left:-3.618667pt;}
._2_c00158{margin-left:-2.392000pt;}
._3_c00158{margin-left:-1.104000pt;}
._0_c00158{width:1.104000pt;}
._1_c00158{width:2.024000pt;}
._a_c00158{width:3.128000pt;}
._13_c00158{width:4.082667pt;}
._4_c00158{width:5.274667pt;}
._15_c00158{width:6.992000pt;}
._17_c00158{width:8.269333pt;}
._16_c00158{width:9.261333pt;}
._9_c00158{width:11.058667pt;}
._10_c00158{width:13.424000pt;}
._21_c00158{width:15.024000pt;}
._6_c00158{width:16.376000pt;}
._1f_c00158{width:17.509333pt;}
._8_c00158{width:18.888000pt;}
._18_c00158{width:20.405333pt;}
._b_c00158{width:21.589333pt;}
._22_c00158{width:23.456000pt;}
._1a_c00158{width:28.650667pt;}
._f_c00158{width:33.242667pt;}
._d_c00158{width:35.082667pt;}
._19_c00158{width:37.290667pt;}
.fs1_c00158{font-size:40.000000pt;}
.fs3_c00158{font-size:42.666667pt;}
.fs2_c00158{font-size:58.666667pt;}
.fs0_c00158{font-size:61.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y20_c00158{bottom:2.760000pt;}
.y1f_c00158{bottom:6.425212pt;}
.y1e_c00158{bottom:34.533333pt;}
.y1d_c00158{bottom:54.933333pt;}
.y1c_c00158{bottom:77.333333pt;}
.y1b_c00158{bottom:99.200000pt;}
.y1a_c00158{bottom:121.200000pt;}
.y19_c00158{bottom:143.733333pt;}
.y18_c00158{bottom:165.866667pt;}
.y17_c00158{bottom:188.000000pt;}
.y16_c00158{bottom:210.266667pt;}
.y15_c00158{bottom:232.533333pt;}
.y14_c00158{bottom:255.200000pt;}
.y13_c00158{bottom:276.933333pt;}
.y12_c00158{bottom:299.333333pt;}
.y11_c00158{bottom:320.800000pt;}
.y10_c00158{bottom:342.533333pt;}
.yf_c00158{bottom:365.066667pt;}
.ye_c00158{bottom:384.933333pt;}
.yd_c00158{bottom:408.933333pt;}
.yc_c00158{bottom:431.333333pt;}
.yb_c00158{bottom:453.333333pt;}
.ya_c00158{bottom:474.800000pt;}
.y9_c00158{bottom:496.533333pt;}
.y8_c00158{bottom:518.666667pt;}
.y7_c00158{bottom:540.933333pt;}
.y6_c00158{bottom:563.333333pt;}
.y5_c00158{bottom:584.933333pt;}
.y4_c00158{bottom:606.933333pt;}
.y3_c00158{bottom:642.800000pt;}
.y2_c00158{bottom:675.600000pt;}
.y1_c00158{bottom:699.066667pt;}
.h7_c00158{height:11.733399pt;}
.h8_c00158{height:38.937500pt;}
.h2_c00158{height:46.816406pt;}
.h6_c00158{height:60.165365pt;}
.h5_c00158{height:61.812500pt;}
.h3_c00158{height:71.785156pt;}
.h1_c00158{height:77.654948pt;}
.h4_c00158{height:78.188281pt;}
.h0_c00158{height:732.000000pt;}
.w2_c00158{width:93.222667pt;}
.w1_c00158{width:492.666667pt;}
.w0_c00158{width:492.933333pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:21.066667pt;}
.x9_c00158{left:24.933333pt;}
.x5_c00158{left:26.133333pt;}
.x6_c00158{left:27.333333pt;}
.x8_c00158{left:29.066667pt;}
.xa_c00158{left:30.400000pt;}
.x4_c00158{left:46.533333pt;}
.x7_c00158{left:49.866667pt;}
.xb_c00158{left:52.533333pt;}
.x3_c00158{left:121.600000pt;}
.x1_c00158{left:175.466667pt;}
.xd_c00158{left:203.634888pt;}
.xc_c00158{left:382.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_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_b52296100e81c87f34f28ab9.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00159{font-family:ff2_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:ff3_c00159;src:url('chunks/assets/font_c85a272ed2f5d27df6c22419.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_e6ebcdd2bd1585a61a53daf7.woff2')format("woff");}.ff4_c00159{font-family:ff4_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:ff5_c00159;src:url('chunks/assets/font_dcbc1d7bb13c645bbb850da1.woff2')format("woff");}.ff5_c00159{font-family:ff5_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:ff6_c00159;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00159{font-family:ff6_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;}
.ls5_c00159{letter-spacing:0.000000px;}
.ls1_c00159{letter-spacing:0.897000px;}
.ls0_c00159{letter-spacing:3.000000px;}
.ls4_c00159{letter-spacing:4.209000px;}
.ls2_c00159{letter-spacing:4.350000px;}
.ls3_c00159{letter-spacing:12.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:-29.250000px;}
.ws3_c00159{word-spacing:-21.459000px;}
.ws2_c00159{word-spacing:-20.250000px;}
.ws0_c00159{word-spacing:-17.250000px;}
.ws4_c00159{word-spacing:0.000000px;}
._e_c00159{margin-left:-18.633000px;}
._16_c00159{margin-left:-16.596000px;}
._1a_c00159{margin-left:-15.069000px;}
._19_c00159{margin-left:-13.290000px;}
._10_c00159{margin-left:-11.937000px;}
._21_c00159{margin-left:-10.920000px;}
._18_c00159{margin-left:-9.408000px;}
._1e_c00159{margin-left:-8.175000px;}
._14_c00159{margin-left:-7.038000px;}
._15_c00159{margin-left:-5.313000px;}
._7_c00159{margin-left:-3.588000px;}
._0_c00159{margin-left:-2.070000px;}
._1_c00159{margin-left:-1.035000px;}
._2_c00159{width:1.311000px;}
._3_c00159{width:2.622000px;}
._6_c00159{width:3.657000px;}
._a_c00159{width:4.692000px;}
._12_c00159{width:5.865000px;}
._13_c00159{width:7.245000px;}
._8_c00159{width:8.556000px;}
._c_c00159{width:9.936000px;}
._f_c00159{width:11.385000px;}
._9_c00159{width:12.558000px;}
._11_c00159{width:13.593000px;}
._5_c00159{width:14.835000px;}
._b_c00159{width:15.870000px;}
._1b_c00159{width:19.527000px;}
._d_c00159{width:21.321000px;}
._17_c00159{width:22.632000px;}
._1c_c00159{width:24.558000px;}
._1f_c00159{width:26.067000px;}
._4_c00159{width:30.222000px;}
._20_c00159{width:54.921000px;}
._22_c00159{width:89.418000px;}
._1d_c00159{width:130.134000px;}
.fc2_c00159{color:transparent;}
.fc1_c00159{color:rgb(128,128,128);}
.fc0_c00159{color:rgb(0,0,0);}
.fs3_c00159{font-size:48.000000px;}
.fs1_c00159{font-size:60.000000px;}
.fs0_c00159{font-size:69.000000px;}
.fs2_c00159{font-size:81.000000px;}
.y0_c00159{bottom:0.000000px;}
.y1f_c00159{bottom:3.105000px;}
.y1e_c00159{bottom:7.228369px;}
.y1d_c00159{bottom:73.470000px;}
.y1c_c00159{bottom:97.770000px;}
.y1b_c00159{bottom:124.170000px;}
.y1a_c00159{bottom:149.070000px;}
.y19_c00159{bottom:174.420000px;}
.y18_c00159{bottom:199.170000px;}
.y17_c00159{bottom:224.670000px;}
.y16_c00159{bottom:249.420000px;}
.y15_c00159{bottom:274.770000px;}
.y14_c00159{bottom:299.970000px;}
.y13_c00159{bottom:324.570000px;}
.y12_c00159{bottom:349.020000px;}
.y11_c00159{bottom:373.320000px;}
.y10_c00159{bottom:398.220000px;}
.yf_c00159{bottom:422.820000px;}
.ye_c00159{bottom:447.420000px;}
.yd_c00159{bottom:473.070000px;}
.yc_c00159{bottom:498.120000px;}
.yb_c00159{bottom:523.020000px;}
.ya_c00159{bottom:547.470000px;}
.y9_c00159{bottom:572.670000px;}
.y8_c00159{bottom:597.270000px;}
.y7_c00159{bottom:623.370000px;}
.y6_c00159{bottom:648.270000px;}
.y5_c00159{bottom:673.320000px;}
.y4_c00159{bottom:698.220000px;}
.y3_c00159{bottom:723.270000px;}
.y2_c00159{bottom:747.870000px;}
.y1_c00159{bottom:772.920000px;}
.h8_c00159{height:13.200073px;}
.h9_c00159{height:43.804688px;}
.h4_c00159{height:67.686035px;}
.h2_c00159{height:67.719727px;}
.h3_c00159{height:69.539062px;}
.h5_c00159{height:70.224609px;}
.h6_c00159{height:87.361816px;}
.h7_c00159{height:102.555176px;}
.h0_c00159{height:842.100000px;}
.h1_c00159{height:842.250000px;}
.w2_c00159{width:104.875500px;}
.w0_c00159{width:558.600000px;}
.w1_c00159{width:558.750000px;}
.x0_c00159{left:0.000000px;}
.x6_c00159{left:90.450000px;}
.x5_c00159{left:92.100000px;}
.x3_c00159{left:93.150000px;}
.x2_c00159{left:94.200000px;}
.x1_c00159{left:95.850000px;}
.x8_c00159{left:97.500000px;}
.x7_c00159{left:98.550000px;}
.x9_c00159{left:110.400000px;}
.x4_c00159{left:120.450000px;}
.xb_c00159{left:231.114258px;}
.xa_c00159{left:516.000000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls5_c00159{letter-spacing:0.000000pt;}
.ls1_c00159{letter-spacing:0.797333pt;}
.ls0_c00159{letter-spacing:2.666667pt;}
.ls4_c00159{letter-spacing:3.741333pt;}
.ls2_c00159{letter-spacing:3.866667pt;}
.ls3_c00159{letter-spacing:10.666667pt;}
.ws1_c00159{word-spacing:-26.000000pt;}
.ws3_c00159{word-spacing:-19.074667pt;}
.ws2_c00159{word-spacing:-18.000000pt;}
.ws0_c00159{word-spacing:-15.333333pt;}
.ws4_c00159{word-spacing:0.000000pt;}
._e_c00159{margin-left:-16.562667pt;}
._16_c00159{margin-left:-14.752000pt;}
._1a_c00159{margin-left:-13.394667pt;}
._19_c00159{margin-left:-11.813333pt;}
._10_c00159{margin-left:-10.610667pt;}
._21_c00159{margin-left:-9.706667pt;}
._18_c00159{margin-left:-8.362667pt;}
._1e_c00159{margin-left:-7.266667pt;}
._14_c00159{margin-left:-6.256000pt;}
._15_c00159{margin-left:-4.722667pt;}
._7_c00159{margin-left:-3.189333pt;}
._0_c00159{margin-left:-1.840000pt;}
._1_c00159{margin-left:-0.920000pt;}
._2_c00159{width:1.165333pt;}
._3_c00159{width:2.330667pt;}
._6_c00159{width:3.250667pt;}
._a_c00159{width:4.170667pt;}
._12_c00159{width:5.213333pt;}
._13_c00159{width:6.440000pt;}
._8_c00159{width:7.605333pt;}
._c_c00159{width:8.832000pt;}
._f_c00159{width:10.120000pt;}
._9_c00159{width:11.162667pt;}
._11_c00159{width:12.082667pt;}
._5_c00159{width:13.186667pt;}
._b_c00159{width:14.106667pt;}
._1b_c00159{width:17.357333pt;}
._d_c00159{width:18.952000pt;}
._17_c00159{width:20.117333pt;}
._1c_c00159{width:21.829333pt;}
._1f_c00159{width:23.170667pt;}
._4_c00159{width:26.864000pt;}
._20_c00159{width:48.818667pt;}
._22_c00159{width:79.482667pt;}
._1d_c00159{width:115.674667pt;}
.fs3_c00159{font-size:42.666667pt;}
.fs1_c00159{font-size:53.333333pt;}
.fs0_c00159{font-size:61.333333pt;}
.fs2_c00159{font-size:72.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y1f_c00159{bottom:2.760000pt;}
.y1e_c00159{bottom:6.425217pt;}
.y1d_c00159{bottom:65.306667pt;}
.y1c_c00159{bottom:86.906667pt;}
.y1b_c00159{bottom:110.373333pt;}
.y1a_c00159{bottom:132.506667pt;}
.y19_c00159{bottom:155.040000pt;}
.y18_c00159{bottom:177.040000pt;}
.y17_c00159{bottom:199.706667pt;}
.y16_c00159{bottom:221.706667pt;}
.y15_c00159{bottom:244.240000pt;}
.y14_c00159{bottom:266.640000pt;}
.y13_c00159{bottom:288.506667pt;}
.y12_c00159{bottom:310.240000pt;}
.y11_c00159{bottom:331.840000pt;}
.y10_c00159{bottom:353.973333pt;}
.yf_c00159{bottom:375.840000pt;}
.ye_c00159{bottom:397.706667pt;}
.yd_c00159{bottom:420.506667pt;}
.yc_c00159{bottom:442.773333pt;}
.yb_c00159{bottom:464.906667pt;}
.ya_c00159{bottom:486.640000pt;}
.y9_c00159{bottom:509.040000pt;}
.y8_c00159{bottom:530.906667pt;}
.y7_c00159{bottom:554.106667pt;}
.y6_c00159{bottom:576.240000pt;}
.y5_c00159{bottom:598.506667pt;}
.y4_c00159{bottom:620.640000pt;}
.y3_c00159{bottom:642.906667pt;}
.y2_c00159{bottom:664.773333pt;}
.y1_c00159{bottom:687.040000pt;}
.h8_c00159{height:11.733399pt;}
.h9_c00159{height:38.937500pt;}
.h4_c00159{height:60.165365pt;}
.h2_c00159{height:60.195312pt;}
.h3_c00159{height:61.812500pt;}
.h5_c00159{height:62.421875pt;}
.h6_c00159{height:77.654948pt;}
.h7_c00159{height:91.160156pt;}
.h0_c00159{height:748.533333pt;}
.h1_c00159{height:748.666667pt;}
.w2_c00159{width:93.222667pt;}
.w0_c00159{width:496.533333pt;}
.w1_c00159{width:496.666667pt;}
.x0_c00159{left:0.000000pt;}
.x6_c00159{left:80.400000pt;}
.x5_c00159{left:81.866667pt;}
.x3_c00159{left:82.800000pt;}
.x2_c00159{left:83.733333pt;}
.x1_c00159{left:85.200000pt;}
.x8_c00159{left:86.666667pt;}
.x7_c00159{left:87.600000pt;}
.x9_c00159{left:98.133333pt;}
.x4_c00159{left:107.066667pt;}
.xb_c00159{left:205.434896pt;}
.xa_c00159{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_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_f0b2c7c1ad0672fa6a6ed80e.woff2')format("woff");}.ff1_c00160{font-family:ff1_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:ff2_c00160;src:url('chunks/assets/font_6bc6ec364c1442c664d709a8.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;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_c00160;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00160{font-family:ff3_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:ff4_c00160;src:url('chunks/assets/font_a3055c95e72eeacd87f369cf.woff2')format("woff");}.ff4_c00160{font-family:ff4_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:ff5_c00160;src:url('chunks/assets/font_90837b217ecd57c331e1186c.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00160{font-family:ff6_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);}
.v1_c00160{vertical-align:-1.800000px;}
.v0_c00160{vertical-align:0.000000px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls2_c00160{letter-spacing:3.000000px;}
.ls0_c00160{letter-spacing:170.112000px;}
.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:-24.288000px;}
.ws2_c00160{word-spacing:-18.798000px;}
.ws1_c00160{word-spacing:-16.629000px;}
.ws3_c00160{word-spacing:-0.081000px;}
.ws4_c00160{word-spacing:0.000000px;}
._21_c00160{margin-left:-25.329000px;}
._1d_c00160{margin-left:-23.943000px;}
._2c_c00160{margin-left:-21.390000px;}
._11_c00160{margin-left:-20.202000px;}
._12_c00160{margin-left:-17.862000px;}
._10_c00160{margin-left:-16.791000px;}
._15_c00160{margin-left:-15.459000px;}
._14_c00160{margin-left:-13.935000px;}
._9_c00160{margin-left:-12.450000px;}
._18_c00160{margin-left:-10.965000px;}
._c_c00160{margin-left:-9.885000px;}
._f_c00160{margin-left:-8.877000px;}
._a_c00160{margin-left:-7.800000px;}
._b_c00160{margin-left:-6.006000px;}
._4_c00160{margin-left:-4.416000px;}
._5_c00160{margin-left:-2.898000px;}
._6_c00160{margin-left:-1.035000px;}
._3_c00160{width:1.587000px;}
._1b_c00160{width:3.519000px;}
._1c_c00160{width:4.692000px;}
._1_c00160{width:5.727000px;}
._8_c00160{width:7.125000px;}
._2_c00160{width:8.901000px;}
._0_c00160{width:9.936000px;}
._28_c00160{width:11.235000px;}
._13_c00160{width:12.408000px;}
._e_c00160{width:13.818000px;}
._16_c00160{width:15.489000px;}
._d_c00160{width:17.655000px;}
._1f_c00160{width:19.326000px;}
._19_c00160{width:21.486000px;}
._24_c00160{width:23.817000px;}
._2a_c00160{width:27.198000px;}
._17_c00160{width:29.043000px;}
._1e_c00160{width:30.318000px;}
._23_c00160{width:35.379000px;}
._2e_c00160{width:37.410000px;}
._22_c00160{width:39.759000px;}
._1a_c00160{width:53.892000px;}
._20_c00160{width:91.068000px;}
._2b_c00160{width:157.266000px;}
._25_c00160{width:182.799000px;}
._2d_c00160{width:187.812000px;}
._27_c00160{width:199.176000px;}
._26_c00160{width:262.155000px;}
._29_c00160{width:301.515000px;}
._7_c00160{width:487.779000px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(128,128,128);}
.fc0_c00160{color:rgb(0,0,0);}
.fs4_c00160{font-size:48.000000px;}
.fs1_c00160{font-size:57.000000px;}
.fs0_c00160{font-size:69.000000px;}
.fs2_c00160{font-size:78.000000px;}
.fs3_c00160{font-size:81.000000px;}
.y0_c00160{bottom:0.000000px;}
.y20_c00160{bottom:3.105000px;}
.y1f_c00160{bottom:7.228371px;}
.y1e_c00160{bottom:70.515000px;}
.y1d_c00160{bottom:96.315000px;}
.y1c_c00160{bottom:123.315000px;}
.y1b_c00160{bottom:146.565000px;}
.y1a_c00160{bottom:173.115000px;}
.y19_c00160{bottom:196.215000px;}
.y18_c00160{bottom:220.815000px;}
.y17_c00160{bottom:246.015000px;}
.y16_c00160{bottom:270.765000px;}
.y15_c00160{bottom:295.965000px;}
.y14_c00160{bottom:320.715000px;}
.y13_c00160{bottom:345.015000px;}
.y12_c00160{bottom:369.315000px;}
.y11_c00160{bottom:393.915000px;}
.y10_c00160{bottom:418.815000px;}
.yf_c00160{bottom:443.565000px;}
.ye_c00160{bottom:467.865000px;}
.yd_c00160{bottom:493.065000px;}
.yc_c00160{bottom:516.765000px;}
.yb_c00160{bottom:541.665000px;}
.ya_c00160{bottom:566.115000px;}
.y9_c00160{bottom:591.015000px;}
.y8_c00160{bottom:616.065000px;}
.y7_c00160{bottom:640.965000px;}
.y6_c00160{bottom:665.565000px;}
.y5_c00160{bottom:690.315000px;}
.y4_c00160{bottom:714.615000px;}
.y3_c00160{bottom:740.265000px;}
.y2_c00160{bottom:765.765000px;}
.y1_c00160{bottom:790.515000px;}
.h6_c00160{height:13.200074px;}
.h7_c00160{height:43.804688px;}
.h5_c00160{height:73.623000px;}
.h2_c00160{height:80.758301px;}
.h4_c00160{height:91.291992px;}
.h3_c00160{height:98.756836px;}
.h1_c00160{height:831.000000px;}
.h0_c00160{height:831.075000px;}
.w1_c00160{width:104.875500px;}
.w0_c00160{width:560.250000px;}
.x0_c00160{left:0.000000px;}
.x4_c00160{left:32.700000px;}
.x2_c00160{left:35.550000px;}
.x3_c00160{left:37.500000px;}
.x5_c00160{left:60.000000px;}
.x1_c00160{left:205.500000px;}
.x6_c00160{left:231.939240px;}
@media print{
.v1_c00160{vertical-align:-1.600000pt;}
.v0_c00160{vertical-align:0.000000pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls2_c00160{letter-spacing:2.666667pt;}
.ls0_c00160{letter-spacing:151.210667pt;}
.ws0_c00160{word-spacing:-21.589333pt;}
.ws2_c00160{word-spacing:-16.709333pt;}
.ws1_c00160{word-spacing:-14.781333pt;}
.ws3_c00160{word-spacing:-0.072000pt;}
.ws4_c00160{word-spacing:0.000000pt;}
._21_c00160{margin-left:-22.514667pt;}
._1d_c00160{margin-left:-21.282667pt;}
._2c_c00160{margin-left:-19.013333pt;}
._11_c00160{margin-left:-17.957333pt;}
._12_c00160{margin-left:-15.877333pt;}
._10_c00160{margin-left:-14.925333pt;}
._15_c00160{margin-left:-13.741333pt;}
._14_c00160{margin-left:-12.386667pt;}
._9_c00160{margin-left:-11.066667pt;}
._18_c00160{margin-left:-9.746667pt;}
._c_c00160{margin-left:-8.786667pt;}
._f_c00160{margin-left:-7.890667pt;}
._a_c00160{margin-left:-6.933333pt;}
._b_c00160{margin-left:-5.338667pt;}
._4_c00160{margin-left:-3.925333pt;}
._5_c00160{margin-left:-2.576000pt;}
._6_c00160{margin-left:-0.920000pt;}
._3_c00160{width:1.410667pt;}
._1b_c00160{width:3.128000pt;}
._1c_c00160{width:4.170667pt;}
._1_c00160{width:5.090667pt;}
._8_c00160{width:6.333333pt;}
._2_c00160{width:7.912000pt;}
._0_c00160{width:8.832000pt;}
._28_c00160{width:9.986667pt;}
._13_c00160{width:11.029333pt;}
._e_c00160{width:12.282667pt;}
._16_c00160{width:13.768000pt;}
._d_c00160{width:15.693333pt;}
._1f_c00160{width:17.178667pt;}
._19_c00160{width:19.098667pt;}
._24_c00160{width:21.170667pt;}
._2a_c00160{width:24.176000pt;}
._17_c00160{width:25.816000pt;}
._1e_c00160{width:26.949333pt;}
._23_c00160{width:31.448000pt;}
._2e_c00160{width:33.253333pt;}
._22_c00160{width:35.341333pt;}
._1a_c00160{width:47.904000pt;}
._20_c00160{width:80.949333pt;}
._2b_c00160{width:139.792000pt;}
._25_c00160{width:162.488000pt;}
._2d_c00160{width:166.944000pt;}
._27_c00160{width:177.045333pt;}
._26_c00160{width:233.026667pt;}
._29_c00160{width:268.013333pt;}
._7_c00160{width:433.581333pt;}
.fs4_c00160{font-size:42.666667pt;}
.fs1_c00160{font-size:50.666667pt;}
.fs0_c00160{font-size:61.333333pt;}
.fs2_c00160{font-size:69.333333pt;}
.fs3_c00160{font-size:72.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y20_c00160{bottom:2.760000pt;}
.y1f_c00160{bottom:6.425219pt;}
.y1e_c00160{bottom:62.680000pt;}
.y1d_c00160{bottom:85.613333pt;}
.y1c_c00160{bottom:109.613333pt;}
.y1b_c00160{bottom:130.280000pt;}
.y1a_c00160{bottom:153.880000pt;}
.y19_c00160{bottom:174.413333pt;}
.y18_c00160{bottom:196.280000pt;}
.y17_c00160{bottom:218.680000pt;}
.y16_c00160{bottom:240.680000pt;}
.y15_c00160{bottom:263.080000pt;}
.y14_c00160{bottom:285.080000pt;}
.y13_c00160{bottom:306.680000pt;}
.y12_c00160{bottom:328.280000pt;}
.y11_c00160{bottom:350.146667pt;}
.y10_c00160{bottom:372.280000pt;}
.yf_c00160{bottom:394.280000pt;}
.ye_c00160{bottom:415.880000pt;}
.yd_c00160{bottom:438.280000pt;}
.yc_c00160{bottom:459.346667pt;}
.yb_c00160{bottom:481.480000pt;}
.ya_c00160{bottom:503.213333pt;}
.y9_c00160{bottom:525.346667pt;}
.y8_c00160{bottom:547.613333pt;}
.y7_c00160{bottom:569.746667pt;}
.y6_c00160{bottom:591.613333pt;}
.y5_c00160{bottom:613.613333pt;}
.y4_c00160{bottom:635.213333pt;}
.y3_c00160{bottom:658.013333pt;}
.y2_c00160{bottom:680.680000pt;}
.y1_c00160{bottom:702.680000pt;}
.h6_c00160{height:11.733399pt;}
.h7_c00160{height:38.937500pt;}
.h5_c00160{height:65.442667pt;}
.h2_c00160{height:71.785156pt;}
.h4_c00160{height:81.148438pt;}
.h3_c00160{height:87.783854pt;}
.h1_c00160{height:738.666667pt;}
.h0_c00160{height:738.733333pt;}
.w1_c00160{width:93.222667pt;}
.w0_c00160{width:498.000000pt;}
.x0_c00160{left:0.000000pt;}
.x4_c00160{left:29.066667pt;}
.x2_c00160{left:31.600000pt;}
.x3_c00160{left:33.333333pt;}
.x5_c00160{left:53.333333pt;}
.x1_c00160{left:182.666667pt;}
.x6_c00160{left:206.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_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_d1ab0a1ae151092c3742b4a2.woff2')format("woff");}.ff1_c00161{font-family:ff1_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:ff2_c00161;src:url('chunks/assets/font_ecdc92f145d127a10df66200.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_e425a28d3a1bca9ae5b2ff7c.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;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_c00161;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.ls2_c00161{letter-spacing:3.000000px;}
.ls1_c00161{letter-spacing:21.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:-37.629000px;}
.ws1_c00161{word-spacing:-19.629000px;}
.ws2_c00161{word-spacing:-18.798000px;}
.ws3_c00161{word-spacing:0.000000px;}
._1c_c00161{margin-left:-20.172000px;}
._1f_c00161{margin-left:-18.630000px;}
._a_c00161{margin-left:-16.068000px;}
._16_c00161{margin-left:-14.742000px;}
._10_c00161{margin-left:-12.480000px;}
._17_c00161{margin-left:-11.154000px;}
._8_c00161{margin-left:-10.062000px;}
._11_c00161{margin-left:-8.814000px;}
._2_c00161{margin-left:-7.410000px;}
._c_c00161{margin-left:-6.318000px;}
._0_c00161{margin-left:-5.304000px;}
._4_c00161{margin-left:-4.056000px;}
._1_c00161{margin-left:-2.730000px;}
._6_c00161{margin-left:-1.404000px;}
._7_c00161{width:1.170000px;}
._b_c00161{width:2.886000px;}
._1a_c00161{width:3.900000px;}
._5_c00161{width:4.914000px;}
._19_c00161{width:6.240000px;}
._9_c00161{width:7.254000px;}
._e_c00161{width:9.360000px;}
._3_c00161{width:10.686000px;}
._14_c00161{width:12.480000px;}
._15_c00161{width:14.118000px;}
._1b_c00161{width:15.132000px;}
._d_c00161{width:16.536000px;}
._12_c00161{width:17.784000px;}
._f_c00161{width:21.216000px;}
._1e_c00161{width:22.437000px;}
._1d_c00161{width:27.456000px;}
._20_c00161{width:36.192000px;}
._13_c00161{width:38.454000px;}
._18_c00161{width:102.960000px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs2_c00161{font-size:48.000000px;}
.fs1_c00161{font-size:69.000000px;}
.fs0_c00161{font-size:78.000000px;}
.y0_c00161{bottom:0.000000px;}
.y1e_c00161{bottom:3.105000px;}
.y1d_c00161{bottom:7.228369px;}
.y1c_c00161{bottom:92.070000px;}
.y1b_c00161{bottom:116.670000px;}
.y1a_c00161{bottom:142.770000px;}
.y19_c00161{bottom:167.670000px;}
.y18_c00161{bottom:191.970000px;}
.y17_c00161{bottom:215.970000px;}
.y16_c00161{bottom:242.220000px;}
.y15_c00161{bottom:267.270000px;}
.y14_c00161{bottom:308.070000px;}
.y13_c00161{bottom:344.220000px;}
.y12_c00161{bottom:369.120000px;}
.y11_c00161{bottom:393.420000px;}
.y10_c00161{bottom:418.470000px;}
.yf_c00161{bottom:443.520000px;}
.ye_c00161{bottom:468.720000px;}
.yd_c00161{bottom:493.470000px;}
.yc_c00161{bottom:518.370000px;}
.yb_c00161{bottom:542.970000px;}
.ya_c00161{bottom:568.020000px;}
.y9_c00161{bottom:593.220000px;}
.y8_c00161{bottom:617.220000px;}
.y7_c00161{bottom:642.270000px;}
.y6_c00161{bottom:667.470000px;}
.y5_c00161{bottom:692.220000px;}
.y4_c00161{bottom:717.120000px;}
.y3_c00161{bottom:742.170000px;}
.y2_c00161{bottom:767.070000px;}
.y1_c00161{bottom:792.120000px;}
.h6_c00161{height:13.200073px;}
.h7_c00161{height:43.804688px;}
.h4_c00161{height:80.758301px;}
.h5_c00161{height:87.361816px;}
.h3_c00161{height:91.291992px;}
.h2_c00161{height:98.756836px;}
.h0_c00161{height:842.100000px;}
.h1_c00161{height:842.250000px;}
.w2_c00161{width:104.875500px;}
.w0_c00161{width:558.600000px;}
.w1_c00161{width:558.750000px;}
.x0_c00161{left:0.000000px;}
.x7_c00161{left:87.150000px;}
.x6_c00161{left:88.200000px;}
.x5_c00161{left:89.400000px;}
.x4_c00161{left:90.450000px;}
.x3_c00161{left:92.100000px;}
.x2_c00161{left:93.450000px;}
.xa_c00161{left:94.950000px;}
.x9_c00161{left:118.350000px;}
.xc_c00161{left:231.114258px;}
.x1_c00161{left:242.400000px;}
.x8_c00161{left:281.850000px;}
.xb_c00161{left:501.750000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ls2_c00161{letter-spacing:2.666667pt;}
.ls1_c00161{letter-spacing:18.666667pt;}
.ws0_c00161{word-spacing:-33.448000pt;}
.ws1_c00161{word-spacing:-17.448000pt;}
.ws2_c00161{word-spacing:-16.709333pt;}
.ws3_c00161{word-spacing:0.000000pt;}
._1c_c00161{margin-left:-17.930667pt;}
._1f_c00161{margin-left:-16.560000pt;}
._a_c00161{margin-left:-14.282667pt;}
._16_c00161{margin-left:-13.104000pt;}
._10_c00161{margin-left:-11.093333pt;}
._17_c00161{margin-left:-9.914667pt;}
._8_c00161{margin-left:-8.944000pt;}
._11_c00161{margin-left:-7.834667pt;}
._2_c00161{margin-left:-6.586667pt;}
._c_c00161{margin-left:-5.616000pt;}
._0_c00161{margin-left:-4.714667pt;}
._4_c00161{margin-left:-3.605333pt;}
._1_c00161{margin-left:-2.426667pt;}
._6_c00161{margin-left:-1.248000pt;}
._7_c00161{width:1.040000pt;}
._b_c00161{width:2.565333pt;}
._1a_c00161{width:3.466667pt;}
._5_c00161{width:4.368000pt;}
._19_c00161{width:5.546667pt;}
._9_c00161{width:6.448000pt;}
._e_c00161{width:8.320000pt;}
._3_c00161{width:9.498667pt;}
._14_c00161{width:11.093333pt;}
._15_c00161{width:12.549333pt;}
._1b_c00161{width:13.450667pt;}
._d_c00161{width:14.698667pt;}
._12_c00161{width:15.808000pt;}
._f_c00161{width:18.858667pt;}
._1e_c00161{width:19.944000pt;}
._1d_c00161{width:24.405333pt;}
._20_c00161{width:32.170667pt;}
._13_c00161{width:34.181333pt;}
._18_c00161{width:91.520000pt;}
.fs2_c00161{font-size:42.666667pt;}
.fs1_c00161{font-size:61.333333pt;}
.fs0_c00161{font-size:69.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.y1e_c00161{bottom:2.760000pt;}
.y1d_c00161{bottom:6.425217pt;}
.y1c_c00161{bottom:81.840000pt;}
.y1b_c00161{bottom:103.706667pt;}
.y1a_c00161{bottom:126.906667pt;}
.y19_c00161{bottom:149.040000pt;}
.y18_c00161{bottom:170.640000pt;}
.y17_c00161{bottom:191.973333pt;}
.y16_c00161{bottom:215.306667pt;}
.y15_c00161{bottom:237.573333pt;}
.y14_c00161{bottom:273.840000pt;}
.y13_c00161{bottom:305.973333pt;}
.y12_c00161{bottom:328.106667pt;}
.y11_c00161{bottom:349.706667pt;}
.y10_c00161{bottom:371.973333pt;}
.yf_c00161{bottom:394.240000pt;}
.ye_c00161{bottom:416.640000pt;}
.yd_c00161{bottom:438.640000pt;}
.yc_c00161{bottom:460.773333pt;}
.yb_c00161{bottom:482.640000pt;}
.ya_c00161{bottom:504.906667pt;}
.y9_c00161{bottom:527.306667pt;}
.y8_c00161{bottom:548.640000pt;}
.y7_c00161{bottom:570.906667pt;}
.y6_c00161{bottom:593.306667pt;}
.y5_c00161{bottom:615.306667pt;}
.y4_c00161{bottom:637.440000pt;}
.y3_c00161{bottom:659.706667pt;}
.y2_c00161{bottom:681.840000pt;}
.y1_c00161{bottom:704.106667pt;}
.h6_c00161{height:11.733399pt;}
.h7_c00161{height:38.937500pt;}
.h4_c00161{height:71.785156pt;}
.h5_c00161{height:77.654948pt;}
.h3_c00161{height:81.148438pt;}
.h2_c00161{height:87.783854pt;}
.h0_c00161{height:748.533333pt;}
.h1_c00161{height:748.666667pt;}
.w2_c00161{width:93.222667pt;}
.w0_c00161{width:496.533333pt;}
.w1_c00161{width:496.666667pt;}
.x0_c00161{left:0.000000pt;}
.x7_c00161{left:77.466667pt;}
.x6_c00161{left:78.400000pt;}
.x5_c00161{left:79.466667pt;}
.x4_c00161{left:80.400000pt;}
.x3_c00161{left:81.866667pt;}
.x2_c00161{left:83.066667pt;}
.xa_c00161{left:84.400000pt;}
.x9_c00161{left:105.200000pt;}
.xc_c00161{left:205.434896pt;}
.x1_c00161{left:215.466667pt;}
.x8_c00161{left:250.533333pt;}
.xb_c00161{left:446.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_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_5aeb4f8f214bf077f551214e.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_0df06dc92af34c86184f8085.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;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_c00162;src:url('chunks/assets/font_53625ca9610572ca84e6715c.woff2')format("woff");}.ff3_c00162{font-family:ff3_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:ff4_c00162;src:url('chunks/assets/font_05026daef593067dc0933348.woff2')format("woff");}.ff4_c00162{font-family:ff4_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:ff5_c00162;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00162{font-family:ff5_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;}
.ls4_c00162{letter-spacing:0.000000px;}
.ls5_c00162{letter-spacing:3.000000px;}
.ls3_c00162{letter-spacing:5.772000px;}
.ls2_c00162{letter-spacing:6.300000px;}
.ls1_c00162{letter-spacing:7.500000px;}
.ls0_c00162{letter-spacing:9.900000px;}
.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:-24.507000px;}
.ws0_c00162{word-spacing:-18.798000px;}
.ws2_c00162{word-spacing:0.000000px;}
._1a_c00162{margin-left:-36.228000px;}
._25_c00162{margin-left:-34.518000px;}
._14_c00162{margin-left:-28.548000px;}
._1e_c00162{margin-left:-24.648000px;}
._1d_c00162{margin-left:-23.265000px;}
._23_c00162{margin-left:-21.450000px;}
._15_c00162{margin-left:-19.761000px;}
._10_c00162{margin-left:-17.511000px;}
._1f_c00162{margin-left:-16.341000px;}
._8_c00162{margin-left:-14.592000px;}
._17_c00162{margin-left:-13.263000px;}
._12_c00162{margin-left:-11.523000px;}
._2_c00162{margin-left:-9.672000px;}
._3_c00162{margin-left:-8.424000px;}
._4_c00162{margin-left:-7.176000px;}
._5_c00162{margin-left:-5.460000px;}
._0_c00162{margin-left:-3.588000px;}
._1_c00162{margin-left:-1.872000px;}
._9_c00162{width:1.572000px;}
._b_c00162{width:3.174000px;}
._a_c00162{width:5.037000px;}
._1b_c00162{width:6.495000px;}
._d_c00162{width:8.418000px;}
._16_c00162{width:9.534000px;}
._1c_c00162{width:11.235000px;}
._e_c00162{width:12.618000px;}
._7_c00162{width:14.118000px;}
._f_c00162{width:15.240000px;}
._22_c00162{width:16.263000px;}
._c_c00162{width:17.724000px;}
._24_c00162{width:18.771000px;}
._11_c00162{width:22.542000px;}
._20_c00162{width:25.401000px;}
._26_c00162{width:29.520000px;}
._19_c00162{width:33.141000px;}
._13_c00162{width:68.892000px;}
._18_c00162{width:84.792000px;}
._21_c00162{width:186.654000px;}
._6_c00162{width:500.193000px;}
._27_c00162{width:546.024000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs3_c00162{font-size:48.000000px;}
.fs2_c00162{font-size:63.000000px;}
.fs1_c00162{font-size:69.000000px;}
.fs0_c00162{font-size:78.000000px;}
.y0_c00162{bottom:0.000000px;}
.y20_c00162{bottom:3.105000px;}
.y1f_c00162{bottom:7.228369px;}
.y1e_c00162{bottom:58.620000px;}
.y1d_c00162{bottom:82.020000px;}
.y1c_c00162{bottom:107.220000px;}
.y1b_c00162{bottom:132.570000px;}
.y1a_c00162{bottom:157.920000px;}
.y19_c00162{bottom:182.970000px;}
.y18_c00162{bottom:208.170000px;}
.y17_c00162{bottom:233.220000px;}
.y16_c00162{bottom:259.170000px;}
.y15_c00162{bottom:283.770000px;}
.y14_c00162{bottom:309.420000px;}
.y13_c00162{bottom:334.170000px;}
.y12_c00162{bottom:359.070000px;}
.y11_c00162{bottom:384.120000px;}
.y10_c00162{bottom:409.020000px;}
.yf_c00162{bottom:434.070000px;}
.ye_c00162{bottom:459.270000px;}
.yd_c00162{bottom:483.270000px;}
.yc_c00162{bottom:508.170000px;}
.yb_c00162{bottom:532.170000px;}
.ya_c00162{bottom:557.220000px;}
.y9_c00162{bottom:582.420000px;}
.y8_c00162{bottom:607.470000px;}
.y7_c00162{bottom:632.070000px;}
.y6_c00162{bottom:657.120000px;}
.y5_c00162{bottom:682.320000px;}
.y4_c00162{bottom:707.070000px;}
.y3_c00162{bottom:731.970000px;}
.y2_c00162{bottom:757.320000px;}
.y1_c00162{bottom:782.220000px;}
.h6_c00162{height:13.200073px;}
.h7_c00162{height:43.804688px;}
.h4_c00162{height:73.623000px;}
.h5_c00162{height:87.361816px;}
.h2_c00162{height:91.291992px;}
.h3_c00162{height:98.756836px;}
.h0_c00162{height:821.850000px;}
.h1_c00162{height:822.000000px;}
.w1_c00162{width:104.875500px;}
.w0_c00162{width:553.500000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:30.600000px;}
.x3_c00162{left:31.950000px;}
.x4_c00162{left:33.000000px;}
.x5_c00162{left:34.050000px;}
.x6_c00162{left:35.850000px;}
.x7_c00162{left:37.200000px;}
.x8_c00162{left:38.850000px;}
.x1_c00162{left:186.300000px;}
.xa_c00162{left:228.564240px;}
.x9_c00162{left:277.200000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls4_c00162{letter-spacing:0.000000pt;}
.ls5_c00162{letter-spacing:2.666667pt;}
.ls3_c00162{letter-spacing:5.130667pt;}
.ls2_c00162{letter-spacing:5.600000pt;}
.ls1_c00162{letter-spacing:6.666667pt;}
.ls0_c00162{letter-spacing:8.800000pt;}
.ws1_c00162{word-spacing:-21.784000pt;}
.ws0_c00162{word-spacing:-16.709333pt;}
.ws2_c00162{word-spacing:0.000000pt;}
._1a_c00162{margin-left:-32.202667pt;}
._25_c00162{margin-left:-30.682667pt;}
._14_c00162{margin-left:-25.376000pt;}
._1e_c00162{margin-left:-21.909333pt;}
._1d_c00162{margin-left:-20.680000pt;}
._23_c00162{margin-left:-19.066667pt;}
._15_c00162{margin-left:-17.565333pt;}
._10_c00162{margin-left:-15.565333pt;}
._1f_c00162{margin-left:-14.525333pt;}
._8_c00162{margin-left:-12.970667pt;}
._17_c00162{margin-left:-11.789333pt;}
._12_c00162{margin-left:-10.242667pt;}
._2_c00162{margin-left:-8.597333pt;}
._3_c00162{margin-left:-7.488000pt;}
._4_c00162{margin-left:-6.378667pt;}
._5_c00162{margin-left:-4.853333pt;}
._0_c00162{margin-left:-3.189333pt;}
._1_c00162{margin-left:-1.664000pt;}
._9_c00162{width:1.397333pt;}
._b_c00162{width:2.821333pt;}
._a_c00162{width:4.477333pt;}
._1b_c00162{width:5.773333pt;}
._d_c00162{width:7.482667pt;}
._16_c00162{width:8.474667pt;}
._1c_c00162{width:9.986667pt;}
._e_c00162{width:11.216000pt;}
._7_c00162{width:12.549333pt;}
._f_c00162{width:13.546667pt;}
._22_c00162{width:14.456000pt;}
._c_c00162{width:15.754667pt;}
._24_c00162{width:16.685333pt;}
._11_c00162{width:20.037333pt;}
._20_c00162{width:22.578667pt;}
._26_c00162{width:26.240000pt;}
._19_c00162{width:29.458667pt;}
._13_c00162{width:61.237333pt;}
._18_c00162{width:75.370667pt;}
._21_c00162{width:165.914667pt;}
._6_c00162{width:444.616000pt;}
._27_c00162{width:485.354667pt;}
.fs3_c00162{font-size:42.666667pt;}
.fs2_c00162{font-size:56.000000pt;}
.fs1_c00162{font-size:61.333333pt;}
.fs0_c00162{font-size:69.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y20_c00162{bottom:2.760000pt;}
.y1f_c00162{bottom:6.425217pt;}
.y1e_c00162{bottom:52.106667pt;}
.y1d_c00162{bottom:72.906667pt;}
.y1c_c00162{bottom:95.306667pt;}
.y1b_c00162{bottom:117.840000pt;}
.y1a_c00162{bottom:140.373333pt;}
.y19_c00162{bottom:162.640000pt;}
.y18_c00162{bottom:185.040000pt;}
.y17_c00162{bottom:207.306667pt;}
.y16_c00162{bottom:230.373333pt;}
.y15_c00162{bottom:252.240000pt;}
.y14_c00162{bottom:275.040000pt;}
.y13_c00162{bottom:297.040000pt;}
.y12_c00162{bottom:319.173333pt;}
.y11_c00162{bottom:341.440000pt;}
.y10_c00162{bottom:363.573333pt;}
.yf_c00162{bottom:385.840000pt;}
.ye_c00162{bottom:408.240000pt;}
.yd_c00162{bottom:429.573333pt;}
.yc_c00162{bottom:451.706667pt;}
.yb_c00162{bottom:473.040000pt;}
.ya_c00162{bottom:495.306667pt;}
.y9_c00162{bottom:517.706667pt;}
.y8_c00162{bottom:539.973333pt;}
.y7_c00162{bottom:561.840000pt;}
.y6_c00162{bottom:584.106667pt;}
.y5_c00162{bottom:606.506667pt;}
.y4_c00162{bottom:628.506667pt;}
.y3_c00162{bottom:650.640000pt;}
.y2_c00162{bottom:673.173333pt;}
.y1_c00162{bottom:695.306667pt;}
.h6_c00162{height:11.733399pt;}
.h7_c00162{height:38.937500pt;}
.h4_c00162{height:65.442667pt;}
.h5_c00162{height:77.654948pt;}
.h2_c00162{height:81.148438pt;}
.h3_c00162{height:87.783854pt;}
.h0_c00162{height:730.533333pt;}
.h1_c00162{height:730.666667pt;}
.w1_c00162{width:93.222667pt;}
.w0_c00162{width:492.000000pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:27.200000pt;}
.x3_c00162{left:28.400000pt;}
.x4_c00162{left:29.333333pt;}
.x5_c00162{left:30.266667pt;}
.x6_c00162{left:31.866667pt;}
.x7_c00162{left:33.066667pt;}
.x8_c00162{left:34.533333pt;}
.x1_c00162{left:165.600000pt;}
.xa_c00162{left:203.168213pt;}
.x9_c00162{left:246.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94c90a36c183a81a18e57ffd.woff2')format("woff");}.ff1_c00163{font-family:ff1_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:ff2_c00163;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.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_27a171744ad5268013a97007.woff2')format("woff");}.ff3_c00163{font-family:ff3_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:ff4_c00163;src:url('chunks/assets/font_ee6fb73a39c35ad16142cb6c.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.437000;font-style:normal;font-weight:normal;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_8441d81353ceb875922d5122.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;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_c00163;src:url('chunks/assets/font_7d122379d68d1eec37295ce9.woff2')format("woff");}.ff6_c00163{font-family:ff6_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:ff7_c00163;src:url('chunks/assets/font_1e4f13161aba8de7628319a1.woff2')format("woff");}.ff7_c00163{font-family:ff7_c00163;line-height:1.437000;font-style:normal;font-weight: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_c00163;src:url('chunks/assets/font_3de65b556525583a2ddff396.woff2')format("woff");}.ff8_c00163{font-family:ff8_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:ff9_c00163;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00163{font-family:ff9_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);}
.v0_c00163{vertical-align:0.000000px;}
.ls6_c00163{letter-spacing:0.000000px;}
.ls5_c00163{letter-spacing:3.000000px;}
.ls3_c00163{letter-spacing:6.300000px;}
.ls7_c00163{letter-spacing:9.000000px;}
.ls2_c00163{letter-spacing:9.900000px;}
.ls0_c00163{letter-spacing:10.200000px;}
.ls4_c00163{letter-spacing:21.000000px;}
.ls1_c00163{letter-spacing:376.371000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00163{word-spacing:-65.988000px;}
.ws0_c00163{word-spacing:-24.507000px;}
.ws1_c00163{word-spacing:-18.798000px;}
.ws3_c00163{word-spacing:0.000000px;}
._1e_c00163{margin-left:-29.373000px;}
._20_c00163{margin-left:-26.304000px;}
._1d_c00163{margin-left:-24.204000px;}
._16_c00163{margin-left:-20.655000px;}
._13_c00163{margin-left:-18.582000px;}
._17_c00163{margin-left:-17.316000px;}
._2_c00163{margin-left:-15.870000px;}
._11_c00163{margin-left:-14.046000px;}
._f_c00163{margin-left:-12.633000px;}
._14_c00163{margin-left:-11.316000px;}
._12_c00163{margin-left:-10.086000px;}
._10_c00163{margin-left:-8.868000px;}
._e_c00163{margin-left:-7.656000px;}
._0_c00163{margin-left:-6.210000px;}
._3_c00163{margin-left:-4.638000px;}
._6_c00163{margin-left:-2.967000px;}
._4_c00163{margin-left:-1.311000px;}
._b_c00163{width:1.311000px;}
._8_c00163{width:2.760000px;}
._7_c00163{width:4.071000px;}
._5_c00163{width:5.727000px;}
._1_c00163{width:7.383000px;}
._1a_c00163{width:8.472000px;}
._1c_c00163{width:9.585000px;}
._18_c00163{width:10.908000px;}
._15_c00163{width:12.177000px;}
._19_c00163{width:13.815000px;}
._d_c00163{width:15.438000px;}
._a_c00163{width:16.560000px;}
._1b_c00163{width:20.886000px;}
._c_c00163{width:23.046000px;}
._23_c00163{width:25.350000px;}
._1f_c00163{width:26.520000px;}
._9_c00163{width:27.669000px;}
._21_c00163{width:28.905000px;}
._22_c00163{width:33.189000px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs7_c00163{font-size:45.000000px;}
.fs8_c00163{font-size:48.000000px;}
.fs5_c00163{font-size:55.200000px;}
.fs3_c00163{font-size:63.000000px;}
.fs1_c00163{font-size:66.000000px;}
.fs0_c00163{font-size:69.000000px;}
.fs2_c00163{font-size:78.000000px;}
.fs4_c00163{font-size:81.000000px;}
.fs6_c00163{font-size:207.000000px;}
.y0_c00163{bottom:0.000000px;}
.y1d_c00163{bottom:3.105000px;}
.y1c_c00163{bottom:7.228355px;}
.y1b_c00163{bottom:72.435000px;}
.y1a_c00163{bottom:107.535000px;}
.y19_c00163{bottom:133.335000px;}
.y18_c00163{bottom:157.635000px;}
.y17_c00163{bottom:184.185000px;}
.y16_c00163{bottom:208.485000px;}
.y15_c00163{bottom:233.235000px;}
.y14_c00163{bottom:258.735000px;}
.y13_c00163{bottom:283.785000px;}
.y12_c00163{bottom:309.135000px;}
.y11_c00163{bottom:359.985000px;}
.y10_c00163{bottom:406.635000px;}
.yf_c00163{bottom:430.185000px;}
.ye_c00163{bottom:455.535000px;}
.yd_c00163{bottom:480.585000px;}
.yc_c00163{bottom:505.485000px;}
.yb_c00163{bottom:530.235000px;}
.ya_c00163{bottom:554.535000px;}
.y9_c00163{bottom:580.035000px;}
.y8_c00163{bottom:605.385000px;}
.y7_c00163{bottom:630.135000px;}
.y6_c00163{bottom:655.035000px;}
.y5_c00163{bottom:680.085000px;}
.y4_c00163{bottom:704.985000px;}
.y3_c00163{bottom:730.035000px;}
.y2_c00163{bottom:755.235000px;}
.y1_c00163{bottom:779.835000px;}
.h7_c00163{height:13.200074px;}
.h8_c00163{height:43.804688px;}
.h5_c00163{height:80.758301px;}
.h2_c00163{height:87.361816px;}
.h4_c00163{height:91.291992px;}
.h3_c00163{height:98.756836px;}
.h6_c00163{height:216.936000px;}
.h0_c00163{height:824.025000px;}
.h1_c00163{height:824.250000px;}
.w2_c00163{width:104.875500px;}
.w0_c00163{width:546.450000px;}
.w1_c00163{width:546.750000px;}
.x0_c00163{left:0.000000px;}
.xa_c00163{left:69.900000px;}
.x9_c00163{left:71.250000px;}
.x6_c00163{left:73.500000px;}
.x5_c00163{left:75.600000px;}
.x4_c00163{left:78.000000px;}
.x2_c00163{left:79.650000px;}
.xb_c00163{left:98.250000px;}
.x1_c00163{left:99.900000px;}
.x3_c00163{left:105.300000px;}
.xc_c00163{left:111.000000px;}
.x8_c00163{left:118.350000px;}
.xe_c00163{left:225.039230px;}
.x7_c00163{left:262.950000px;}
.xd_c00163{left:350.400000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls6_c00163{letter-spacing:0.000000pt;}
.ls5_c00163{letter-spacing:2.666667pt;}
.ls3_c00163{letter-spacing:5.600000pt;}
.ls7_c00163{letter-spacing:8.000000pt;}
.ls2_c00163{letter-spacing:8.800000pt;}
.ls0_c00163{letter-spacing:9.066667pt;}
.ls4_c00163{letter-spacing:18.666667pt;}
.ls1_c00163{letter-spacing:334.552000pt;}
.ws2_c00163{word-spacing:-58.656000pt;}
.ws0_c00163{word-spacing:-21.784000pt;}
.ws1_c00163{word-spacing:-16.709333pt;}
.ws3_c00163{word-spacing:0.000000pt;}
._1e_c00163{margin-left:-26.109333pt;}
._20_c00163{margin-left:-23.381333pt;}
._1d_c00163{margin-left:-21.514667pt;}
._16_c00163{margin-left:-18.360000pt;}
._13_c00163{margin-left:-16.517333pt;}
._17_c00163{margin-left:-15.392000pt;}
._2_c00163{margin-left:-14.106667pt;}
._11_c00163{margin-left:-12.485333pt;}
._f_c00163{margin-left:-11.229333pt;}
._14_c00163{margin-left:-10.058667pt;}
._12_c00163{margin-left:-8.965333pt;}
._10_c00163{margin-left:-7.882667pt;}
._e_c00163{margin-left:-6.805333pt;}
._0_c00163{margin-left:-5.520000pt;}
._3_c00163{margin-left:-4.122667pt;}
._6_c00163{margin-left:-2.637333pt;}
._4_c00163{margin-left:-1.165333pt;}
._b_c00163{width:1.165333pt;}
._8_c00163{width:2.453333pt;}
._7_c00163{width:3.618667pt;}
._5_c00163{width:5.090667pt;}
._1_c00163{width:6.562667pt;}
._1a_c00163{width:7.530667pt;}
._1c_c00163{width:8.520000pt;}
._18_c00163{width:9.696000pt;}
._15_c00163{width:10.824000pt;}
._19_c00163{width:12.280000pt;}
._d_c00163{width:13.722667pt;}
._a_c00163{width:14.720000pt;}
._1b_c00163{width:18.565333pt;}
._c_c00163{width:20.485333pt;}
._23_c00163{width:22.533333pt;}
._1f_c00163{width:23.573333pt;}
._9_c00163{width:24.594667pt;}
._21_c00163{width:25.693333pt;}
._22_c00163{width:29.501333pt;}
.fs7_c00163{font-size:40.000000pt;}
.fs8_c00163{font-size:42.666667pt;}
.fs5_c00163{font-size:49.066667pt;}
.fs3_c00163{font-size:56.000000pt;}
.fs1_c00163{font-size:58.666667pt;}
.fs0_c00163{font-size:61.333333pt;}
.fs2_c00163{font-size:69.333333pt;}
.fs4_c00163{font-size:72.000000pt;}
.fs6_c00163{font-size:184.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y1d_c00163{bottom:2.760000pt;}
.y1c_c00163{bottom:6.425204pt;}
.y1b_c00163{bottom:64.386667pt;}
.y1a_c00163{bottom:95.586667pt;}
.y19_c00163{bottom:118.520000pt;}
.y18_c00163{bottom:140.120000pt;}
.y17_c00163{bottom:163.720000pt;}
.y16_c00163{bottom:185.320000pt;}
.y15_c00163{bottom:207.320000pt;}
.y14_c00163{bottom:229.986667pt;}
.y13_c00163{bottom:252.253333pt;}
.y12_c00163{bottom:274.786667pt;}
.y11_c00163{bottom:319.986667pt;}
.y10_c00163{bottom:361.453333pt;}
.yf_c00163{bottom:382.386667pt;}
.ye_c00163{bottom:404.920000pt;}
.yd_c00163{bottom:427.186667pt;}
.yc_c00163{bottom:449.320000pt;}
.yb_c00163{bottom:471.320000pt;}
.ya_c00163{bottom:492.920000pt;}
.y9_c00163{bottom:515.586667pt;}
.y8_c00163{bottom:538.120000pt;}
.y7_c00163{bottom:560.120000pt;}
.y6_c00163{bottom:582.253333pt;}
.y5_c00163{bottom:604.520000pt;}
.y4_c00163{bottom:626.653333pt;}
.y3_c00163{bottom:648.920000pt;}
.y2_c00163{bottom:671.320000pt;}
.y1_c00163{bottom:693.186667pt;}
.h7_c00163{height:11.733399pt;}
.h8_c00163{height:38.937500pt;}
.h5_c00163{height:71.785156pt;}
.h2_c00163{height:77.654948pt;}
.h4_c00163{height:81.148438pt;}
.h3_c00163{height:87.783854pt;}
.h6_c00163{height:192.832000pt;}
.h0_c00163{height:732.466667pt;}
.h1_c00163{height:732.666667pt;}
.w2_c00163{width:93.222667pt;}
.w0_c00163{width:485.733333pt;}
.w1_c00163{width:486.000000pt;}
.x0_c00163{left:0.000000pt;}
.xa_c00163{left:62.133333pt;}
.x9_c00163{left:63.333333pt;}
.x6_c00163{left:65.333333pt;}
.x5_c00163{left:67.200000pt;}
.x4_c00163{left:69.333333pt;}
.x2_c00163{left:70.800000pt;}
.xb_c00163{left:87.333333pt;}
.x1_c00163{left:88.800000pt;}
.x3_c00163{left:93.600000pt;}
.xc_c00163{left:98.666667pt;}
.x8_c00163{left:105.200000pt;}
.xe_c00163{left:200.034871pt;}
.x7_c00163{left:233.733333pt;}
.xd_c00163{left:311.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_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_338954bee4d888826f1d8ef6.woff2')format("woff");}.ff1_c00164{font-family:ff1_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:ff2_c00164;src:url('chunks/assets/font_9eebbbc134c3a61c9aff7fb2.woff2')format("woff");}.ff2_c00164{font-family:ff2_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:ff3_c00164;src:url('chunks/assets/font_e5ab9588741c38858cc7ffb5.woff2')format("woff");}.ff3_c00164{font-family:ff3_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:ff4_c00164;src:url('chunks/assets/font_af66a587840ca42a7b0281d9.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00164{font-family:ff5_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:ff6_c00164;src:url('chunks/assets/font_97157442601e25275610a48b.woff2')format("woff");}.ff6_c00164{font-family:ff6_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:ff7_c00164;src:url('chunks/assets/font_3cb95693a8baa5803516d08b.woff2')format("woff");}.ff7_c00164{font-family:ff7_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:ff8_c00164;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00164{font-family:ff8_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;}
.m1_c00164{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_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;}
.ls1_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:3.000000px;}
.ls2_c00164{letter-spacing:9.000000px;}
.ls3_c00164{letter-spacing:21.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00164{word-spacing:-27.750000px;}
.ws0_c00164{word-spacing:-22.500000px;}
.ws2_c00164{word-spacing:-18.750000px;}
.ws3_c00164{word-spacing:0.000000px;}
._21_c00164{margin-left:-26.988000px;}
._1f_c00164{margin-left:-21.075000px;}
._14_c00164{margin-left:-19.875000px;}
._5_c00164{margin-left:-17.775000px;}
._11_c00164{margin-left:-16.050000px;}
._23_c00164{margin-left:-14.850000px;}
._20_c00164{margin-left:-13.848000px;}
._1d_c00164{margin-left:-12.375000px;}
._1e_c00164{margin-left:-10.875000px;}
._19_c00164{margin-left:-9.855000px;}
._1c_c00164{margin-left:-7.860000px;}
._a_c00164{margin-left:-6.450000px;}
._8_c00164{margin-left:-4.650000px;}
._4_c00164{margin-left:-3.375000px;}
._7_c00164{margin-left:-2.175000px;}
._3_c00164{margin-left:-1.050000px;}
._9_c00164{width:1.275000px;}
._1_c00164{width:2.550000px;}
._2_c00164{width:3.600000px;}
._0_c00164{width:5.100000px;}
._18_c00164{width:7.050000px;}
._b_c00164{width:8.925000px;}
._16_c00164{width:10.050000px;}
._12_c00164{width:11.175000px;}
._13_c00164{width:12.300000px;}
._d_c00164{width:13.650000px;}
._f_c00164{width:15.525000px;}
._c_c00164{width:17.025000px;}
._24_c00164{width:18.276000px;}
._15_c00164{width:21.450000px;}
._1b_c00164{width:23.739000px;}
._10_c00164{width:26.850000px;}
._e_c00164{width:28.275000px;}
._17_c00164{width:29.400000px;}
._25_c00164{width:31.725000px;}
._27_c00164{width:33.225000px;}
._6_c00164{width:34.950000px;}
._26_c00164{width:38.886000px;}
._22_c00164{width:40.518000px;}
._29_c00164{width:47.700000px;}
._1a_c00164{width:58.839000px;}
._28_c00164{width:62.625000px;}
._2a_c00164{width:124.236000px;}
._2b_c00164{width:382.233000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(128,128,128);}
.fc0_c00164{color:rgb(0,0,0);}
.fs4_c00164{font-size:48.000000px;}
.fs3_c00164{font-size:69.000000px;}
.fs1_c00164{font-size:72.000000px;}
.fs0_c00164{font-size:75.000000px;}
.fs2_c00164{font-size:78.000000px;}
.y0_c00164{bottom:0.000000px;}
.y1f_c00164{bottom:3.105000px;}
.y1e_c00164{bottom:7.228371px;}
.y1d_c00164{bottom:84.165000px;}
.y1c_c00164{bottom:109.365000px;}
.y1b_c00164{bottom:134.715000px;}
.y1a_c00164{bottom:159.315000px;}
.y19_c00164{bottom:184.365000px;}
.y18_c00164{bottom:209.565000px;}
.y17_c00164{bottom:234.915000px;}
.y16_c00164{bottom:259.965000px;}
.y15_c00164{bottom:284.865000px;}
.y14_c00164{bottom:309.915000px;}
.y13_c00164{bottom:335.115000px;}
.y12_c00164{bottom:359.565000px;}
.y11_c00164{bottom:384.465000px;}
.y10_c00164{bottom:409.065000px;}
.yf_c00164{bottom:434.115000px;}
.ye_c00164{bottom:459.315000px;}
.yd_c00164{bottom:484.365000px;}
.yc_c00164{bottom:508.665000px;}
.yb_c00164{bottom:532.665000px;}
.ya_c00164{bottom:556.965000px;}
.y9_c00164{bottom:582.315000px;}
.y8_c00164{bottom:607.215000px;}
.y7_c00164{bottom:632.265000px;}
.y6_c00164{bottom:657.765000px;}
.y5_c00164{bottom:682.815000px;}
.y4_c00164{bottom:707.865000px;}
.y3_c00164{bottom:733.065000px;}
.y2_c00164{bottom:758.115000px;}
.y1_c00164{bottom:782.715000px;}
.h6_c00164{height:13.200074px;}
.h7_c00164{height:43.804688px;}
.h2_c00164{height:78.600000px;}
.h4_c00164{height:78.609375px;}
.h3_c00164{height:84.269531px;}
.h5_c00164{height:87.361816px;}
.h1_c00164{height:831.000000px;}
.h0_c00164{height:831.075000px;}
.w1_c00164{width:104.875500px;}
.w0_c00164{width:560.250000px;}
.x0_c00164{left:0.000000px;}
.xa_c00164{left:38.100000px;}
.x7_c00164{left:39.150000px;}
.x2_c00164{left:40.500000px;}
.x9_c00164{left:41.550000px;}
.x5_c00164{left:42.750000px;}
.x6_c00164{left:43.800000px;}
.x8_c00164{left:66.750000px;}
.x3_c00164{left:83.700000px;}
.x4_c00164{left:91.350000px;}
.x1_c00164{left:200.100000px;}
.xc_c00164{left:231.939240px;}
.xb_c00164{left:294.300000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls1_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:2.666667pt;}
.ls2_c00164{letter-spacing:8.000000pt;}
.ls3_c00164{letter-spacing:18.666667pt;}
.ws1_c00164{word-spacing:-24.666667pt;}
.ws0_c00164{word-spacing:-20.000000pt;}
.ws2_c00164{word-spacing:-16.666667pt;}
.ws3_c00164{word-spacing:0.000000pt;}
._21_c00164{margin-left:-23.989333pt;}
._1f_c00164{margin-left:-18.733333pt;}
._14_c00164{margin-left:-17.666667pt;}
._5_c00164{margin-left:-15.800000pt;}
._11_c00164{margin-left:-14.266667pt;}
._23_c00164{margin-left:-13.200000pt;}
._20_c00164{margin-left:-12.309333pt;}
._1d_c00164{margin-left:-11.000000pt;}
._1e_c00164{margin-left:-9.666667pt;}
._19_c00164{margin-left:-8.760000pt;}
._1c_c00164{margin-left:-6.986667pt;}
._a_c00164{margin-left:-5.733333pt;}
._8_c00164{margin-left:-4.133333pt;}
._4_c00164{margin-left:-3.000000pt;}
._7_c00164{margin-left:-1.933333pt;}
._3_c00164{margin-left:-0.933333pt;}
._9_c00164{width:1.133333pt;}
._1_c00164{width:2.266667pt;}
._2_c00164{width:3.200000pt;}
._0_c00164{width:4.533333pt;}
._18_c00164{width:6.266667pt;}
._b_c00164{width:7.933333pt;}
._16_c00164{width:8.933333pt;}
._12_c00164{width:9.933333pt;}
._13_c00164{width:10.933333pt;}
._d_c00164{width:12.133333pt;}
._f_c00164{width:13.800000pt;}
._c_c00164{width:15.133333pt;}
._24_c00164{width:16.245333pt;}
._15_c00164{width:19.066667pt;}
._1b_c00164{width:21.101333pt;}
._10_c00164{width:23.866667pt;}
._e_c00164{width:25.133333pt;}
._17_c00164{width:26.133333pt;}
._25_c00164{width:28.200000pt;}
._27_c00164{width:29.533333pt;}
._6_c00164{width:31.066667pt;}
._26_c00164{width:34.565333pt;}
._22_c00164{width:36.016000pt;}
._29_c00164{width:42.400000pt;}
._1a_c00164{width:52.301333pt;}
._28_c00164{width:55.666667pt;}
._2a_c00164{width:110.432000pt;}
._2b_c00164{width:339.762667pt;}
.fs4_c00164{font-size:42.666667pt;}
.fs3_c00164{font-size:61.333333pt;}
.fs1_c00164{font-size:64.000000pt;}
.fs0_c00164{font-size:66.666667pt;}
.fs2_c00164{font-size:69.333333pt;}
.y0_c00164{bottom:0.000000pt;}
.y1f_c00164{bottom:2.760000pt;}
.y1e_c00164{bottom:6.425219pt;}
.y1d_c00164{bottom:74.813333pt;}
.y1c_c00164{bottom:97.213333pt;}
.y1b_c00164{bottom:119.746667pt;}
.y1a_c00164{bottom:141.613333pt;}
.y19_c00164{bottom:163.880000pt;}
.y18_c00164{bottom:186.280000pt;}
.y17_c00164{bottom:208.813333pt;}
.y16_c00164{bottom:231.080000pt;}
.y15_c00164{bottom:253.213333pt;}
.y14_c00164{bottom:275.480000pt;}
.y13_c00164{bottom:297.880000pt;}
.y12_c00164{bottom:319.613333pt;}
.y11_c00164{bottom:341.746667pt;}
.y10_c00164{bottom:363.613333pt;}
.yf_c00164{bottom:385.880000pt;}
.ye_c00164{bottom:408.280000pt;}
.yd_c00164{bottom:430.546667pt;}
.yc_c00164{bottom:452.146667pt;}
.yb_c00164{bottom:473.480000pt;}
.ya_c00164{bottom:495.080000pt;}
.y9_c00164{bottom:517.613333pt;}
.y8_c00164{bottom:539.746667pt;}
.y7_c00164{bottom:562.013333pt;}
.y6_c00164{bottom:584.680000pt;}
.y5_c00164{bottom:606.946667pt;}
.y4_c00164{bottom:629.213333pt;}
.y3_c00164{bottom:651.613333pt;}
.y2_c00164{bottom:673.880000pt;}
.y1_c00164{bottom:695.746667pt;}
.h6_c00164{height:11.733399pt;}
.h7_c00164{height:38.937500pt;}
.h2_c00164{height:69.866667pt;}
.h4_c00164{height:69.875000pt;}
.h3_c00164{height:74.906250pt;}
.h5_c00164{height:77.654948pt;}
.h1_c00164{height:738.666667pt;}
.h0_c00164{height:738.733333pt;}
.w1_c00164{width:93.222667pt;}
.w0_c00164{width:498.000000pt;}
.x0_c00164{left:0.000000pt;}
.xa_c00164{left:33.866667pt;}
.x7_c00164{left:34.800000pt;}
.x2_c00164{left:36.000000pt;}
.x9_c00164{left:36.933333pt;}
.x5_c00164{left:38.000000pt;}
.x6_c00164{left:38.933333pt;}
.x8_c00164{left:59.333333pt;}
.x3_c00164{left:74.400000pt;}
.x4_c00164{left:81.200000pt;}
.x1_c00164{left:177.866667pt;}
.xc_c00164{left:206.168213pt;}
.xb_c00164{left:261.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_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_18bd2e6d67b6cca3ba8748c6.woff2')format("woff");}.ff1_c00165{font-family:ff1_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:ff2_c00165;src:url('chunks/assets/font_f1817fdcab4b3ab604300590.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_876e213e9ebcbe19ee15efef.woff2')format("woff");}.ff3_c00165{font-family:ff3_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:ff4_c00165;src:url('chunks/assets/font_b83cc0e677a1bf69f6e6d300.woff2')format("woff");}.ff4_c00165{font-family:ff4_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:ff5_c00165;src:url('chunks/assets/font_2aca5bd86b81753655bdeef2.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00165{font-family:ff6_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:ff7_c00165;src:url('chunks/assets/font_389a6159369ea8a5367951cc.woff2')format("woff");}.ff7_c00165{font-family:ff7_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:ff8_c00165;src:url('chunks/assets/font_ecc69b4468f58ddd7b679e43.woff2')format("woff");}.ff8_c00165{font-family:ff8_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:ff9_c00165;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00165{font-family:ff9_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;}
.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;}
.ls6_c00165{letter-spacing:0.000000px;}
.ls1_c00165{letter-spacing:1.065000px;}
.ls5_c00165{letter-spacing:3.000000px;}
.ls0_c00165{letter-spacing:3.171000px;}
.ls3_c00165{letter-spacing:3.240000px;}
.ls7_c00165{letter-spacing:9.000000px;}
.ls2_c00165{letter-spacing:9.291000px;}
.ls4_c00165{letter-spacing:91.755000px;}
.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;}
}
.ws3_c00165{word-spacing:-44.988000px;}
.ws4_c00165{word-spacing:-34.500000px;}
.ws1_c00165{word-spacing:-25.629000px;}
.ws2_c00165{word-spacing:-17.694000px;}
.ws0_c00165{word-spacing:-16.629000px;}
.ws5_c00165{word-spacing:0.000000px;}
._2f_c00165{margin-left:-46.893000px;}
._20_c00165{margin-left:-40.803000px;}
._22_c00165{margin-left:-38.367000px;}
._37_c00165{margin-left:-29.952000px;}
._2e_c00165{margin-left:-26.970000px;}
._34_c00165{margin-left:-25.647000px;}
._2d_c00165{margin-left:-24.621000px;}
._2a_c00165{margin-left:-23.124000px;}
._2b_c00165{margin-left:-20.508000px;}
._24_c00165{margin-left:-19.314000px;}
._1d_c00165{margin-left:-17.244000px;}
._36_c00165{margin-left:-16.149000px;}
._18_c00165{margin-left:-15.081000px;}
._39_c00165{margin-left:-13.800000px;}
._12_c00165{margin-left:-12.765000px;}
._14_c00165{margin-left:-11.247000px;}
._c_c00165{margin-left:-9.285000px;}
._5_c00165{margin-left:-7.590000px;}
._13_c00165{margin-left:-6.513000px;}
._4_c00165{margin-left:-5.175000px;}
._6_c00165{margin-left:-3.933000px;}
._d_c00165{margin-left:-2.883000px;}
._2_c00165{margin-left:-1.863000px;}
._9_c00165{width:1.695000px;}
._7_c00165{width:2.730000px;}
._8_c00165{width:4.032000px;}
._3_c00165{width:5.865000px;}
._15_c00165{width:7.236000px;}
._10_c00165{width:8.244000px;}
._16_c00165{width:10.056000px;}
._1e_c00165{width:11.532000px;}
._17_c00165{width:12.678000px;}
._a_c00165{width:14.886000px;}
._27_c00165{width:17.601000px;}
._b_c00165{width:20.010000px;}
._35_c00165{width:22.020000px;}
._11_c00165{width:23.361000px;}
._26_c00165{width:25.998000px;}
._f_c00165{width:28.704000px;}
._2c_c00165{width:40.578000px;}
._29_c00165{width:43.365000px;}
._1b_c00165{width:45.195000px;}
._1a_c00165{width:52.893000px;}
._1c_c00165{width:54.537000px;}
._0_c00165{width:56.097000px;}
._e_c00165{width:74.202000px;}
._21_c00165{width:77.256000px;}
._25_c00165{width:84.333000px;}
._28_c00165{width:89.181000px;}
._32_c00165{width:90.945000px;}
._31_c00165{width:101.709000px;}
._33_c00165{width:112.260000px;}
._23_c00165{width:144.072000px;}
._1f_c00165{width:155.457000px;}
._38_c00165{width:285.522000px;}
._1_c00165{width:366.720000px;}
._30_c00165{width:413.166000px;}
._19_c00165{width:504.030000px;}
.fc2_c00165{color:transparent;}
.fc1_c00165{color:rgb(128,128,128);}
.fc0_c00165{color:rgb(0,0,0);}
.fs3_c00165{font-size:36.000000px;}
.fs4_c00165{font-size:45.000000px;}
.fs6_c00165{font-size:48.000000px;}
.fs1_c00165{font-size:55.200000px;}
.fs2_c00165{font-size:66.000000px;}
.fs0_c00165{font-size:69.000000px;}
.fs5_c00165{font-size:87.000000px;}
.y0_c00165{bottom:0.000000px;}
.y20_c00165{bottom:3.105000px;}
.y1f_c00165{bottom:7.228369px;}
.y1e_c00165{bottom:72.870000px;}
.y1d_c00165{bottom:110.370000px;}
.y1c_c00165{bottom:135.720000px;}
.y1b_c00165{bottom:160.920000px;}
.y1a_c00165{bottom:180.120000px;}
.y19_c00165{bottom:198.420000px;}
.y18_c00165{bottom:223.770000px;}
.y17_c00165{bottom:248.670000px;}
.y16_c00165{bottom:274.020000px;}
.y15_c00165{bottom:311.520000px;}
.y14_c00165{bottom:336.120000px;}
.y13_c00165{bottom:360.120000px;}
.y12_c00165{bottom:393.420000px;}
.y11_c00165{bottom:406.320000px;}
.y10_c00165{bottom:419.070000px;}
.yf_c00165{bottom:443.820000px;}
.ye_c00165{bottom:468.120000px;}
.yd_c00165{bottom:494.370000px;}
.yc_c00165{bottom:519.120000px;}
.yb_c00165{bottom:542.370000px;}
.ya_c00165{bottom:567.570000px;}
.y9_c00165{bottom:591.870000px;}
.y8_c00165{bottom:616.920000px;}
.y7_c00165{bottom:642.870000px;}
.y6_c00165{bottom:668.520000px;}
.y5_c00165{bottom:693.270000px;}
.y4_c00165{bottom:718.170000px;}
.y3_c00165{bottom:743.820000px;}
.y2_c00165{bottom:769.170000px;}
.y1_c00165{bottom:794.070000px;}
.h7_c00165{height:13.200073px;}
.h8_c00165{height:43.804688px;}
.h6_c00165{height:44.143066px;}
.h3_c00165{height:77.247070px;}
.h5_c00165{height:80.758301px;}
.h2_c00165{height:87.361816px;}
.h4_c00165{height:110.151855px;}
.h0_c00165{height:842.100000px;}
.h1_c00165{height:842.250000px;}
.w2_c00165{width:104.875500px;}
.w0_c00165{width:558.600000px;}
.w1_c00165{width:558.750000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:89.100000px;}
.x3_c00165{left:91.050000px;}
.x4_c00165{left:92.250000px;}
.x6_c00165{left:93.750000px;}
.x7_c00165{left:98.100000px;}
.x1_c00165{left:105.000000px;}
.x5_c00165{left:141.600000px;}
.x8_c00165{left:171.150000px;}
.xa_c00165{left:231.114258px;}
.x9_c00165{left:511.650000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls6_c00165{letter-spacing:0.000000pt;}
.ls1_c00165{letter-spacing:0.946667pt;}
.ls5_c00165{letter-spacing:2.666667pt;}
.ls0_c00165{letter-spacing:2.818667pt;}
.ls3_c00165{letter-spacing:2.880000pt;}
.ls7_c00165{letter-spacing:8.000000pt;}
.ls2_c00165{letter-spacing:8.258667pt;}
.ls4_c00165{letter-spacing:81.560000pt;}
.ws3_c00165{word-spacing:-39.989333pt;}
.ws4_c00165{word-spacing:-30.666667pt;}
.ws1_c00165{word-spacing:-22.781333pt;}
.ws2_c00165{word-spacing:-15.728000pt;}
.ws0_c00165{word-spacing:-14.781333pt;}
.ws5_c00165{word-spacing:0.000000pt;}
._2f_c00165{margin-left:-41.682667pt;}
._20_c00165{margin-left:-36.269333pt;}
._22_c00165{margin-left:-34.104000pt;}
._37_c00165{margin-left:-26.624000pt;}
._2e_c00165{margin-left:-23.973333pt;}
._34_c00165{margin-left:-22.797333pt;}
._2d_c00165{margin-left:-21.885333pt;}
._2a_c00165{margin-left:-20.554667pt;}
._2b_c00165{margin-left:-18.229333pt;}
._24_c00165{margin-left:-17.168000pt;}
._1d_c00165{margin-left:-15.328000pt;}
._36_c00165{margin-left:-14.354667pt;}
._18_c00165{margin-left:-13.405333pt;}
._39_c00165{margin-left:-12.266667pt;}
._12_c00165{margin-left:-11.346667pt;}
._14_c00165{margin-left:-9.997333pt;}
._c_c00165{margin-left:-8.253333pt;}
._5_c00165{margin-left:-6.746667pt;}
._13_c00165{margin-left:-5.789333pt;}
._4_c00165{margin-left:-4.600000pt;}
._6_c00165{margin-left:-3.496000pt;}
._d_c00165{margin-left:-2.562667pt;}
._2_c00165{margin-left:-1.656000pt;}
._9_c00165{width:1.506667pt;}
._7_c00165{width:2.426667pt;}
._8_c00165{width:3.584000pt;}
._3_c00165{width:5.213333pt;}
._15_c00165{width:6.432000pt;}
._10_c00165{width:7.328000pt;}
._16_c00165{width:8.938667pt;}
._1e_c00165{width:10.250667pt;}
._17_c00165{width:11.269333pt;}
._a_c00165{width:13.232000pt;}
._27_c00165{width:15.645333pt;}
._b_c00165{width:17.786667pt;}
._35_c00165{width:19.573333pt;}
._11_c00165{width:20.765333pt;}
._26_c00165{width:23.109333pt;}
._f_c00165{width:25.514667pt;}
._2c_c00165{width:36.069333pt;}
._29_c00165{width:38.546667pt;}
._1b_c00165{width:40.173333pt;}
._1a_c00165{width:47.016000pt;}
._1c_c00165{width:48.477333pt;}
._0_c00165{width:49.864000pt;}
._e_c00165{width:65.957333pt;}
._21_c00165{width:68.672000pt;}
._25_c00165{width:74.962667pt;}
._28_c00165{width:79.272000pt;}
._32_c00165{width:80.840000pt;}
._31_c00165{width:90.408000pt;}
._33_c00165{width:99.786667pt;}
._23_c00165{width:128.064000pt;}
._1f_c00165{width:138.184000pt;}
._38_c00165{width:253.797333pt;}
._1_c00165{width:325.973333pt;}
._30_c00165{width:367.258667pt;}
._19_c00165{width:448.026667pt;}
.fs3_c00165{font-size:32.000000pt;}
.fs4_c00165{font-size:40.000000pt;}
.fs6_c00165{font-size:42.666667pt;}
.fs1_c00165{font-size:49.066667pt;}
.fs2_c00165{font-size:58.666667pt;}
.fs0_c00165{font-size:61.333333pt;}
.fs5_c00165{font-size:77.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.y20_c00165{bottom:2.760000pt;}
.y1f_c00165{bottom:6.425217pt;}
.y1e_c00165{bottom:64.773333pt;}
.y1d_c00165{bottom:98.106667pt;}
.y1c_c00165{bottom:120.640000pt;}
.y1b_c00165{bottom:143.040000pt;}
.y1a_c00165{bottom:160.106667pt;}
.y19_c00165{bottom:176.373333pt;}
.y18_c00165{bottom:198.906667pt;}
.y17_c00165{bottom:221.040000pt;}
.y16_c00165{bottom:243.573333pt;}
.y15_c00165{bottom:276.906667pt;}
.y14_c00165{bottom:298.773333pt;}
.y13_c00165{bottom:320.106667pt;}
.y12_c00165{bottom:349.706667pt;}
.y11_c00165{bottom:361.173333pt;}
.y10_c00165{bottom:372.506667pt;}
.yf_c00165{bottom:394.506667pt;}
.ye_c00165{bottom:416.106667pt;}
.yd_c00165{bottom:439.440000pt;}
.yc_c00165{bottom:461.440000pt;}
.yb_c00165{bottom:482.106667pt;}
.ya_c00165{bottom:504.506667pt;}
.y9_c00165{bottom:526.106667pt;}
.y8_c00165{bottom:548.373333pt;}
.y7_c00165{bottom:571.440000pt;}
.y6_c00165{bottom:594.240000pt;}
.y5_c00165{bottom:616.240000pt;}
.y4_c00165{bottom:638.373333pt;}
.y3_c00165{bottom:661.173333pt;}
.y2_c00165{bottom:683.706667pt;}
.y1_c00165{bottom:705.840000pt;}
.h7_c00165{height:11.733399pt;}
.h8_c00165{height:38.937500pt;}
.h6_c00165{height:39.238281pt;}
.h3_c00165{height:68.664062pt;}
.h5_c00165{height:71.785156pt;}
.h2_c00165{height:77.654948pt;}
.h4_c00165{height:97.912760pt;}
.h0_c00165{height:748.533333pt;}
.h1_c00165{height:748.666667pt;}
.w2_c00165{width:93.222667pt;}
.w0_c00165{width:496.533333pt;}
.w1_c00165{width:496.666667pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:79.200000pt;}
.x3_c00165{left:80.933333pt;}
.x4_c00165{left:82.000000pt;}
.x6_c00165{left:83.333333pt;}
.x7_c00165{left:87.200000pt;}
.x1_c00165{left:93.333333pt;}
.x5_c00165{left:125.866667pt;}
.x8_c00165{left:152.133333pt;}
.xa_c00165{left:205.434896pt;}
.x9_c00165{left:454.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_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_f31a909a21e3e8ad12338948.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_da3753623d31efc69bb6588f.woff2')format("woff");}.ff2_c00166{font-family:ff2_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:ff3_c00166;src:url('chunks/assets/font_8af95d3ef847e7f0cc18c56d.woff2')format("woff");}.ff3_c00166{font-family:ff3_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:ff4_c00166;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00166{font-family:ff4_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:ff5_c00166;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00166{font-family:ff5_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);}
.v0_c00166{vertical-align:0.000000px;}
.ls3_c00166{letter-spacing:-3.000000px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls1_c00166{letter-spacing:3.000000px;}
.ls0_c00166{letter-spacing:94.971000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00166{word-spacing:-19.629000px;}
.ws0_c00166{word-spacing:-16.629000px;}
.ws2_c00166{word-spacing:0.000000px;}
._9_c00166{margin-left:-26.082000px;}
._1c_c00166{margin-left:-21.459000px;}
._23_c00166{margin-left:-19.182000px;}
._22_c00166{margin-left:-16.599000px;}
._1a_c00166{margin-left:-15.594000px;}
._19_c00166{margin-left:-13.938000px;}
._14_c00166{margin-left:-11.868000px;}
._b_c00166{margin-left:-9.798000px;}
._15_c00166{margin-left:-7.866000px;}
._16_c00166{margin-left:-6.141000px;}
._a_c00166{margin-left:-5.106000px;}
._5_c00166{margin-left:-4.071000px;}
._1_c00166{margin-left:-2.277000px;}
._6_c00166{margin-left:-1.173000px;}
._0_c00166{width:1.518000px;}
._c_c00166{width:3.243000px;}
._3_c00166{width:4.830000px;}
._4_c00166{width:5.865000px;}
._10_c00166{width:7.038000px;}
._e_c00166{width:8.142000px;}
._17_c00166{width:10.143000px;}
._1b_c00166{width:12.213000px;}
._7_c00166{width:13.593000px;}
._13_c00166{width:14.664000px;}
._f_c00166{width:15.870000px;}
._11_c00166{width:17.043000px;}
._18_c00166{width:18.147000px;}
._8_c00166{width:20.010000px;}
._d_c00166{width:22.425000px;}
._1e_c00166{width:29.220000px;}
._1f_c00166{width:32.430000px;}
._21_c00166{width:35.328000px;}
._12_c00166{width:39.951000px;}
._20_c00166{width:46.662000px;}
._1d_c00166{width:81.678000px;}
._25_c00166{width:357.822000px;}
._2_c00166{width:468.429000px;}
._24_c00166{width:783.771000px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(128,128,128);}
.fc0_c00166{color:rgb(0,0,0);}
.fs2_c00166{font-size:48.000000px;}
.fs1_c00166{font-size:54.000000px;}
.fs0_c00166{font-size:69.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1f_c00166{bottom:3.105000px;}
.y1e_c00166{bottom:7.228357px;}
.y1d_c00166{bottom:64.530000px;}
.y1c_c00166{bottom:84.480000px;}
.y1b_c00166{bottom:109.680000px;}
.y1a_c00166{bottom:133.380000px;}
.y19_c00166{bottom:158.280000px;}
.y18_c00166{bottom:183.330000px;}
.y17_c00166{bottom:209.580000px;}
.y16_c00166{bottom:233.880000px;}
.y15_c00166{bottom:258.630000px;}
.y14_c00166{bottom:283.230000px;}
.y13_c00166{bottom:307.830000px;}
.y12_c00166{bottom:332.880000px;}
.y11_c00166{bottom:357.780000px;}
.y10_c00166{bottom:382.830000px;}
.yf_c00166{bottom:407.430000px;}
.ye_c00166{bottom:432.630000px;}
.yd_c00166{bottom:457.980000px;}
.yc_c00166{bottom:482.280000px;}
.yb_c00166{bottom:505.980000px;}
.ya_c00166{bottom:531.180000px;}
.y9_c00166{bottom:555.930000px;}
.y8_c00166{bottom:580.830000px;}
.y7_c00166{bottom:605.880000px;}
.y6_c00166{bottom:629.880000px;}
.y5_c00166{bottom:655.380000px;}
.y4_c00166{bottom:679.830000px;}
.y3_c00166{bottom:728.730000px;}
.y2_c00166{bottom:754.080000px;}
.y1_c00166{bottom:778.680000px;}
.h4_c00166{height:13.200074px;}
.h5_c00166{height:43.804688px;}
.h3_c00166{height:80.758301px;}
.h2_c00166{height:87.361816px;}
.h1_c00166{height:816.750000px;}
.h0_c00166{height:817.050000px;}
.w2_c00166{width:104.875500px;}
.w0_c00166{width:550.275000px;}
.w1_c00166{width:550.500000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:28.950000px;}
.x3_c00166{left:30.150000px;}
.x7_c00166{left:31.650000px;}
.x4_c00166{left:33.750000px;}
.xd_c00166{left:35.400000px;}
.x8_c00166{left:36.750000px;}
.x5_c00166{left:55.350000px;}
.x9_c00166{left:58.350000px;}
.xa_c00166{left:59.700000px;}
.xb_c00166{left:60.750000px;}
.x6_c00166{left:73.200000px;}
.xc_c00166{left:78.600000px;}
.xe_c00166{left:145.500000px;}
.x1_c00166{left:196.050000px;}
.xf_c00166{left:226.951767px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls3_c00166{letter-spacing:-2.666667pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls1_c00166{letter-spacing:2.666667pt;}
.ls0_c00166{letter-spacing:84.418667pt;}
.ws1_c00166{word-spacing:-17.448000pt;}
.ws0_c00166{word-spacing:-14.781333pt;}
.ws2_c00166{word-spacing:0.000000pt;}
._9_c00166{margin-left:-23.184000pt;}
._1c_c00166{margin-left:-19.074667pt;}
._23_c00166{margin-left:-17.050667pt;}
._22_c00166{margin-left:-14.754667pt;}
._1a_c00166{margin-left:-13.861333pt;}
._19_c00166{margin-left:-12.389333pt;}
._14_c00166{margin-left:-10.549333pt;}
._b_c00166{margin-left:-8.709333pt;}
._15_c00166{margin-left:-6.992000pt;}
._16_c00166{margin-left:-5.458667pt;}
._a_c00166{margin-left:-4.538667pt;}
._5_c00166{margin-left:-3.618667pt;}
._1_c00166{margin-left:-2.024000pt;}
._6_c00166{margin-left:-1.042667pt;}
._0_c00166{width:1.349333pt;}
._c_c00166{width:2.882667pt;}
._3_c00166{width:4.293333pt;}
._4_c00166{width:5.213333pt;}
._10_c00166{width:6.256000pt;}
._e_c00166{width:7.237333pt;}
._17_c00166{width:9.016000pt;}
._1b_c00166{width:10.856000pt;}
._7_c00166{width:12.082667pt;}
._13_c00166{width:13.034667pt;}
._f_c00166{width:14.106667pt;}
._11_c00166{width:15.149333pt;}
._18_c00166{width:16.130667pt;}
._8_c00166{width:17.786667pt;}
._d_c00166{width:19.933333pt;}
._1e_c00166{width:25.973333pt;}
._1f_c00166{width:28.826667pt;}
._21_c00166{width:31.402667pt;}
._12_c00166{width:35.512000pt;}
._20_c00166{width:41.477333pt;}
._1d_c00166{width:72.602667pt;}
._25_c00166{width:318.064000pt;}
._2_c00166{width:416.381333pt;}
._24_c00166{width:696.685333pt;}
.fs2_c00166{font-size:42.666667pt;}
.fs1_c00166{font-size:48.000000pt;}
.fs0_c00166{font-size:61.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y1f_c00166{bottom:2.760000pt;}
.y1e_c00166{bottom:6.425206pt;}
.y1d_c00166{bottom:57.360000pt;}
.y1c_c00166{bottom:75.093333pt;}
.y1b_c00166{bottom:97.493333pt;}
.y1a_c00166{bottom:118.560000pt;}
.y19_c00166{bottom:140.693333pt;}
.y18_c00166{bottom:162.960000pt;}
.y17_c00166{bottom:186.293333pt;}
.y16_c00166{bottom:207.893333pt;}
.y15_c00166{bottom:229.893333pt;}
.y14_c00166{bottom:251.760000pt;}
.y13_c00166{bottom:273.626667pt;}
.y12_c00166{bottom:295.893333pt;}
.y11_c00166{bottom:318.026667pt;}
.y10_c00166{bottom:340.293333pt;}
.yf_c00166{bottom:362.160000pt;}
.ye_c00166{bottom:384.560000pt;}
.yd_c00166{bottom:407.093333pt;}
.yc_c00166{bottom:428.693333pt;}
.yb_c00166{bottom:449.760000pt;}
.ya_c00166{bottom:472.160000pt;}
.y9_c00166{bottom:494.160000pt;}
.y8_c00166{bottom:516.293333pt;}
.y7_c00166{bottom:538.560000pt;}
.y6_c00166{bottom:559.893333pt;}
.y5_c00166{bottom:582.560000pt;}
.y4_c00166{bottom:604.293333pt;}
.y3_c00166{bottom:647.760000pt;}
.y2_c00166{bottom:670.293333pt;}
.y1_c00166{bottom:692.160000pt;}
.h4_c00166{height:11.733399pt;}
.h5_c00166{height:38.937500pt;}
.h3_c00166{height:71.785156pt;}
.h2_c00166{height:77.654948pt;}
.h1_c00166{height:726.000000pt;}
.h0_c00166{height:726.266667pt;}
.w2_c00166{width:93.222667pt;}
.w0_c00166{width:489.133333pt;}
.w1_c00166{width:489.333333pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:25.733333pt;}
.x3_c00166{left:26.800000pt;}
.x7_c00166{left:28.133333pt;}
.x4_c00166{left:30.000000pt;}
.xd_c00166{left:31.466667pt;}
.x8_c00166{left:32.666667pt;}
.x5_c00166{left:49.200000pt;}
.x9_c00166{left:51.866667pt;}
.xa_c00166{left:53.066667pt;}
.xb_c00166{left:54.000000pt;}
.x6_c00166{left:65.066667pt;}
.xc_c00166{left:69.866667pt;}
.xe_c00166{left:129.333333pt;}
.x1_c00166{left:174.266667pt;}
.xf_c00166{left:201.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_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_554938475177107e3c7d6c4b.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.311035;font-style:normal;font-weight:normal;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_b5e91f40e9c9c86d2132fd84.woff2')format("woff");}.ff2_c00167{font-family:ff2_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:ff3_c00167;src:url('chunks/assets/font_3ad97006c5c133ed2597109c.woff2')format("woff");}.ff3_c00167{font-family:ff3_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:ff4_c00167;src:url('chunks/assets/font_925b7fb1d90968a190b0ab80.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00167{font-family:ff5_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:ff6_c00167;src:url('chunks/assets/font_eeeb48b2fbaa00d392f97faa.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00167;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00167{font-family:ff7_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;}
.ls5_c00167{letter-spacing:0.000000px;}
.ls1_c00167{letter-spacing:0.345600px;}
.ls2_c00167{letter-spacing:3.000000px;}
.ls4_c00167{letter-spacing:6.000000px;}
.ls6_c00167{letter-spacing:9.000000px;}
.ls3_c00167{letter-spacing:36.171000px;}
.ls0_c00167{letter-spacing:67.371000px;}
.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;}
}
.ws1_c00167{word-spacing:-25.629000px;}
.ws0_c00167{word-spacing:-22.500000px;}
.ws3_c00167{word-spacing:-20.250000px;}
.ws4_c00167{word-spacing:-19.182000px;}
.ws2_c00167{word-spacing:-16.629000px;}
.ws5_c00167{word-spacing:0.000000px;}
._17_c00167{margin-left:-22.701000px;}
._2d_c00167{margin-left:-20.526000px;}
._2c_c00167{margin-left:-19.458000px;}
._28_c00167{margin-left:-18.240000px;}
._10_c00167{margin-left:-16.569000px;}
._e_c00167{margin-left:-14.910000px;}
._9_c00167{margin-left:-13.869000px;}
._12_c00167{margin-left:-11.799000px;}
._11_c00167{margin-left:-10.419000px;}
._13_c00167{margin-left:-9.177000px;}
._c_c00167{margin-left:-8.073000px;}
._a_c00167{margin-left:-6.348000px;}
._8_c00167{margin-left:-5.037000px;}
._d_c00167{margin-left:-3.657000px;}
._1f_c00167{margin-left:-2.622000px;}
._6_c00167{margin-left:-1.587000px;}
._7_c00167{width:1.104000px;}
._3_c00167{width:2.967000px;}
._4_c00167{width:4.278000px;}
._0_c00167{width:5.940000px;}
._25_c00167{width:7.047000px;}
._1_c00167{width:8.082000px;}
._15_c00167{width:9.447000px;}
._1a_c00167{width:11.442000px;}
._22_c00167{width:12.696000px;}
._2f_c00167{width:13.731000px;}
._18_c00167{width:15.378000px;}
._2b_c00167{width:17.490000px;}
._16_c00167{width:18.906000px;}
._f_c00167{width:20.493000px;}
._1c_c00167{width:21.540000px;}
._1d_c00167{width:22.908000px;}
._b_c00167{width:30.774000px;}
._30_c00167{width:33.270000px;}
._2e_c00167{width:36.411000px;}
._19_c00167{width:38.226000px;}
._24_c00167{width:41.703000px;}
._2a_c00167{width:43.632000px;}
._27_c00167{width:62.202000px;}
._26_c00167{width:92.481000px;}
._21_c00167{width:95.298000px;}
._14_c00167{width:117.438000px;}
._1e_c00167{width:120.822000px;}
._20_c00167{width:121.881000px;}
._1b_c00167{width:129.027000px;}
._23_c00167{width:130.065000px;}
._2_c00167{width:160.701000px;}
._29_c00167{width:189.819000px;}
._5_c00167{width:359.271000px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(128,128,128);}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:48.000000px;}
.fs2_c00167{font-size:55.200000px;}
.fs0_c00167{font-size:66.000000px;}
.fs1_c00167{font-size:69.000000px;}
.y0_c00167{bottom:0.000000px;}
.y1d_c00167{bottom:3.105000px;}
.y1c_c00167{bottom:7.228369px;}
.y1a_c00167{bottom:116.070000px;}
.y19_c00167{bottom:141.420000px;}
.y18_c00167{bottom:167.070000px;}
.y1b_c00167{bottom:189.720000px;}
.y17_c00167{bottom:192.420000px;}
.y16_c00167{bottom:216.270000px;}
.y15_c00167{bottom:242.220000px;}
.y14_c00167{bottom:268.320000px;}
.y13_c00167{bottom:317.220000px;}
.y12_c00167{bottom:340.770000px;}
.y11_c00167{bottom:365.520000px;}
.y10_c00167{bottom:390.720000px;}
.yf_c00167{bottom:416.370000px;}
.ye_c00167{bottom:440.820000px;}
.yd_c00167{bottom:466.320000px;}
.yc_c00167{bottom:515.670000px;}
.yb_c00167{bottom:540.270000px;}
.ya_c00167{bottom:565.620000px;}
.y9_c00167{bottom:588.870000px;}
.y8_c00167{bottom:614.970000px;}
.y7_c00167{bottom:640.170000px;}
.y6_c00167{bottom:664.770000px;}
.y5_c00167{bottom:690.420000px;}
.y4_c00167{bottom:715.170000px;}
.y3_c00167{bottom:739.170000px;}
.y2_c00167{bottom:765.720000px;}
.y1_c00167{bottom:790.020000px;}
.h5_c00167{height:13.200073px;}
.h6_c00167{height:43.804688px;}
.h4_c00167{height:67.686035px;}
.h3_c00167{height:80.758301px;}
.h2_c00167{height:87.361816px;}
.h1_c00167{height:832.500000px;}
.h0_c00167{height:832.650000px;}
.w2_c00167{width:104.875500px;}
.w0_c00167{width:551.850000px;}
.w1_c00167{width:552.000000px;}
.x0_c00167{left:0.000000px;}
.x3_c00167{left:19.200000px;}
.x2_c00167{left:21.300000px;}
.xc_c00167{left:23.400000px;}
.x1_c00167{left:36.450000px;}
.x4_c00167{left:87.450000px;}
.x5_c00167{left:88.500000px;}
.x6_c00167{left:89.850000px;}
.x9_c00167{left:107.700000px;}
.x8_c00167{left:109.800000px;}
.x7_c00167{left:111.750000px;}
.xa_c00167{left:113.100000px;}
.xb_c00167{left:129.300000px;}
.xe_c00167{left:137.700000px;}
.xd_c00167{left:216.300000px;}
.xf_c00167{left:227.739258px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls5_c00167{letter-spacing:0.000000pt;}
.ls1_c00167{letter-spacing:0.307200pt;}
.ls2_c00167{letter-spacing:2.666667pt;}
.ls4_c00167{letter-spacing:5.333333pt;}
.ls6_c00167{letter-spacing:8.000000pt;}
.ls3_c00167{letter-spacing:32.152000pt;}
.ls0_c00167{letter-spacing:59.885333pt;}
.ws1_c00167{word-spacing:-22.781333pt;}
.ws0_c00167{word-spacing:-20.000000pt;}
.ws3_c00167{word-spacing:-18.000000pt;}
.ws4_c00167{word-spacing:-17.050667pt;}
.ws2_c00167{word-spacing:-14.781333pt;}
.ws5_c00167{word-spacing:0.000000pt;}
._17_c00167{margin-left:-20.178667pt;}
._2d_c00167{margin-left:-18.245333pt;}
._2c_c00167{margin-left:-17.296000pt;}
._28_c00167{margin-left:-16.213333pt;}
._10_c00167{margin-left:-14.728000pt;}
._e_c00167{margin-left:-13.253333pt;}
._9_c00167{margin-left:-12.328000pt;}
._12_c00167{margin-left:-10.488000pt;}
._11_c00167{margin-left:-9.261333pt;}
._13_c00167{margin-left:-8.157333pt;}
._c_c00167{margin-left:-7.176000pt;}
._a_c00167{margin-left:-5.642667pt;}
._8_c00167{margin-left:-4.477333pt;}
._d_c00167{margin-left:-3.250667pt;}
._1f_c00167{margin-left:-2.330667pt;}
._6_c00167{margin-left:-1.410667pt;}
._7_c00167{width:0.981333pt;}
._3_c00167{width:2.637333pt;}
._4_c00167{width:3.802667pt;}
._0_c00167{width:5.280000pt;}
._25_c00167{width:6.264000pt;}
._1_c00167{width:7.184000pt;}
._15_c00167{width:8.397333pt;}
._1a_c00167{width:10.170667pt;}
._22_c00167{width:11.285333pt;}
._2f_c00167{width:12.205333pt;}
._18_c00167{width:13.669333pt;}
._2b_c00167{width:15.546667pt;}
._16_c00167{width:16.805333pt;}
._f_c00167{width:18.216000pt;}
._1c_c00167{width:19.146667pt;}
._1d_c00167{width:20.362667pt;}
._b_c00167{width:27.354667pt;}
._30_c00167{width:29.573333pt;}
._2e_c00167{width:32.365333pt;}
._19_c00167{width:33.978667pt;}
._24_c00167{width:37.069333pt;}
._2a_c00167{width:38.784000pt;}
._27_c00167{width:55.290667pt;}
._26_c00167{width:82.205333pt;}
._21_c00167{width:84.709333pt;}
._14_c00167{width:104.389333pt;}
._1e_c00167{width:107.397333pt;}
._20_c00167{width:108.338667pt;}
._1b_c00167{width:114.690667pt;}
._23_c00167{width:115.613333pt;}
._2_c00167{width:142.845333pt;}
._29_c00167{width:168.728000pt;}
._5_c00167{width:319.352000pt;}
.fs3_c00167{font-size:42.666667pt;}
.fs2_c00167{font-size:49.066667pt;}
.fs0_c00167{font-size:58.666667pt;}
.fs1_c00167{font-size:61.333333pt;}
.y0_c00167{bottom:0.000000pt;}
.y1d_c00167{bottom:2.760000pt;}
.y1c_c00167{bottom:6.425217pt;}
.y1a_c00167{bottom:103.173333pt;}
.y19_c00167{bottom:125.706667pt;}
.y18_c00167{bottom:148.506667pt;}
.y1b_c00167{bottom:168.640000pt;}
.y17_c00167{bottom:171.040000pt;}
.y16_c00167{bottom:192.240000pt;}
.y15_c00167{bottom:215.306667pt;}
.y14_c00167{bottom:238.506667pt;}
.y13_c00167{bottom:281.973333pt;}
.y12_c00167{bottom:302.906667pt;}
.y11_c00167{bottom:324.906667pt;}
.y10_c00167{bottom:347.306667pt;}
.yf_c00167{bottom:370.106667pt;}
.ye_c00167{bottom:391.840000pt;}
.yd_c00167{bottom:414.506667pt;}
.yc_c00167{bottom:458.373333pt;}
.yb_c00167{bottom:480.240000pt;}
.ya_c00167{bottom:502.773333pt;}
.y9_c00167{bottom:523.440000pt;}
.y8_c00167{bottom:546.640000pt;}
.y7_c00167{bottom:569.040000pt;}
.y6_c00167{bottom:590.906667pt;}
.y5_c00167{bottom:613.706667pt;}
.y4_c00167{bottom:635.706667pt;}
.y3_c00167{bottom:657.040000pt;}
.y2_c00167{bottom:680.640000pt;}
.y1_c00167{bottom:702.240000pt;}
.h5_c00167{height:11.733399pt;}
.h6_c00167{height:38.937500pt;}
.h4_c00167{height:60.165365pt;}
.h3_c00167{height:71.785156pt;}
.h2_c00167{height:77.654948pt;}
.h1_c00167{height:740.000000pt;}
.h0_c00167{height:740.133333pt;}
.w2_c00167{width:93.222667pt;}
.w0_c00167{width:490.533333pt;}
.w1_c00167{width:490.666667pt;}
.x0_c00167{left:0.000000pt;}
.x3_c00167{left:17.066667pt;}
.x2_c00167{left:18.933333pt;}
.xc_c00167{left:20.800000pt;}
.x1_c00167{left:32.400000pt;}
.x4_c00167{left:77.733333pt;}
.x5_c00167{left:78.666667pt;}
.x6_c00167{left:79.866667pt;}
.x9_c00167{left:95.733333pt;}
.x8_c00167{left:97.600000pt;}
.x7_c00167{left:99.333333pt;}
.xa_c00167{left:100.533333pt;}
.xb_c00167{left:114.933333pt;}
.xe_c00167{left:122.400000pt;}
.xd_c00167{left:192.266667pt;}
.xf_c00167{left:202.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_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_a4adbfcbfd4755219e7c0fd5.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_4ed5d1b168746bed68b10def.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.568848;font-style:normal;font-weight:normal;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_8ef9a4c791e1c1d2d9d18ad4.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.437000;font-style:normal;font-weight:normal;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_e00fd929ceb217172682b5e4.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00168{font-family:ff5_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:ff6_c00168;src:url('chunks/assets/font_f264dfdfb8ba0af9d1c060df.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00168;src:url('chunks/assets/font_cce53265b2104d71635d92cd.woff2')format("woff");}.ff7_c00168{font-family:ff7_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:ff8_c00168;src:url('chunks/assets/font_d436536664ac4bee34e27646.woff2')format("woff");}.ff8_c00168{font-family:ff8_c00168;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_c00168;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00168{font-family:ff9_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);}
.v1_c00168{vertical-align:-75.600000px;}
.v0_c00168{vertical-align:0.000000px;}
.lsd_c00168{letter-spacing:0.000000px;}
.ls4_c00168{letter-spacing:2.100000px;}
.lsa_c00168{letter-spacing:2.823000px;}
.ls0_c00168{letter-spacing:3.000000px;}
.ls6_c00168{letter-spacing:3.600000px;}
.lse_c00168{letter-spacing:6.000000px;}
.ls8_c00168{letter-spacing:7.584000px;}
.lsc_c00168{letter-spacing:9.600000px;}
.lsb_c00168{letter-spacing:16.350000px;}
.ls7_c00168{letter-spacing:16.641000px;}
.lsf_c00168{letter-spacing:18.000000px;}
.ls3_c00168{letter-spacing:45.000000px;}
.ls2_c00168{letter-spacing:50.700000px;}
.ls1_c00168{letter-spacing:99.300000px;}
.ls9_c00168{letter-spacing:177.150000px;}
.ls5_c00168{letter-spacing:200.067000px;}
.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;}
}
.ws2_c00168{word-spacing:-62.250000px;}
.ws5_c00168{word-spacing:-35.250000px;}
.ws6_c00168{word-spacing:-19.629000px;}
.ws3_c00168{word-spacing:-18.750000px;}
.ws0_c00168{word-spacing:-18.000000px;}
.ws1_c00168{word-spacing:-17.250000px;}
.ws4_c00168{word-spacing:-16.629000px;}
.ws7_c00168{word-spacing:0.000000px;}
._30_c00168{margin-left:-21.252000px;}
._1c_c00168{margin-left:-15.933000px;}
._27_c00168{margin-left:-14.631000px;}
._6_c00168{margin-left:-13.320000px;}
._32_c00168{margin-left:-12.252000px;}
._d_c00168{margin-left:-11.139000px;}
._9_c00168{margin-left:-8.175000px;}
._e_c00168{margin-left:-7.011000px;}
._8_c00168{margin-left:-5.700000px;}
._7_c00168{margin-left:-4.311000px;}
._3_c00168{margin-left:-3.174000px;}
._2_c00168{margin-left:-2.139000px;}
._5_c00168{margin-left:-1.104000px;}
._1_c00168{width:1.104000px;}
._0_c00168{width:2.415000px;}
._17_c00168{width:3.426000px;}
._b_c00168{width:4.560000px;}
._c_c00168{width:6.141000px;}
._18_c00168{width:7.245000px;}
._a_c00168{width:8.247000px;}
._f_c00168{width:9.798000px;}
._10_c00168{width:11.148000px;}
._1b_c00168{width:12.414000px;}
._14_c00168{width:13.428000px;}
._12_c00168{width:14.463000px;}
._11_c00168{width:15.663000px;}
._25_c00168{width:18.318000px;}
._20_c00168{width:19.728000px;}
._1f_c00168{width:20.904000px;}
._1e_c00168{width:23.010000px;}
._1a_c00168{width:24.219000px;}
._29_c00168{width:26.592000px;}
._26_c00168{width:27.765000px;}
._23_c00168{width:30.504000px;}
._13_c00168{width:34.968000px;}
._19_c00168{width:35.973000px;}
._21_c00168{width:37.119000px;}
._1d_c00168{width:39.675000px;}
._22_c00168{width:40.848000px;}
._2b_c00168{width:43.953000px;}
._2f_c00168{width:66.972000px;}
._15_c00168{width:112.332000px;}
._2e_c00168{width:124.707000px;}
._2d_c00168{width:166.221000px;}
._2c_c00168{width:180.444000px;}
._28_c00168{width:184.419000px;}
._2a_c00168{width:185.460000px;}
._24_c00168{width:268.389000px;}
._16_c00168{width:334.686000px;}
._31_c00168{width:434.346000px;}
._4_c00168{width:503.316000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(128,128,128);}
.fc0_c00168{color:rgb(0,0,0);}
.fs8_c00168{font-size:45.000000px;}
.fs7_c00168{font-size:48.000000px;}
.fs1_c00168{font-size:60.000000px;}
.fs6_c00168{font-size:63.000000px;}
.fs5_c00168{font-size:66.000000px;}
.fs0_c00168{font-size:69.000000px;}
.fs4_c00168{font-size:72.000000px;}
.fs2_c00168{font-size:75.000000px;}
.fs3_c00168{font-size:78.000000px;}
.y0_c00168{bottom:0.000000px;}
.y1e_c00168{bottom:3.105000px;}
.y1d_c00168{bottom:7.228371px;}
.y1c_c00168{bottom:110.115000px;}
.y1b_c00168{bottom:136.365000px;}
.y1a_c00168{bottom:160.365000px;}
.y19_c00168{bottom:187.065000px;}
.y18_c00168{bottom:210.615000px;}
.y17_c00168{bottom:237.015000px;}
.y16_c00168{bottom:262.365000px;}
.y15_c00168{bottom:287.565000px;}
.y14_c00168{bottom:312.315000px;}
.y13_c00168{bottom:337.815000px;}
.y12_c00168{bottom:362.565000px;}
.y11_c00168{bottom:387.765000px;}
.y10_c00168{bottom:412.815000px;}
.yf_c00168{bottom:437.865000px;}
.ye_c00168{bottom:462.165000px;}
.yd_c00168{bottom:486.465000px;}
.yc_c00168{bottom:510.765000px;}
.yb_c00168{bottom:535.365000px;}
.ya_c00168{bottom:560.265000px;}
.y9_c00168{bottom:585.015000px;}
.y8_c00168{bottom:610.215000px;}
.y7_c00168{bottom:635.265000px;}
.y6_c00168{bottom:658.815000px;}
.y5_c00168{bottom:684.765000px;}
.y4_c00168{bottom:711.765000px;}
.y3_c00168{bottom:735.165000px;}
.y2_c00168{bottom:759.165000px;}
.y1_c00168{bottom:784.365000px;}
.hb_c00168{height:13.200074px;}
.hc_c00168{height:43.804688px;}
.h7_c00168{height:67.686035px;}
.h8_c00168{height:67.719727px;}
.h6_c00168{height:69.539062px;}
.ha_c00168{height:72.562500px;}
.h9_c00168{height:77.247070px;}
.h5_c00168{height:78.600000px;}
.h4_c00168{height:78.609375px;}
.h3_c00168{height:80.758301px;}
.h2_c00168{height:87.361816px;}
.h1_c00168{height:831.000000px;}
.h0_c00168{height:831.075000px;}
.w1_c00168{width:104.875500px;}
.w0_c00168{width:560.250000px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:29.250000px;}
.x2_c00168{left:31.650000px;}
.x5_c00168{left:32.850000px;}
.x9_c00168{left:34.350000px;}
.x6_c00168{left:35.850000px;}
.xb_c00168{left:38.700000px;}
.x7_c00168{left:59.400000px;}
.x8_c00168{left:71.550000px;}
.x4_c00168{left:81.000000px;}
.xa_c00168{left:84.750000px;}
.x1_c00168{left:192.000000px;}
.xc_c00168{left:231.939240px;}
@media print{
.v1_c00168{vertical-align:-67.200000pt;}
.v0_c00168{vertical-align:0.000000pt;}
.lsd_c00168{letter-spacing:0.000000pt;}
.ls4_c00168{letter-spacing:1.866667pt;}
.lsa_c00168{letter-spacing:2.509333pt;}
.ls0_c00168{letter-spacing:2.666667pt;}
.ls6_c00168{letter-spacing:3.200000pt;}
.lse_c00168{letter-spacing:5.333333pt;}
.ls8_c00168{letter-spacing:6.741333pt;}
.lsc_c00168{letter-spacing:8.533333pt;}
.lsb_c00168{letter-spacing:14.533333pt;}
.ls7_c00168{letter-spacing:14.792000pt;}
.lsf_c00168{letter-spacing:16.000000pt;}
.ls3_c00168{letter-spacing:40.000000pt;}
.ls2_c00168{letter-spacing:45.066667pt;}
.ls1_c00168{letter-spacing:88.266667pt;}
.ls9_c00168{letter-spacing:157.466667pt;}
.ls5_c00168{letter-spacing:177.837333pt;}
.ws2_c00168{word-spacing:-55.333333pt;}
.ws5_c00168{word-spacing:-31.333333pt;}
.ws6_c00168{word-spacing:-17.448000pt;}
.ws3_c00168{word-spacing:-16.666667pt;}
.ws0_c00168{word-spacing:-16.000000pt;}
.ws1_c00168{word-spacing:-15.333333pt;}
.ws4_c00168{word-spacing:-14.781333pt;}
.ws7_c00168{word-spacing:0.000000pt;}
._30_c00168{margin-left:-18.890667pt;}
._1c_c00168{margin-left:-14.162667pt;}
._27_c00168{margin-left:-13.005333pt;}
._6_c00168{margin-left:-11.840000pt;}
._32_c00168{margin-left:-10.890667pt;}
._d_c00168{margin-left:-9.901333pt;}
._9_c00168{margin-left:-7.266667pt;}
._e_c00168{margin-left:-6.232000pt;}
._8_c00168{margin-left:-5.066667pt;}
._7_c00168{margin-left:-3.832000pt;}
._3_c00168{margin-left:-2.821333pt;}
._2_c00168{margin-left:-1.901333pt;}
._5_c00168{margin-left:-0.981333pt;}
._1_c00168{width:0.981333pt;}
._0_c00168{width:2.146667pt;}
._17_c00168{width:3.045333pt;}
._b_c00168{width:4.053333pt;}
._c_c00168{width:5.458667pt;}
._18_c00168{width:6.440000pt;}
._a_c00168{width:7.330667pt;}
._f_c00168{width:8.709333pt;}
._10_c00168{width:9.909333pt;}
._1b_c00168{width:11.034667pt;}
._14_c00168{width:11.936000pt;}
._12_c00168{width:12.856000pt;}
._11_c00168{width:13.922667pt;}
._25_c00168{width:16.282667pt;}
._20_c00168{width:17.536000pt;}
._1f_c00168{width:18.581333pt;}
._1e_c00168{width:20.453333pt;}
._1a_c00168{width:21.528000pt;}
._29_c00168{width:23.637333pt;}
._26_c00168{width:24.680000pt;}
._23_c00168{width:27.114667pt;}
._13_c00168{width:31.082667pt;}
._19_c00168{width:31.976000pt;}
._21_c00168{width:32.994667pt;}
._1d_c00168{width:35.266667pt;}
._22_c00168{width:36.309333pt;}
._2b_c00168{width:39.069333pt;}
._2f_c00168{width:59.530667pt;}
._15_c00168{width:99.850667pt;}
._2e_c00168{width:110.850667pt;}
._2d_c00168{width:147.752000pt;}
._2c_c00168{width:160.394667pt;}
._28_c00168{width:163.928000pt;}
._2a_c00168{width:164.853333pt;}
._24_c00168{width:238.568000pt;}
._16_c00168{width:297.498667pt;}
._31_c00168{width:386.085333pt;}
._4_c00168{width:447.392000pt;}
.fs8_c00168{font-size:40.000000pt;}
.fs7_c00168{font-size:42.666667pt;}
.fs1_c00168{font-size:53.333333pt;}
.fs6_c00168{font-size:56.000000pt;}
.fs5_c00168{font-size:58.666667pt;}
.fs0_c00168{font-size:61.333333pt;}
.fs4_c00168{font-size:64.000000pt;}
.fs2_c00168{font-size:66.666667pt;}
.fs3_c00168{font-size:69.333333pt;}
.y0_c00168{bottom:0.000000pt;}
.y1e_c00168{bottom:2.760000pt;}
.y1d_c00168{bottom:6.425219pt;}
.y1c_c00168{bottom:97.880000pt;}
.y1b_c00168{bottom:121.213333pt;}
.y1a_c00168{bottom:142.546667pt;}
.y19_c00168{bottom:166.280000pt;}
.y18_c00168{bottom:187.213333pt;}
.y17_c00168{bottom:210.680000pt;}
.y16_c00168{bottom:233.213333pt;}
.y15_c00168{bottom:255.613333pt;}
.y14_c00168{bottom:277.613333pt;}
.y13_c00168{bottom:300.280000pt;}
.y12_c00168{bottom:322.280000pt;}
.y11_c00168{bottom:344.680000pt;}
.y10_c00168{bottom:366.946667pt;}
.yf_c00168{bottom:389.213333pt;}
.ye_c00168{bottom:410.813333pt;}
.yd_c00168{bottom:432.413333pt;}
.yc_c00168{bottom:454.013333pt;}
.yb_c00168{bottom:475.880000pt;}
.ya_c00168{bottom:498.013333pt;}
.y9_c00168{bottom:520.013333pt;}
.y8_c00168{bottom:542.413333pt;}
.y7_c00168{bottom:564.680000pt;}
.y6_c00168{bottom:585.613333pt;}
.y5_c00168{bottom:608.680000pt;}
.y4_c00168{bottom:632.680000pt;}
.y3_c00168{bottom:653.480000pt;}
.y2_c00168{bottom:674.813333pt;}
.y1_c00168{bottom:697.213333pt;}
.hb_c00168{height:11.733399pt;}
.hc_c00168{height:38.937500pt;}
.h7_c00168{height:60.165365pt;}
.h8_c00168{height:60.195312pt;}
.h6_c00168{height:61.812500pt;}
.ha_c00168{height:64.500000pt;}
.h9_c00168{height:68.664062pt;}
.h5_c00168{height:69.866667pt;}
.h4_c00168{height:69.875000pt;}
.h3_c00168{height:71.785156pt;}
.h2_c00168{height:77.654948pt;}
.h1_c00168{height:738.666667pt;}
.h0_c00168{height:738.733333pt;}
.w1_c00168{width:93.222667pt;}
.w0_c00168{width:498.000000pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:26.000000pt;}
.x2_c00168{left:28.133333pt;}
.x5_c00168{left:29.200000pt;}
.x9_c00168{left:30.533333pt;}
.x6_c00168{left:31.866667pt;}
.xb_c00168{left:34.400000pt;}
.x7_c00168{left:52.800000pt;}
.x8_c00168{left:63.600000pt;}
.x4_c00168{left:72.000000pt;}
.xa_c00168{left:75.333333pt;}
.x1_c00168{left:170.666667pt;}
.xc_c00168{left:206.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_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_360f7b673174a3bbfdc2af22.woff2')format("woff");}.ff1_c00169{font-family:ff1_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:ff2_c00169;src:url('chunks/assets/font_b7ec2d08251a40db425f12e5.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_9b93883ede83dfa1b37fb933.woff2')format("woff");}.ff3_c00169{font-family:ff3_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:ff4_c00169;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff4_c00169{font-family:ff4_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:ff5_c00169;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00169{font-family:ff5_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;}
.ls3_c00169{letter-spacing:0.000000px;}
.ls1_c00169{letter-spacing:0.600000px;}
.ls2_c00169{letter-spacing:3.000000px;}
.ls0_c00169{letter-spacing:4.971000px;}
.ls4_c00169{letter-spacing:6.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-22.629000px;}
.ws0_c00169{word-spacing:-16.629000px;}
.ws2_c00169{word-spacing:-15.906000px;}
.ws3_c00169{word-spacing:0.000000px;}
._1c_c00169{margin-left:-29.139000px;}
._21_c00169{margin-left:-21.594000px;}
._22_c00169{margin-left:-18.297000px;}
._1a_c00169{margin-left:-15.783000px;}
._15_c00169{margin-left:-12.345000px;}
._13_c00169{margin-left:-10.608000px;}
._7_c00169{margin-left:-9.384000px;}
._b_c00169{margin-left:-7.521000px;}
._6_c00169{margin-left:-5.520000px;}
._a_c00169{margin-left:-4.254000px;}
._10_c00169{margin-left:-3.198000px;}
._0_c00169{margin-left:-2.001000px;}
._3_c00169{width:1.725000px;}
._8_c00169{width:3.657000px;}
._5_c00169{width:5.037000px;}
._1_c00169{width:6.348000px;}
._9_c00169{width:8.142000px;}
._d_c00169{width:9.936000px;}
._4_c00169{width:11.592000px;}
._12_c00169{width:13.047000px;}
._23_c00169{width:14.178000px;}
._f_c00169{width:15.318000px;}
._16_c00169{width:17.253000px;}
._11_c00169{width:18.792000px;}
._1b_c00169{width:20.727000px;}
._19_c00169{width:21.735000px;}
._14_c00169{width:24.117000px;}
._1f_c00169{width:40.245000px;}
._1e_c00169{width:82.134000px;}
._1d_c00169{width:93.510000px;}
._18_c00169{width:98.280000px;}
._24_c00169{width:104.244000px;}
._e_c00169{width:147.522000px;}
._17_c00169{width:149.151000px;}
._c_c00169{width:181.884000px;}
._2_c00169{width:371.820000px;}
._20_c00169{width:563.682000px;}
._25_c00169{width:626.373000px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(128,128,128);}
.fc0_c00169{color:rgb(0,0,0);}
.fs3_c00169{font-size:48.000000px;}
.fs1_c00169{font-size:60.000000px;}
.fs2_c00169{font-size:66.000000px;}
.fs0_c00169{font-size:69.000000px;}
.y0_c00169{bottom:0.000000px;}
.y20_c00169{bottom:3.105000px;}
.y1f_c00169{bottom:7.228363px;}
.y1e_c00169{bottom:65.850000px;}
.y1d_c00169{bottom:91.800000px;}
.y1c_c00169{bottom:115.500000px;}
.y1b_c00169{bottom:142.500000px;}
.y1a_c00169{bottom:167.700000px;}
.y19_c00169{bottom:191.100000px;}
.y18_c00169{bottom:216.300000px;}
.y17_c00169{bottom:240.600000px;}
.y16_c00169{bottom:266.700000px;}
.y15_c00169{bottom:292.500000px;}
.y14_c00169{bottom:316.350000px;}
.y13_c00169{bottom:340.500000px;}
.y12_c00169{bottom:364.800000px;}
.y11_c00169{bottom:391.500000px;}
.y10_c00169{bottom:416.550000px;}
.yf_c00169{bottom:439.050000px;}
.ye_c00169{bottom:465.150000px;}
.yd_c00169{bottom:491.100000px;}
.yc_c00169{bottom:516.750000px;}
.yb_c00169{bottom:541.050000px;}
.ya_c00169{bottom:565.650000px;}
.y9_c00169{bottom:590.250000px;}
.y8_c00169{bottom:615.300000px;}
.y7_c00169{bottom:639.600000px;}
.y6_c00169{bottom:664.500000px;}
.y5_c00169{bottom:689.550000px;}
.y4_c00169{bottom:714.900000px;}
.y3_c00169{bottom:739.500000px;}
.y2_c00169{bottom:764.850000px;}
.y1_c00169{bottom:790.050000px;}
.h5_c00169{height:13.200074px;}
.h6_c00169{height:43.804688px;}
.h4_c00169{height:77.247070px;}
.h3_c00169{height:80.758301px;}
.h2_c00169{height:87.361816px;}
.h1_c00169{height:834.000000px;}
.h0_c00169{height:834.300000px;}
.w2_c00169{width:104.875500px;}
.w1_c00169{width:552.750000px;}
.w0_c00169{width:552.975000px;}
.x0_c00169{left:0.000000px;}
.x4_c00169{left:80.550000px;}
.x7_c00169{left:82.650000px;}
.x2_c00169{left:84.300000px;}
.x6_c00169{left:85.350000px;}
.x9_c00169{left:86.700000px;}
.x1_c00169{left:98.850000px;}
.xa_c00169{left:106.650000px;}
.x8_c00169{left:107.700000px;}
.x5_c00169{left:109.050000px;}
.x3_c00169{left:110.400000px;}
.xc_c00169{left:228.301758px;}
.xb_c00169{left:493.350000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls1_c00169{letter-spacing:0.533333pt;}
.ls2_c00169{letter-spacing:2.666667pt;}
.ls0_c00169{letter-spacing:4.418667pt;}
.ls4_c00169{letter-spacing:5.333333pt;}
.ws1_c00169{word-spacing:-20.114667pt;}
.ws0_c00169{word-spacing:-14.781333pt;}
.ws2_c00169{word-spacing:-14.138667pt;}
.ws3_c00169{word-spacing:0.000000pt;}
._1c_c00169{margin-left:-25.901333pt;}
._21_c00169{margin-left:-19.194667pt;}
._22_c00169{margin-left:-16.264000pt;}
._1a_c00169{margin-left:-14.029333pt;}
._15_c00169{margin-left:-10.973333pt;}
._13_c00169{margin-left:-9.429333pt;}
._7_c00169{margin-left:-8.341333pt;}
._b_c00169{margin-left:-6.685333pt;}
._6_c00169{margin-left:-4.906667pt;}
._a_c00169{margin-left:-3.781333pt;}
._10_c00169{margin-left:-2.842667pt;}
._0_c00169{margin-left:-1.778667pt;}
._3_c00169{width:1.533333pt;}
._8_c00169{width:3.250667pt;}
._5_c00169{width:4.477333pt;}
._1_c00169{width:5.642667pt;}
._9_c00169{width:7.237333pt;}
._d_c00169{width:8.832000pt;}
._4_c00169{width:10.304000pt;}
._12_c00169{width:11.597333pt;}
._23_c00169{width:12.602667pt;}
._f_c00169{width:13.616000pt;}
._16_c00169{width:15.336000pt;}
._11_c00169{width:16.704000pt;}
._1b_c00169{width:18.424000pt;}
._19_c00169{width:19.320000pt;}
._14_c00169{width:21.437333pt;}
._1f_c00169{width:35.773333pt;}
._1e_c00169{width:73.008000pt;}
._1d_c00169{width:83.120000pt;}
._18_c00169{width:87.360000pt;}
._24_c00169{width:92.661333pt;}
._e_c00169{width:131.130667pt;}
._17_c00169{width:132.578667pt;}
._c_c00169{width:161.674667pt;}
._2_c00169{width:330.506667pt;}
._20_c00169{width:501.050667pt;}
._25_c00169{width:556.776000pt;}
.fs3_c00169{font-size:42.666667pt;}
.fs1_c00169{font-size:53.333333pt;}
.fs2_c00169{font-size:58.666667pt;}
.fs0_c00169{font-size:61.333333pt;}
.y0_c00169{bottom:0.000000pt;}
.y20_c00169{bottom:2.760000pt;}
.y1f_c00169{bottom:6.425212pt;}
.y1e_c00169{bottom:58.533333pt;}
.y1d_c00169{bottom:81.600000pt;}
.y1c_c00169{bottom:102.666667pt;}
.y1b_c00169{bottom:126.666667pt;}
.y1a_c00169{bottom:149.066667pt;}
.y19_c00169{bottom:169.866667pt;}
.y18_c00169{bottom:192.266667pt;}
.y17_c00169{bottom:213.866667pt;}
.y16_c00169{bottom:237.066667pt;}
.y15_c00169{bottom:260.000000pt;}
.y14_c00169{bottom:281.200000pt;}
.y13_c00169{bottom:302.666667pt;}
.y12_c00169{bottom:324.266667pt;}
.y11_c00169{bottom:348.000000pt;}
.y10_c00169{bottom:370.266667pt;}
.yf_c00169{bottom:390.266667pt;}
.ye_c00169{bottom:413.466667pt;}
.yd_c00169{bottom:436.533333pt;}
.yc_c00169{bottom:459.333333pt;}
.yb_c00169{bottom:480.933333pt;}
.ya_c00169{bottom:502.800000pt;}
.y9_c00169{bottom:524.666667pt;}
.y8_c00169{bottom:546.933333pt;}
.y7_c00169{bottom:568.533333pt;}
.y6_c00169{bottom:590.666667pt;}
.y5_c00169{bottom:612.933333pt;}
.y4_c00169{bottom:635.466667pt;}
.y3_c00169{bottom:657.333333pt;}
.y2_c00169{bottom:679.866667pt;}
.y1_c00169{bottom:702.266667pt;}
.h5_c00169{height:11.733399pt;}
.h6_c00169{height:38.937500pt;}
.h4_c00169{height:68.664062pt;}
.h3_c00169{height:71.785156pt;}
.h2_c00169{height:77.654948pt;}
.h1_c00169{height:741.333333pt;}
.h0_c00169{height:741.600000pt;}
.w2_c00169{width:93.222667pt;}
.w1_c00169{width:491.333333pt;}
.w0_c00169{width:491.533333pt;}
.x0_c00169{left:0.000000pt;}
.x4_c00169{left:71.600000pt;}
.x7_c00169{left:73.466667pt;}
.x2_c00169{left:74.933333pt;}
.x6_c00169{left:75.866667pt;}
.x9_c00169{left:77.066667pt;}
.x1_c00169{left:87.866667pt;}
.xa_c00169{left:94.800000pt;}
.x8_c00169{left:95.733333pt;}
.x5_c00169{left:96.933333pt;}
.x3_c00169{left:98.133333pt;}
.xc_c00169{left:202.934896pt;}
.xb_c00169{left:438.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_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_13fff38a593b4170a6db3ff7.woff2')format("woff");}.ff1_c00170{font-family:ff1_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:ff2_c00170;src:url('chunks/assets/font_7afdc13f409bc8db901f86b8.woff2')format("woff");}.ff2_c00170{font-family:ff2_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:ff3_c00170;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff3_c00170{font-family:ff3_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:ff4_c00170;src:url('chunks/assets/font_fa1f9efa5fe13e6b21ce85bc.woff2')format("woff");}.ff4_c00170{font-family:ff4_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:ff5_c00170;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00170{font-family:ff5_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;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls3_c00170{letter-spacing:3.000000px;}
.ls2_c00170{letter-spacing:6.000000px;}
.ls0_c00170{letter-spacing:7.800000px;}
.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:-22.629000px;}
.ws2_c00170{word-spacing:-19.050000px;}
.ws3_c00170{word-spacing:-16.629000px;}
.ws1_c00170{word-spacing:-0.180000px;}
.ws4_c00170{word-spacing:0.000000px;}
._26_c00170{margin-left:-22.191000px;}
._25_c00170{margin-left:-20.907000px;}
._27_c00170{margin-left:-19.521000px;}
._10_c00170{margin-left:-17.733000px;}
._1e_c00170{margin-left:-16.422000px;}
._21_c00170{margin-left:-15.387000px;}
._11_c00170{margin-left:-13.611000px;}
._12_c00170{margin-left:-12.129000px;}
._15_c00170{margin-left:-10.557000px;}
._14_c00170{margin-left:-9.522000px;}
._f_c00170{margin-left:-7.728000px;}
._6_c00170{margin-left:-6.417000px;}
._b_c00170{margin-left:-4.830000px;}
._2_c00170{margin-left:-3.381000px;}
._1_c00170{margin-left:-2.346000px;}
._8_c00170{margin-left:-1.104000px;}
._c_c00170{width:1.035000px;}
._0_c00170{width:2.139000px;}
._7_c00170{width:3.450000px;}
._a_c00170{width:4.968000px;}
._4_c00170{width:6.210000px;}
._13_c00170{width:7.617000px;}
._9_c00170{width:9.177000px;}
._5_c00170{width:10.764000px;}
._22_c00170{width:12.117000px;}
._19_c00170{width:13.152000px;}
._e_c00170{width:14.766000px;}
._18_c00170{width:16.077000px;}
._16_c00170{width:18.216000px;}
._d_c00170{width:19.734000px;}
._1c_c00170{width:21.183000px;}
._1b_c00170{width:23.253000px;}
._23_c00170{width:28.152000px;}
._28_c00170{width:30.297000px;}
._17_c00170{width:39.261000px;}
._1a_c00170{width:41.781000px;}
._20_c00170{width:44.016000px;}
._24_c00170{width:87.168000px;}
._29_c00170{width:162.324000px;}
._1f_c00170{width:240.504000px;}
._3_c00170{width:497.490000px;}
._1d_c00170{width:512.325000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(128,128,128);}
.fc0_c00170{color:rgb(0,0,0);}
.fs3_c00170{font-size:48.000000px;}
.fs1_c00170{font-size:66.000000px;}
.fs0_c00170{font-size:69.000000px;}
.fs2_c00170{font-size:75.000000px;}
.y0_c00170{bottom:0.000000px;}
.y1f_c00170{bottom:3.105000px;}
.y1e_c00170{bottom:7.228371px;}
.y1d_c00170{bottom:90.165000px;}
.y1c_c00170{bottom:115.215000px;}
.y1b_c00170{bottom:140.715000px;}
.y1a_c00170{bottom:165.465000px;}
.y19_c00170{bottom:191.715000px;}
.y18_c00170{bottom:215.715000px;}
.y17_c00170{bottom:240.765000px;}
.y16_c00170{bottom:265.665000px;}
.y15_c00170{bottom:291.015000px;}
.y14_c00170{bottom:316.215000px;}
.y13_c00170{bottom:340.965000px;}
.y12_c00170{bottom:365.865000px;}
.y11_c00170{bottom:390.165000px;}
.y10_c00170{bottom:414.465000px;}
.yf_c00170{bottom:439.815000px;}
.ye_c00170{bottom:464.415000px;}
.yd_c00170{bottom:489.015000px;}
.yc_c00170{bottom:513.465000px;}
.yb_c00170{bottom:538.065000px;}
.ya_c00170{bottom:563.265000px;}
.y9_c00170{bottom:588.015000px;}
.y8_c00170{bottom:612.915000px;}
.y7_c00170{bottom:638.265000px;}
.y6_c00170{bottom:663.165000px;}
.y5_c00170{bottom:687.915000px;}
.y4_c00170{bottom:713.115000px;}
.y3_c00170{bottom:738.165000px;}
.y2_c00170{bottom:763.515000px;}
.y1_c00170{bottom:787.815000px;}
.h6_c00170{height:13.200074px;}
.h7_c00170{height:43.804688px;}
.h2_c00170{height:80.758301px;}
.h3_c00170{height:87.361816px;}
.h5_c00170{height:87.780762px;}
.h4_c00170{height:94.958496px;}
.h1_c00170{height:831.000000px;}
.h0_c00170{height:831.075000px;}
.w1_c00170{width:104.875500px;}
.w0_c00170{width:560.250000px;}
.x0_c00170{left:0.000000px;}
.xb_c00170{left:32.100000px;}
.x4_c00170{left:33.750000px;}
.x3_c00170{left:35.400000px;}
.xc_c00170{left:36.450000px;}
.x5_c00170{left:37.500000px;}
.x6_c00170{left:38.550000px;}
.x8_c00170{left:59.400000px;}
.x7_c00170{left:60.450000px;}
.x9_c00170{left:61.800000px;}
.xa_c00170{left:76.950000px;}
.x2_c00170{left:79.050000px;}
.x1_c00170{left:198.150000px;}
.xd_c00170{left:231.939240px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls3_c00170{letter-spacing:2.666667pt;}
.ls2_c00170{letter-spacing:5.333333pt;}
.ls0_c00170{letter-spacing:6.933333pt;}
.ws0_c00170{word-spacing:-20.114667pt;}
.ws2_c00170{word-spacing:-16.933333pt;}
.ws3_c00170{word-spacing:-14.781333pt;}
.ws1_c00170{word-spacing:-0.160000pt;}
.ws4_c00170{word-spacing:0.000000pt;}
._26_c00170{margin-left:-19.725333pt;}
._25_c00170{margin-left:-18.584000pt;}
._27_c00170{margin-left:-17.352000pt;}
._10_c00170{margin-left:-15.762667pt;}
._1e_c00170{margin-left:-14.597333pt;}
._21_c00170{margin-left:-13.677333pt;}
._11_c00170{margin-left:-12.098667pt;}
._12_c00170{margin-left:-10.781333pt;}
._15_c00170{margin-left:-9.384000pt;}
._14_c00170{margin-left:-8.464000pt;}
._f_c00170{margin-left:-6.869333pt;}
._6_c00170{margin-left:-5.704000pt;}
._b_c00170{margin-left:-4.293333pt;}
._2_c00170{margin-left:-3.005333pt;}
._1_c00170{margin-left:-2.085333pt;}
._8_c00170{margin-left:-0.981333pt;}
._c_c00170{width:0.920000pt;}
._0_c00170{width:1.901333pt;}
._7_c00170{width:3.066667pt;}
._a_c00170{width:4.416000pt;}
._4_c00170{width:5.520000pt;}
._13_c00170{width:6.770667pt;}
._9_c00170{width:8.157333pt;}
._5_c00170{width:9.568000pt;}
._22_c00170{width:10.770667pt;}
._19_c00170{width:11.690667pt;}
._e_c00170{width:13.125333pt;}
._18_c00170{width:14.290667pt;}
._16_c00170{width:16.192000pt;}
._d_c00170{width:17.541333pt;}
._1c_c00170{width:18.829333pt;}
._1b_c00170{width:20.669333pt;}
._23_c00170{width:25.024000pt;}
._28_c00170{width:26.930667pt;}
._17_c00170{width:34.898667pt;}
._1a_c00170{width:37.138667pt;}
._20_c00170{width:39.125333pt;}
._24_c00170{width:77.482667pt;}
._29_c00170{width:144.288000pt;}
._1f_c00170{width:213.781333pt;}
._3_c00170{width:442.213333pt;}
._1d_c00170{width:455.400000pt;}
.fs3_c00170{font-size:42.666667pt;}
.fs1_c00170{font-size:58.666667pt;}
.fs0_c00170{font-size:61.333333pt;}
.fs2_c00170{font-size:66.666667pt;}
.y0_c00170{bottom:0.000000pt;}
.y1f_c00170{bottom:2.760000pt;}
.y1e_c00170{bottom:6.425219pt;}
.y1d_c00170{bottom:80.146667pt;}
.y1c_c00170{bottom:102.413333pt;}
.y1b_c00170{bottom:125.080000pt;}
.y1a_c00170{bottom:147.080000pt;}
.y19_c00170{bottom:170.413333pt;}
.y18_c00170{bottom:191.746667pt;}
.y17_c00170{bottom:214.013333pt;}
.y16_c00170{bottom:236.146667pt;}
.y15_c00170{bottom:258.680000pt;}
.y14_c00170{bottom:281.080000pt;}
.y13_c00170{bottom:303.080000pt;}
.y12_c00170{bottom:325.213333pt;}
.y11_c00170{bottom:346.813333pt;}
.y10_c00170{bottom:368.413333pt;}
.yf_c00170{bottom:390.946667pt;}
.ye_c00170{bottom:412.813333pt;}
.yd_c00170{bottom:434.680000pt;}
.yc_c00170{bottom:456.413333pt;}
.yb_c00170{bottom:478.280000pt;}
.ya_c00170{bottom:500.680000pt;}
.y9_c00170{bottom:522.680000pt;}
.y8_c00170{bottom:544.813333pt;}
.y7_c00170{bottom:567.346667pt;}
.y6_c00170{bottom:589.480000pt;}
.y5_c00170{bottom:611.480000pt;}
.y4_c00170{bottom:633.880000pt;}
.y3_c00170{bottom:656.146667pt;}
.y2_c00170{bottom:678.680000pt;}
.y1_c00170{bottom:700.280000pt;}
.h6_c00170{height:11.733399pt;}
.h7_c00170{height:38.937500pt;}
.h2_c00170{height:71.785156pt;}
.h3_c00170{height:77.654948pt;}
.h5_c00170{height:78.027344pt;}
.h4_c00170{height:84.407552pt;}
.h1_c00170{height:738.666667pt;}
.h0_c00170{height:738.733333pt;}
.w1_c00170{width:93.222667pt;}
.w0_c00170{width:498.000000pt;}
.x0_c00170{left:0.000000pt;}
.xb_c00170{left:28.533333pt;}
.x4_c00170{left:30.000000pt;}
.x3_c00170{left:31.466667pt;}
.xc_c00170{left:32.400000pt;}
.x5_c00170{left:33.333333pt;}
.x6_c00170{left:34.266667pt;}
.x8_c00170{left:52.800000pt;}
.x7_c00170{left:53.733333pt;}
.x9_c00170{left:54.933333pt;}
.xa_c00170{left:68.400000pt;}
.x2_c00170{left:70.266667pt;}
.x1_c00170{left:176.133333pt;}
.xd_c00170{left:206.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_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_9600b7671a3df83eecc84494.woff2')format("woff");}.ff1_c00171{font-family:ff1_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:ff2_c00171;src:url('chunks/assets/font_62c8e04eaafb4a02accfa512.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_b6b5133689e659fa60acd44e.woff2')format("woff");}.ff3_c00171{font-family:ff3_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:ff4_c00171;src:url('chunks/assets/font_22413ce4a31e2daac9a37e82.woff2')format("woff");}.ff4_c00171{font-family:ff4_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:ff5_c00171;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00171{font-family:ff5_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;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls3_c00171{letter-spacing:0.000000px;}
.ls4_c00171{letter-spacing:3.000000px;}
.ls1_c00171{letter-spacing:11.121000px;}
.ls0_c00171{letter-spacing:79.371000px;}
.ls2_c00171{letter-spacing:81.771000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:-33.000000px;}
.ws1_c00171{word-spacing:-19.629000px;}
.ws2_c00171{word-spacing:-16.629000px;}
.ws3_c00171{word-spacing:0.000000px;}
._20_c00171{margin-left:-26.526000px;}
._1b_c00171{margin-left:-22.977000px;}
._1c_c00171{margin-left:-17.388000px;}
._18_c00171{margin-left:-16.146000px;}
._9_c00171{margin-left:-14.184000px;}
._e_c00171{margin-left:-13.110000px;}
._19_c00171{margin-left:-11.142000px;}
._6_c00171{margin-left:-10.074000px;}
._1e_c00171{margin-left:-8.793000px;}
._a_c00171{margin-left:-6.930000px;}
._17_c00171{margin-left:-5.559000px;}
._c_c00171{margin-left:-4.347000px;}
._7_c00171{margin-left:-2.415000px;}
._8_c00171{margin-left:-1.104000px;}
._1_c00171{width:1.725000px;}
._4_c00171{width:3.450000px;}
._5_c00171{width:5.244000px;}
._10_c00171{width:6.279000px;}
._0_c00171{width:7.383000px;}
._b_c00171{width:8.970000px;}
._13_c00171{width:10.212000px;}
._14_c00171{width:12.105000px;}
._2_c00171{width:13.731000px;}
._d_c00171{width:15.456000px;}
._22_c00171{width:16.491000px;}
._11_c00171{width:17.595000px;}
._1f_c00171{width:18.798000px;}
._1d_c00171{width:20.079000px;}
._12_c00171{width:21.183000px;}
._16_c00171{width:22.770000px;}
._15_c00171{width:26.289000px;}
._25_c00171{width:30.222000px;}
._23_c00171{width:32.952000px;}
._f_c00171{width:41.607000px;}
._1a_c00171{width:78.540000px;}
._21_c00171{width:120.750000px;}
._24_c00171{width:272.043000px;}
._27_c00171{width:365.106000px;}
._3_c00171{width:387.504000px;}
._26_c00171{width:426.489000px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(128,128,128);}
.fc0_c00171{color:rgb(0,0,0);}
.fs4_c00171{font-size:48.000000px;}
.fs2_c00171{font-size:63.000000px;}
.fs1_c00171{font-size:66.000000px;}
.fs0_c00171{font-size:69.000000px;}
.fs3_c00171{font-size:81.000000px;}
.y0_c00171{bottom:0.000000px;}
.y20_c00171{bottom:3.105000px;}
.y1f_c00171{bottom:7.228355px;}
.y1e_c00171{bottom:59.085000px;}
.y1d_c00171{bottom:85.035000px;}
.y1c_c00171{bottom:110.985000px;}
.y1b_c00171{bottom:136.635000px;}
.y1a_c00171{bottom:162.285000px;}
.y19_c00171{bottom:186.585000px;}
.y18_c00171{bottom:211.485000px;}
.y17_c00171{bottom:236.235000px;}
.y16_c00171{bottom:261.435000px;}
.y15_c00171{bottom:286.185000px;}
.y14_c00171{bottom:311.085000px;}
.y13_c00171{bottom:335.835000px;}
.y12_c00171{bottom:359.985000px;}
.y11_c00171{bottom:385.335000px;}
.y10_c00171{bottom:409.635000px;}
.yf_c00171{bottom:435.285000px;}
.ye_c00171{bottom:460.635000px;}
.yd_c00171{bottom:486.285000px;}
.yc_c00171{bottom:510.885000px;}
.yb_c00171{bottom:534.885000px;}
.ya_c00171{bottom:560.235000px;}
.y9_c00171{bottom:584.085000px;}
.y8_c00171{bottom:608.835000px;}
.y7_c00171{bottom:634.185000px;}
.y6_c00171{bottom:658.485000px;}
.y5_c00171{bottom:683.985000px;}
.y4_c00171{bottom:709.035000px;}
.y3_c00171{bottom:733.635000px;}
.y2_c00171{bottom:759.585000px;}
.y1_c00171{bottom:784.935000px;}
.h5_c00171{height:13.200074px;}
.h6_c00171{height:43.804688px;}
.h2_c00171{height:80.758301px;}
.h3_c00171{height:87.361816px;}
.h4_c00171{height:102.555176px;}
.h1_c00171{height:813.000000px;}
.h0_c00171{height:813.225000px;}
.w2_c00171{width:104.875500px;}
.w1_c00171{width:539.250000px;}
.w0_c00171{width:539.475000px;}
.x0_c00171{left:0.000000px;}
.xb_c00171{left:72.450000px;}
.xa_c00171{left:73.500000px;}
.x7_c00171{left:74.550000px;}
.x2_c00171{left:75.900000px;}
.x3_c00171{left:77.250000px;}
.x1_c00171{left:89.700000px;}
.x8_c00171{left:95.850000px;}
.x4_c00171{left:99.150000px;}
.x5_c00171{left:100.500000px;}
.x9_c00171{left:120.600000px;}
.x6_c00171{left:123.750000px;}
.xd_c00171{left:221.551758px;}
.xc_c00171{left:260.250000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls3_c00171{letter-spacing:0.000000pt;}
.ls4_c00171{letter-spacing:2.666667pt;}
.ls1_c00171{letter-spacing:9.885333pt;}
.ls0_c00171{letter-spacing:70.552000pt;}
.ls2_c00171{letter-spacing:72.685333pt;}
.ws0_c00171{word-spacing:-29.333333pt;}
.ws1_c00171{word-spacing:-17.448000pt;}
.ws2_c00171{word-spacing:-14.781333pt;}
.ws3_c00171{word-spacing:0.000000pt;}
._20_c00171{margin-left:-23.578667pt;}
._1b_c00171{margin-left:-20.424000pt;}
._1c_c00171{margin-left:-15.456000pt;}
._18_c00171{margin-left:-14.352000pt;}
._9_c00171{margin-left:-12.608000pt;}
._e_c00171{margin-left:-11.653333pt;}
._19_c00171{margin-left:-9.904000pt;}
._6_c00171{margin-left:-8.954667pt;}
._1e_c00171{margin-left:-7.816000pt;}
._a_c00171{margin-left:-6.160000pt;}
._17_c00171{margin-left:-4.941333pt;}
._c_c00171{margin-left:-3.864000pt;}
._7_c00171{margin-left:-2.146667pt;}
._8_c00171{margin-left:-0.981333pt;}
._1_c00171{width:1.533333pt;}
._4_c00171{width:3.066667pt;}
._5_c00171{width:4.661333pt;}
._10_c00171{width:5.581333pt;}
._0_c00171{width:6.562667pt;}
._b_c00171{width:7.973333pt;}
._13_c00171{width:9.077333pt;}
._14_c00171{width:10.760000pt;}
._2_c00171{width:12.205333pt;}
._d_c00171{width:13.738667pt;}
._22_c00171{width:14.658667pt;}
._11_c00171{width:15.640000pt;}
._1f_c00171{width:16.709333pt;}
._1d_c00171{width:17.848000pt;}
._12_c00171{width:18.829333pt;}
._16_c00171{width:20.240000pt;}
._15_c00171{width:23.368000pt;}
._25_c00171{width:26.864000pt;}
._23_c00171{width:29.290667pt;}
._f_c00171{width:36.984000pt;}
._1a_c00171{width:69.813333pt;}
._21_c00171{width:107.333333pt;}
._24_c00171{width:241.816000pt;}
._27_c00171{width:324.538667pt;}
._3_c00171{width:344.448000pt;}
._26_c00171{width:379.101333pt;}
.fs4_c00171{font-size:42.666667pt;}
.fs2_c00171{font-size:56.000000pt;}
.fs1_c00171{font-size:58.666667pt;}
.fs0_c00171{font-size:61.333333pt;}
.fs3_c00171{font-size:72.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y20_c00171{bottom:2.760000pt;}
.y1f_c00171{bottom:6.425204pt;}
.y1e_c00171{bottom:52.520000pt;}
.y1d_c00171{bottom:75.586667pt;}
.y1c_c00171{bottom:98.653333pt;}
.y1b_c00171{bottom:121.453333pt;}
.y1a_c00171{bottom:144.253333pt;}
.y19_c00171{bottom:165.853333pt;}
.y18_c00171{bottom:187.986667pt;}
.y17_c00171{bottom:209.986667pt;}
.y16_c00171{bottom:232.386667pt;}
.y15_c00171{bottom:254.386667pt;}
.y14_c00171{bottom:276.520000pt;}
.y13_c00171{bottom:298.520000pt;}
.y12_c00171{bottom:319.986667pt;}
.y11_c00171{bottom:342.520000pt;}
.y10_c00171{bottom:364.120000pt;}
.yf_c00171{bottom:386.920000pt;}
.ye_c00171{bottom:409.453333pt;}
.yd_c00171{bottom:432.253333pt;}
.yc_c00171{bottom:454.120000pt;}
.yb_c00171{bottom:475.453333pt;}
.ya_c00171{bottom:497.986667pt;}
.y9_c00171{bottom:519.186667pt;}
.y8_c00171{bottom:541.186667pt;}
.y7_c00171{bottom:563.720000pt;}
.y6_c00171{bottom:585.320000pt;}
.y5_c00171{bottom:607.986667pt;}
.y4_c00171{bottom:630.253333pt;}
.y3_c00171{bottom:652.120000pt;}
.y2_c00171{bottom:675.186667pt;}
.y1_c00171{bottom:697.720000pt;}
.h5_c00171{height:11.733399pt;}
.h6_c00171{height:38.937500pt;}
.h2_c00171{height:71.785156pt;}
.h3_c00171{height:77.654948pt;}
.h4_c00171{height:91.160156pt;}
.h1_c00171{height:722.666667pt;}
.h0_c00171{height:722.866667pt;}
.w2_c00171{width:93.222667pt;}
.w1_c00171{width:479.333333pt;}
.w0_c00171{width:479.533333pt;}
.x0_c00171{left:0.000000pt;}
.xb_c00171{left:64.400000pt;}
.xa_c00171{left:65.333333pt;}
.x7_c00171{left:66.266667pt;}
.x2_c00171{left:67.466667pt;}
.x3_c00171{left:68.666667pt;}
.x1_c00171{left:79.733333pt;}
.x8_c00171{left:85.200000pt;}
.x4_c00171{left:88.133333pt;}
.x5_c00171{left:89.333333pt;}
.x9_c00171{left:107.200000pt;}
.x6_c00171{left:110.000000pt;}
.xd_c00171{left:196.934896pt;}
.xc_c00171{left:231.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_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_a61247669198fc9dbd4cd701.woff2')format("woff");}.ff1_c00172{font-family:ff1_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:ff2_c00172;src:url('chunks/assets/font_49a87a1e1aba1025fc4f32ef.woff2')format("woff");}.ff2_c00172{font-family:ff2_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:ff3_c00172;src:url('chunks/assets/font_5577dc8a807aff2256a72017.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_df7b6154e90c1f9bf8a4af6c.woff2')format("woff");}.ff4_c00172{font-family:ff4_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:ff5_c00172;src:url('chunks/assets/font_ced33d082fe3b803eda91f46.woff2')format("woff");}.ff5_c00172{font-family:ff5_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:ff6_c00172;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00172{font-family:ff6_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:-3.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:3.000000px;}
.ls2_c00172{letter-spacing:6.000000px;}
.ls4_c00172{letter-spacing:9.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00172{word-spacing:-25.629000px;}
.ws0_c00172{word-spacing:-22.629000px;}
.ws2_c00172{word-spacing:-16.629000px;}
.ws1_c00172{word-spacing:-11.568000px;}
.ws4_c00172{word-spacing:0.000000px;}
._23_c00172{margin-left:-18.543000px;}
._8_c00172{margin-left:-17.211000px;}
._13_c00172{margin-left:-15.918000px;}
._24_c00172{margin-left:-14.193000px;}
._14_c00172{margin-left:-12.867000px;}
._25_c00172{margin-left:-11.853000px;}
._1e_c00172{margin-left:-10.680000px;}
._1a_c00172{margin-left:-9.606000px;}
._19_c00172{margin-left:-8.433000px;}
._f_c00172{margin-left:-7.245000px;}
._6_c00172{margin-left:-6.003000px;}
._7_c00172{margin-left:-4.539000px;}
._2_c00172{margin-left:-3.519000px;}
._3_c00172{margin-left:-1.725000px;}
._0_c00172{width:1.863000px;}
._1_c00172{width:3.864000px;}
._9_c00172{width:5.037000px;}
._11_c00172{width:6.417000px;}
._d_c00172{width:7.767000px;}
._1b_c00172{width:9.276000px;}
._5_c00172{width:10.557000px;}
._e_c00172{width:11.631000px;}
._b_c00172{width:12.972000px;}
._a_c00172{width:14.007000px;}
._c_c00172{width:15.186000px;}
._18_c00172{width:16.476000px;}
._10_c00172{width:18.438000px;}
._12_c00172{width:20.448000px;}
._27_c00172{width:21.795000px;}
._20_c00172{width:24.168000px;}
._1c_c00172{width:25.998000px;}
._16_c00172{width:30.282000px;}
._17_c00172{width:33.258000px;}
._21_c00172{width:37.044000px;}
._22_c00172{width:43.515000px;}
._26_c00172{width:48.807000px;}
._15_c00172{width:54.591000px;}
._1f_c00172{width:304.440000px;}
._1d_c00172{width:379.404000px;}
._28_c00172{width:473.613000px;}
._4_c00172{width:491.718000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(128,128,128);}
.fc0_c00172{color:rgb(0,0,0);}
.fs3_c00172{font-size:48.000000px;}
.fs4_c00172{font-size:51.000000px;}
.fs2_c00172{font-size:57.000000px;}
.fs1_c00172{font-size:60.000000px;}
.fs6_c00172{font-size:63.000000px;}
.fs0_c00172{font-size:69.000000px;}
.fs5_c00172{font-size:75.000000px;}
.y0_c00172{bottom:0.000000px;}
.y1e_c00172{bottom:3.105000px;}
.y1d_c00172{bottom:7.228371px;}
.y1c_c00172{bottom:62.415000px;}
.y1b_c00172{bottom:88.065000px;}
.y1a_c00172{bottom:113.715000px;}
.y19_c00172{bottom:138.165000px;}
.y18_c00172{bottom:163.815000px;}
.y17_c00172{bottom:188.715000px;}
.y16_c00172{bottom:214.965000px;}
.y15_c00172{bottom:239.265000px;}
.y14_c00172{bottom:264.915000px;}
.y13_c00172{bottom:289.665000px;}
.y12_c00172{bottom:339.315000px;}
.y11_c00172{bottom:379.365000px;}
.y10_c00172{bottom:396.915000px;}
.yf_c00172{bottom:414.765000px;}
.ye_c00172{bottom:450.015000px;}
.yd_c00172{bottom:486.465000px;}
.yc_c00172{bottom:511.365000px;}
.yb_c00172{bottom:535.965000px;}
.ya_c00172{bottom:560.715000px;}
.y9_c00172{bottom:585.465000px;}
.y8_c00172{bottom:610.665000px;}
.y7_c00172{bottom:635.865000px;}
.y6_c00172{bottom:660.615000px;}
.y5_c00172{bottom:685.815000px;}
.y4_c00172{bottom:711.015000px;}
.y3_c00172{bottom:736.065000px;}
.y2_c00172{bottom:761.115000px;}
.y1_c00172{bottom:785.415000px;}
.ha_c00172{height:13.200074px;}
.hb_c00172{height:43.804688px;}
.h8_c00172{height:56.179688px;}
.h6_c00172{height:60.773438px;}
.h7_c00172{height:64.571777px;}
.h5_c00172{height:75.966797px;}
.h3_c00172{height:80.758301px;}
.h4_c00172{height:86.761816px;}
.h2_c00172{height:87.361816px;}
.h9_c00172{height:87.780762px;}
.h1_c00172{height:831.000000px;}
.h0_c00172{height:831.075000px;}
.w1_c00172{width:104.875500px;}
.w0_c00172{width:560.250000px;}
.x0_c00172{left:0.000000px;}
.xd_c00172{left:30.000000px;}
.xc_c00172{left:32.100000px;}
.x6_c00172{left:33.150000px;}
.x5_c00172{left:35.100000px;}
.x4_c00172{left:36.750000px;}
.x2_c00172{left:39.450000px;}
.x8_c00172{left:46.650000px;}
.x9_c00172{left:50.850000px;}
.xb_c00172{left:57.750000px;}
.x3_c00172{left:61.800000px;}
.xa_c00172{left:75.600000px;}
.x1_c00172{left:198.900000px;}
.x7_c00172{left:223.800000px;}
.xf_c00172{left:231.939240px;}
.xe_c00172{left:284.850000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:-2.666667pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:2.666667pt;}
.ls2_c00172{letter-spacing:5.333333pt;}
.ls4_c00172{letter-spacing:8.000000pt;}
.ws3_c00172{word-spacing:-22.781333pt;}
.ws0_c00172{word-spacing:-20.114667pt;}
.ws2_c00172{word-spacing:-14.781333pt;}
.ws1_c00172{word-spacing:-10.282667pt;}
.ws4_c00172{word-spacing:0.000000pt;}
._23_c00172{margin-left:-16.482667pt;}
._8_c00172{margin-left:-15.298667pt;}
._13_c00172{margin-left:-14.149333pt;}
._24_c00172{margin-left:-12.616000pt;}
._14_c00172{margin-left:-11.437333pt;}
._25_c00172{margin-left:-10.536000pt;}
._1e_c00172{margin-left:-9.493333pt;}
._1a_c00172{margin-left:-8.538667pt;}
._19_c00172{margin-left:-7.496000pt;}
._f_c00172{margin-left:-6.440000pt;}
._6_c00172{margin-left:-5.336000pt;}
._7_c00172{margin-left:-4.034667pt;}
._2_c00172{margin-left:-3.128000pt;}
._3_c00172{margin-left:-1.533333pt;}
._0_c00172{width:1.656000pt;}
._1_c00172{width:3.434667pt;}
._9_c00172{width:4.477333pt;}
._11_c00172{width:5.704000pt;}
._d_c00172{width:6.904000pt;}
._1b_c00172{width:8.245333pt;}
._5_c00172{width:9.384000pt;}
._e_c00172{width:10.338667pt;}
._b_c00172{width:11.530667pt;}
._a_c00172{width:12.450667pt;}
._c_c00172{width:13.498667pt;}
._18_c00172{width:14.645333pt;}
._10_c00172{width:16.389333pt;}
._12_c00172{width:18.176000pt;}
._27_c00172{width:19.373333pt;}
._20_c00172{width:21.482667pt;}
._1c_c00172{width:23.109333pt;}
._16_c00172{width:26.917333pt;}
._17_c00172{width:29.562667pt;}
._21_c00172{width:32.928000pt;}
._22_c00172{width:38.680000pt;}
._26_c00172{width:43.384000pt;}
._15_c00172{width:48.525333pt;}
._1f_c00172{width:270.613333pt;}
._1d_c00172{width:337.248000pt;}
._28_c00172{width:420.989333pt;}
._4_c00172{width:437.082667pt;}
.fs3_c00172{font-size:42.666667pt;}
.fs4_c00172{font-size:45.333333pt;}
.fs2_c00172{font-size:50.666667pt;}
.fs1_c00172{font-size:53.333333pt;}
.fs6_c00172{font-size:56.000000pt;}
.fs0_c00172{font-size:61.333333pt;}
.fs5_c00172{font-size:66.666667pt;}
.y0_c00172{bottom:0.000000pt;}
.y1e_c00172{bottom:2.760000pt;}
.y1d_c00172{bottom:6.425219pt;}
.y1c_c00172{bottom:55.480000pt;}
.y1b_c00172{bottom:78.280000pt;}
.y1a_c00172{bottom:101.080000pt;}
.y19_c00172{bottom:122.813333pt;}
.y18_c00172{bottom:145.613333pt;}
.y17_c00172{bottom:167.746667pt;}
.y16_c00172{bottom:191.080000pt;}
.y15_c00172{bottom:212.680000pt;}
.y14_c00172{bottom:235.480000pt;}
.y13_c00172{bottom:257.480000pt;}
.y12_c00172{bottom:301.613333pt;}
.y11_c00172{bottom:337.213333pt;}
.y10_c00172{bottom:352.813333pt;}
.yf_c00172{bottom:368.680000pt;}
.ye_c00172{bottom:400.013333pt;}
.yd_c00172{bottom:432.413333pt;}
.yc_c00172{bottom:454.546667pt;}
.yb_c00172{bottom:476.413333pt;}
.ya_c00172{bottom:498.413333pt;}
.y9_c00172{bottom:520.413333pt;}
.y8_c00172{bottom:542.813333pt;}
.y7_c00172{bottom:565.213333pt;}
.y6_c00172{bottom:587.213333pt;}
.y5_c00172{bottom:609.613333pt;}
.y4_c00172{bottom:632.013333pt;}
.y3_c00172{bottom:654.280000pt;}
.y2_c00172{bottom:676.546667pt;}
.y1_c00172{bottom:698.146667pt;}
.ha_c00172{height:11.733399pt;}
.hb_c00172{height:38.937500pt;}
.h8_c00172{height:49.937500pt;}
.h6_c00172{height:54.020833pt;}
.h7_c00172{height:57.397135pt;}
.h5_c00172{height:67.526042pt;}
.h3_c00172{height:71.785156pt;}
.h4_c00172{height:77.121615pt;}
.h2_c00172{height:77.654948pt;}
.h9_c00172{height:78.027344pt;}
.h1_c00172{height:738.666667pt;}
.h0_c00172{height:738.733333pt;}
.w1_c00172{width:93.222667pt;}
.w0_c00172{width:498.000000pt;}
.x0_c00172{left:0.000000pt;}
.xd_c00172{left:26.666667pt;}
.xc_c00172{left:28.533333pt;}
.x6_c00172{left:29.466667pt;}
.x5_c00172{left:31.200000pt;}
.x4_c00172{left:32.666667pt;}
.x2_c00172{left:35.066667pt;}
.x8_c00172{left:41.466667pt;}
.x9_c00172{left:45.200000pt;}
.xb_c00172{left:51.333333pt;}
.x3_c00172{left:54.933333pt;}
.xa_c00172{left:67.200000pt;}
.x1_c00172{left:176.800000pt;}
.x7_c00172{left:198.933333pt;}
.xf_c00172{left:206.168213pt;}
.xe_c00172{left:253.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_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_22d4388f6091bf87ad97f103.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.480469;font-style:normal;font-weight:normal;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_82cdb9e50ac9cdc9010c04d9.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.568848;font-style:normal;font-weight:normal;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_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00173{font-family:ff4_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);}
.v0_c00173{vertical-align:0.000000px;}
.ls1_c00173{letter-spacing:0.000000px;}
.ls2_c00173{letter-spacing:3.000000px;}
.ls3_c00173{letter-spacing:6.000000px;}
.ls0_c00173{letter-spacing:24.171000px;}
.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:-44.022000px;}
.ws1_c00173{word-spacing:-22.629000px;}
.ws2_c00173{word-spacing:0.000000px;}
._1d_c00173{margin-left:-17.058000px;}
._1f_c00173{margin-left:-15.111000px;}
._17_c00173{margin-left:-12.039000px;}
._16_c00173{margin-left:-10.887000px;}
._18_c00173{margin-left:-9.729000px;}
._1e_c00173{margin-left:-8.574000px;}
._d_c00173{margin-left:-7.419000px;}
._14_c00173{margin-left:-5.655000px;}
._1b_c00173{margin-left:-4.347000px;}
._a_c00173{margin-left:-3.207000px;}
._4_c00173{margin-left:-1.518000px;}
._0_c00173{width:1.725000px;}
._5_c00173{width:2.829000px;}
._1_c00173{width:4.071000px;}
._6_c00173{width:5.727000px;}
._2_c00173{width:6.969000px;}
._c_c00173{width:8.418000px;}
._8_c00173{width:9.798000px;}
._10_c00173{width:11.418000px;}
._11_c00173{width:12.489000px;}
._7_c00173{width:13.593000px;}
._9_c00173{width:14.973000px;}
._15_c00173{width:15.978000px;}
._b_c00173{width:17.076000px;}
._1a_c00173{width:18.663000px;}
._e_c00173{width:21.012000px;}
._12_c00173{width:23.805000px;}
._f_c00173{width:25.737000px;}
._13_c00173{width:35.016000px;}
._19_c00173{width:36.501000px;}
._1c_c00173{width:65.127000px;}
._20_c00173{width:211.416000px;}
._3_c00173{width:367.425000px;}
.fc2_c00173{color:transparent;}
.fc1_c00173{color:rgb(128,128,128);}
.fc0_c00173{color:rgb(0,0,0);}
.fs2_c00173{font-size:48.000000px;}
.fs1_c00173{font-size:66.000000px;}
.fs0_c00173{font-size:69.000000px;}
.y0_c00173{bottom:0.000000px;}
.y1c_c00173{bottom:3.105000px;}
.y1b_c00173{bottom:7.228363px;}
.y1a_c00173{bottom:114.000000px;}
.y19_c00173{bottom:139.650000px;}
.y18_c00173{bottom:165.750000px;}
.y17_c00173{bottom:190.650000px;}
.y16_c00173{bottom:216.300000px;}
.y15_c00173{bottom:240.900000px;}
.y14_c00173{bottom:266.850000px;}
.y13_c00173{bottom:291.900000px;}
.y12_c00173{bottom:340.500000px;}
.y11_c00173{bottom:391.500000px;}
.y10_c00173{bottom:414.750000px;}
.yf_c00173{bottom:440.700000px;}
.ye_c00173{bottom:465.000000px;}
.yd_c00173{bottom:490.050000px;}
.yc_c00173{bottom:514.950000px;}
.yb_c00173{bottom:539.700000px;}
.ya_c00173{bottom:564.300000px;}
.y9_c00173{bottom:588.900000px;}
.y8_c00173{bottom:613.800000px;}
.y7_c00173{bottom:638.550000px;}
.y6_c00173{bottom:663.750000px;}
.y5_c00173{bottom:688.500000px;}
.y4_c00173{bottom:713.700000px;}
.y3_c00173{bottom:738.450000px;}
.y2_c00173{bottom:763.350000px;}
.y1_c00173{bottom:788.400000px;}
.h4_c00173{height:13.200074px;}
.h5_c00173{height:43.804688px;}
.h2_c00173{height:80.758301px;}
.h3_c00173{height:87.361816px;}
.h1_c00173{height:834.000000px;}
.h0_c00173{height:834.300000px;}
.w2_c00173{width:104.875500px;}
.w1_c00173{width:552.750000px;}
.w0_c00173{width:552.975000px;}
.x0_c00173{left:0.000000px;}
.x8_c00173{left:51.600000px;}
.x7_c00173{left:86.850000px;}
.x6_c00173{left:90.450000px;}
.x3_c00173{left:91.800000px;}
.x2_c00173{left:94.050000px;}
.x1_c00173{left:107.550000px;}
.x5_c00173{left:116.550000px;}
.x4_c00173{left:135.450000px;}
.x9_c00173{left:228.301758px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.ls2_c00173{letter-spacing:2.666667pt;}
.ls3_c00173{letter-spacing:5.333333pt;}
.ls0_c00173{letter-spacing:21.485333pt;}
.ws0_c00173{word-spacing:-39.130667pt;}
.ws1_c00173{word-spacing:-20.114667pt;}
.ws2_c00173{word-spacing:0.000000pt;}
._1d_c00173{margin-left:-15.162667pt;}
._1f_c00173{margin-left:-13.432000pt;}
._17_c00173{margin-left:-10.701333pt;}
._16_c00173{margin-left:-9.677333pt;}
._18_c00173{margin-left:-8.648000pt;}
._1e_c00173{margin-left:-7.621333pt;}
._d_c00173{margin-left:-6.594667pt;}
._14_c00173{margin-left:-5.026667pt;}
._1b_c00173{margin-left:-3.864000pt;}
._a_c00173{margin-left:-2.850667pt;}
._4_c00173{margin-left:-1.349333pt;}
._0_c00173{width:1.533333pt;}
._5_c00173{width:2.514667pt;}
._1_c00173{width:3.618667pt;}
._6_c00173{width:5.090667pt;}
._2_c00173{width:6.194667pt;}
._c_c00173{width:7.482667pt;}
._8_c00173{width:8.709333pt;}
._10_c00173{width:10.149333pt;}
._11_c00173{width:11.101333pt;}
._7_c00173{width:12.082667pt;}
._9_c00173{width:13.309333pt;}
._15_c00173{width:14.202667pt;}
._b_c00173{width:15.178667pt;}
._1a_c00173{width:16.589333pt;}
._e_c00173{width:18.677333pt;}
._12_c00173{width:21.160000pt;}
._f_c00173{width:22.877333pt;}
._13_c00173{width:31.125333pt;}
._19_c00173{width:32.445333pt;}
._1c_c00173{width:57.890667pt;}
._20_c00173{width:187.925333pt;}
._3_c00173{width:326.600000pt;}
.fs2_c00173{font-size:42.666667pt;}
.fs1_c00173{font-size:58.666667pt;}
.fs0_c00173{font-size:61.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y1c_c00173{bottom:2.760000pt;}
.y1b_c00173{bottom:6.425212pt;}
.y1a_c00173{bottom:101.333333pt;}
.y19_c00173{bottom:124.133333pt;}
.y18_c00173{bottom:147.333333pt;}
.y17_c00173{bottom:169.466667pt;}
.y16_c00173{bottom:192.266667pt;}
.y15_c00173{bottom:214.133333pt;}
.y14_c00173{bottom:237.200000pt;}
.y13_c00173{bottom:259.466667pt;}
.y12_c00173{bottom:302.666667pt;}
.y11_c00173{bottom:348.000000pt;}
.y10_c00173{bottom:368.666667pt;}
.yf_c00173{bottom:391.733333pt;}
.ye_c00173{bottom:413.333333pt;}
.yd_c00173{bottom:435.600000pt;}
.yc_c00173{bottom:457.733333pt;}
.yb_c00173{bottom:479.733333pt;}
.ya_c00173{bottom:501.600000pt;}
.y9_c00173{bottom:523.466667pt;}
.y8_c00173{bottom:545.600000pt;}
.y7_c00173{bottom:567.600000pt;}
.y6_c00173{bottom:590.000000pt;}
.y5_c00173{bottom:612.000000pt;}
.y4_c00173{bottom:634.400000pt;}
.y3_c00173{bottom:656.400000pt;}
.y2_c00173{bottom:678.533333pt;}
.y1_c00173{bottom:700.800000pt;}
.h4_c00173{height:11.733399pt;}
.h5_c00173{height:38.937500pt;}
.h2_c00173{height:71.785156pt;}
.h3_c00173{height:77.654948pt;}
.h1_c00173{height:741.333333pt;}
.h0_c00173{height:741.600000pt;}
.w2_c00173{width:93.222667pt;}
.w1_c00173{width:491.333333pt;}
.w0_c00173{width:491.533333pt;}
.x0_c00173{left:0.000000pt;}
.x8_c00173{left:45.866667pt;}
.x7_c00173{left:77.200000pt;}
.x6_c00173{left:80.400000pt;}
.x3_c00173{left:81.600000pt;}
.x2_c00173{left:83.600000pt;}
.x1_c00173{left:95.600000pt;}
.x5_c00173{left:103.600000pt;}
.x4_c00173{left:120.400000pt;}
.x9_c00173{left:202.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d9aab26914dab02b1caeefa.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_d6f8d13a75d2191347899985.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.568848;font-style:normal;font-weight:normal;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_35323ef17dd3f92c7c457cb6.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_9c37e703345668765f904cda.woff2')format("woff");}.ff4_c00174{font-family:ff4_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:ff5_c00174;src:url('chunks/assets/font_f580853f5c4dae9120de03f6.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;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_c00174;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00174{font-family:ff6_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;}
.ls3_c00174{letter-spacing:0.000000px;}
.ls4_c00174{letter-spacing:3.000000px;}
.ls5_c00174{letter-spacing:6.000000px;}
.ls1_c00174{letter-spacing:15.879000px;}
.ls0_c00174{letter-spacing:18.000000px;}
.ls2_c00174{letter-spacing:20.079000px;}
.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;}
}
.ws3_c00174{word-spacing:-25.500000px;}
.ws4_c00174{word-spacing:-24.288000px;}
.ws2_c00174{word-spacing:-19.629000px;}
.ws5_c00174{word-spacing:-16.629000px;}
.ws0_c00174{word-spacing:-1.242000px;}
.ws1_c00174{word-spacing:-0.387000px;}
.ws6_c00174{word-spacing:0.000000px;}
._1c_c00174{margin-left:-28.497000px;}
._22_c00174{margin-left:-18.213000px;}
._26_c00174{margin-left:-14.565000px;}
._1b_c00174{margin-left:-13.107000px;}
._25_c00174{margin-left:-12.075000px;}
._f_c00174{margin-left:-8.865000px;}
._24_c00174{margin-left:-7.245000px;}
._1e_c00174{margin-left:-5.382000px;}
._3_c00174{margin-left:-3.933000px;}
._2_c00174{margin-left:-2.415000px;}
._c_c00174{margin-left:-1.104000px;}
._1_c00174{width:1.380000px;}
._0_c00174{width:2.415000px;}
._6_c00174{width:3.933000px;}
._b_c00174{width:5.037000px;}
._5_c00174{width:6.072000px;}
._9_c00174{width:8.004000px;}
._19_c00174{width:9.105000px;}
._10_c00174{width:10.143000px;}
._11_c00174{width:11.385000px;}
._15_c00174{width:12.696000px;}
._a_c00174{width:13.938000px;}
._8_c00174{width:15.249000px;}
._14_c00174{width:16.767000px;}
._d_c00174{width:18.561000px;}
._16_c00174{width:21.804000px;}
._12_c00174{width:23.322000px;}
._7_c00174{width:24.771000px;}
._e_c00174{width:26.496000px;}
._1d_c00174{width:28.296000px;}
._1f_c00174{width:29.400000px;}
._21_c00174{width:31.812000px;}
._18_c00174{width:33.603000px;}
._20_c00174{width:35.880000px;}
._1a_c00174{width:37.674000px;}
._13_c00174{width:39.606000px;}
._23_c00174{width:76.281000px;}
._17_c00174{width:235.704000px;}
._4_c00174{width:493.566000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(128,128,128);}
.fc0_c00174{color:rgb(0,0,0);}
.fs4_c00174{font-size:48.000000px;}
.fs1_c00174{font-size:66.000000px;}
.fs0_c00174{font-size:69.000000px;}
.fs2_c00174{font-size:78.000000px;}
.fs3_c00174{font-size:81.000000px;}
.y0_c00174{bottom:0.000000px;}
.y1d_c00174{bottom:3.105000px;}
.y1c_c00174{bottom:7.228369px;}
.y1b_c00174{bottom:86.970000px;}
.y1a_c00174{bottom:113.970000px;}
.y19_c00174{bottom:140.070000px;}
.y18_c00174{bottom:164.070000px;}
.y17_c00174{bottom:213.570000px;}
.y16_c00174{bottom:265.620000px;}
.y15_c00174{bottom:288.870000px;}
.y14_c00174{bottom:313.470000px;}
.y13_c00174{bottom:338.820000px;}
.y12_c00174{bottom:363.720000px;}
.y11_c00174{bottom:388.170000px;}
.y10_c00174{bottom:413.070000px;}
.yf_c00174{bottom:437.670000px;}
.ye_c00174{bottom:462.720000px;}
.yd_c00174{bottom:487.320000px;}
.yc_c00174{bottom:511.620000px;}
.yb_c00174{bottom:535.920000px;}
.ya_c00174{bottom:560.820000px;}
.y9_c00174{bottom:585.870000px;}
.y8_c00174{bottom:610.770000px;}
.y7_c00174{bottom:634.770000px;}
.y6_c00174{bottom:660.420000px;}
.y5_c00174{bottom:685.170000px;}
.y4_c00174{bottom:709.770000px;}
.y3_c00174{bottom:734.070000px;}
.y2_c00174{bottom:759.270000px;}
.y1_c00174{bottom:784.920000px;}
.h5_c00174{height:13.200073px;}
.h6_c00174{height:43.804688px;}
.h4_c00174{height:80.758301px;}
.h2_c00174{height:87.361816px;}
.h3_c00174{height:102.555176px;}
.h0_c00174{height:821.850000px;}
.h1_c00174{height:822.000000px;}
.w1_c00174{width:104.875500px;}
.w0_c00174{width:553.500000px;}
.x0_c00174{left:0.000000px;}
.x7_c00174{left:38.700000px;}
.x2_c00174{left:43.200000px;}
.x3_c00174{left:45.150000px;}
.x4_c00174{left:46.500000px;}
.x6_c00174{left:68.850000px;}
.x5_c00174{left:87.000000px;}
.x1_c00174{left:210.600000px;}
.x9_c00174{left:228.564240px;}
.x8_c00174{left:457.950000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls3_c00174{letter-spacing:0.000000pt;}
.ls4_c00174{letter-spacing:2.666667pt;}
.ls5_c00174{letter-spacing:5.333333pt;}
.ls1_c00174{letter-spacing:14.114667pt;}
.ls0_c00174{letter-spacing:16.000000pt;}
.ls2_c00174{letter-spacing:17.848000pt;}
.ws3_c00174{word-spacing:-22.666667pt;}
.ws4_c00174{word-spacing:-21.589333pt;}
.ws2_c00174{word-spacing:-17.448000pt;}
.ws5_c00174{word-spacing:-14.781333pt;}
.ws0_c00174{word-spacing:-1.104000pt;}
.ws1_c00174{word-spacing:-0.344000pt;}
.ws6_c00174{word-spacing:0.000000pt;}
._1c_c00174{margin-left:-25.330667pt;}
._22_c00174{margin-left:-16.189333pt;}
._26_c00174{margin-left:-12.946667pt;}
._1b_c00174{margin-left:-11.650667pt;}
._25_c00174{margin-left:-10.733333pt;}
._f_c00174{margin-left:-7.880000pt;}
._24_c00174{margin-left:-6.440000pt;}
._1e_c00174{margin-left:-4.784000pt;}
._3_c00174{margin-left:-3.496000pt;}
._2_c00174{margin-left:-2.146667pt;}
._c_c00174{margin-left:-0.981333pt;}
._1_c00174{width:1.226667pt;}
._0_c00174{width:2.146667pt;}
._6_c00174{width:3.496000pt;}
._b_c00174{width:4.477333pt;}
._5_c00174{width:5.397333pt;}
._9_c00174{width:7.114667pt;}
._19_c00174{width:8.093333pt;}
._10_c00174{width:9.016000pt;}
._11_c00174{width:10.120000pt;}
._15_c00174{width:11.285333pt;}
._a_c00174{width:12.389333pt;}
._8_c00174{width:13.554667pt;}
._14_c00174{width:14.904000pt;}
._d_c00174{width:16.498667pt;}
._16_c00174{width:19.381333pt;}
._12_c00174{width:20.730667pt;}
._7_c00174{width:22.018667pt;}
._e_c00174{width:23.552000pt;}
._1d_c00174{width:25.152000pt;}
._1f_c00174{width:26.133333pt;}
._21_c00174{width:28.277333pt;}
._18_c00174{width:29.869333pt;}
._20_c00174{width:31.893333pt;}
._1a_c00174{width:33.488000pt;}
._13_c00174{width:35.205333pt;}
._23_c00174{width:67.805333pt;}
._17_c00174{width:209.514667pt;}
._4_c00174{width:438.725333pt;}
.fs4_c00174{font-size:42.666667pt;}
.fs1_c00174{font-size:58.666667pt;}
.fs0_c00174{font-size:61.333333pt;}
.fs2_c00174{font-size:69.333333pt;}
.fs3_c00174{font-size:72.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y1d_c00174{bottom:2.760000pt;}
.y1c_c00174{bottom:6.425217pt;}
.y1b_c00174{bottom:77.306667pt;}
.y1a_c00174{bottom:101.306667pt;}
.y19_c00174{bottom:124.506667pt;}
.y18_c00174{bottom:145.840000pt;}
.y17_c00174{bottom:189.840000pt;}
.y16_c00174{bottom:236.106667pt;}
.y15_c00174{bottom:256.773333pt;}
.y14_c00174{bottom:278.640000pt;}
.y13_c00174{bottom:301.173333pt;}
.y12_c00174{bottom:323.306667pt;}
.y11_c00174{bottom:345.040000pt;}
.y10_c00174{bottom:367.173333pt;}
.yf_c00174{bottom:389.040000pt;}
.ye_c00174{bottom:411.306667pt;}
.yd_c00174{bottom:433.173333pt;}
.yc_c00174{bottom:454.773333pt;}
.yb_c00174{bottom:476.373333pt;}
.ya_c00174{bottom:498.506667pt;}
.y9_c00174{bottom:520.773333pt;}
.y8_c00174{bottom:542.906667pt;}
.y7_c00174{bottom:564.240000pt;}
.y6_c00174{bottom:587.040000pt;}
.y5_c00174{bottom:609.040000pt;}
.y4_c00174{bottom:630.906667pt;}
.y3_c00174{bottom:652.506667pt;}
.y2_c00174{bottom:674.906667pt;}
.y1_c00174{bottom:697.706667pt;}
.h5_c00174{height:11.733399pt;}
.h6_c00174{height:38.937500pt;}
.h4_c00174{height:71.785156pt;}
.h2_c00174{height:77.654948pt;}
.h3_c00174{height:91.160156pt;}
.h0_c00174{height:730.533333pt;}
.h1_c00174{height:730.666667pt;}
.w1_c00174{width:93.222667pt;}
.w0_c00174{width:492.000000pt;}
.x0_c00174{left:0.000000pt;}
.x7_c00174{left:34.400000pt;}
.x2_c00174{left:38.400000pt;}
.x3_c00174{left:40.133333pt;}
.x4_c00174{left:41.333333pt;}
.x6_c00174{left:61.200000pt;}
.x5_c00174{left:77.333333pt;}
.x1_c00174{left:187.200000pt;}
.x9_c00174{left:203.168213pt;}
.x8_c00174{left:407.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_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_c40523870472740658edf402.woff2')format("woff");}.ff1_c00175{font-family:ff1_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:ff2_c00175;src:url('chunks/assets/font_90a2f328ead12cc70817e9a6.woff2')format("woff");}.ff2_c00175{font-family:ff2_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:ff3_c00175;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00175{font-family:ff3_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);}
.v0_c00175{vertical-align:0.000000px;}
.ls5_c00175{letter-spacing:0.000000px;}
.ls1_c00175{letter-spacing:1.170000px;}
.ls6_c00175{letter-spacing:3.000000px;}
.ls2_c00175{letter-spacing:3.036000px;}
.ls4_c00175{letter-spacing:6.000000px;}
.ls0_c00175{letter-spacing:10.104000px;}
.ls3_c00175{letter-spacing:18.525000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-22.629000px;}
.ws2_c00175{word-spacing:-19.629000px;}
.ws1_c00175{word-spacing:-16.629000px;}
.ws3_c00175{word-spacing:0.000000px;}
._1c_c00175{margin-left:-25.116000px;}
._20_c00175{margin-left:-10.233000px;}
._10_c00175{margin-left:-8.598000px;}
._1d_c00175{margin-left:-7.245000px;}
._5_c00175{margin-left:-6.141000px;}
._6_c00175{margin-left:-4.830000px;}
._4_c00175{margin-left:-3.168000px;}
._7_c00175{margin-left:-1.242000px;}
._1_c00175{width:1.029000px;}
._3_c00175{width:2.157000px;}
._d_c00175{width:3.519000px;}
._c_c00175{width:4.980000px;}
._14_c00175{width:6.312000px;}
._13_c00175{width:7.521000px;}
._0_c00175{width:8.763000px;}
._8_c00175{width:10.494000px;}
._e_c00175{width:12.156000px;}
._f_c00175{width:13.365000px;}
._9_c00175{width:15.129000px;}
._15_c00175{width:16.134000px;}
._18_c00175{width:18.261000px;}
._16_c00175{width:22.395000px;}
._17_c00175{width:24.702000px;}
._b_c00175{width:26.817000px;}
._1f_c00175{width:28.020000px;}
._12_c00175{width:32.220000px;}
._a_c00175{width:33.531000px;}
._1b_c00175{width:35.655000px;}
._1a_c00175{width:37.446000px;}
._19_c00175{width:48.567000px;}
._1e_c00175{width:96.201000px;}
._11_c00175{width:136.545000px;}
._2_c00175{width:360.180000px;}
.fc2_c00175{color:transparent;}
.fc1_c00175{color:rgb(128,128,128);}
.fc0_c00175{color:rgb(0,0,0);}
.fs2_c00175{font-size:48.000000px;}
.fs1_c00175{font-size:66.000000px;}
.fs0_c00175{font-size:69.000000px;}
.y0_c00175{bottom:0.000000px;}
.y20_c00175{bottom:3.105000px;}
.y1f_c00175{bottom:7.228369px;}
.y1e_c00175{bottom:67.770000px;}
.y1d_c00175{bottom:92.370000px;}
.y1c_c00175{bottom:118.020000px;}
.y1b_c00175{bottom:143.070000px;}
.y1a_c00175{bottom:168.420000px;}
.y19_c00175{bottom:193.320000px;}
.y18_c00175{bottom:218.370000px;}
.y17_c00175{bottom:243.570000px;}
.y16_c00175{bottom:268.020000px;}
.y15_c00175{bottom:293.520000px;}
.y14_c00175{bottom:318.270000px;}
.y13_c00175{bottom:342.570000px;}
.y12_c00175{bottom:366.870000px;}
.y11_c00175{bottom:392.070000px;}
.y10_c00175{bottom:416.520000px;}
.yf_c00175{bottom:441.720000px;}
.ye_c00175{bottom:467.070000px;}
.yd_c00175{bottom:491.670000px;}
.yc_c00175{bottom:516.720000px;}
.yb_c00175{bottom:541.320000px;}
.ya_c00175{bottom:565.920000px;}
.y9_c00175{bottom:590.670000px;}
.y8_c00175{bottom:615.720000px;}
.y7_c00175{bottom:640.470000px;}
.y6_c00175{bottom:665.220000px;}
.y5_c00175{bottom:690.420000px;}
.y4_c00175{bottom:714.870000px;}
.y3_c00175{bottom:740.370000px;}
.y2_c00175{bottom:765.120000px;}
.y1_c00175{bottom:790.470000px;}
.h4_c00175{height:13.200073px;}
.h5_c00175{height:43.804688px;}
.h2_c00175{height:80.758301px;}
.h3_c00175{height:87.361816px;}
.h0_c00175{height:836.700000px;}
.h1_c00175{height:837.000000px;}
.w2_c00175{width:104.875500px;}
.w1_c00175{width:551.250000px;}
.w0_c00175{width:551.325000px;}
.x0_c00175{left:0.000000px;}
.x6_c00175{left:39.900000px;}
.x2_c00175{left:83.400000px;}
.x4_c00175{left:84.750000px;}
.x5_c00175{left:85.800000px;}
.x7_c00175{left:87.150000px;}
.x1_c00175{left:96.600000px;}
.x3_c00175{left:108.000000px;}
.x9_c00175{left:227.476730px;}
.x8_c00175{left:501.900000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls5_c00175{letter-spacing:0.000000pt;}
.ls1_c00175{letter-spacing:1.040000pt;}
.ls6_c00175{letter-spacing:2.666667pt;}
.ls2_c00175{letter-spacing:2.698667pt;}
.ls4_c00175{letter-spacing:5.333333pt;}
.ls0_c00175{letter-spacing:8.981333pt;}
.ls3_c00175{letter-spacing:16.466667pt;}
.ws0_c00175{word-spacing:-20.114667pt;}
.ws2_c00175{word-spacing:-17.448000pt;}
.ws1_c00175{word-spacing:-14.781333pt;}
.ws3_c00175{word-spacing:0.000000pt;}
._1c_c00175{margin-left:-22.325333pt;}
._20_c00175{margin-left:-9.096000pt;}
._10_c00175{margin-left:-7.642667pt;}
._1d_c00175{margin-left:-6.440000pt;}
._5_c00175{margin-left:-5.458667pt;}
._6_c00175{margin-left:-4.293333pt;}
._4_c00175{margin-left:-2.816000pt;}
._7_c00175{margin-left:-1.104000pt;}
._1_c00175{width:0.914667pt;}
._3_c00175{width:1.917333pt;}
._d_c00175{width:3.128000pt;}
._c_c00175{width:4.426667pt;}
._14_c00175{width:5.610667pt;}
._13_c00175{width:6.685333pt;}
._0_c00175{width:7.789333pt;}
._8_c00175{width:9.328000pt;}
._e_c00175{width:10.805333pt;}
._f_c00175{width:11.880000pt;}
._9_c00175{width:13.448000pt;}
._15_c00175{width:14.341333pt;}
._18_c00175{width:16.232000pt;}
._16_c00175{width:19.906667pt;}
._17_c00175{width:21.957333pt;}
._b_c00175{width:23.837333pt;}
._1f_c00175{width:24.906667pt;}
._12_c00175{width:28.640000pt;}
._a_c00175{width:29.805333pt;}
._1b_c00175{width:31.693333pt;}
._1a_c00175{width:33.285333pt;}
._19_c00175{width:43.170667pt;}
._1e_c00175{width:85.512000pt;}
._11_c00175{width:121.373333pt;}
._2_c00175{width:320.160000pt;}
.fs2_c00175{font-size:42.666667pt;}
.fs1_c00175{font-size:58.666667pt;}
.fs0_c00175{font-size:61.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y20_c00175{bottom:2.760000pt;}
.y1f_c00175{bottom:6.425217pt;}
.y1e_c00175{bottom:60.240000pt;}
.y1d_c00175{bottom:82.106667pt;}
.y1c_c00175{bottom:104.906667pt;}
.y1b_c00175{bottom:127.173333pt;}
.y1a_c00175{bottom:149.706667pt;}
.y19_c00175{bottom:171.840000pt;}
.y18_c00175{bottom:194.106667pt;}
.y17_c00175{bottom:216.506667pt;}
.y16_c00175{bottom:238.240000pt;}
.y15_c00175{bottom:260.906667pt;}
.y14_c00175{bottom:282.906667pt;}
.y13_c00175{bottom:304.506667pt;}
.y12_c00175{bottom:326.106667pt;}
.y11_c00175{bottom:348.506667pt;}
.y10_c00175{bottom:370.240000pt;}
.yf_c00175{bottom:392.640000pt;}
.ye_c00175{bottom:415.173333pt;}
.yd_c00175{bottom:437.040000pt;}
.yc_c00175{bottom:459.306667pt;}
.yb_c00175{bottom:481.173333pt;}
.ya_c00175{bottom:503.040000pt;}
.y9_c00175{bottom:525.040000pt;}
.y8_c00175{bottom:547.306667pt;}
.y7_c00175{bottom:569.306667pt;}
.y6_c00175{bottom:591.306667pt;}
.y5_c00175{bottom:613.706667pt;}
.y4_c00175{bottom:635.440000pt;}
.y3_c00175{bottom:658.106667pt;}
.y2_c00175{bottom:680.106667pt;}
.y1_c00175{bottom:702.640000pt;}
.h4_c00175{height:11.733399pt;}
.h5_c00175{height:38.937500pt;}
.h2_c00175{height:71.785156pt;}
.h3_c00175{height:77.654948pt;}
.h0_c00175{height:743.733333pt;}
.h1_c00175{height:744.000000pt;}
.w2_c00175{width:93.222667pt;}
.w1_c00175{width:490.000000pt;}
.w0_c00175{width:490.066667pt;}
.x0_c00175{left:0.000000pt;}
.x6_c00175{left:35.466667pt;}
.x2_c00175{left:74.133333pt;}
.x4_c00175{left:75.333333pt;}
.x5_c00175{left:76.266667pt;}
.x7_c00175{left:77.466667pt;}
.x1_c00175{left:85.866667pt;}
.x3_c00175{left:96.000000pt;}
.x9_c00175{left:202.201538pt;}
.x8_c00175{left:446.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_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_eacf8f0d0462bbdda325bfe2.woff2')format("woff");}.ff1_c00176{font-family:ff1_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:ff2_c00176;src:url('chunks/assets/font_cacfd366ff735de73e4948d2.woff2')format("woff");}.ff2_c00176{font-family:ff2_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:ff3_c00176;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00176{font-family:ff3_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;}
.ls1_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:3.000000px;}
.ls2_c00176{letter-spacing:6.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00176{word-spacing:-22.629000px;}
.ws0_c00176{word-spacing:-16.629000px;}
.ws2_c00176{word-spacing:0.000000px;}
._23_c00176{margin-left:-57.960000px;}
._21_c00176{margin-left:-23.391000px;}
._18_c00176{margin-left:-18.228000px;}
._19_c00176{margin-left:-14.970000px;}
._16_c00176{margin-left:-11.496000px;}
._a_c00176{margin-left:-9.108000px;}
._1a_c00176{margin-left:-8.004000px;}
._4_c00176{margin-left:-6.555000px;}
._5_c00176{margin-left:-5.520000px;}
._2_c00176{margin-left:-4.347000px;}
._3_c00176{margin-left:-2.622000px;}
._e_c00176{margin-left:-1.137000px;}
._0_c00176{width:1.794000px;}
._1_c00176{width:2.829000px;}
._c_c00176{width:3.933000px;}
._7_c00176{width:5.727000px;}
._8_c00176{width:7.728000px;}
._b_c00176{width:9.315000px;}
._11_c00176{width:10.734000px;}
._15_c00176{width:11.760000px;}
._d_c00176{width:13.800000px;}
._f_c00176{width:15.318000px;}
._1c_c00176{width:16.530000px;}
._10_c00176{width:17.625000px;}
._1b_c00176{width:18.630000px;}
._17_c00176{width:19.767000px;}
._9_c00176{width:21.597000px;}
._12_c00176{width:23.190000px;}
._20_c00176{width:25.005000px;}
._1e_c00176{width:26.289000px;}
._13_c00176{width:33.258000px;}
._1f_c00176{width:36.009000px;}
._14_c00176{width:82.056000px;}
._22_c00176{width:215.625000px;}
._1d_c00176{width:254.817000px;}
._25_c00176{width:435.633000px;}
._6_c00176{width:504.942000px;}
._24_c00176{width:855.186000px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(128,128,128);}
.fc0_c00176{color:rgb(0,0,0);}
.fs2_c00176{font-size:48.000000px;}
.fs1_c00176{font-size:60.000000px;}
.fs0_c00176{font-size:69.000000px;}
.y0_c00176{bottom:0.000000px;}
.y1e_c00176{bottom:3.105000px;}
.y1d_c00176{bottom:7.228363px;}
.y1c_c00176{bottom:59.700000px;}
.y1b_c00176{bottom:87.750000px;}
.y1a_c00176{bottom:113.400000px;}
.y19_c00176{bottom:137.700000px;}
.y18_c00176{bottom:162.750000px;}
.y17_c00176{bottom:187.650000px;}
.y16_c00176{bottom:212.700000px;}
.y15_c00176{bottom:237.900000px;}
.y14_c00176{bottom:262.950000px;}
.y13_c00176{bottom:287.250000px;}
.y12_c00176{bottom:312.300000px;}
.y11_c00176{bottom:337.800000px;}
.y10_c00176{bottom:362.100000px;}
.yf_c00176{bottom:387.150000px;}
.ye_c00176{bottom:411.750000px;}
.yd_c00176{bottom:437.100000px;}
.yc_c00176{bottom:462.000000px;}
.yb_c00176{bottom:486.750000px;}
.ya_c00176{bottom:511.050000px;}
.y9_c00176{bottom:535.050000px;}
.y8_c00176{bottom:584.850000px;}
.y7_c00176{bottom:634.500000px;}
.y6_c00176{bottom:659.250000px;}
.y5_c00176{bottom:683.850000px;}
.y4_c00176{bottom:708.750000px;}
.y3_c00176{bottom:733.350000px;}
.y2_c00176{bottom:758.700000px;}
.y1_c00176{bottom:783.300000px;}
.h3_c00176{height:13.200074px;}
.h4_c00176{height:43.804688px;}
.h1_c00176{height:80.758301px;}
.h2_c00176{height:87.361816px;}
.h0_c00176{height:823.500000px;}
.w2_c00176{width:104.875500px;}
.w1_c00176{width:554.250000px;}
.w0_c00176{width:554.550000px;}
.x0_c00176{left:0.000000px;}
.x7_c00176{left:37.350000px;}
.x2_c00176{left:39.450000px;}
.x8_c00176{left:40.800000px;}
.x3_c00176{left:42.150000px;}
.x4_c00176{left:43.200000px;}
.x6_c00176{left:64.350000px;}
.x9_c00176{left:66.900000px;}
.x5_c00176{left:82.050000px;}
.x1_c00176{left:200.100000px;}
.xa_c00176{left:229.089249px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:2.666667pt;}
.ls2_c00176{letter-spacing:5.333333pt;}
.ws1_c00176{word-spacing:-20.114667pt;}
.ws0_c00176{word-spacing:-14.781333pt;}
.ws2_c00176{word-spacing:0.000000pt;}
._23_c00176{margin-left:-51.520000pt;}
._21_c00176{margin-left:-20.792000pt;}
._18_c00176{margin-left:-16.202667pt;}
._19_c00176{margin-left:-13.306667pt;}
._16_c00176{margin-left:-10.218667pt;}
._a_c00176{margin-left:-8.096000pt;}
._1a_c00176{margin-left:-7.114667pt;}
._4_c00176{margin-left:-5.826667pt;}
._5_c00176{margin-left:-4.906667pt;}
._2_c00176{margin-left:-3.864000pt;}
._3_c00176{margin-left:-2.330667pt;}
._e_c00176{margin-left:-1.010667pt;}
._0_c00176{width:1.594667pt;}
._1_c00176{width:2.514667pt;}
._c_c00176{width:3.496000pt;}
._7_c00176{width:5.090667pt;}
._8_c00176{width:6.869333pt;}
._b_c00176{width:8.280000pt;}
._11_c00176{width:9.541333pt;}
._15_c00176{width:10.453333pt;}
._d_c00176{width:12.266667pt;}
._f_c00176{width:13.616000pt;}
._1c_c00176{width:14.693333pt;}
._10_c00176{width:15.666667pt;}
._1b_c00176{width:16.560000pt;}
._17_c00176{width:17.570667pt;}
._9_c00176{width:19.197333pt;}
._12_c00176{width:20.613333pt;}
._20_c00176{width:22.226667pt;}
._1e_c00176{width:23.368000pt;}
._13_c00176{width:29.562667pt;}
._1f_c00176{width:32.008000pt;}
._14_c00176{width:72.938667pt;}
._22_c00176{width:191.666667pt;}
._1d_c00176{width:226.504000pt;}
._25_c00176{width:387.229333pt;}
._6_c00176{width:448.837333pt;}
._24_c00176{width:760.165333pt;}
.fs2_c00176{font-size:42.666667pt;}
.fs1_c00176{font-size:53.333333pt;}
.fs0_c00176{font-size:61.333333pt;}
.y0_c00176{bottom:0.000000pt;}
.y1e_c00176{bottom:2.760000pt;}
.y1d_c00176{bottom:6.425212pt;}
.y1c_c00176{bottom:53.066667pt;}
.y1b_c00176{bottom:78.000000pt;}
.y1a_c00176{bottom:100.800000pt;}
.y19_c00176{bottom:122.400000pt;}
.y18_c00176{bottom:144.666667pt;}
.y17_c00176{bottom:166.800000pt;}
.y16_c00176{bottom:189.066667pt;}
.y15_c00176{bottom:211.466667pt;}
.y14_c00176{bottom:233.733333pt;}
.y13_c00176{bottom:255.333333pt;}
.y12_c00176{bottom:277.600000pt;}
.y11_c00176{bottom:300.266667pt;}
.y10_c00176{bottom:321.866667pt;}
.yf_c00176{bottom:344.133333pt;}
.ye_c00176{bottom:366.000000pt;}
.yd_c00176{bottom:388.533333pt;}
.yc_c00176{bottom:410.666667pt;}
.yb_c00176{bottom:432.666667pt;}
.ya_c00176{bottom:454.266667pt;}
.y9_c00176{bottom:475.600000pt;}
.y8_c00176{bottom:519.866667pt;}
.y7_c00176{bottom:564.000000pt;}
.y6_c00176{bottom:586.000000pt;}
.y5_c00176{bottom:607.866667pt;}
.y4_c00176{bottom:630.000000pt;}
.y3_c00176{bottom:651.866667pt;}
.y2_c00176{bottom:674.400000pt;}
.y1_c00176{bottom:696.266667pt;}
.h3_c00176{height:11.733399pt;}
.h4_c00176{height:38.937500pt;}
.h1_c00176{height:71.785156pt;}
.h2_c00176{height:77.654948pt;}
.h0_c00176{height:732.000000pt;}
.w2_c00176{width:93.222667pt;}
.w1_c00176{width:492.666667pt;}
.w0_c00176{width:492.933333pt;}
.x0_c00176{left:0.000000pt;}
.x7_c00176{left:33.200000pt;}
.x2_c00176{left:35.066667pt;}
.x8_c00176{left:36.266667pt;}
.x3_c00176{left:37.466667pt;}
.x4_c00176{left:38.400000pt;}
.x6_c00176{left:57.200000pt;}
.x9_c00176{left:59.466667pt;}
.x5_c00176{left:72.933333pt;}
.x1_c00176{left:177.866667pt;}
.xa_c00176{left:203.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a34f8afa5174ffab29ec686.woff2')format("woff");}.ff1_c00177{font-family:ff1_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:ff2_c00177;src:url('chunks/assets/font_380b693bc9eec74617bbbbe5.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_5cb759036d0f9aa9efe9b796.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_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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);}
.v1_c00177{vertical-align:-93.600000px;}
.v0_c00177{vertical-align:0.000000px;}
.ls4_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:2.400000px;}
.ls5_c00177{letter-spacing:3.000000px;}
.ls3_c00177{letter-spacing:9.000000px;}
.ls2_c00177{letter-spacing:33.069000px;}
.ls1_c00177{letter-spacing:34.269000px;}
.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:-19.629000px;}
.ws0_c00177{word-spacing:-16.629000px;}
.ws2_c00177{word-spacing:0.000000px;}
._23_c00177{margin-left:-19.986000px;}
._12_c00177{margin-left:-12.519000px;}
._2_c00177{margin-left:-10.545000px;}
._1f_c00177{margin-left:-9.519000px;}
._1a_c00177{margin-left:-8.211000px;}
._0_c00177{margin-left:-7.125000px;}
._20_c00177{margin-left:-6.072000px;}
._3_c00177{margin-left:-4.902000px;}
._19_c00177{margin-left:-3.813000px;}
._1_c00177{margin-left:-2.793000px;}
._5_c00177{margin-left:-1.518000px;}
._11_c00177{width:1.011000px;}
._7_c00177{width:2.070000px;}
._b_c00177{width:3.174000px;}
._d_c00177{width:4.245000px;}
._6_c00177{width:5.655000px;}
._16_c00177{width:7.191000px;}
._f_c00177{width:8.346000px;}
._8_c00177{width:10.110000px;}
._1c_c00177{width:12.000000px;}
._a_c00177{width:13.281000px;}
._13_c00177{width:14.697000px;}
._9_c00177{width:15.870000px;}
._10_c00177{width:17.043000px;}
._18_c00177{width:18.147000px;}
._1e_c00177{width:21.252000px;}
._15_c00177{width:22.266000px;}
._17_c00177{width:24.558000px;}
._25_c00177{width:25.836000px;}
._c_c00177{width:27.414000px;}
._24_c00177{width:28.929000px;}
._27_c00177{width:30.177000px;}
._e_c00177{width:32.292000px;}
._1b_c00177{width:36.642000px;}
._28_c00177{width:48.960000px;}
._26_c00177{width:79.914000px;}
._21_c00177{width:102.189000px;}
._14_c00177{width:106.422000px;}
._22_c00177{width:146.610000px;}
._1d_c00177{width:150.027000px;}
._29_c00177{width:211.494000px;}
._4_c00177{width:370.437000px;}
.fc2_c00177{color:transparent;}
.fc1_c00177{color:rgb(128,128,128);}
.fc0_c00177{color:rgb(0,0,0);}
.fs4_c00177{font-size:48.000000px;}
.fs0_c00177{font-size:57.000000px;}
.fs2_c00177{font-size:66.000000px;}
.fs1_c00177{font-size:69.000000px;}
.fs3_c00177{font-size:81.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1f_c00177{bottom:3.105000px;}
.y1e_c00177{bottom:7.228369px;}
.y1d_c00177{bottom:96.570000px;}
.y1c_c00177{bottom:122.220000px;}
.y1b_c00177{bottom:147.720000px;}
.y1a_c00177{bottom:172.770000px;}
.y19_c00177{bottom:197.670000px;}
.y18_c00177{bottom:222.720000px;}
.y17_c00177{bottom:247.020000px;}
.y16_c00177{bottom:272.370000px;}
.y15_c00177{bottom:297.720000px;}
.y14_c00177{bottom:322.620000px;}
.y13_c00177{bottom:346.320000px;}
.y12_c00177{bottom:370.170000px;}
.y11_c00177{bottom:394.770000px;}
.y10_c00177{bottom:420.570000px;}
.yf_c00177{bottom:445.470000px;}
.ye_c00177{bottom:470.370000px;}
.yd_c00177{bottom:495.420000px;}
.yc_c00177{bottom:520.470000px;}
.yb_c00177{bottom:545.070000px;}
.ya_c00177{bottom:569.370000px;}
.y9_c00177{bottom:594.720000px;}
.y8_c00177{bottom:619.320000px;}
.y7_c00177{bottom:644.220000px;}
.y6_c00177{bottom:668.820000px;}
.y5_c00177{bottom:693.870000px;}
.y4_c00177{bottom:718.920000px;}
.y3_c00177{bottom:744.120000px;}
.y2_c00177{bottom:768.420000px;}
.y1_c00177{bottom:794.370000px;}
.h5_c00177{height:13.200073px;}
.h6_c00177{height:43.804688px;}
.h2_c00177{height:80.758301px;}
.h3_c00177{height:87.361816px;}
.h4_c00177{height:102.555176px;}
.h0_c00177{height:836.700000px;}
.h1_c00177{height:837.000000px;}
.w2_c00177{width:104.875500px;}
.w1_c00177{width:551.250000px;}
.w0_c00177{width:551.325000px;}
.x0_c00177{left:0.000000px;}
.x4_c00177{left:32.400000px;}
.x3_c00177{left:80.250000px;}
.x2_c00177{left:81.300000px;}
.x5_c00177{left:82.350000px;}
.x6_c00177{left:84.000000px;}
.x1_c00177{left:94.950000px;}
.x7_c00177{left:227.476730px;}
@media print{
.v1_c00177{vertical-align:-83.200000pt;}
.v0_c00177{vertical-align:0.000000pt;}
.ls4_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:2.133333pt;}
.ls5_c00177{letter-spacing:2.666667pt;}
.ls3_c00177{letter-spacing:8.000000pt;}
.ls2_c00177{letter-spacing:29.394667pt;}
.ls1_c00177{letter-spacing:30.461333pt;}
.ws1_c00177{word-spacing:-17.448000pt;}
.ws0_c00177{word-spacing:-14.781333pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._23_c00177{margin-left:-17.765333pt;}
._12_c00177{margin-left:-11.128000pt;}
._2_c00177{margin-left:-9.373333pt;}
._1f_c00177{margin-left:-8.461333pt;}
._1a_c00177{margin-left:-7.298667pt;}
._0_c00177{margin-left:-6.333333pt;}
._20_c00177{margin-left:-5.397333pt;}
._3_c00177{margin-left:-4.357333pt;}
._19_c00177{margin-left:-3.389333pt;}
._1_c00177{margin-left:-2.482667pt;}
._5_c00177{margin-left:-1.349333pt;}
._11_c00177{width:0.898667pt;}
._7_c00177{width:1.840000pt;}
._b_c00177{width:2.821333pt;}
._d_c00177{width:3.773333pt;}
._6_c00177{width:5.026667pt;}
._16_c00177{width:6.392000pt;}
._f_c00177{width:7.418667pt;}
._8_c00177{width:8.986667pt;}
._1c_c00177{width:10.666667pt;}
._a_c00177{width:11.805333pt;}
._13_c00177{width:13.064000pt;}
._9_c00177{width:14.106667pt;}
._10_c00177{width:15.149333pt;}
._18_c00177{width:16.130667pt;}
._1e_c00177{width:18.890667pt;}
._15_c00177{width:19.792000pt;}
._17_c00177{width:21.829333pt;}
._25_c00177{width:22.965333pt;}
._c_c00177{width:24.368000pt;}
._24_c00177{width:25.714667pt;}
._27_c00177{width:26.824000pt;}
._e_c00177{width:28.704000pt;}
._1b_c00177{width:32.570667pt;}
._28_c00177{width:43.520000pt;}
._26_c00177{width:71.034667pt;}
._21_c00177{width:90.834667pt;}
._14_c00177{width:94.597333pt;}
._22_c00177{width:130.320000pt;}
._1d_c00177{width:133.357333pt;}
._29_c00177{width:187.994667pt;}
._4_c00177{width:329.277333pt;}
.fs4_c00177{font-size:42.666667pt;}
.fs0_c00177{font-size:50.666667pt;}
.fs2_c00177{font-size:58.666667pt;}
.fs1_c00177{font-size:61.333333pt;}
.fs3_c00177{font-size:72.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y1f_c00177{bottom:2.760000pt;}
.y1e_c00177{bottom:6.425217pt;}
.y1d_c00177{bottom:85.840000pt;}
.y1c_c00177{bottom:108.640000pt;}
.y1b_c00177{bottom:131.306667pt;}
.y1a_c00177{bottom:153.573333pt;}
.y19_c00177{bottom:175.706667pt;}
.y18_c00177{bottom:197.973333pt;}
.y17_c00177{bottom:219.573333pt;}
.y16_c00177{bottom:242.106667pt;}
.y15_c00177{bottom:264.640000pt;}
.y14_c00177{bottom:286.773333pt;}
.y13_c00177{bottom:307.840000pt;}
.y12_c00177{bottom:329.040000pt;}
.y11_c00177{bottom:350.906667pt;}
.y10_c00177{bottom:373.840000pt;}
.yf_c00177{bottom:395.973333pt;}
.ye_c00177{bottom:418.106667pt;}
.yd_c00177{bottom:440.373333pt;}
.yc_c00177{bottom:462.640000pt;}
.yb_c00177{bottom:484.506667pt;}
.ya_c00177{bottom:506.106667pt;}
.y9_c00177{bottom:528.640000pt;}
.y8_c00177{bottom:550.506667pt;}
.y7_c00177{bottom:572.640000pt;}
.y6_c00177{bottom:594.506667pt;}
.y5_c00177{bottom:616.773333pt;}
.y4_c00177{bottom:639.040000pt;}
.y3_c00177{bottom:661.440000pt;}
.y2_c00177{bottom:683.040000pt;}
.y1_c00177{bottom:706.106667pt;}
.h5_c00177{height:11.733399pt;}
.h6_c00177{height:38.937500pt;}
.h2_c00177{height:71.785156pt;}
.h3_c00177{height:77.654948pt;}
.h4_c00177{height:91.160156pt;}
.h0_c00177{height:743.733333pt;}
.h1_c00177{height:744.000000pt;}
.w2_c00177{width:93.222667pt;}
.w1_c00177{width:490.000000pt;}
.w0_c00177{width:490.066667pt;}
.x0_c00177{left:0.000000pt;}
.x4_c00177{left:28.800000pt;}
.x3_c00177{left:71.333333pt;}
.x2_c00177{left:72.266667pt;}
.x5_c00177{left:73.200000pt;}
.x6_c00177{left:74.666667pt;}
.x1_c00177{left:84.400000pt;}
.x7_c00177{left:202.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_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_de20c2d0cc96a3fef9df6a84.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_d8146f5fdbd96a3a154e206e.woff2')format("woff");}.ff2_c00178{font-family:ff2_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:ff3_c00178;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.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_9d341fb4e037e7185bedf3e3.woff2')format("woff");}.ff4_c00178{font-family:ff4_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:ff5_c00178;src:url('chunks/assets/font_c00c9035800b6ee929ead5e2.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.311035;font-style:normal;font-weight:normal;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_a9538911d08dbc9929dc8f3b.woff2')format("woff");}.ff6_c00178{font-family:ff6_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:ff7_c00178;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m1_c00178{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_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;}
.ls4_c00178{letter-spacing:-9.000000px;}
.ls3_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:3.000000px;}
.ls2_c00178{letter-spacing:15.000000px;}
.ls0_c00178{letter-spacing:15.246000px;}
.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:-52.164000px;}
.ws1_c00178{word-spacing:-35.022000px;}
.ws7_c00178{word-spacing:-30.822000px;}
.ws5_c00178{word-spacing:-16.629000px;}
.ws3_c00178{word-spacing:-13.014000px;}
.ws2_c00178{word-spacing:-4.014000px;}
.ws4_c00178{word-spacing:-0.552000px;}
.ws8_c00178{word-spacing:0.000000px;}
.ws6_c00178{word-spacing:0.669000px;}
._12_c00178{margin-left:-17.874000px;}
._11_c00178{margin-left:-9.133200px;}
._13_c00178{margin-left:-7.952400px;}
._20_c00178{margin-left:-5.647200px;}
._6_c00178{margin-left:-4.351200px;}
._b_c00178{margin-left:-2.592000px;}
._9_c00178{margin-left:-1.473600px;}
._3_c00178{width:1.383600px;}
._0_c00178{width:3.146400px;}
._1_c00178{width:4.286400px;}
._5_c00178{width:5.643600px;}
._2_c00178{width:6.966000px;}
._4_c00178{width:8.714400px;}
._c_c00178{width:9.943200px;}
._f_c00178{width:11.677200px;}
._23_c00178{width:12.720000px;}
._14_c00178{width:14.484000px;}
._7_c00178{width:15.498000px;}
._24_c00178{width:16.657800px;}
._a_c00178{width:17.726400px;}
._e_c00178{width:19.071600px;}
._1d_c00178{width:20.424000px;}
._18_c00178{width:21.804000px;}
._1b_c00178{width:23.115000px;}
._19_c00178{width:24.273600px;}
._1e_c00178{width:25.956000px;}
._d_c00178{width:27.770400px;}
._22_c00178{width:30.869400px;}
._1c_c00178{width:35.259000px;}
._1f_c00178{width:44.530800px;}
._15_c00178{width:78.523200px;}
._1a_c00178{width:80.217000px;}
._10_c00178{width:109.302000px;}
._16_c00178{width:113.067600px;}
._21_c00178{width:208.778400px;}
._8_c00178{width:225.982800px;}
._25_c00178{width:524.580000px;}
._17_c00178{width:548.407200px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(128,128,128);}
.fc0_c00178{color:rgb(0,0,0);}
.fs4_c00178{font-size:24.000000px;}
.fs0_c00178{font-size:45.600000px;}
.fsa_c00178{font-size:48.000000px;}
.fs3_c00178{font-size:51.000000px;}
.fs5_c00178{font-size:54.000000px;}
.fs1_c00178{font-size:57.000000px;}
.fs6_c00178{font-size:66.000000px;}
.fs7_c00178{font-size:69.000000px;}
.fs8_c00178{font-size:72.000000px;}
.fs9_c00178{font-size:75.000000px;}
.fs2_c00178{font-size:87.000000px;}
.y0_c00178{bottom:0.000000px;}
.y21_c00178{bottom:3.105000px;}
.y20_c00178{bottom:7.228371px;}
.y1f_c00178{bottom:69.165000px;}
.y1e_c00178{bottom:94.515000px;}
.y1d_c00178{bottom:120.915000px;}
.y1c_c00178{bottom:145.515000px;}
.y1b_c00178{bottom:169.515000px;}
.y1a_c00178{bottom:194.715000px;}
.y19_c00178{bottom:219.765000px;}
.y18_c00178{bottom:244.815000px;}
.y17_c00178{bottom:270.015000px;}
.y16_c00178{bottom:296.415000px;}
.y15_c00178{bottom:318.615000px;}
.y14_c00178{bottom:344.715000px;}
.y13_c00178{bottom:369.315000px;}
.y12_c00178{bottom:418.815000px;}
.y11_c00178{bottom:474.615000px;}
.y10_c00178{bottom:492.465000px;}
.yf_c00178{bottom:510.315000px;}
.ye_c00178{bottom:527.265000px;}
.yd_c00178{bottom:544.365000px;}
.yc_c00178{bottom:561.915000px;}
.yb_c00178{bottom:579.915000px;}
.ya_c00178{bottom:597.165000px;}
.y9_c00178{bottom:615.015000px;}
.y8_c00178{bottom:632.865000px;}
.y7_c00178{bottom:650.115000px;}
.y6_c00178{bottom:667.665000px;}
.y5_c00178{bottom:685.215000px;}
.y4_c00178{bottom:703.065000px;}
.y3_c00178{bottom:720.615000px;}
.y2_c00178{bottom:739.815000px;}
.y1_c00178{bottom:756.015000px;}
.ha_c00178{height:13.200074px;}
.hb_c00178{height:43.804688px;}
.h4_c00178{height:64.571777px;}
.h2_c00178{height:66.713379px;}
.h5_c00178{height:68.370117px;}
.h7_c00178{height:80.758301px;}
.h6_c00178{height:87.361816px;}
.h8_c00178{height:91.160156px;}
.h3_c00178{height:91.176000px;}
.h9_c00178{height:94.958496px;}
.h1_c00178{height:831.000000px;}
.h0_c00178{height:831.075000px;}
.w1_c00178{width:104.875500px;}
.w0_c00178{width:560.250000px;}
.x0_c00178{left:0.000000px;}
.x5_c00178{left:40.950000px;}
.x6_c00178{left:42.600000px;}
.x9_c00178{left:45.000000px;}
.xa_c00178{left:46.350000px;}
.xb_c00178{left:47.550000px;}
.x4_c00178{left:57.150000px;}
.x8_c00178{left:69.150000px;}
.x7_c00178{left:81.000000px;}
.x1_c00178{left:197.400000px;}
.xd_c00178{left:231.939240px;}
.xc_c00178{left:290.550000px;}
.x2_c00178{left:468.000000px;}
.x3_c00178{left:471.150000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls4_c00178{letter-spacing:-8.000000pt;}
.ls3_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:2.666667pt;}
.ls2_c00178{letter-spacing:13.333333pt;}
.ls0_c00178{letter-spacing:13.552000pt;}
.ws0_c00178{word-spacing:-46.368000pt;}
.ws1_c00178{word-spacing:-31.130667pt;}
.ws7_c00178{word-spacing:-27.397333pt;}
.ws5_c00178{word-spacing:-14.781333pt;}
.ws3_c00178{word-spacing:-11.568000pt;}
.ws2_c00178{word-spacing:-3.568000pt;}
.ws4_c00178{word-spacing:-0.490667pt;}
.ws8_c00178{word-spacing:0.000000pt;}
.ws6_c00178{word-spacing:0.594667pt;}
._12_c00178{margin-left:-15.888000pt;}
._11_c00178{margin-left:-8.118400pt;}
._13_c00178{margin-left:-7.068800pt;}
._20_c00178{margin-left:-5.019733pt;}
._6_c00178{margin-left:-3.867733pt;}
._b_c00178{margin-left:-2.304000pt;}
._9_c00178{margin-left:-1.309867pt;}
._3_c00178{width:1.229867pt;}
._0_c00178{width:2.796800pt;}
._1_c00178{width:3.810133pt;}
._5_c00178{width:5.016533pt;}
._2_c00178{width:6.192000pt;}
._4_c00178{width:7.746133pt;}
._c_c00178{width:8.838400pt;}
._f_c00178{width:10.379733pt;}
._23_c00178{width:11.306667pt;}
._14_c00178{width:12.874667pt;}
._7_c00178{width:13.776000pt;}
._24_c00178{width:14.806933pt;}
._a_c00178{width:15.756800pt;}
._e_c00178{width:16.952533pt;}
._1d_c00178{width:18.154667pt;}
._18_c00178{width:19.381333pt;}
._1b_c00178{width:20.546667pt;}
._19_c00178{width:21.576533pt;}
._1e_c00178{width:23.072000pt;}
._d_c00178{width:24.684800pt;}
._22_c00178{width:27.439467pt;}
._1c_c00178{width:31.341333pt;}
._1f_c00178{width:39.582933pt;}
._15_c00178{width:69.798400pt;}
._1a_c00178{width:71.304000pt;}
._10_c00178{width:97.157333pt;}
._16_c00178{width:100.504533pt;}
._21_c00178{width:185.580800pt;}
._8_c00178{width:200.873600pt;}
._25_c00178{width:466.293333pt;}
._17_c00178{width:487.473067pt;}
.fs4_c00178{font-size:21.333333pt;}
.fs0_c00178{font-size:40.533333pt;}
.fsa_c00178{font-size:42.666667pt;}
.fs3_c00178{font-size:45.333333pt;}
.fs5_c00178{font-size:48.000000pt;}
.fs1_c00178{font-size:50.666667pt;}
.fs6_c00178{font-size:58.666667pt;}
.fs7_c00178{font-size:61.333333pt;}
.fs8_c00178{font-size:64.000000pt;}
.fs9_c00178{font-size:66.666667pt;}
.fs2_c00178{font-size:77.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y21_c00178{bottom:2.760000pt;}
.y20_c00178{bottom:6.425219pt;}
.y1f_c00178{bottom:61.480000pt;}
.y1e_c00178{bottom:84.013333pt;}
.y1d_c00178{bottom:107.480000pt;}
.y1c_c00178{bottom:129.346667pt;}
.y1b_c00178{bottom:150.680000pt;}
.y1a_c00178{bottom:173.080000pt;}
.y19_c00178{bottom:195.346667pt;}
.y18_c00178{bottom:217.613333pt;}
.y17_c00178{bottom:240.013333pt;}
.y16_c00178{bottom:263.480000pt;}
.y15_c00178{bottom:283.213333pt;}
.y14_c00178{bottom:306.413333pt;}
.y13_c00178{bottom:328.280000pt;}
.y12_c00178{bottom:372.280000pt;}
.y11_c00178{bottom:421.880000pt;}
.y10_c00178{bottom:437.746667pt;}
.yf_c00178{bottom:453.613333pt;}
.ye_c00178{bottom:468.680000pt;}
.yd_c00178{bottom:483.880000pt;}
.yc_c00178{bottom:499.480000pt;}
.yb_c00178{bottom:515.480000pt;}
.ya_c00178{bottom:530.813333pt;}
.y9_c00178{bottom:546.680000pt;}
.y8_c00178{bottom:562.546667pt;}
.y7_c00178{bottom:577.880000pt;}
.y6_c00178{bottom:593.480000pt;}
.y5_c00178{bottom:609.080000pt;}
.y4_c00178{bottom:624.946667pt;}
.y3_c00178{bottom:640.546667pt;}
.y2_c00178{bottom:657.613333pt;}
.y1_c00178{bottom:672.013333pt;}
.ha_c00178{height:11.733399pt;}
.hb_c00178{height:38.937500pt;}
.h4_c00178{height:57.397135pt;}
.h2_c00178{height:59.300781pt;}
.h5_c00178{height:60.773438pt;}
.h7_c00178{height:71.785156pt;}
.h6_c00178{height:77.654948pt;}
.h8_c00178{height:81.031250pt;}
.h3_c00178{height:81.045333pt;}
.h9_c00178{height:84.407552pt;}
.h1_c00178{height:738.666667pt;}
.h0_c00178{height:738.733333pt;}
.w1_c00178{width:93.222667pt;}
.w0_c00178{width:498.000000pt;}
.x0_c00178{left:0.000000pt;}
.x5_c00178{left:36.400000pt;}
.x6_c00178{left:37.866667pt;}
.x9_c00178{left:40.000000pt;}
.xa_c00178{left:41.200000pt;}
.xb_c00178{left:42.266667pt;}
.x4_c00178{left:50.800000pt;}
.x8_c00178{left:61.466667pt;}
.x7_c00178{left:72.000000pt;}
.x1_c00178{left:175.466667pt;}
.xd_c00178{left:206.168213pt;}
.xc_c00178{left:258.266667pt;}
.x2_c00178{left:416.000000pt;}
.x3_c00178{left:418.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_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_09937acc7380c54fcf5b713c.woff2')format("woff");}.ff1_c00179{font-family:ff1_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:ff2_c00179;src:url('chunks/assets/font_33160ba6aaad8e18b5bb0983.woff2')format("woff");}.ff2_c00179{font-family:ff2_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:ff3_c00179;src:url('chunks/assets/font_06678107a3f411f0302d04e2.woff2')format("woff");}.ff3_c00179{font-family:ff3_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:ff4_c00179;src:url('chunks/assets/font_701d6e033b9eec03ef851af7.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_be8c608905a6d98cc75caec7.woff2')format("woff");}.ff5_c00179{font-family:ff5_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:ff6_c00179;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00179{font-family:ff6_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;}
.ls4_c00179{letter-spacing:0.000000px;}
.ls2_c00179{letter-spacing:3.000000px;}
.ls6_c00179{letter-spacing:6.000000px;}
.ls5_c00179{letter-spacing:9.000000px;}
.ls3_c00179{letter-spacing:12.168000px;}
.ls0_c00179{letter-spacing:42.600000px;}
.ls1_c00179{letter-spacing:455.571000px;}
.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;}
}
.ws1_c00179{word-spacing:-34.500000px;}
.ws3_c00179{word-spacing:-19.629000px;}
.ws0_c00179{word-spacing:-16.629000px;}
.ws2_c00179{word-spacing:-4.344000px;}
.ws4_c00179{word-spacing:0.000000px;}
._24_c00179{margin-left:-26.637000px;}
._26_c00179{margin-left:-20.940000px;}
._21_c00179{margin-left:-19.731000px;}
._25_c00179{margin-left:-18.654000px;}
._17_c00179{margin-left:-17.067000px;}
._22_c00179{margin-left:-15.741000px;}
._20_c00179{margin-left:-14.199000px;}
._c_c00179{margin-left:-13.041000px;}
._23_c00179{margin-left:-11.907000px;}
._1_c00179{margin-left:-10.668000px;}
._1a_c00179{margin-left:-9.240000px;}
._f_c00179{margin-left:-7.383000px;}
._5_c00179{margin-left:-6.141000px;}
._1b_c00179{margin-left:-5.040000px;}
._2_c00179{margin-left:-3.312000px;}
._3_c00179{margin-left:-2.208000px;}
._e_c00179{margin-left:-1.035000px;}
._8_c00179{width:1.173000px;}
._6_c00179{width:2.967000px;}
._0_c00179{width:4.002000px;}
._7_c00179{width:5.796000px;}
._b_c00179{width:7.728000px;}
._13_c00179{width:8.904000px;}
._9_c00179{width:10.212000px;}
._a_c00179{width:11.523000px;}
._15_c00179{width:13.110000px;}
._18_c00179{width:14.184000px;}
._19_c00179{width:15.936000px;}
._10_c00179{width:17.061000px;}
._d_c00179{width:18.423000px;}
._1f_c00179{width:20.217000px;}
._14_c00179{width:21.249000px;}
._12_c00179{width:22.959000px;}
._16_c00179{width:24.063000px;}
._1c_c00179{width:25.254000px;}
._1d_c00179{width:27.126000px;}
._11_c00179{width:34.947000px;}
._28_c00179{width:39.210000px;}
._1e_c00179{width:79.683000px;}
._27_c00179{width:180.387000px;}
._4_c00179{width:363.168000px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(128,128,128);}
.fc0_c00179{color:rgb(0,0,0);}
.fs6_c00179{font-size:48.000000px;}
.fs2_c00179{font-size:66.000000px;}
.fs0_c00179{font-size:69.000000px;}
.fs3_c00179{font-size:75.000000px;}
.fs5_c00179{font-size:78.000000px;}
.fs4_c00179{font-size:81.000000px;}
.fs1_c00179{font-size:84.000000px;}
.y0_c00179{bottom:0.000000px;}
.y1d_c00179{bottom:3.105000px;}
.y1c_c00179{bottom:7.228369px;}
.y1b_c00179{bottom:100.920000px;}
.y1a_c00179{bottom:127.170000px;}
.y19_c00179{bottom:152.520000px;}
.y18_c00179{bottom:177.870000px;}
.y17_c00179{bottom:202.770000px;}
.y16_c00179{bottom:227.820000px;}
.y15_c00179{bottom:253.770000px;}
.y14_c00179{bottom:278.670000px;}
.y13_c00179{bottom:304.320000px;}
.y12_c00179{bottom:329.370000px;}
.y11_c00179{bottom:378.720000px;}
.y10_c00179{bottom:427.920000px;}
.yf_c00179{bottom:452.820000px;}
.ye_c00179{bottom:477.870000px;}
.yd_c00179{bottom:502.770000px;}
.yc_c00179{bottom:527.220000px;}
.yb_c00179{bottom:552.120000px;}
.ya_c00179{bottom:576.720000px;}
.y9_c00179{bottom:601.770000px;}
.y8_c00179{bottom:626.370000px;}
.y7_c00179{bottom:651.720000px;}
.y6_c00179{bottom:676.320000px;}
.y5_c00179{bottom:701.370000px;}
.y4_c00179{bottom:726.570000px;}
.y3_c00179{bottom:751.320000px;}
.y2_c00179{bottom:776.820000px;}
.y1_c00179{bottom:801.870000px;}
.h7_c00179{height:13.200073px;}
.h8_c00179{height:43.804688px;}
.h4_c00179{height:80.758301px;}
.h2_c00179{height:87.361816px;}
.h5_c00179{height:94.958496px;}
.h6_c00179{height:102.555176px;}
.h3_c00179{height:106.353516px;}
.h0_c00179{height:836.700000px;}
.h1_c00179{height:837.000000px;}
.w2_c00179{width:104.875500px;}
.w1_c00179{width:551.250000px;}
.w0_c00179{width:551.325000px;}
.x0_c00179{left:0.000000px;}
.x9_c00179{left:15.900000px;}
.x4_c00179{left:23.250000px;}
.xc_c00179{left:77.250000px;}
.xb_c00179{left:78.300000px;}
.xa_c00179{left:79.350000px;}
.x8_c00179{left:80.700000px;}
.x5_c00179{left:82.350000px;}
.x3_c00179{left:84.150000px;}
.x2_c00179{left:86.850000px;}
.x1_c00179{left:102.900000px;}
.x7_c00179{left:107.550000px;}
.x6_c00179{left:123.450000px;}
.xd_c00179{left:227.476730px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls4_c00179{letter-spacing:0.000000pt;}
.ls2_c00179{letter-spacing:2.666667pt;}
.ls6_c00179{letter-spacing:5.333333pt;}
.ls5_c00179{letter-spacing:8.000000pt;}
.ls3_c00179{letter-spacing:10.816000pt;}
.ls0_c00179{letter-spacing:37.866667pt;}
.ls1_c00179{letter-spacing:404.952000pt;}
.ws1_c00179{word-spacing:-30.666667pt;}
.ws3_c00179{word-spacing:-17.448000pt;}
.ws0_c00179{word-spacing:-14.781333pt;}
.ws2_c00179{word-spacing:-3.861333pt;}
.ws4_c00179{word-spacing:0.000000pt;}
._24_c00179{margin-left:-23.677333pt;}
._26_c00179{margin-left:-18.613333pt;}
._21_c00179{margin-left:-17.538667pt;}
._25_c00179{margin-left:-16.581333pt;}
._17_c00179{margin-left:-15.170667pt;}
._22_c00179{margin-left:-13.992000pt;}
._20_c00179{margin-left:-12.621333pt;}
._c_c00179{margin-left:-11.592000pt;}
._23_c00179{margin-left:-10.584000pt;}
._1_c00179{margin-left:-9.482667pt;}
._1a_c00179{margin-left:-8.213333pt;}
._f_c00179{margin-left:-6.562667pt;}
._5_c00179{margin-left:-5.458667pt;}
._1b_c00179{margin-left:-4.480000pt;}
._2_c00179{margin-left:-2.944000pt;}
._3_c00179{margin-left:-1.962667pt;}
._e_c00179{margin-left:-0.920000pt;}
._8_c00179{width:1.042667pt;}
._6_c00179{width:2.637333pt;}
._0_c00179{width:3.557333pt;}
._7_c00179{width:5.152000pt;}
._b_c00179{width:6.869333pt;}
._13_c00179{width:7.914667pt;}
._9_c00179{width:9.077333pt;}
._a_c00179{width:10.242667pt;}
._15_c00179{width:11.653333pt;}
._18_c00179{width:12.608000pt;}
._19_c00179{width:14.165333pt;}
._10_c00179{width:15.165333pt;}
._d_c00179{width:16.376000pt;}
._1f_c00179{width:17.970667pt;}
._14_c00179{width:18.888000pt;}
._12_c00179{width:20.408000pt;}
._16_c00179{width:21.389333pt;}
._1c_c00179{width:22.448000pt;}
._1d_c00179{width:24.112000pt;}
._11_c00179{width:31.064000pt;}
._28_c00179{width:34.853333pt;}
._1e_c00179{width:70.829333pt;}
._27_c00179{width:160.344000pt;}
._4_c00179{width:322.816000pt;}
.fs6_c00179{font-size:42.666667pt;}
.fs2_c00179{font-size:58.666667pt;}
.fs0_c00179{font-size:61.333333pt;}
.fs3_c00179{font-size:66.666667pt;}
.fs5_c00179{font-size:69.333333pt;}
.fs4_c00179{font-size:72.000000pt;}
.fs1_c00179{font-size:74.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y1d_c00179{bottom:2.760000pt;}
.y1c_c00179{bottom:6.425217pt;}
.y1b_c00179{bottom:89.706667pt;}
.y1a_c00179{bottom:113.040000pt;}
.y19_c00179{bottom:135.573333pt;}
.y18_c00179{bottom:158.106667pt;}
.y17_c00179{bottom:180.240000pt;}
.y16_c00179{bottom:202.506667pt;}
.y15_c00179{bottom:225.573333pt;}
.y14_c00179{bottom:247.706667pt;}
.y13_c00179{bottom:270.506667pt;}
.y12_c00179{bottom:292.773333pt;}
.y11_c00179{bottom:336.640000pt;}
.y10_c00179{bottom:380.373333pt;}
.yf_c00179{bottom:402.506667pt;}
.ye_c00179{bottom:424.773333pt;}
.yd_c00179{bottom:446.906667pt;}
.yc_c00179{bottom:468.640000pt;}
.yb_c00179{bottom:490.773333pt;}
.ya_c00179{bottom:512.640000pt;}
.y9_c00179{bottom:534.906667pt;}
.y8_c00179{bottom:556.773333pt;}
.y7_c00179{bottom:579.306667pt;}
.y6_c00179{bottom:601.173333pt;}
.y5_c00179{bottom:623.440000pt;}
.y4_c00179{bottom:645.840000pt;}
.y3_c00179{bottom:667.840000pt;}
.y2_c00179{bottom:690.506667pt;}
.y1_c00179{bottom:712.773333pt;}
.h7_c00179{height:11.733399pt;}
.h8_c00179{height:38.937500pt;}
.h4_c00179{height:71.785156pt;}
.h2_c00179{height:77.654948pt;}
.h5_c00179{height:84.407552pt;}
.h6_c00179{height:91.160156pt;}
.h3_c00179{height:94.536458pt;}
.h0_c00179{height:743.733333pt;}
.h1_c00179{height:744.000000pt;}
.w2_c00179{width:93.222667pt;}
.w1_c00179{width:490.000000pt;}
.w0_c00179{width:490.066667pt;}
.x0_c00179{left:0.000000pt;}
.x9_c00179{left:14.133333pt;}
.x4_c00179{left:20.666667pt;}
.xc_c00179{left:68.666667pt;}
.xb_c00179{left:69.600000pt;}
.xa_c00179{left:70.533333pt;}
.x8_c00179{left:71.733333pt;}
.x5_c00179{left:73.200000pt;}
.x3_c00179{left:74.800000pt;}
.x2_c00179{left:77.200000pt;}
.x1_c00179{left:91.466667pt;}
.x7_c00179{left:95.600000pt;}
.x6_c00179{left:109.733333pt;}
.xd_c00179{left:202.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_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_c54974d4573b17749464b8cd.woff2')format("woff");}.ff1_c00180{font-family:ff1_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:ff2_c00180;src:url('chunks/assets/font_de9344889e547674448c1c75.woff2')format("woff");}.ff2_c00180{font-family:ff2_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:ff3_c00180;src:url('chunks/assets/font_030d294426d66a62a658b489.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.006336;font-style:normal;font-weight:normal;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_ddeddcddba1d64e9bde30ad3.woff2')format("woff");}.ff4_c00180{font-family:ff4_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:ff5_c00180;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls1_c00180{letter-spacing:0.000000px;}
.ls2_c00180{letter-spacing:3.000000px;}
.ls0_c00180{letter-spacing:20.006400px;}
.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:-19.629000px;}
.ws0_c00180{word-spacing:-16.629000px;}
.ws2_c00180{word-spacing:-16.303200px;}
.ws3_c00180{word-spacing:0.000000px;}
._15_c00180{margin-left:-23.322000px;}
._1d_c00180{margin-left:-21.528000px;}
._22_c00180{margin-left:-18.009000px;}
._1f_c00180{margin-left:-14.973000px;}
._c_c00180{margin-left:-11.730000px;}
._27_c00180{margin-left:-10.626000px;}
._17_c00180{margin-left:-7.866000px;}
._3_c00180{margin-left:-5.313000px;}
._21_c00180{margin-left:-4.248000px;}
._2_c00180{margin-left:-3.174000px;}
._4_c00180{margin-left:-2.070000px;}
._13_c00180{margin-left:-1.035000px;}
._0_c00180{width:1.242000px;}
._1_c00180{width:2.898000px;}
._10_c00180{width:3.933000px;}
._7_c00180{width:5.037000px;}
._d_c00180{width:6.141000px;}
._6_c00180{width:7.245000px;}
._f_c00180{width:9.039000px;}
._9_c00180{width:10.626000px;}
._25_c00180{width:11.661000px;}
._8_c00180{width:12.834000px;}
._1e_c00180{width:13.869000px;}
._18_c00180{width:14.973000px;}
._e_c00180{width:16.905000px;}
._19_c00180{width:18.009000px;}
._1b_c00180{width:21.873000px;}
._16_c00180{width:23.529000px;}
._b_c00180{width:25.323000px;}
._1a_c00180{width:26.358000px;}
._a_c00180{width:28.428000px;}
._11_c00180{width:30.498000px;}
._12_c00180{width:33.051000px;}
._20_c00180{width:42.231000px;}
._14_c00180{width:45.471000px;}
._1c_c00180{width:47.886000px;}
._23_c00180{width:61.824000px;}
._26_c00180{width:75.180000px;}
._24_c00180{width:113.022000px;}
._29_c00180{width:156.285000px;}
._5_c00180{width:486.024000px;}
._28_c00180{width:768.453000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(128,128,128);}
.fc0_c00180{color:rgb(0,0,0);}
.fs3_c00180{font-size:48.000000px;}
.fs2_c00180{font-size:55.200000px;}
.fs0_c00180{font-size:69.000000px;}
.fs1_c00180{font-size:117.000000px;}
.y0_c00180{bottom:0.000000px;}
.y20_c00180{bottom:3.105000px;}
.y1f_c00180{bottom:7.228371px;}
.y1e_c00180{bottom:65.265000px;}
.y1d_c00180{bottom:88.815000px;}
.y1c_c00180{bottom:114.465000px;}
.y1b_c00180{bottom:139.365000px;}
.y1a_c00180{bottom:163.815000px;}
.y19_c00180{bottom:188.715000px;}
.y18_c00180{bottom:213.615000px;}
.y17_c00180{bottom:237.915000px;}
.y16_c00180{bottom:264.015000px;}
.y15_c00180{bottom:287.865000px;}
.y14_c00180{bottom:313.665000px;}
.y13_c00180{bottom:338.265000px;}
.y12_c00180{bottom:363.165000px;}
.y11_c00180{bottom:387.165000px;}
.y10_c00180{bottom:413.115000px;}
.yf_c00180{bottom:437.415000px;}
.ye_c00180{bottom:462.765000px;}
.yd_c00180{bottom:487.065000px;}
.yc_c00180{bottom:511.965000px;}
.yb_c00180{bottom:535.665000px;}
.ya_c00180{bottom:560.265000px;}
.y9_c00180{bottom:584.865000px;}
.y8_c00180{bottom:610.215000px;}
.y7_c00180{bottom:635.265000px;}
.y6_c00180{bottom:660.465000px;}
.y5_c00180{bottom:684.915000px;}
.y4_c00180{bottom:709.815000px;}
.y3_c00180{bottom:734.715000px;}
.y2_c00180{bottom:759.465000px;}
.y1_c00180{bottom:784.365000px;}
.h4_c00180{height:13.200074px;}
.h5_c00180{height:43.804688px;}
.h2_c00180{height:87.361816px;}
.h3_c00180{height:101.003906px;}
.h1_c00180{height:831.000000px;}
.h0_c00180{height:831.075000px;}
.w1_c00180{width:104.875500px;}
.w0_c00180{width:560.250000px;}
.x0_c00180{left:0.000000px;}
.x5_c00180{left:24.300000px;}
.x4_c00180{left:25.650000px;}
.x3_c00180{left:26.700000px;}
.x2_c00180{left:27.900000px;}
.x6_c00180{left:29.700000px;}
.x1_c00180{left:190.050000px;}
.x7_c00180{left:231.939240px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls1_c00180{letter-spacing:0.000000pt;}
.ls2_c00180{letter-spacing:2.666667pt;}
.ls0_c00180{letter-spacing:17.783467pt;}
.ws1_c00180{word-spacing:-17.448000pt;}
.ws0_c00180{word-spacing:-14.781333pt;}
.ws2_c00180{word-spacing:-14.491733pt;}
.ws3_c00180{word-spacing:0.000000pt;}
._15_c00180{margin-left:-20.730667pt;}
._1d_c00180{margin-left:-19.136000pt;}
._22_c00180{margin-left:-16.008000pt;}
._1f_c00180{margin-left:-13.309333pt;}
._c_c00180{margin-left:-10.426667pt;}
._27_c00180{margin-left:-9.445333pt;}
._17_c00180{margin-left:-6.992000pt;}
._3_c00180{margin-left:-4.722667pt;}
._21_c00180{margin-left:-3.776000pt;}
._2_c00180{margin-left:-2.821333pt;}
._4_c00180{margin-left:-1.840000pt;}
._13_c00180{margin-left:-0.920000pt;}
._0_c00180{width:1.104000pt;}
._1_c00180{width:2.576000pt;}
._10_c00180{width:3.496000pt;}
._7_c00180{width:4.477333pt;}
._d_c00180{width:5.458667pt;}
._6_c00180{width:6.440000pt;}
._f_c00180{width:8.034667pt;}
._9_c00180{width:9.445333pt;}
._25_c00180{width:10.365333pt;}
._8_c00180{width:11.408000pt;}
._1e_c00180{width:12.328000pt;}
._18_c00180{width:13.309333pt;}
._e_c00180{width:15.026667pt;}
._19_c00180{width:16.008000pt;}
._1b_c00180{width:19.442667pt;}
._16_c00180{width:20.914667pt;}
._b_c00180{width:22.509333pt;}
._1a_c00180{width:23.429333pt;}
._a_c00180{width:25.269333pt;}
._11_c00180{width:27.109333pt;}
._12_c00180{width:29.378667pt;}
._20_c00180{width:37.538667pt;}
._14_c00180{width:40.418667pt;}
._1c_c00180{width:42.565333pt;}
._23_c00180{width:54.954667pt;}
._26_c00180{width:66.826667pt;}
._24_c00180{width:100.464000pt;}
._29_c00180{width:138.920000pt;}
._5_c00180{width:432.021333pt;}
._28_c00180{width:683.069333pt;}
.fs3_c00180{font-size:42.666667pt;}
.fs2_c00180{font-size:49.066667pt;}
.fs0_c00180{font-size:61.333333pt;}
.fs1_c00180{font-size:104.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y20_c00180{bottom:2.760000pt;}
.y1f_c00180{bottom:6.425219pt;}
.y1e_c00180{bottom:58.013333pt;}
.y1d_c00180{bottom:78.946667pt;}
.y1c_c00180{bottom:101.746667pt;}
.y1b_c00180{bottom:123.880000pt;}
.y1a_c00180{bottom:145.613333pt;}
.y19_c00180{bottom:167.746667pt;}
.y18_c00180{bottom:189.880000pt;}
.y17_c00180{bottom:211.480000pt;}
.y16_c00180{bottom:234.680000pt;}
.y15_c00180{bottom:255.880000pt;}
.y14_c00180{bottom:278.813333pt;}
.y13_c00180{bottom:300.680000pt;}
.y12_c00180{bottom:322.813333pt;}
.y11_c00180{bottom:344.146667pt;}
.y10_c00180{bottom:367.213333pt;}
.yf_c00180{bottom:388.813333pt;}
.ye_c00180{bottom:411.346667pt;}
.yd_c00180{bottom:432.946667pt;}
.yc_c00180{bottom:455.080000pt;}
.yb_c00180{bottom:476.146667pt;}
.ya_c00180{bottom:498.013333pt;}
.y9_c00180{bottom:519.880000pt;}
.y8_c00180{bottom:542.413333pt;}
.y7_c00180{bottom:564.680000pt;}
.y6_c00180{bottom:587.080000pt;}
.y5_c00180{bottom:608.813333pt;}
.y4_c00180{bottom:630.946667pt;}
.y3_c00180{bottom:653.080000pt;}
.y2_c00180{bottom:675.080000pt;}
.y1_c00180{bottom:697.213333pt;}
.h4_c00180{height:11.733399pt;}
.h5_c00180{height:38.937500pt;}
.h2_c00180{height:77.654948pt;}
.h3_c00180{height:89.781250pt;}
.h1_c00180{height:738.666667pt;}
.h0_c00180{height:738.733333pt;}
.w1_c00180{width:93.222667pt;}
.w0_c00180{width:498.000000pt;}
.x0_c00180{left:0.000000pt;}
.x5_c00180{left:21.600000pt;}
.x4_c00180{left:22.800000pt;}
.x3_c00180{left:23.733333pt;}
.x2_c00180{left:24.800000pt;}
.x6_c00180{left:26.400000pt;}
.x1_c00180{left:168.933333pt;}
.x7_c00180{left:206.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_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_3b3ea3271d662422804a327f.woff2')format("woff");}.ff1_c00181{font-family:ff1_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:ff2_c00181;src:url('chunks/assets/font_1b7dbbffa1fa9ce37b9d58a5.woff2')format("woff");}.ff2_c00181{font-family:ff2_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:ff3_c00181;src:url('chunks/assets/font_a02678c3da22f13ead7b9623.woff2')format("woff");}.ff3_c00181{font-family:ff3_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:ff4_c00181;src:url('chunks/assets/font_c414b0c9cd398be8e74ee02b.woff2')format("woff");}.ff4_c00181{font-family:ff4_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:ff5_c00181;src:url('chunks/assets/font_bed390ee772bf5c4d8aa0785.woff2')format("woff");}.ff5_c00181{font-family:ff5_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:ff6_c00181;src:url('chunks/assets/font_ec280feda4db7d2b75c0bf65.woff2')format("woff");}.ff6_c00181{font-family:ff6_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:ff7_c00181;src:url('chunks/assets/font_a8faf76d9fe7b6159d4e3180.woff2')format("woff");}.ff7_c00181{font-family:ff7_c00181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00181;src:url('chunks/assets/font_cd6aa3dd600f62c557eeecf0.woff2')format("woff");}.ff8_c00181{font-family:ff8_c00181;line-height:1.437000;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_e4536864cbaad01f5fe51eb8.woff2')format("woff");}.ff9_c00181{font-family:ff9_c00181;line-height:1.437000;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_b3947b453e83548b7b68ed62.woff2')format("woff");}.ffa_c00181{font-family:ffa_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:ffb_c00181;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00181{font-family:ffb_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;}
.m1_c00181{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_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);}
.v1_c00181{vertical-align:-52.800000px;}
.v0_c00181{vertical-align:0.000000px;}
.lsa_c00181{letter-spacing:0.000000px;}
.lsb_c00181{letter-spacing:3.000000px;}
.ls2_c00181{letter-spacing:3.806400px;}
.ls1_c00181{letter-spacing:5.502000px;}
.lsd_c00181{letter-spacing:6.000000px;}
.ls3_c00181{letter-spacing:7.248000px;}
.ls5_c00181{letter-spacing:10.848000px;}
.ls6_c00181{letter-spacing:11.112000px;}
.ls8_c00181{letter-spacing:12.525000px;}
.ls4_c00181{letter-spacing:12.912000px;}
.lsc_c00181{letter-spacing:15.000000px;}
.lse_c00181{letter-spacing:18.000000px;}
.ls7_c00181{letter-spacing:22.353000px;}
.ls9_c00181{letter-spacing:295.230000px;}
.ls0_c00181{letter-spacing:381.036000px;}
.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:-48.126000px;}
.ws7_c00181{word-spacing:-40.500000px;}
.ws3_c00181{word-spacing:-34.554000px;}
.ws6_c00181{word-spacing:-32.361000px;}
.ws2_c00181{word-spacing:-19.629000px;}
.ws0_c00181{word-spacing:-14.460000px;}
.ws4_c00181{word-spacing:-14.379000px;}
.wsc_c00181{word-spacing:-13.500000px;}
.ws9_c00181{word-spacing:-12.882000px;}
.ws8_c00181{word-spacing:-12.654000px;}
.ws5_c00181{word-spacing:-11.895000px;}
.wsa_c00181{word-spacing:-0.117000px;}
.wsb_c00181{word-spacing:-0.093600px;}
.wsd_c00181{word-spacing:0.000000px;}
._30_c00181{margin-left:-48.360000px;}
._33_c00181{margin-left:-45.630000px;}
._2f_c00181{margin-left:-43.641000px;}
._37_c00181{margin-left:-42.471000px;}
._2a_c00181{margin-left:-41.301000px;}
._2e_c00181{margin-left:-39.195000px;}
._35_c00181{margin-left:-37.791000px;}
._2d_c00181{margin-left:-35.100000px;}
._34_c00181{margin-left:-33.345000px;}
._38_c00181{margin-left:-31.689000px;}
._36_c00181{margin-left:-29.133000px;}
._2c_c00181{margin-left:-26.325000px;}
._31_c00181{margin-left:-23.868000px;}
._32_c00181{margin-left:-22.815000px;}
._1b_c00181{margin-left:-21.285000px;}
._19_c00181{margin-left:-19.200000px;}
._6_c00181{margin-left:-16.950000px;}
._17_c00181{margin-left:-15.270000px;}
._1a_c00181{margin-left:-13.920000px;}
._3_c00181{margin-left:-12.375000px;}
._16_c00181{margin-left:-11.025000px;}
._5_c00181{margin-left:-9.375000px;}
._7_c00181{margin-left:-7.800000px;}
._4_c00181{margin-left:-5.850000px;}
._18_c00181{margin-left:-4.725000px;}
._11_c00181{margin-left:-3.618000px;}
._d_c00181{margin-left:-2.508000px;}
._f_c00181{margin-left:-1.281000px;}
._8_c00181{width:1.050000px;}
._e_c00181{width:2.109000px;}
._9_c00181{width:3.174000px;}
._c_c00181{width:4.392000px;}
._b_c00181{width:5.406000px;}
._a_c00181{width:6.810000px;}
._13_c00181{width:7.845000px;}
._0_c00181{width:9.300000px;}
._10_c00181{width:10.704000px;}
._2_c00181{width:11.760000px;}
._1_c00181{width:13.620000px;}
._14_c00181{width:15.072000px;}
._12_c00181{width:16.704000px;}
._21_c00181{width:18.018000px;}
._1f_c00181{width:22.659000px;}
._22_c00181{width:27.522000px;}
._1e_c00181{width:29.376000px;}
._28_c00181{width:56.676000px;}
._29_c00181{width:64.833000px;}
._15_c00181{width:79.530000px;}
._23_c00181{width:87.648000px;}
._2b_c00181{width:90.207000px;}
._20_c00181{width:93.315000px;}
._24_c00181{width:98.919000px;}
._1d_c00181{width:157.311000px;}
._26_c00181{width:163.581000px;}
._27_c00181{width:167.736000px;}
._1c_c00181{width:184.008000px;}
._25_c00181{width:462.111000px;}
.fc2_c00181{color:transparent;}
.fc1_c00181{color:rgb(128,128,128);}
.fc0_c00181{color:rgb(0,0,0);}
.fs7_c00181{font-size:45.000000px;}
.fsc_c00181{font-size:48.000000px;}
.fs8_c00181{font-size:54.000000px;}
.fs4_c00181{font-size:55.200000px;}
.fs9_c00181{font-size:57.000000px;}
.fs0_c00181{font-size:60.000000px;}
.fs1_c00181{font-size:66.000000px;}
.fs3_c00181{font-size:69.000000px;}
.fs6_c00181{font-size:72.000000px;}
.fs2_c00181{font-size:75.000000px;}
.fs5_c00181{font-size:78.000000px;}
.fsb_c00181{font-size:93.600000px;}
.fsa_c00181{font-size:117.000000px;}
.y0_c00181{bottom:0.000000px;}
.y1e_c00181{bottom:3.105000px;}
.y1d_c00181{bottom:7.228369px;}
.y1c_c00181{bottom:89.820000px;}
.y1b_c00181{bottom:109.920000px;}
.y1a_c00181{bottom:127.470000px;}
.y19_c00181{bottom:145.470000px;}
.y18_c00181{bottom:163.320000px;}
.y17_c00181{bottom:181.470000px;}
.y16_c00181{bottom:218.970000px;}
.y15_c00181{bottom:245.370000px;}
.y14_c00181{bottom:269.220000px;}
.y13_c00181{bottom:294.570000px;}
.y12_c00181{bottom:319.170000px;}
.y11_c00181{bottom:343.620000px;}
.y10_c00181{bottom:368.520000px;}
.yf_c00181{bottom:393.570000px;}
.ye_c00181{bottom:418.470000px;}
.yd_c00181{bottom:443.070000px;}
.yc_c00181{bottom:468.120000px;}
.yb_c00181{bottom:493.320000px;}
.ya_c00181{bottom:518.670000px;}
.y9_c00181{bottom:541.920000px;}
.y8_c00181{bottom:568.020000px;}
.y7_c00181{bottom:593.370000px;}
.y6_c00181{bottom:642.870000px;}
.y5_c00181{bottom:692.220000px;}
.y4_c00181{bottom:717.870000px;}
.y3_c00181{bottom:743.220000px;}
.y2_c00181{bottom:768.120000px;}
.y1_c00181{bottom:793.470000px;}
.hb_c00181{height:13.200073px;}
.hc_c00181{height:43.804688px;}
.h6_c00181{height:44.143066px;}
.h7_c00181{height:56.592000px;}
.h9_c00181{height:66.713379px;}
.h8_c00181{height:72.168457px;}
.h3_c00181{height:87.361816px;}
.h2_c00181{height:87.780762px;}
.h4_c00181{height:91.160156px;}
.h5_c00181{height:94.958496px;}
.ha_c00181{height:148.135254px;}
.h0_c00181{height:836.700000px;}
.h1_c00181{height:837.000000px;}
.w2_c00181{width:104.875500px;}
.w1_c00181{width:551.250000px;}
.w0_c00181{width:551.325000px;}
.x0_c00181{left:0.000000px;}
.x18_c00181{left:10.800000px;}
.xe_c00181{left:14.850000px;}
.x7_c00181{left:24.300000px;}
.x13_c00181{left:30.600000px;}
.x15_c00181{left:32.400000px;}
.xd_c00181{left:33.750000px;}
.xb_c00181{left:35.700000px;}
.x9_c00181{left:37.800000px;}
.x12_c00181{left:77.250000px;}
.xf_c00181{left:80.550000px;}
.xc_c00181{left:82.050000px;}
.xa_c00181{left:84.600000px;}
.x6_c00181{left:85.800000px;}
.x8_c00181{left:87.150000px;}
.x3_c00181{left:88.500000px;}
.x2_c00181{left:89.850000px;}
.x11_c00181{left:95.550000px;}
.x1_c00181{left:102.900000px;}
.x5_c00181{left:113.400000px;}
.x4_c00181{left:131.400000px;}
.x19_c00181{left:227.476730px;}
.x10_c00181{left:259.200000px;}
.x16_c00181{left:363.750000px;}
.x17_c00181{left:387.150000px;}
.x14_c00181{left:486.000000px;}
@media print{
.v1_c00181{vertical-align:-46.933333pt;}
.v0_c00181{vertical-align:0.000000pt;}
.lsa_c00181{letter-spacing:0.000000pt;}
.lsb_c00181{letter-spacing:2.666667pt;}
.ls2_c00181{letter-spacing:3.383467pt;}
.ls1_c00181{letter-spacing:4.890667pt;}
.lsd_c00181{letter-spacing:5.333333pt;}
.ls3_c00181{letter-spacing:6.442667pt;}
.ls5_c00181{letter-spacing:9.642667pt;}
.ls6_c00181{letter-spacing:9.877333pt;}
.ls8_c00181{letter-spacing:11.133333pt;}
.ls4_c00181{letter-spacing:11.477333pt;}
.lsc_c00181{letter-spacing:13.333333pt;}
.lse_c00181{letter-spacing:16.000000pt;}
.ls7_c00181{letter-spacing:19.869333pt;}
.ls9_c00181{letter-spacing:262.426667pt;}
.ls0_c00181{letter-spacing:338.698667pt;}
.ws1_c00181{word-spacing:-42.778667pt;}
.ws7_c00181{word-spacing:-36.000000pt;}
.ws3_c00181{word-spacing:-30.714667pt;}
.ws6_c00181{word-spacing:-28.765333pt;}
.ws2_c00181{word-spacing:-17.448000pt;}
.ws0_c00181{word-spacing:-12.853333pt;}
.ws4_c00181{word-spacing:-12.781333pt;}
.wsc_c00181{word-spacing:-12.000000pt;}
.ws9_c00181{word-spacing:-11.450667pt;}
.ws8_c00181{word-spacing:-11.248000pt;}
.ws5_c00181{word-spacing:-10.573333pt;}
.wsa_c00181{word-spacing:-0.104000pt;}
.wsb_c00181{word-spacing:-0.083200pt;}
.wsd_c00181{word-spacing:0.000000pt;}
._30_c00181{margin-left:-42.986667pt;}
._33_c00181{margin-left:-40.560000pt;}
._2f_c00181{margin-left:-38.792000pt;}
._37_c00181{margin-left:-37.752000pt;}
._2a_c00181{margin-left:-36.712000pt;}
._2e_c00181{margin-left:-34.840000pt;}
._35_c00181{margin-left:-33.592000pt;}
._2d_c00181{margin-left:-31.200000pt;}
._34_c00181{margin-left:-29.640000pt;}
._38_c00181{margin-left:-28.168000pt;}
._36_c00181{margin-left:-25.896000pt;}
._2c_c00181{margin-left:-23.400000pt;}
._31_c00181{margin-left:-21.216000pt;}
._32_c00181{margin-left:-20.280000pt;}
._1b_c00181{margin-left:-18.920000pt;}
._19_c00181{margin-left:-17.066667pt;}
._6_c00181{margin-left:-15.066667pt;}
._17_c00181{margin-left:-13.573333pt;}
._1a_c00181{margin-left:-12.373333pt;}
._3_c00181{margin-left:-11.000000pt;}
._16_c00181{margin-left:-9.800000pt;}
._5_c00181{margin-left:-8.333333pt;}
._7_c00181{margin-left:-6.933333pt;}
._4_c00181{margin-left:-5.200000pt;}
._18_c00181{margin-left:-4.200000pt;}
._11_c00181{margin-left:-3.216000pt;}
._d_c00181{margin-left:-2.229333pt;}
._f_c00181{margin-left:-1.138667pt;}
._8_c00181{width:0.933333pt;}
._e_c00181{width:1.874667pt;}
._9_c00181{width:2.821333pt;}
._c_c00181{width:3.904000pt;}
._b_c00181{width:4.805333pt;}
._a_c00181{width:6.053333pt;}
._13_c00181{width:6.973333pt;}
._0_c00181{width:8.266667pt;}
._10_c00181{width:9.514667pt;}
._2_c00181{width:10.453333pt;}
._1_c00181{width:12.106667pt;}
._14_c00181{width:13.397333pt;}
._12_c00181{width:14.848000pt;}
._21_c00181{width:16.016000pt;}
._1f_c00181{width:20.141333pt;}
._22_c00181{width:24.464000pt;}
._1e_c00181{width:26.112000pt;}
._28_c00181{width:50.378667pt;}
._29_c00181{width:57.629333pt;}
._15_c00181{width:70.693333pt;}
._23_c00181{width:77.909333pt;}
._2b_c00181{width:80.184000pt;}
._20_c00181{width:82.946667pt;}
._24_c00181{width:87.928000pt;}
._1d_c00181{width:139.832000pt;}
._26_c00181{width:145.405333pt;}
._27_c00181{width:149.098667pt;}
._1c_c00181{width:163.562667pt;}
._25_c00181{width:410.765333pt;}
.fs7_c00181{font-size:40.000000pt;}
.fsc_c00181{font-size:42.666667pt;}
.fs8_c00181{font-size:48.000000pt;}
.fs4_c00181{font-size:49.066667pt;}
.fs9_c00181{font-size:50.666667pt;}
.fs0_c00181{font-size:53.333333pt;}
.fs1_c00181{font-size:58.666667pt;}
.fs3_c00181{font-size:61.333333pt;}
.fs6_c00181{font-size:64.000000pt;}
.fs2_c00181{font-size:66.666667pt;}
.fs5_c00181{font-size:69.333333pt;}
.fsb_c00181{font-size:83.200000pt;}
.fsa_c00181{font-size:104.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y1e_c00181{bottom:2.760000pt;}
.y1d_c00181{bottom:6.425217pt;}
.y1c_c00181{bottom:79.840000pt;}
.y1b_c00181{bottom:97.706667pt;}
.y1a_c00181{bottom:113.306667pt;}
.y19_c00181{bottom:129.306667pt;}
.y18_c00181{bottom:145.173333pt;}
.y17_c00181{bottom:161.306667pt;}
.y16_c00181{bottom:194.640000pt;}
.y15_c00181{bottom:218.106667pt;}
.y14_c00181{bottom:239.306667pt;}
.y13_c00181{bottom:261.840000pt;}
.y12_c00181{bottom:283.706667pt;}
.y11_c00181{bottom:305.440000pt;}
.y10_c00181{bottom:327.573333pt;}
.yf_c00181{bottom:349.840000pt;}
.ye_c00181{bottom:371.973333pt;}
.yd_c00181{bottom:393.840000pt;}
.yc_c00181{bottom:416.106667pt;}
.yb_c00181{bottom:438.506667pt;}
.ya_c00181{bottom:461.040000pt;}
.y9_c00181{bottom:481.706667pt;}
.y8_c00181{bottom:504.906667pt;}
.y7_c00181{bottom:527.440000pt;}
.y6_c00181{bottom:571.440000pt;}
.y5_c00181{bottom:615.306667pt;}
.y4_c00181{bottom:638.106667pt;}
.y3_c00181{bottom:660.640000pt;}
.y2_c00181{bottom:682.773333pt;}
.y1_c00181{bottom:705.306667pt;}
.hb_c00181{height:11.733399pt;}
.hc_c00181{height:38.937500pt;}
.h6_c00181{height:39.238281pt;}
.h7_c00181{height:50.304000pt;}
.h9_c00181{height:59.300781pt;}
.h8_c00181{height:64.149740pt;}
.h3_c00181{height:77.654948pt;}
.h2_c00181{height:78.027344pt;}
.h4_c00181{height:81.031250pt;}
.h5_c00181{height:84.407552pt;}
.ha_c00181{height:131.675781pt;}
.h0_c00181{height:743.733333pt;}
.h1_c00181{height:744.000000pt;}
.w2_c00181{width:93.222667pt;}
.w1_c00181{width:490.000000pt;}
.w0_c00181{width:490.066667pt;}
.x0_c00181{left:0.000000pt;}
.x18_c00181{left:9.600000pt;}
.xe_c00181{left:13.200000pt;}
.x7_c00181{left:21.600000pt;}
.x13_c00181{left:27.200000pt;}
.x15_c00181{left:28.800000pt;}
.xd_c00181{left:30.000000pt;}
.xb_c00181{left:31.733333pt;}
.x9_c00181{left:33.600000pt;}
.x12_c00181{left:68.666667pt;}
.xf_c00181{left:71.600000pt;}
.xc_c00181{left:72.933333pt;}
.xa_c00181{left:75.200000pt;}
.x6_c00181{left:76.266667pt;}
.x8_c00181{left:77.466667pt;}
.x3_c00181{left:78.666667pt;}
.x2_c00181{left:79.866667pt;}
.x11_c00181{left:84.933333pt;}
.x1_c00181{left:91.466667pt;}
.x5_c00181{left:100.800000pt;}
.x4_c00181{left:116.800000pt;}
.x19_c00181{left:202.201538pt;}
.x10_c00181{left:230.400000pt;}
.x16_c00181{left:323.333333pt;}
.x17_c00181{left:344.133333pt;}
.x14_c00181{left:432.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_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_bd024216b6222d736ce53c62.woff2')format("woff");}.ff1_c00182{font-family:ff1_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:ff2_c00182;src:url('chunks/assets/font_d68faca3436e52d2b8b22514.woff2')format("woff");}.ff2_c00182{font-family:ff2_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:ff3_c00182;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00182{font-family:ff3_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;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:3.000000px;}
.ls2_c00182{letter-spacing:6.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00182{word-spacing:-19.629000px;}
.ws1_c00182{word-spacing:-16.629000px;}
.ws0_c00182{word-spacing:-6.267000px;}
.ws3_c00182{word-spacing:0.000000px;}
._26_c00182{margin-left:-17.526000px;}
._c_c00182{margin-left:-14.412000px;}
._d_c00182{margin-left:-11.586000px;}
._b_c00182{margin-left:-10.200000px;}
._a_c00182{margin-left:-8.442000px;}
._8_c00182{margin-left:-7.224000px;}
._7_c00182{margin-left:-6.057000px;}
._9_c00182{margin-left:-4.824000px;}
._3_c00182{margin-left:-3.381000px;}
._2_c00182{margin-left:-2.139000px;}
._e_c00182{margin-left:-1.014000px;}
._1_c00182{width:1.035000px;}
._0_c00182{width:2.139000px;}
._15_c00182{width:3.405000px;}
._5_c00182{width:5.106000px;}
._6_c00182{width:6.762000px;}
._f_c00182{width:8.694000px;}
._11_c00182{width:10.842000px;}
._10_c00182{width:12.753000px;}
._12_c00182{width:14.283000px;}
._18_c00182{width:15.381000px;}
._1d_c00182{width:17.031000px;}
._13_c00182{width:18.492000px;}
._14_c00182{width:20.355000px;}
._1e_c00182{width:21.540000px;}
._25_c00182{width:22.701000px;}
._19_c00182{width:23.874000px;}
._27_c00182{width:29.139000px;}
._24_c00182{width:30.165000px;}
._1a_c00182{width:33.321000px;}
._17_c00182{width:34.569000px;}
._1c_c00182{width:37.731000px;}
._23_c00182{width:41.733000px;}
._1f_c00182{width:47.241000px;}
._1b_c00182{width:58.521000px;}
._16_c00182{width:78.903000px;}
._21_c00182{width:107.124000px;}
._22_c00182{width:114.783000px;}
._20_c00182{width:191.376000px;}
._4_c00182{width:485.016000px;}
.fc2_c00182{color:transparent;}
.fc1_c00182{color:rgb(128,128,128);}
.fc0_c00182{color:rgb(0,0,0);}
.fs4_c00182{font-size:48.000000px;}
.fs2_c00182{font-size:54.000000px;}
.fs1_c00182{font-size:66.000000px;}
.fs0_c00182{font-size:69.000000px;}
.fs3_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y20_c00182{bottom:3.105000px;}
.y1f_c00182{bottom:7.228369px;}
.y1e_c00182{bottom:64.470000px;}
.y1d_c00182{bottom:86.970000px;}
.y1c_c00182{bottom:112.620000px;}
.y1b_c00182{bottom:137.970000px;}
.y1a_c00182{bottom:162.270000px;}
.y19_c00182{bottom:187.320000px;}
.y18_c00182{bottom:212.520000px;}
.y17_c00182{bottom:237.570000px;}
.y16_c00182{bottom:262.470000px;}
.y15_c00182{bottom:287.220000px;}
.y14_c00182{bottom:312.420000px;}
.y13_c00182{bottom:336.870000px;}
.y12_c00182{bottom:361.170000px;}
.y11_c00182{bottom:385.770000px;}
.y10_c00182{bottom:410.970000px;}
.yf_c00182{bottom:435.270000px;}
.ye_c00182{bottom:460.320000px;}
.yd_c00182{bottom:484.920000px;}
.yc_c00182{bottom:508.920000px;}
.yb_c00182{bottom:533.520000px;}
.ya_c00182{bottom:558.270000px;}
.y9_c00182{bottom:582.870000px;}
.y8_c00182{bottom:608.220000px;}
.y7_c00182{bottom:633.420000px;}
.y6_c00182{bottom:658.170000px;}
.y5_c00182{bottom:689.070000px;}
.y4_c00182{bottom:728.370000px;}
.y3_c00182{bottom:745.920000px;}
.y2_c00182{bottom:763.470000px;}
.y1_c00182{bottom:783.270000px;}
.h6_c00182{height:13.200073px;}
.h7_c00182{height:43.804688px;}
.h4_c00182{height:80.758301px;}
.h3_c00182{height:83.563477px;}
.h2_c00182{height:87.361816px;}
.h5_c00182{height:91.160156px;}
.h0_c00182{height:821.850000px;}
.h1_c00182{height:822.000000px;}
.w1_c00182{width:104.875500px;}
.w0_c00182{width:553.500000px;}
.x0_c00182{left:0.000000px;}
.x6_c00182{left:36.000000px;}
.x2_c00182{left:38.550000px;}
.x3_c00182{left:39.600000px;}
.x5_c00182{left:63.450000px;}
.x4_c00182{left:81.450000px;}
.x1_c00182{left:201.900000px;}
.x8_c00182{left:228.564240px;}
.x7_c00182{left:442.800000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:2.666667pt;}
.ls2_c00182{letter-spacing:5.333333pt;}
.ws2_c00182{word-spacing:-17.448000pt;}
.ws1_c00182{word-spacing:-14.781333pt;}
.ws0_c00182{word-spacing:-5.570667pt;}
.ws3_c00182{word-spacing:0.000000pt;}
._26_c00182{margin-left:-15.578667pt;}
._c_c00182{margin-left:-12.810667pt;}
._d_c00182{margin-left:-10.298667pt;}
._b_c00182{margin-left:-9.066667pt;}
._a_c00182{margin-left:-7.504000pt;}
._8_c00182{margin-left:-6.421333pt;}
._7_c00182{margin-left:-5.384000pt;}
._9_c00182{margin-left:-4.288000pt;}
._3_c00182{margin-left:-3.005333pt;}
._2_c00182{margin-left:-1.901333pt;}
._e_c00182{margin-left:-0.901333pt;}
._1_c00182{width:0.920000pt;}
._0_c00182{width:1.901333pt;}
._15_c00182{width:3.026667pt;}
._5_c00182{width:4.538667pt;}
._6_c00182{width:6.010667pt;}
._f_c00182{width:7.728000pt;}
._11_c00182{width:9.637333pt;}
._10_c00182{width:11.336000pt;}
._12_c00182{width:12.696000pt;}
._18_c00182{width:13.672000pt;}
._1d_c00182{width:15.138667pt;}
._13_c00182{width:16.437333pt;}
._14_c00182{width:18.093333pt;}
._1e_c00182{width:19.146667pt;}
._25_c00182{width:20.178667pt;}
._19_c00182{width:21.221333pt;}
._27_c00182{width:25.901333pt;}
._24_c00182{width:26.813333pt;}
._1a_c00182{width:29.618667pt;}
._17_c00182{width:30.728000pt;}
._1c_c00182{width:33.538667pt;}
._23_c00182{width:37.096000pt;}
._1f_c00182{width:41.992000pt;}
._1b_c00182{width:52.018667pt;}
._16_c00182{width:70.136000pt;}
._21_c00182{width:95.221333pt;}
._22_c00182{width:102.029333pt;}
._20_c00182{width:170.112000pt;}
._4_c00182{width:431.125333pt;}
.fs4_c00182{font-size:42.666667pt;}
.fs2_c00182{font-size:48.000000pt;}
.fs1_c00182{font-size:58.666667pt;}
.fs0_c00182{font-size:61.333333pt;}
.fs3_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y20_c00182{bottom:2.760000pt;}
.y1f_c00182{bottom:6.425217pt;}
.y1e_c00182{bottom:57.306667pt;}
.y1d_c00182{bottom:77.306667pt;}
.y1c_c00182{bottom:100.106667pt;}
.y1b_c00182{bottom:122.640000pt;}
.y1a_c00182{bottom:144.240000pt;}
.y19_c00182{bottom:166.506667pt;}
.y18_c00182{bottom:188.906667pt;}
.y17_c00182{bottom:211.173333pt;}
.y16_c00182{bottom:233.306667pt;}
.y15_c00182{bottom:255.306667pt;}
.y14_c00182{bottom:277.706667pt;}
.y13_c00182{bottom:299.440000pt;}
.y12_c00182{bottom:321.040000pt;}
.y11_c00182{bottom:342.906667pt;}
.y10_c00182{bottom:365.306667pt;}
.yf_c00182{bottom:386.906667pt;}
.ye_c00182{bottom:409.173333pt;}
.yd_c00182{bottom:431.040000pt;}
.yc_c00182{bottom:452.373333pt;}
.yb_c00182{bottom:474.240000pt;}
.ya_c00182{bottom:496.240000pt;}
.y9_c00182{bottom:518.106667pt;}
.y8_c00182{bottom:540.640000pt;}
.y7_c00182{bottom:563.040000pt;}
.y6_c00182{bottom:585.040000pt;}
.y5_c00182{bottom:612.506667pt;}
.y4_c00182{bottom:647.440000pt;}
.y3_c00182{bottom:663.040000pt;}
.y2_c00182{bottom:678.640000pt;}
.y1_c00182{bottom:696.240000pt;}
.h6_c00182{height:11.733399pt;}
.h7_c00182{height:38.937500pt;}
.h4_c00182{height:71.785156pt;}
.h3_c00182{height:74.278646pt;}
.h2_c00182{height:77.654948pt;}
.h5_c00182{height:81.031250pt;}
.h0_c00182{height:730.533333pt;}
.h1_c00182{height:730.666667pt;}
.w1_c00182{width:93.222667pt;}
.w0_c00182{width:492.000000pt;}
.x0_c00182{left:0.000000pt;}
.x6_c00182{left:32.000000pt;}
.x2_c00182{left:34.266667pt;}
.x3_c00182{left:35.200000pt;}
.x5_c00182{left:56.400000pt;}
.x4_c00182{left:72.400000pt;}
.x1_c00182{left:179.466667pt;}
.x8_c00182{left:203.168213pt;}
.x7_c00182{left:393.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_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_aa60eef2ae38e707e63a0da6.woff2')format("woff");}.ff1_c00183{font-family:ff1_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:ff2_c00183;src:url('chunks/assets/font_546e302e8807f35f27b19960.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.568848;font-style:normal;font-weight:normal;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_e55cddbf18162240cf026d2c.woff2')format("woff");}.ff3_c00183{font-family:ff3_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:ff4_c00183;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00183{font-family:ff4_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;}
.ls4_c00183{letter-spacing:0.000000px;}
.ls3_c00183{letter-spacing:3.000000px;}
.ls5_c00183{letter-spacing:6.000000px;}
.ls0_c00183{letter-spacing:10.200000px;}
.ls1_c00183{letter-spacing:12.600000px;}
.ls2_c00183{letter-spacing:370.971000px;}
.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;}
}
.ws4_c00183{word-spacing:-22.629000px;}
.ws5_c00183{word-spacing:-19.629000px;}
.ws6_c00183{word-spacing:-16.629000px;}
.ws7_c00183{word-spacing:0.000000px;}
.ws3_c00183{word-spacing:2.346000px;}
.ws2_c00183{word-spacing:3.243000px;}
.ws0_c00183{word-spacing:3.519000px;}
.ws1_c00183{word-spacing:11.316000px;}
._d_c00183{margin-left:-25.737000px;}
._1_c00183{margin-left:-8.799000px;}
._16_c00183{margin-left:-6.624000px;}
._14_c00183{margin-left:-4.761000px;}
._e_c00183{margin-left:-2.760000px;}
._2_c00183{margin-left:-1.656000px;}
._0_c00183{width:1.932000px;}
._c_c00183{width:2.967000px;}
._3_c00183{width:4.140000px;}
._9_c00183{width:5.313000px;}
._6_c00183{width:6.417000px;}
._4_c00183{width:7.728000px;}
._18_c00183{width:8.763000px;}
._a_c00183{width:9.798000px;}
._5_c00183{width:11.109000px;}
._11_c00183{width:12.489000px;}
._b_c00183{width:13.938000px;}
._8_c00183{width:15.663000px;}
._f_c00183{width:17.388000px;}
._7_c00183{width:18.492000px;}
._19_c00183{width:20.700000px;}
._1a_c00183{width:21.978000px;}
._1b_c00183{width:23.115000px;}
._17_c00183{width:24.702000px;}
._10_c00183{width:27.171000px;}
._15_c00183{width:31.602000px;}
._13_c00183{width:37.197000px;}
._12_c00183{width:38.745000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(128,128,128);}
.fc0_c00183{color:rgb(0,0,0);}
.fs2_c00183{font-size:48.000000px;}
.fs0_c00183{font-size:66.000000px;}
.fs1_c00183{font-size:69.000000px;}
.y0_c00183{bottom:0.000000px;}
.y1e_c00183{bottom:3.105000px;}
.y1d_c00183{bottom:7.228369px;}
.y1c_c00183{bottom:65.370000px;}
.y1b_c00183{bottom:143.670000px;}
.y1a_c00183{bottom:166.620000px;}
.y19_c00183{bottom:192.420000px;}
.y18_c00183{bottom:217.320000px;}
.y17_c00183{bottom:242.220000px;}
.y16_c00183{bottom:267.270000px;}
.y15_c00183{bottom:291.570000px;}
.y14_c00183{bottom:316.170000px;}
.y13_c00183{bottom:341.520000px;}
.y12_c00183{bottom:367.470000px;}
.y11_c00183{bottom:390.720000px;}
.y10_c00183{bottom:415.470000px;}
.yf_c00183{bottom:440.370000px;}
.ye_c00183{bottom:465.720000px;}
.yd_c00183{bottom:490.620000px;}
.yc_c00183{bottom:515.670000px;}
.yb_c00183{bottom:539.970000px;}
.ya_c00183{bottom:565.020000px;}
.y9_c00183{bottom:590.220000px;}
.y8_c00183{bottom:614.820000px;}
.y7_c00183{bottom:639.870000px;}
.y6_c00183{bottom:664.920000px;}
.y5_c00183{bottom:689.520000px;}
.y4_c00183{bottom:714.870000px;}
.y3_c00183{bottom:739.470000px;}
.y2_c00183{bottom:764.370000px;}
.y1_c00183{bottom:788.970000px;}
.h4_c00183{height:13.200073px;}
.h5_c00183{height:43.804688px;}
.h3_c00183{height:80.758301px;}
.h2_c00183{height:87.361816px;}
.h0_c00183{height:836.700000px;}
.h1_c00183{height:837.000000px;}
.w2_c00183{width:104.875500px;}
.w1_c00183{width:551.250000px;}
.w0_c00183{width:551.325000px;}
.x0_c00183{left:0.000000px;}
.x8_c00183{left:70.500000px;}
.x9_c00183{left:72.150000px;}
.x6_c00183{left:73.800000px;}
.x5_c00183{left:74.850000px;}
.x4_c00183{left:75.900000px;}
.x2_c00183{left:76.950000px;}
.x3_c00183{left:79.350000px;}
.x1_c00183{left:90.000000px;}
.x7_c00183{left:98.850000px;}
.xb_c00183{left:227.476730px;}
.xa_c00183{left:439.050000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls4_c00183{letter-spacing:0.000000pt;}
.ls3_c00183{letter-spacing:2.666667pt;}
.ls5_c00183{letter-spacing:5.333333pt;}
.ls0_c00183{letter-spacing:9.066667pt;}
.ls1_c00183{letter-spacing:11.200000pt;}
.ls2_c00183{letter-spacing:329.752000pt;}
.ws4_c00183{word-spacing:-20.114667pt;}
.ws5_c00183{word-spacing:-17.448000pt;}
.ws6_c00183{word-spacing:-14.781333pt;}
.ws7_c00183{word-spacing:0.000000pt;}
.ws3_c00183{word-spacing:2.085333pt;}
.ws2_c00183{word-spacing:2.882667pt;}
.ws0_c00183{word-spacing:3.128000pt;}
.ws1_c00183{word-spacing:10.058667pt;}
._d_c00183{margin-left:-22.877333pt;}
._1_c00183{margin-left:-7.821333pt;}
._16_c00183{margin-left:-5.888000pt;}
._14_c00183{margin-left:-4.232000pt;}
._e_c00183{margin-left:-2.453333pt;}
._2_c00183{margin-left:-1.472000pt;}
._0_c00183{width:1.717333pt;}
._c_c00183{width:2.637333pt;}
._3_c00183{width:3.680000pt;}
._9_c00183{width:4.722667pt;}
._6_c00183{width:5.704000pt;}
._4_c00183{width:6.869333pt;}
._18_c00183{width:7.789333pt;}
._a_c00183{width:8.709333pt;}
._5_c00183{width:9.874667pt;}
._11_c00183{width:11.101333pt;}
._b_c00183{width:12.389333pt;}
._8_c00183{width:13.922667pt;}
._f_c00183{width:15.456000pt;}
._7_c00183{width:16.437333pt;}
._19_c00183{width:18.400000pt;}
._1a_c00183{width:19.536000pt;}
._1b_c00183{width:20.546667pt;}
._17_c00183{width:21.957333pt;}
._10_c00183{width:24.152000pt;}
._15_c00183{width:28.090667pt;}
._13_c00183{width:33.064000pt;}
._12_c00183{width:34.440000pt;}
.fs2_c00183{font-size:42.666667pt;}
.fs0_c00183{font-size:58.666667pt;}
.fs1_c00183{font-size:61.333333pt;}
.y0_c00183{bottom:0.000000pt;}
.y1e_c00183{bottom:2.760000pt;}
.y1d_c00183{bottom:6.425217pt;}
.y1c_c00183{bottom:58.106667pt;}
.y1b_c00183{bottom:127.706667pt;}
.y1a_c00183{bottom:148.106667pt;}
.y19_c00183{bottom:171.040000pt;}
.y18_c00183{bottom:193.173333pt;}
.y17_c00183{bottom:215.306667pt;}
.y16_c00183{bottom:237.573333pt;}
.y15_c00183{bottom:259.173333pt;}
.y14_c00183{bottom:281.040000pt;}
.y13_c00183{bottom:303.573333pt;}
.y12_c00183{bottom:326.640000pt;}
.y11_c00183{bottom:347.306667pt;}
.y10_c00183{bottom:369.306667pt;}
.yf_c00183{bottom:391.440000pt;}
.ye_c00183{bottom:413.973333pt;}
.yd_c00183{bottom:436.106667pt;}
.yc_c00183{bottom:458.373333pt;}
.yb_c00183{bottom:479.973333pt;}
.ya_c00183{bottom:502.240000pt;}
.y9_c00183{bottom:524.640000pt;}
.y8_c00183{bottom:546.506667pt;}
.y7_c00183{bottom:568.773333pt;}
.y6_c00183{bottom:591.040000pt;}
.y5_c00183{bottom:612.906667pt;}
.y4_c00183{bottom:635.440000pt;}
.y3_c00183{bottom:657.306667pt;}
.y2_c00183{bottom:679.440000pt;}
.y1_c00183{bottom:701.306667pt;}
.h4_c00183{height:11.733399pt;}
.h5_c00183{height:38.937500pt;}
.h3_c00183{height:71.785156pt;}
.h2_c00183{height:77.654948pt;}
.h0_c00183{height:743.733333pt;}
.h1_c00183{height:744.000000pt;}
.w2_c00183{width:93.222667pt;}
.w1_c00183{width:490.000000pt;}
.w0_c00183{width:490.066667pt;}
.x0_c00183{left:0.000000pt;}
.x8_c00183{left:62.666667pt;}
.x9_c00183{left:64.133333pt;}
.x6_c00183{left:65.600000pt;}
.x5_c00183{left:66.533333pt;}
.x4_c00183{left:67.466667pt;}
.x2_c00183{left:68.400000pt;}
.x3_c00183{left:70.533333pt;}
.x1_c00183{left:80.000000pt;}
.x7_c00183{left:87.866667pt;}
.xb_c00183{left:202.201538pt;}
.xa_c00183{left:390.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_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_9e132a8fb8efd809e1213c66.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_49c89717718f05a50c0dab4c.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_671b48228ab868210f7091ec.woff2')format("woff");}.ff3_c00184{font-family:ff3_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:ff4_c00184;src:url('chunks/assets/font_60076a51d02e195f4a4839a1.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;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_c00184;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00184{font-family:ff5_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;}
.ls10_c00184{letter-spacing:-12.000000px;}
.lsf_c00184{letter-spacing:-9.000000px;}
.lse_c00184{letter-spacing:-3.000000px;}
.lsb_c00184{letter-spacing:0.000000px;}
.ls8_c00184{letter-spacing:0.840000px;}
.ls9_c00184{letter-spacing:2.028000px;}
.lsc_c00184{letter-spacing:3.000000px;}
.lsd_c00184{letter-spacing:6.000000px;}
.ls7_c00184{letter-spacing:9.174000px;}
.ls6_c00184{letter-spacing:9.240000px;}
.ls1_c00184{letter-spacing:10.074000px;}
.ls4_c00184{letter-spacing:11.640000px;}
.ls3_c00184{letter-spacing:13.674000px;}
.ls2_c00184{letter-spacing:15.474000px;}
.ls5_c00184{letter-spacing:16.746000px;}
.ls0_c00184{letter-spacing:21.891000px;}
.lsa_c00184{letter-spacing:287.586000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:-22.629000px;}
.ws2_c00184{word-spacing:-16.629000px;}
.ws1_c00184{word-spacing:-13.629000px;}
.ws4_c00184{word-spacing:-1.014000px;}
.ws5_c00184{word-spacing:0.000000px;}
.ws3_c00184{word-spacing:8.868000px;}
._24_c00184{margin-left:-20.355000px;}
._1d_c00184{margin-left:-19.182000px;}
._16_c00184{margin-left:-15.456000px;}
._28_c00184{margin-left:-13.938000px;}
._17_c00184{margin-left:-10.830000px;}
._2_c00184{margin-left:-9.522000px;}
._29_c00184{margin-left:-8.103000px;}
._14_c00184{margin-left:-6.762000px;}
._13_c00184{margin-left:-5.658000px;}
._12_c00184{margin-left:-4.278000px;}
._3_c00184{margin-left:-3.174000px;}
._4_c00184{margin-left:-2.139000px;}
._5_c00184{margin-left:-1.122000px;}
._1e_c00184{width:1.155000px;}
._1_c00184{width:2.277000px;}
._11_c00184{width:4.071000px;}
._0_c00184{width:5.451000px;}
._7_c00184{width:7.038000px;}
._e_c00184{width:8.052000px;}
._15_c00184{width:9.159000px;}
._a_c00184{width:10.230000px;}
._8_c00184{width:11.352000px;}
._b_c00184{width:12.432000px;}
._1c_c00184{width:13.524000px;}
._9_c00184{width:14.586000px;}
._2f_c00184{width:16.269000px;}
._d_c00184{width:17.292000px;}
._26_c00184{width:18.399000px;}
._10_c00184{width:19.494000px;}
._f_c00184{width:20.724000px;}
._19_c00184{width:23.598000px;}
._30_c00184{width:25.146000px;}
._31_c00184{width:26.559000px;}
._1a_c00184{width:28.428000px;}
._2e_c00184{width:29.964000px;}
._1b_c00184{width:32.085000px;}
._2b_c00184{width:35.652000px;}
._32_c00184{width:37.818000px;}
._33_c00184{width:47.508000px;}
._21_c00184{width:67.023000px;}
._2c_c00184{width:72.786000px;}
._23_c00184{width:79.929000px;}
._22_c00184{width:84.975000px;}
._c_c00184{width:86.109000px;}
._27_c00184{width:104.760000px;}
._1f_c00184{width:111.222000px;}
._2d_c00184{width:136.890000px;}
._2a_c00184{width:150.861000px;}
._18_c00184{width:181.200000px;}
._20_c00184{width:223.473000px;}
._25_c00184{width:262.866000px;}
._6_c00184{width:511.359000px;}
.fc2_c00184{color:transparent;}
.fc1_c00184{color:rgb(128,128,128);}
.fc0_c00184{color:rgb(0,0,0);}
.fs8_c00184{font-size:48.000000px;}
.fs7_c00184{font-size:54.000000px;}
.fs3_c00184{font-size:63.000000px;}
.fs1_c00184{font-size:66.000000px;}
.fs0_c00184{font-size:69.000000px;}
.fs4_c00184{font-size:72.000000px;}
.fs2_c00184{font-size:78.000000px;}
.fs5_c00184{font-size:117.000000px;}
.fs6_c00184{font-size:132.000000px;}
.y0_c00184{bottom:0.000000px;}
.y1c_c00184{bottom:3.105000px;}
.y1b_c00184{bottom:7.228369px;}
.y1a_c00184{bottom:66.120000px;}
.y19_c00184{bottom:84.720000px;}
.y18_c00184{bottom:134.220000px;}
.y17_c00184{bottom:183.870000px;}
.y16_c00184{bottom:209.220000px;}
.y15_c00184{bottom:234.570000px;}
.y14_c00184{bottom:259.770000px;}
.y13_c00184{bottom:284.220000px;}
.y12_c00184{bottom:309.420000px;}
.y11_c00184{bottom:334.020000px;}
.y10_c00184{bottom:358.770000px;}
.yf_c00184{bottom:383.970000px;}
.ye_c00184{bottom:408.270000px;}
.yd_c00184{bottom:435.420000px;}
.yc_c00184{bottom:458.670000px;}
.yb_c00184{bottom:482.670000px;}
.ya_c00184{bottom:505.170000px;}
.y9_c00184{bottom:530.820000px;}
.y8_c00184{bottom:554.820000px;}
.y7_c00184{bottom:579.120000px;}
.y6_c00184{bottom:604.770000px;}
.y5_c00184{bottom:629.370000px;}
.y4_c00184{bottom:653.970000px;}
.y3_c00184{bottom:679.020000px;}
.y2_c00184{bottom:728.370000px;}
.y1_c00184{bottom:776.970000px;}
.h8_c00184{height:13.200073px;}
.h9_c00184{height:43.804688px;}
.h4_c00184{height:80.758301px;}
.h2_c00184{height:87.361816px;}
.h5_c00184{height:91.160156px;}
.h3_c00184{height:98.756836px;}
.h7_c00184{height:143.088000px;}
.h6_c00184{height:148.135254px;}
.h0_c00184{height:821.850000px;}
.h1_c00184{height:822.000000px;}
.w1_c00184{width:104.875500px;}
.w0_c00184{width:553.500000px;}
.x0_c00184{left:0.000000px;}
.x9_c00184{left:37.050000px;}
.x4_c00184{left:40.500000px;}
.x5_c00184{left:42.450000px;}
.x6_c00184{left:43.800000px;}
.x3_c00184{left:66.150000px;}
.x7_c00184{left:67.200000px;}
.x2_c00184{left:82.800000px;}
.x8_c00184{left:84.600000px;}
.x1_c00184{left:198.900000px;}
.xa_c00184{left:228.564240px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls10_c00184{letter-spacing:-10.666667pt;}
.lsf_c00184{letter-spacing:-8.000000pt;}
.lse_c00184{letter-spacing:-2.666667pt;}
.lsb_c00184{letter-spacing:0.000000pt;}
.ls8_c00184{letter-spacing:0.746667pt;}
.ls9_c00184{letter-spacing:1.802667pt;}
.lsc_c00184{letter-spacing:2.666667pt;}
.lsd_c00184{letter-spacing:5.333333pt;}
.ls7_c00184{letter-spacing:8.154667pt;}
.ls6_c00184{letter-spacing:8.213333pt;}
.ls1_c00184{letter-spacing:8.954667pt;}
.ls4_c00184{letter-spacing:10.346667pt;}
.ls3_c00184{letter-spacing:12.154667pt;}
.ls2_c00184{letter-spacing:13.754667pt;}
.ls5_c00184{letter-spacing:14.885333pt;}
.ls0_c00184{letter-spacing:19.458667pt;}
.lsa_c00184{letter-spacing:255.632000pt;}
.ws0_c00184{word-spacing:-20.114667pt;}
.ws2_c00184{word-spacing:-14.781333pt;}
.ws1_c00184{word-spacing:-12.114667pt;}
.ws4_c00184{word-spacing:-0.901333pt;}
.ws5_c00184{word-spacing:0.000000pt;}
.ws3_c00184{word-spacing:7.882667pt;}
._24_c00184{margin-left:-18.093333pt;}
._1d_c00184{margin-left:-17.050667pt;}
._16_c00184{margin-left:-13.738667pt;}
._28_c00184{margin-left:-12.389333pt;}
._17_c00184{margin-left:-9.626667pt;}
._2_c00184{margin-left:-8.464000pt;}
._29_c00184{margin-left:-7.202667pt;}
._14_c00184{margin-left:-6.010667pt;}
._13_c00184{margin-left:-5.029333pt;}
._12_c00184{margin-left:-3.802667pt;}
._3_c00184{margin-left:-2.821333pt;}
._4_c00184{margin-left:-1.901333pt;}
._5_c00184{margin-left:-0.997333pt;}
._1e_c00184{width:1.026667pt;}
._1_c00184{width:2.024000pt;}
._11_c00184{width:3.618667pt;}
._0_c00184{width:4.845333pt;}
._7_c00184{width:6.256000pt;}
._e_c00184{width:7.157333pt;}
._15_c00184{width:8.141333pt;}
._a_c00184{width:9.093333pt;}
._8_c00184{width:10.090667pt;}
._b_c00184{width:11.050667pt;}
._1c_c00184{width:12.021333pt;}
._9_c00184{width:12.965333pt;}
._2f_c00184{width:14.461333pt;}
._d_c00184{width:15.370667pt;}
._26_c00184{width:16.354667pt;}
._10_c00184{width:17.328000pt;}
._f_c00184{width:18.421333pt;}
._19_c00184{width:20.976000pt;}
._30_c00184{width:22.352000pt;}
._31_c00184{width:23.608000pt;}
._1a_c00184{width:25.269333pt;}
._2e_c00184{width:26.634667pt;}
._1b_c00184{width:28.520000pt;}
._2b_c00184{width:31.690667pt;}
._32_c00184{width:33.616000pt;}
._33_c00184{width:42.229333pt;}
._21_c00184{width:59.576000pt;}
._2c_c00184{width:64.698667pt;}
._23_c00184{width:71.048000pt;}
._22_c00184{width:75.533333pt;}
._c_c00184{width:76.541333pt;}
._27_c00184{width:93.120000pt;}
._1f_c00184{width:98.864000pt;}
._2d_c00184{width:121.680000pt;}
._2a_c00184{width:134.098667pt;}
._18_c00184{width:161.066667pt;}
._20_c00184{width:198.642667pt;}
._25_c00184{width:233.658667pt;}
._6_c00184{width:454.541333pt;}
.fs8_c00184{font-size:42.666667pt;}
.fs7_c00184{font-size:48.000000pt;}
.fs3_c00184{font-size:56.000000pt;}
.fs1_c00184{font-size:58.666667pt;}
.fs0_c00184{font-size:61.333333pt;}
.fs4_c00184{font-size:64.000000pt;}
.fs2_c00184{font-size:69.333333pt;}
.fs5_c00184{font-size:104.000000pt;}
.fs6_c00184{font-size:117.333333pt;}
.y0_c00184{bottom:0.000000pt;}
.y1c_c00184{bottom:2.760000pt;}
.y1b_c00184{bottom:6.425217pt;}
.y1a_c00184{bottom:58.773333pt;}
.y19_c00184{bottom:75.306667pt;}
.y18_c00184{bottom:119.306667pt;}
.y17_c00184{bottom:163.440000pt;}
.y16_c00184{bottom:185.973333pt;}
.y15_c00184{bottom:208.506667pt;}
.y14_c00184{bottom:230.906667pt;}
.y13_c00184{bottom:252.640000pt;}
.y12_c00184{bottom:275.040000pt;}
.y11_c00184{bottom:296.906667pt;}
.y10_c00184{bottom:318.906667pt;}
.yf_c00184{bottom:341.306667pt;}
.ye_c00184{bottom:362.906667pt;}
.yd_c00184{bottom:387.040000pt;}
.yc_c00184{bottom:407.706667pt;}
.yb_c00184{bottom:429.040000pt;}
.ya_c00184{bottom:449.040000pt;}
.y9_c00184{bottom:471.840000pt;}
.y8_c00184{bottom:493.173333pt;}
.y7_c00184{bottom:514.773333pt;}
.y6_c00184{bottom:537.573333pt;}
.y5_c00184{bottom:559.440000pt;}
.y4_c00184{bottom:581.306667pt;}
.y3_c00184{bottom:603.573333pt;}
.y2_c00184{bottom:647.440000pt;}
.y1_c00184{bottom:690.640000pt;}
.h8_c00184{height:11.733399pt;}
.h9_c00184{height:38.937500pt;}
.h4_c00184{height:71.785156pt;}
.h2_c00184{height:77.654948pt;}
.h5_c00184{height:81.031250pt;}
.h3_c00184{height:87.783854pt;}
.h7_c00184{height:127.189333pt;}
.h6_c00184{height:131.675781pt;}
.h0_c00184{height:730.533333pt;}
.h1_c00184{height:730.666667pt;}
.w1_c00184{width:93.222667pt;}
.w0_c00184{width:492.000000pt;}
.x0_c00184{left:0.000000pt;}
.x9_c00184{left:32.933333pt;}
.x4_c00184{left:36.000000pt;}
.x5_c00184{left:37.733333pt;}
.x6_c00184{left:38.933333pt;}
.x3_c00184{left:58.800000pt;}
.x7_c00184{left:59.733333pt;}
.x2_c00184{left:73.600000pt;}
.x8_c00184{left:75.200000pt;}
.x1_c00184{left:176.800000pt;}
.xa_c00184{left:203.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_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_1ba47aec1c5054ea2eeec000.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.568848;font-style:normal;font-weight:normal;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_c6d2625aec524a96e6b067e2.woff2')format("woff");}.ff2_c00185{font-family:ff2_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:ff3_c00185;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.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_d183b7788ccc8b7ab60aace9.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00185{font-family:ff5_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;}
.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;}
.ls1_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:3.000000px;}
.ls2_c00185{letter-spacing:6.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00185{word-spacing:-44.022000px;}
.ws4_c00185{word-spacing:-22.629000px;}
.ws0_c00185{word-spacing:-19.629000px;}
.ws1_c00185{word-spacing:-19.521000px;}
.ws5_c00185{word-spacing:-19.470000px;}
.ws3_c00185{word-spacing:-16.629000px;}
.ws6_c00185{word-spacing:0.000000px;}
._24_c00185{margin-left:-29.076000px;}
._c_c00185{margin-left:-16.353000px;}
._d_c00185{margin-left:-14.835000px;}
._e_c00185{margin-left:-12.282000px;}
._f_c00185{margin-left:-10.212000px;}
._8_c00185{margin-left:-8.487000px;}
._9_c00185{margin-left:-6.486000px;}
._6_c00185{margin-left:-5.106000px;}
._7_c00185{margin-left:-3.381000px;}
._4_c00185{margin-left:-1.863000px;}
._5_c00185{width:1.242000px;}
._1_c00185{width:3.174000px;}
._15_c00185{width:4.347000px;}
._11_c00185{width:5.589000px;}
._10_c00185{width:6.897000px;}
._0_c00185{width:8.142000px;}
._b_c00185{width:10.110000px;}
._12_c00185{width:12.144000px;}
._1d_c00185{width:13.221000px;}
._a_c00185{width:14.283000px;}
._13_c00185{width:16.146000px;}
._14_c00185{width:17.181000px;}
._21_c00185{width:18.492000px;}
._22_c00185{width:20.898000px;}
._1c_c00185{width:22.356000px;}
._1a_c00185{width:24.513000px;}
._18_c00185{width:26.220000px;}
._23_c00185{width:30.111000px;}
._20_c00185{width:34.431000px;}
._25_c00185{width:38.373000px;}
._26_c00185{width:41.706000px;}
._2_c00185{width:55.959000px;}
._16_c00185{width:76.176000px;}
._1e_c00185{width:90.114000px;}
._1f_c00185{width:107.847000px;}
._17_c00185{width:176.847000px;}
._19_c00185{width:186.783000px;}
._3_c00185{width:414.261000px;}
._1b_c00185{width:559.941000px;}
.fc2_c00185{color:transparent;}
.fc1_c00185{color:rgb(128,128,128);}
.fc0_c00185{color:rgb(0,0,0);}
.fs3_c00185{font-size:48.000000px;}
.fs2_c00185{font-size:66.000000px;}
.fs0_c00185{font-size:69.000000px;}
.fs1_c00185{font-size:81.000000px;}
.y0_c00185{bottom:0.000000px;}
.y1d_c00185{bottom:3.105000px;}
.y1c_c00185{bottom:7.228369px;}
.y1b_c00185{bottom:75.570000px;}
.y1a_c00185{bottom:100.920000px;}
.y19_c00185{bottom:151.170000px;}
.y18_c00185{bottom:202.470000px;}
.y17_c00185{bottom:227.370000px;}
.y16_c00185{bottom:252.420000px;}
.y15_c00185{bottom:277.320000px;}
.y14_c00185{bottom:301.620000px;}
.y13_c00185{bottom:326.070000px;}
.y12_c00185{bottom:351.270000px;}
.y11_c00185{bottom:375.870000px;}
.y10_c00185{bottom:401.220000px;}
.yf_c00185{bottom:425.520000px;}
.ye_c00185{bottom:451.620000px;}
.yd_c00185{bottom:475.470000px;}
.yc_c00185{bottom:500.820000px;}
.yb_c00185{bottom:525.420000px;}
.ya_c00185{bottom:550.020000px;}
.y9_c00185{bottom:574.470000px;}
.y8_c00185{bottom:599.070000px;}
.y7_c00185{bottom:624.270000px;}
.y6_c00185{bottom:648.270000px;}
.y5_c00185{bottom:674.220000px;}
.y4_c00185{bottom:699.270000px;}
.y3_c00185{bottom:724.620000px;}
.y2_c00185{bottom:749.970000px;}
.y1_c00185{bottom:775.170000px;}
.h4_c00185{height:13.200073px;}
.h5_c00185{height:43.804688px;}
.h2_c00185{height:80.758301px;}
.h1_c00185{height:87.361816px;}
.h3_c00185{height:102.555176px;}
.h0_c00185{height:813.750000px;}
.w1_c00185{width:104.875500px;}
.w0_c00185{width:536.250000px;}
.x0_c00185{left:0.000000px;}
.x7_c00185{left:23.850000px;}
.x8_c00185{left:36.000000px;}
.x2_c00185{left:67.200000px;}
.x5_c00185{left:69.600000px;}
.x3_c00185{left:70.800000px;}
.x6_c00185{left:72.150000px;}
.x1_c00185{left:83.250000px;}
.x4_c00185{left:94.200000px;}
.x9_c00185{left:95.550000px;}
.xa_c00185{left:114.000000px;}
.xb_c00185{left:219.939240px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls1_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:2.666667pt;}
.ls2_c00185{letter-spacing:5.333333pt;}
.ws2_c00185{word-spacing:-39.130667pt;}
.ws4_c00185{word-spacing:-20.114667pt;}
.ws0_c00185{word-spacing:-17.448000pt;}
.ws1_c00185{word-spacing:-17.352000pt;}
.ws5_c00185{word-spacing:-17.306667pt;}
.ws3_c00185{word-spacing:-14.781333pt;}
.ws6_c00185{word-spacing:0.000000pt;}
._24_c00185{margin-left:-25.845333pt;}
._c_c00185{margin-left:-14.536000pt;}
._d_c00185{margin-left:-13.186667pt;}
._e_c00185{margin-left:-10.917333pt;}
._f_c00185{margin-left:-9.077333pt;}
._8_c00185{margin-left:-7.544000pt;}
._9_c00185{margin-left:-5.765333pt;}
._6_c00185{margin-left:-4.538667pt;}
._7_c00185{margin-left:-3.005333pt;}
._4_c00185{margin-left:-1.656000pt;}
._5_c00185{width:1.104000pt;}
._1_c00185{width:2.821333pt;}
._15_c00185{width:3.864000pt;}
._11_c00185{width:4.968000pt;}
._10_c00185{width:6.130667pt;}
._0_c00185{width:7.237333pt;}
._b_c00185{width:8.986667pt;}
._12_c00185{width:10.794667pt;}
._1d_c00185{width:11.752000pt;}
._a_c00185{width:12.696000pt;}
._13_c00185{width:14.352000pt;}
._14_c00185{width:15.272000pt;}
._21_c00185{width:16.437333pt;}
._22_c00185{width:18.576000pt;}
._1c_c00185{width:19.872000pt;}
._1a_c00185{width:21.789333pt;}
._18_c00185{width:23.306667pt;}
._23_c00185{width:26.765333pt;}
._20_c00185{width:30.605333pt;}
._25_c00185{width:34.109333pt;}
._26_c00185{width:37.072000pt;}
._2_c00185{width:49.741333pt;}
._16_c00185{width:67.712000pt;}
._1e_c00185{width:80.101333pt;}
._1f_c00185{width:95.864000pt;}
._17_c00185{width:157.197333pt;}
._19_c00185{width:166.029333pt;}
._3_c00185{width:368.232000pt;}
._1b_c00185{width:497.725333pt;}
.fs3_c00185{font-size:42.666667pt;}
.fs2_c00185{font-size:58.666667pt;}
.fs0_c00185{font-size:61.333333pt;}
.fs1_c00185{font-size:72.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y1d_c00185{bottom:2.760000pt;}
.y1c_c00185{bottom:6.425217pt;}
.y1b_c00185{bottom:67.173333pt;}
.y1a_c00185{bottom:89.706667pt;}
.y19_c00185{bottom:134.373333pt;}
.y18_c00185{bottom:179.973333pt;}
.y17_c00185{bottom:202.106667pt;}
.y16_c00185{bottom:224.373333pt;}
.y15_c00185{bottom:246.506667pt;}
.y14_c00185{bottom:268.106667pt;}
.y13_c00185{bottom:289.840000pt;}
.y12_c00185{bottom:312.240000pt;}
.y11_c00185{bottom:334.106667pt;}
.y10_c00185{bottom:356.640000pt;}
.yf_c00185{bottom:378.240000pt;}
.ye_c00185{bottom:401.440000pt;}
.yd_c00185{bottom:422.640000pt;}
.yc_c00185{bottom:445.173333pt;}
.yb_c00185{bottom:467.040000pt;}
.ya_c00185{bottom:488.906667pt;}
.y9_c00185{bottom:510.640000pt;}
.y8_c00185{bottom:532.506667pt;}
.y7_c00185{bottom:554.906667pt;}
.y6_c00185{bottom:576.240000pt;}
.y5_c00185{bottom:599.306667pt;}
.y4_c00185{bottom:621.573333pt;}
.y3_c00185{bottom:644.106667pt;}
.y2_c00185{bottom:666.640000pt;}
.y1_c00185{bottom:689.040000pt;}
.h4_c00185{height:11.733399pt;}
.h5_c00185{height:38.937500pt;}
.h2_c00185{height:71.785156pt;}
.h1_c00185{height:77.654948pt;}
.h3_c00185{height:91.160156pt;}
.h0_c00185{height:723.333333pt;}
.w1_c00185{width:93.222667pt;}
.w0_c00185{width:476.666667pt;}
.x0_c00185{left:0.000000pt;}
.x7_c00185{left:21.200000pt;}
.x8_c00185{left:32.000000pt;}
.x2_c00185{left:59.733333pt;}
.x5_c00185{left:61.866667pt;}
.x3_c00185{left:62.933333pt;}
.x6_c00185{left:64.133333pt;}
.x1_c00185{left:74.000000pt;}
.x4_c00185{left:83.733333pt;}
.x9_c00185{left:84.933333pt;}
.xa_c00185{left:101.333333pt;}
.xb_c00185{left:195.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_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_f246bfcc7f76be779559eefd.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_e4b0bef1eabb49ebcb9a5c1c.woff2')format("woff");}.ff2_c00186{font-family:ff2_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:ff3_c00186;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00186{font-family:ff3_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;}
.ls0_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:3.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:-16.629000px;}
.ws2_c00186{word-spacing:0.000000px;}
.ws0_c00186{word-spacing:5.106000px;}
._19_c00186{margin-left:-16.836000px;}
._4_c00186{margin-left:-13.731000px;}
._1d_c00186{margin-left:-12.627000px;}
._1a_c00186{margin-left:-10.833000px;}
._e_c00186{margin-left:-9.177000px;}
._1e_c00186{margin-left:-7.935000px;}
._11_c00186{margin-left:-6.762000px;}
._c_c00186{margin-left:-5.037000px;}
._1_c00186{margin-left:-3.657000px;}
._2_c00186{margin-left:-1.932000px;}
._0_c00186{width:1.794000px;}
._8_c00186{width:2.829000px;}
._9_c00186{width:4.623000px;}
._6_c00186{width:6.624000px;}
._7_c00186{width:8.418000px;}
._a_c00186{width:10.350000px;}
._d_c00186{width:12.213000px;}
._12_c00186{width:13.455000px;}
._b_c00186{width:15.387000px;}
._15_c00186{width:16.629000px;}
._13_c00186{width:17.802000px;}
._f_c00186{width:21.012000px;}
._14_c00186{width:22.356000px;}
._2c_c00186{width:23.358000px;}
._2b_c00186{width:24.426000px;}
._2d_c00186{width:25.467000px;}
._10_c00186{width:34.329000px;}
._1c_c00186{width:50.784000px;}
._2a_c00186{width:53.241000px;}
._20_c00186{width:57.513000px;}
._3_c00186{width:60.516000px;}
._16_c00186{width:67.482000px;}
._24_c00186{width:69.828000px;}
._22_c00186{width:71.691000px;}
._27_c00186{width:74.313000px;}
._21_c00186{width:84.456000px;}
._17_c00186{width:85.491000px;}
._26_c00186{width:86.595000px;}
._18_c00186{width:87.630000px;}
._2e_c00186{width:89.355000px;}
._1b_c00186{width:103.707000px;}
._1f_c00186{width:172.707000px;}
._29_c00186{width:239.253000px;}
._23_c00186{width:255.369000px;}
._28_c00186{width:270.825000px;}
._25_c00186{width:283.590000px;}
._5_c00186{width:386.538000px;}
._2f_c00186{width:610.374000px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(128,128,128);}
.fc0_c00186{color:rgb(0,0,0);}
.fs2_c00186{font-size:48.000000px;}
.fs1_c00186{font-size:60.000000px;}
.fs0_c00186{font-size:69.000000px;}
.y0_c00186{bottom:0.000000px;}
.y20_c00186{bottom:3.105000px;}
.y1f_c00186{bottom:7.228363px;}
.y1e_c00186{bottom:52.650000px;}
.y1d_c00186{bottom:76.950000px;}
.y1c_c00186{bottom:102.600000px;}
.y1b_c00186{bottom:126.900000px;}
.y1a_c00186{bottom:151.950000px;}
.y19_c00186{bottom:176.400000px;}
.y18_c00186{bottom:201.450000px;}
.y17_c00186{bottom:226.500000px;}
.y16_c00186{bottom:251.100000px;}
.y15_c00186{bottom:275.700000px;}
.y14_c00186{bottom:300.750000px;}
.y13_c00186{bottom:325.800000px;}
.y12_c00186{bottom:350.100000px;}
.y11_c00186{bottom:375.000000px;}
.y10_c00186{bottom:400.950000px;}
.yf_c00186{bottom:424.200000px;}
.ye_c00186{bottom:448.950000px;}
.yd_c00186{bottom:473.550000px;}
.yc_c00186{bottom:498.150000px;}
.yb_c00186{bottom:521.550000px;}
.ya_c00186{bottom:545.850000px;}
.y9_c00186{bottom:570.750000px;}
.y8_c00186{bottom:596.400000px;}
.y7_c00186{bottom:621.000000px;}
.y6_c00186{bottom:645.600000px;}
.y5_c00186{bottom:670.950000px;}
.y4_c00186{bottom:695.700000px;}
.y3_c00186{bottom:720.300000px;}
.y2_c00186{bottom:745.500000px;}
.y1_c00186{bottom:769.500000px;}
.h3_c00186{height:13.200074px;}
.h4_c00186{height:43.804688px;}
.h2_c00186{height:87.361816px;}
.h1_c00186{height:807.000000px;}
.h0_c00186{height:807.300000px;}
.w1_c00186{width:104.875500px;}
.w0_c00186{width:543.750000px;}
.x0_c00186{left:0.000000px;}
.x5_c00186{left:19.500000px;}
.x4_c00186{left:20.850000px;}
.x3_c00186{left:22.650000px;}
.x2_c00186{left:45.900000px;}
.x1_c00186{left:182.550000px;}
.x7_c00186{left:223.689240px;}
.x6_c00186{left:242.700000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:2.666667pt;}
.ws1_c00186{word-spacing:-14.781333pt;}
.ws2_c00186{word-spacing:0.000000pt;}
.ws0_c00186{word-spacing:4.538667pt;}
._19_c00186{margin-left:-14.965333pt;}
._4_c00186{margin-left:-12.205333pt;}
._1d_c00186{margin-left:-11.224000pt;}
._1a_c00186{margin-left:-9.629333pt;}
._e_c00186{margin-left:-8.157333pt;}
._1e_c00186{margin-left:-7.053333pt;}
._11_c00186{margin-left:-6.010667pt;}
._c_c00186{margin-left:-4.477333pt;}
._1_c00186{margin-left:-3.250667pt;}
._2_c00186{margin-left:-1.717333pt;}
._0_c00186{width:1.594667pt;}
._8_c00186{width:2.514667pt;}
._9_c00186{width:4.109333pt;}
._6_c00186{width:5.888000pt;}
._7_c00186{width:7.482667pt;}
._a_c00186{width:9.200000pt;}
._d_c00186{width:10.856000pt;}
._12_c00186{width:11.960000pt;}
._b_c00186{width:13.677333pt;}
._15_c00186{width:14.781333pt;}
._13_c00186{width:15.824000pt;}
._f_c00186{width:18.677333pt;}
._14_c00186{width:19.872000pt;}
._2c_c00186{width:20.762667pt;}
._2b_c00186{width:21.712000pt;}
._2d_c00186{width:22.637333pt;}
._10_c00186{width:30.514667pt;}
._1c_c00186{width:45.141333pt;}
._2a_c00186{width:47.325333pt;}
._20_c00186{width:51.122667pt;}
._3_c00186{width:53.792000pt;}
._16_c00186{width:59.984000pt;}
._24_c00186{width:62.069333pt;}
._22_c00186{width:63.725333pt;}
._27_c00186{width:66.056000pt;}
._21_c00186{width:75.072000pt;}
._17_c00186{width:75.992000pt;}
._26_c00186{width:76.973333pt;}
._18_c00186{width:77.893333pt;}
._2e_c00186{width:79.426667pt;}
._1b_c00186{width:92.184000pt;}
._1f_c00186{width:153.517333pt;}
._29_c00186{width:212.669333pt;}
._23_c00186{width:226.994667pt;}
._28_c00186{width:240.733333pt;}
._25_c00186{width:252.080000pt;}
._5_c00186{width:343.589333pt;}
._2f_c00186{width:542.554667pt;}
.fs2_c00186{font-size:42.666667pt;}
.fs1_c00186{font-size:53.333333pt;}
.fs0_c00186{font-size:61.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y20_c00186{bottom:2.760000pt;}
.y1f_c00186{bottom:6.425212pt;}
.y1e_c00186{bottom:46.800000pt;}
.y1d_c00186{bottom:68.400000pt;}
.y1c_c00186{bottom:91.200000pt;}
.y1b_c00186{bottom:112.800000pt;}
.y1a_c00186{bottom:135.066667pt;}
.y19_c00186{bottom:156.800000pt;}
.y18_c00186{bottom:179.066667pt;}
.y17_c00186{bottom:201.333333pt;}
.y16_c00186{bottom:223.200000pt;}
.y15_c00186{bottom:245.066667pt;}
.y14_c00186{bottom:267.333333pt;}
.y13_c00186{bottom:289.600000pt;}
.y12_c00186{bottom:311.200000pt;}
.y11_c00186{bottom:333.333333pt;}
.y10_c00186{bottom:356.400000pt;}
.yf_c00186{bottom:377.066667pt;}
.ye_c00186{bottom:399.066667pt;}
.yd_c00186{bottom:420.933333pt;}
.yc_c00186{bottom:442.800000pt;}
.yb_c00186{bottom:463.600000pt;}
.ya_c00186{bottom:485.200000pt;}
.y9_c00186{bottom:507.333333pt;}
.y8_c00186{bottom:530.133333pt;}
.y7_c00186{bottom:552.000000pt;}
.y6_c00186{bottom:573.866667pt;}
.y5_c00186{bottom:596.400000pt;}
.y4_c00186{bottom:618.400000pt;}
.y3_c00186{bottom:640.266667pt;}
.y2_c00186{bottom:662.666667pt;}
.y1_c00186{bottom:684.000000pt;}
.h3_c00186{height:11.733399pt;}
.h4_c00186{height:38.937500pt;}
.h2_c00186{height:77.654948pt;}
.h1_c00186{height:717.333333pt;}
.h0_c00186{height:717.600000pt;}
.w1_c00186{width:93.222667pt;}
.w0_c00186{width:483.333333pt;}
.x0_c00186{left:0.000000pt;}
.x5_c00186{left:17.333333pt;}
.x4_c00186{left:18.533333pt;}
.x3_c00186{left:20.133333pt;}
.x2_c00186{left:40.800000pt;}
.x1_c00186{left:162.266667pt;}
.x7_c00186{left:198.834880pt;}
.x6_c00186{left:215.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_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_390d8e5a1e4ac391096dce43.woff2')format("woff");}.ff1_c00187{font-family:ff1_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:ff2_c00187;src:url('chunks/assets/font_8f3dfef04d279e9d735bd7be.woff2')format("woff");}.ff2_c00187{font-family:ff2_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:ff3_c00187;src:url('chunks/assets/font_5393d8730f22dfd1d0aae510.woff2')format("woff");}.ff3_c00187{font-family:ff3_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:ff4_c00187;src:url('chunks/assets/font_01a0c086a8906d3e9ed1b5ed.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;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_c00187;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;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_c00187;src:url('chunks/assets/font_fb117d8c6d18203c48b37511.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;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_c00187;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00187{font-family:ff7_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);}
.v1_c00187{vertical-align:-97.800000px;}
.v0_c00187{vertical-align:0.000000px;}
.ls6_c00187{letter-spacing:-9.000000px;}
.ls4_c00187{letter-spacing:0.000000px;}
.ls3_c00187{letter-spacing:3.000000px;}
.ls0_c00187{letter-spacing:3.792000px;}
.ls5_c00187{letter-spacing:6.000000px;}
.ls7_c00187{letter-spacing:9.000000px;}
.ls1_c00187{letter-spacing:12.036000px;}
.ls2_c00187{letter-spacing:30.171000px;}
.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;}
}
.ws6_c00187{word-spacing:-24.450000px;}
.ws1_c00187{word-spacing:-22.629000px;}
.ws5_c00187{word-spacing:-16.629000px;}
.ws0_c00187{word-spacing:-6.414000px;}
.ws4_c00187{word-spacing:-5.697000px;}
.ws7_c00187{word-spacing:-5.460000px;}
.ws2_c00187{word-spacing:-0.687000px;}
.ws3_c00187{word-spacing:-0.060000px;}
.ws8_c00187{word-spacing:0.000000px;}
._25_c00187{margin-left:-21.567000px;}
._4_c00187{margin-left:-17.319000px;}
._2e_c00187{margin-left:-15.675000px;}
._f_c00187{margin-left:-14.457000px;}
._23_c00187{margin-left:-13.089000px;}
._d_c00187{margin-left:-11.661000px;}
._9_c00187{margin-left:-10.530000px;}
._e_c00187{margin-left:-9.315000px;}
._20_c00187{margin-left:-8.046000px;}
._c_c00187{margin-left:-6.969000px;}
._8_c00187{margin-left:-5.271000px;}
._7_c00187{margin-left:-4.071000px;}
._5_c00187{margin-left:-2.346000px;}
._12_c00187{margin-left:-1.242000px;}
._3_c00187{width:2.001000px;}
._1c_c00187{width:3.060000px;}
._1_c00187{width:4.071000px;}
._1b_c00187{width:5.109000px;}
._2_c00187{width:6.348000px;}
._0_c00187{width:7.797000px;}
._27_c00187{width:9.246000px;}
._6_c00187{width:10.350000px;}
._a_c00187{width:11.412000px;}
._10_c00187{width:12.762000px;}
._b_c00187{width:14.007000px;}
._15_c00187{width:15.174000px;}
._17_c00187{width:16.767000px;}
._1e_c00187{width:19.536000px;}
._24_c00187{width:21.804000px;}
._30_c00187{width:23.430000px;}
._22_c00187{width:25.176000px;}
._31_c00187{width:26.961000px;}
._2d_c00187{width:28.497000px;}
._28_c00187{width:31.104000px;}
._1d_c00187{width:32.721000px;}
._2a_c00187{width:34.401000px;}
._11_c00187{width:35.829000px;}
._2b_c00187{width:40.194000px;}
._1a_c00187{width:51.960000px;}
._14_c00187{width:67.620000px;}
._18_c00187{width:71.994000px;}
._26_c00187{width:79.167000px;}
._13_c00187{width:82.527000px;}
._19_c00187{width:85.347000px;}
._16_c00187{width:86.700000px;}
._29_c00187{width:101.664000px;}
._2f_c00187{width:130.929000px;}
._1f_c00187{width:142.560000px;}
._2c_c00187{width:153.774000px;}
._21_c00187{width:314.415000px;}
.fc2_c00187{color:transparent;}
.fc1_c00187{color:rgb(128,128,128);}
.fc0_c00187{color:rgb(0,0,0);}
.fs1_c00187{font-size:48.000000px;}
.fs2_c00187{font-size:60.000000px;}
.fs0_c00187{font-size:69.000000px;}
.fs3_c00187{font-size:75.000000px;}
.y0_c00187{bottom:0.000000px;}
.y19_c00187{bottom:3.105000px;}
.y18_c00187{bottom:7.228369px;}
.y17_c00187{bottom:71.520000px;}
.y16_c00187{bottom:95.820000px;}
.y15_c00187{bottom:121.770000px;}
.y14_c00187{bottom:196.470000px;}
.y13_c00187{bottom:222.120000px;}
.y12_c00187{bottom:247.020000px;}
.y11_c00187{bottom:272.070000px;}
.y10_c00187{bottom:296.970000px;}
.yf_c00187{bottom:321.870000px;}
.ye_c00187{bottom:346.320000px;}
.yd_c00187{bottom:371.220000px;}
.yc_c00187{bottom:395.520000px;}
.yb_c00187{bottom:445.170000px;}
.ya_c00187{bottom:494.670000px;}
.y9_c00187{bottom:519.720000px;}
.y8_c00187{bottom:544.770000px;}
.y7_c00187{bottom:569.370000px;}
.y6_c00187{bottom:594.570000px;}
.y5_c00187{bottom:619.320000px;}
.y4_c00187{bottom:643.320000px;}
.y3_c00187{bottom:668.970000px;}
.y2_c00187{bottom:694.170000px;}
.y1_c00187{bottom:743.520000px;}
.h5_c00187{height:13.200073px;}
.h6_c00187{height:43.804688px;}
.h4_c00187{height:70.224609px;}
.h3_c00187{height:80.758301px;}
.h2_c00187{height:87.361816px;}
.h0_c00187{height:836.700000px;}
.h1_c00187{height:837.000000px;}
.w2_c00187{width:104.875500px;}
.w1_c00187{width:551.250000px;}
.w0_c00187{width:551.325000px;}
.x0_c00187{left:0.000000px;}
.x4_c00187{left:21.900000px;}
.x6_c00187{left:28.050000px;}
.xa_c00187{left:82.950000px;}
.x5_c00187{left:84.750000px;}
.xb_c00187{left:86.400000px;}
.x9_c00187{left:87.450000px;}
.x3_c00187{left:88.500000px;}
.xc_c00187{left:103.650000px;}
.x8_c00187{left:111.300000px;}
.x2_c00187{left:113.400000px;}
.x1_c00187{left:216.900000px;}
.xe_c00187{left:227.476730px;}
.x7_c00187{left:244.050000px;}
.xd_c00187{left:492.750000px;}
@media print{
.v1_c00187{vertical-align:-86.933333pt;}
.v0_c00187{vertical-align:0.000000pt;}
.ls6_c00187{letter-spacing:-8.000000pt;}
.ls4_c00187{letter-spacing:0.000000pt;}
.ls3_c00187{letter-spacing:2.666667pt;}
.ls0_c00187{letter-spacing:3.370667pt;}
.ls5_c00187{letter-spacing:5.333333pt;}
.ls7_c00187{letter-spacing:8.000000pt;}
.ls1_c00187{letter-spacing:10.698667pt;}
.ls2_c00187{letter-spacing:26.818667pt;}
.ws6_c00187{word-spacing:-21.733333pt;}
.ws1_c00187{word-spacing:-20.114667pt;}
.ws5_c00187{word-spacing:-14.781333pt;}
.ws0_c00187{word-spacing:-5.701333pt;}
.ws4_c00187{word-spacing:-5.064000pt;}
.ws7_c00187{word-spacing:-4.853333pt;}
.ws2_c00187{word-spacing:-0.610667pt;}
.ws3_c00187{word-spacing:-0.053333pt;}
.ws8_c00187{word-spacing:0.000000pt;}
._25_c00187{margin-left:-19.170667pt;}
._4_c00187{margin-left:-15.394667pt;}
._2e_c00187{margin-left:-13.933333pt;}
._f_c00187{margin-left:-12.850667pt;}
._23_c00187{margin-left:-11.634667pt;}
._d_c00187{margin-left:-10.365333pt;}
._9_c00187{margin-left:-9.360000pt;}
._e_c00187{margin-left:-8.280000pt;}
._20_c00187{margin-left:-7.152000pt;}
._c_c00187{margin-left:-6.194667pt;}
._8_c00187{margin-left:-4.685333pt;}
._7_c00187{margin-left:-3.618667pt;}
._5_c00187{margin-left:-2.085333pt;}
._12_c00187{margin-left:-1.104000pt;}
._3_c00187{width:1.778667pt;}
._1c_c00187{width:2.720000pt;}
._1_c00187{width:3.618667pt;}
._1b_c00187{width:4.541333pt;}
._2_c00187{width:5.642667pt;}
._0_c00187{width:6.930667pt;}
._27_c00187{width:8.218667pt;}
._6_c00187{width:9.200000pt;}
._a_c00187{width:10.144000pt;}
._10_c00187{width:11.344000pt;}
._b_c00187{width:12.450667pt;}
._15_c00187{width:13.488000pt;}
._17_c00187{width:14.904000pt;}
._1e_c00187{width:17.365333pt;}
._24_c00187{width:19.381333pt;}
._30_c00187{width:20.826667pt;}
._22_c00187{width:22.378667pt;}
._31_c00187{width:23.965333pt;}
._2d_c00187{width:25.330667pt;}
._28_c00187{width:27.648000pt;}
._1d_c00187{width:29.085333pt;}
._2a_c00187{width:30.578667pt;}
._11_c00187{width:31.848000pt;}
._2b_c00187{width:35.728000pt;}
._1a_c00187{width:46.186667pt;}
._14_c00187{width:60.106667pt;}
._18_c00187{width:63.994667pt;}
._26_c00187{width:70.370667pt;}
._13_c00187{width:73.357333pt;}
._19_c00187{width:75.864000pt;}
._16_c00187{width:77.066667pt;}
._29_c00187{width:90.368000pt;}
._2f_c00187{width:116.381333pt;}
._1f_c00187{width:126.720000pt;}
._2c_c00187{width:136.688000pt;}
._21_c00187{width:279.480000pt;}
.fs1_c00187{font-size:42.666667pt;}
.fs2_c00187{font-size:53.333333pt;}
.fs0_c00187{font-size:61.333333pt;}
.fs3_c00187{font-size:66.666667pt;}
.y0_c00187{bottom:0.000000pt;}
.y19_c00187{bottom:2.760000pt;}
.y18_c00187{bottom:6.425217pt;}
.y17_c00187{bottom:63.573333pt;}
.y16_c00187{bottom:85.173333pt;}
.y15_c00187{bottom:108.240000pt;}
.y14_c00187{bottom:174.640000pt;}
.y13_c00187{bottom:197.440000pt;}
.y12_c00187{bottom:219.573333pt;}
.y11_c00187{bottom:241.840000pt;}
.y10_c00187{bottom:263.973333pt;}
.yf_c00187{bottom:286.106667pt;}
.ye_c00187{bottom:307.840000pt;}
.yd_c00187{bottom:329.973333pt;}
.yc_c00187{bottom:351.573333pt;}
.yb_c00187{bottom:395.706667pt;}
.ya_c00187{bottom:439.706667pt;}
.y9_c00187{bottom:461.973333pt;}
.y8_c00187{bottom:484.240000pt;}
.y7_c00187{bottom:506.106667pt;}
.y6_c00187{bottom:528.506667pt;}
.y5_c00187{bottom:550.506667pt;}
.y4_c00187{bottom:571.840000pt;}
.y3_c00187{bottom:594.640000pt;}
.y2_c00187{bottom:617.040000pt;}
.y1_c00187{bottom:660.906667pt;}
.h5_c00187{height:11.733399pt;}
.h6_c00187{height:38.937500pt;}
.h4_c00187{height:62.421875pt;}
.h3_c00187{height:71.785156pt;}
.h2_c00187{height:77.654948pt;}
.h0_c00187{height:743.733333pt;}
.h1_c00187{height:744.000000pt;}
.w2_c00187{width:93.222667pt;}
.w1_c00187{width:490.000000pt;}
.w0_c00187{width:490.066667pt;}
.x0_c00187{left:0.000000pt;}
.x4_c00187{left:19.466667pt;}
.x6_c00187{left:24.933333pt;}
.xa_c00187{left:73.733333pt;}
.x5_c00187{left:75.333333pt;}
.xb_c00187{left:76.800000pt;}
.x9_c00187{left:77.733333pt;}
.x3_c00187{left:78.666667pt;}
.xc_c00187{left:92.133333pt;}
.x8_c00187{left:98.933333pt;}
.x2_c00187{left:100.800000pt;}
.x1_c00187{left:192.800000pt;}
.xe_c00187{left:202.201538pt;}
.x7_c00187{left:216.933333pt;}
.xd_c00187{left:438.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_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_66c72253e0b60096cf614344.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_610604b9bf6b1e9cb99445ae.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_79c9ee3678b266bfbcc215d6.woff2')format("woff");}.ff3_c00188{font-family:ff3_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:ff4_c00188;src:url('chunks/assets/font_2b88957bd2cfd7bd09ceca54.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00188{font-family:ff5_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);}
.v5_c00188{vertical-align:-13.200000px;}
.v7_c00188{vertical-align:-10.800000px;}
.v3_c00188{vertical-align:-2.400000px;}
.v0_c00188{vertical-align:0.000000px;}
.v1_c00188{vertical-align:1.800000px;}
.v4_c00188{vertical-align:4.200000px;}
.v2_c00188{vertical-align:5.400000px;}
.v6_c00188{vertical-align:6.600000px;}
.v8_c00188{vertical-align:9.000000px;}
.ls4_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:1.800000px;}
.ls5_c00188{letter-spacing:3.000000px;}
.ls3_c00188{letter-spacing:6.000000px;}
.ls6_c00188{letter-spacing:9.000000px;}
.ls2_c00188{letter-spacing:13.125000px;}
.ls1_c00188{letter-spacing:118.950000px;}
.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;}
}
.ws10_c00188{word-spacing:-45.000000px;}
.ws4_c00188{word-spacing:-35.604000px;}
.wsa_c00188{word-spacing:-27.075000px;}
.ws7_c00188{word-spacing:-19.629000px;}
.ws6_c00188{word-spacing:-16.680000px;}
.wsf_c00188{word-spacing:-16.629000px;}
.wsb_c00188{word-spacing:-3.207000px;}
.ws11_c00188{word-spacing:0.000000px;}
.wsd_c00188{word-spacing:73.608000px;}
.wse_c00188{word-spacing:86.826000px;}
.ws1_c00188{word-spacing:86.838000px;}
.ws5_c00188{word-spacing:88.311000px;}
.ws0_c00188{word-spacing:90.771000px;}
.ws3_c00188{word-spacing:91.629000px;}
.ws8_c00188{word-spacing:106.575000px;}
.ws2_c00188{word-spacing:107.817000px;}
.ws9_c00188{word-spacing:118.956000px;}
.wsc_c00188{word-spacing:121.965000px;}
._11_c00188{margin-left:-35.496000px;}
._20_c00188{margin-left:-21.144000px;}
._26_c00188{margin-left:-19.182000px;}
._c_c00188{margin-left:-17.100000px;}
._1c_c00188{margin-left:-13.869000px;}
._2_c00188{margin-left:-11.661000px;}
._4_c00188{margin-left:-10.554000px;}
._3_c00188{margin-left:-8.142000px;}
._d_c00188{margin-left:-6.384000px;}
._16_c00188{margin-left:-5.331000px;}
._b_c00188{margin-left:-4.278000px;}
._17_c00188{margin-left:-3.114000px;}
._7_c00188{margin-left:-2.067000px;}
._13_c00188{margin-left:-1.023000px;}
._8_c00188{width:1.104000px;}
._1_c00188{width:2.277000px;}
._f_c00188{width:3.366000px;}
._14_c00188{width:4.527000px;}
._19_c00188{width:5.910000px;}
._15_c00188{width:7.146000px;}
._6_c00188{width:8.625000px;}
._24_c00188{width:9.729000px;}
._e_c00188{width:11.247000px;}
._1f_c00188{width:12.786000px;}
._0_c00188{width:14.145000px;}
._18_c00188{width:15.867000px;}
._1a_c00188{width:17.733000px;}
._1e_c00188{width:21.177000px;}
._1d_c00188{width:22.788000px;}
._21_c00188{width:26.838000px;}
._1b_c00188{width:29.508000px;}
._25_c00188{width:33.003000px;}
._27_c00188{width:36.135000px;}
._23_c00188{width:40.239000px;}
._10_c00188{width:53.550000px;}
._9_c00188{width:104.328000px;}
._a_c00188{width:112.479000px;}
._5_c00188{width:115.299000px;}
._12_c00188{width:393.624000px;}
._22_c00188{width:727.524000px;}
._28_c00188{width:819.828000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(128,128,128);}
.fc0_c00188{color:rgb(0,0,0);}
.fs8_c00188{font-size:48.000000px;}
.fs5_c00188{font-size:54.000000px;}
.fs1_c00188{font-size:57.000000px;}
.fs3_c00188{font-size:66.000000px;}
.fs0_c00188{font-size:69.000000px;}
.fs4_c00188{font-size:72.000000px;}
.fs2_c00188{font-size:75.000000px;}
.fs7_c00188{font-size:78.000000px;}
.fs6_c00188{font-size:81.000000px;}
.y0_c00188{bottom:0.000000px;}
.y28_c00188{bottom:3.105000px;}
.y27_c00188{bottom:7.228371px;}
.y26_c00188{bottom:66.915000px;}
.y25_c00188{bottom:93.915000px;}
.y24_c00188{bottom:116.865000px;}
.y23_c00188{bottom:141.165000px;}
.y22_c00188{bottom:166.065000px;}
.y21_c00188{bottom:190.815000px;}
.y20_c00188{bottom:215.415000px;}
.y1f_c00188{bottom:240.315000px;}
.y1e_c00188{bottom:265.065000px;}
.y1d_c00188{bottom:289.665000px;}
.y1c_c00188{bottom:314.865000px;}
.y1b_c00188{bottom:339.315000px;}
.y1a_c00188{bottom:363.615000px;}
.y19_c00188{bottom:389.265000px;}
.y18_c00188{bottom:413.115000px;}
.y17_c00188{bottom:438.465000px;}
.y16_c00188{bottom:461.715000px;}
.y15_c00188{bottom:486.465000px;}
.y8_c00188{bottom:489.765000px;}
.y7_c00188{bottom:509.715000px;}
.y14_c00188{bottom:510.615000px;}
.y13_c00188{bottom:534.315000px;}
.y6_c00188{bottom:539.415000px;}
.y12_c00188{bottom:558.915000px;}
.y5_c00188{bottom:559.365000px;}
.y11_c00188{bottom:583.515000px;}
.y4_c00188{bottom:588.615000px;}
.y10_c00188{bottom:607.965000px;}
.y3_c00188{bottom:609.165000px;}
.yf_c00188{bottom:632.865000px;}
.y2_c00188{bottom:638.565000px;}
.ye_c00188{bottom:657.765000px;}
.y1_c00188{bottom:658.815000px;}
.yd_c00188{bottom:682.815000px;}
.yc_c00188{bottom:708.165000px;}
.yb_c00188{bottom:732.165000px;}
.ya_c00188{bottom:758.115000px;}
.y9_c00188{bottom:782.715000px;}
.he_c00188{height:13.200074px;}
.hf_c00188{height:43.804688px;}
.h9_c00188{height:72.168457px;}
.hc_c00188{height:77.247070px;}
.h7_c00188{height:80.758301px;}
.hb_c00188{height:83.563477px;}
.h3_c00188{height:87.361816px;}
.h5_c00188{height:87.780762px;}
.h2_c00188{height:89.161816px;}
.ha_c00188{height:91.160156px;}
.h4_c00188{height:93.361816px;}
.h6_c00188{height:93.961816px;}
.h8_c00188{height:96.361816px;}
.hd_c00188{height:102.555176px;}
.h1_c00188{height:831.000000px;}
.h0_c00188{height:831.075000px;}
.w1_c00188{width:104.875500px;}
.w0_c00188{width:560.250000px;}
.x0_c00188{left:0.000000px;}
.xd_c00188{left:19.200000px;}
.x8_c00188{left:22.650000px;}
.x7_c00188{left:27.000000px;}
.xa_c00188{left:28.050000px;}
.xc_c00188{left:29.250000px;}
.xb_c00188{left:30.600000px;}
.xe_c00188{left:31.950000px;}
.x9_c00188{left:51.000000px;}
.x6_c00188{left:190.050000px;}
.xf_c00188{left:231.939240px;}
.x1_c00188{left:339.450000px;}
.x5_c00188{left:340.500000px;}
.x4_c00188{left:343.200000px;}
.x3_c00188{left:346.950000px;}
.x2_c00188{left:349.050000px;}
@media print{
.v5_c00188{vertical-align:-11.733333pt;}
.v7_c00188{vertical-align:-9.600000pt;}
.v3_c00188{vertical-align:-2.133333pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:1.600000pt;}
.v4_c00188{vertical-align:3.733333pt;}
.v2_c00188{vertical-align:4.800000pt;}
.v6_c00188{vertical-align:5.866667pt;}
.v8_c00188{vertical-align:8.000000pt;}
.ls4_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:1.600000pt;}
.ls5_c00188{letter-spacing:2.666667pt;}
.ls3_c00188{letter-spacing:5.333333pt;}
.ls6_c00188{letter-spacing:8.000000pt;}
.ls2_c00188{letter-spacing:11.666667pt;}
.ls1_c00188{letter-spacing:105.733333pt;}
.ws10_c00188{word-spacing:-40.000000pt;}
.ws4_c00188{word-spacing:-31.648000pt;}
.wsa_c00188{word-spacing:-24.066667pt;}
.ws7_c00188{word-spacing:-17.448000pt;}
.ws6_c00188{word-spacing:-14.826667pt;}
.wsf_c00188{word-spacing:-14.781333pt;}
.wsb_c00188{word-spacing:-2.850667pt;}
.ws11_c00188{word-spacing:0.000000pt;}
.wsd_c00188{word-spacing:65.429333pt;}
.wse_c00188{word-spacing:77.178667pt;}
.ws1_c00188{word-spacing:77.189333pt;}
.ws5_c00188{word-spacing:78.498667pt;}
.ws0_c00188{word-spacing:80.685333pt;}
.ws3_c00188{word-spacing:81.448000pt;}
.ws8_c00188{word-spacing:94.733333pt;}
.ws2_c00188{word-spacing:95.837333pt;}
.ws9_c00188{word-spacing:105.738667pt;}
.wsc_c00188{word-spacing:108.413333pt;}
._11_c00188{margin-left:-31.552000pt;}
._20_c00188{margin-left:-18.794667pt;}
._26_c00188{margin-left:-17.050667pt;}
._c_c00188{margin-left:-15.200000pt;}
._1c_c00188{margin-left:-12.328000pt;}
._2_c00188{margin-left:-10.365333pt;}
._4_c00188{margin-left:-9.381333pt;}
._3_c00188{margin-left:-7.237333pt;}
._d_c00188{margin-left:-5.674667pt;}
._16_c00188{margin-left:-4.738667pt;}
._b_c00188{margin-left:-3.802667pt;}
._17_c00188{margin-left:-2.768000pt;}
._7_c00188{margin-left:-1.837333pt;}
._13_c00188{margin-left:-0.909333pt;}
._8_c00188{width:0.981333pt;}
._1_c00188{width:2.024000pt;}
._f_c00188{width:2.992000pt;}
._14_c00188{width:4.024000pt;}
._19_c00188{width:5.253333pt;}
._15_c00188{width:6.352000pt;}
._6_c00188{width:7.666667pt;}
._24_c00188{width:8.648000pt;}
._e_c00188{width:9.997333pt;}
._1f_c00188{width:11.365333pt;}
._0_c00188{width:12.573333pt;}
._18_c00188{width:14.104000pt;}
._1a_c00188{width:15.762667pt;}
._1e_c00188{width:18.824000pt;}
._1d_c00188{width:20.256000pt;}
._21_c00188{width:23.856000pt;}
._1b_c00188{width:26.229333pt;}
._25_c00188{width:29.336000pt;}
._27_c00188{width:32.120000pt;}
._23_c00188{width:35.768000pt;}
._10_c00188{width:47.600000pt;}
._9_c00188{width:92.736000pt;}
._a_c00188{width:99.981333pt;}
._5_c00188{width:102.488000pt;}
._12_c00188{width:349.888000pt;}
._22_c00188{width:646.688000pt;}
._28_c00188{width:728.736000pt;}
.fs8_c00188{font-size:42.666667pt;}
.fs5_c00188{font-size:48.000000pt;}
.fs1_c00188{font-size:50.666667pt;}
.fs3_c00188{font-size:58.666667pt;}
.fs0_c00188{font-size:61.333333pt;}
.fs4_c00188{font-size:64.000000pt;}
.fs2_c00188{font-size:66.666667pt;}
.fs7_c00188{font-size:69.333333pt;}
.fs6_c00188{font-size:72.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y28_c00188{bottom:2.760000pt;}
.y27_c00188{bottom:6.425219pt;}
.y26_c00188{bottom:59.480000pt;}
.y25_c00188{bottom:83.480000pt;}
.y24_c00188{bottom:103.880000pt;}
.y23_c00188{bottom:125.480000pt;}
.y22_c00188{bottom:147.613333pt;}
.y21_c00188{bottom:169.613333pt;}
.y20_c00188{bottom:191.480000pt;}
.y1f_c00188{bottom:213.613333pt;}
.y1e_c00188{bottom:235.613333pt;}
.y1d_c00188{bottom:257.480000pt;}
.y1c_c00188{bottom:279.880000pt;}
.y1b_c00188{bottom:301.613333pt;}
.y1a_c00188{bottom:323.213333pt;}
.y19_c00188{bottom:346.013333pt;}
.y18_c00188{bottom:367.213333pt;}
.y17_c00188{bottom:389.746667pt;}
.y16_c00188{bottom:410.413333pt;}
.y15_c00188{bottom:432.413333pt;}
.y8_c00188{bottom:435.346667pt;}
.y7_c00188{bottom:453.080000pt;}
.y14_c00188{bottom:453.880000pt;}
.y13_c00188{bottom:474.946667pt;}
.y6_c00188{bottom:479.480000pt;}
.y12_c00188{bottom:496.813333pt;}
.y5_c00188{bottom:497.213333pt;}
.y11_c00188{bottom:518.680000pt;}
.y4_c00188{bottom:523.213333pt;}
.y10_c00188{bottom:540.413333pt;}
.y3_c00188{bottom:541.480000pt;}
.yf_c00188{bottom:562.546667pt;}
.y2_c00188{bottom:567.613333pt;}
.ye_c00188{bottom:584.680000pt;}
.y1_c00188{bottom:585.613333pt;}
.yd_c00188{bottom:606.946667pt;}
.yc_c00188{bottom:629.480000pt;}
.yb_c00188{bottom:650.813333pt;}
.ya_c00188{bottom:673.880000pt;}
.y9_c00188{bottom:695.746667pt;}
.he_c00188{height:11.733399pt;}
.hf_c00188{height:38.937500pt;}
.h9_c00188{height:64.149740pt;}
.hc_c00188{height:68.664062pt;}
.h7_c00188{height:71.785156pt;}
.hb_c00188{height:74.278646pt;}
.h3_c00188{height:77.654948pt;}
.h5_c00188{height:78.027344pt;}
.h2_c00188{height:79.254948pt;}
.ha_c00188{height:81.031250pt;}
.h4_c00188{height:82.988281pt;}
.h6_c00188{height:83.521615pt;}
.h8_c00188{height:85.654948pt;}
.hd_c00188{height:91.160156pt;}
.h1_c00188{height:738.666667pt;}
.h0_c00188{height:738.733333pt;}
.w1_c00188{width:93.222667pt;}
.w0_c00188{width:498.000000pt;}
.x0_c00188{left:0.000000pt;}
.xd_c00188{left:17.066667pt;}
.x8_c00188{left:20.133333pt;}
.x7_c00188{left:24.000000pt;}
.xa_c00188{left:24.933333pt;}
.xc_c00188{left:26.000000pt;}
.xb_c00188{left:27.200000pt;}
.xe_c00188{left:28.400000pt;}
.x9_c00188{left:45.333333pt;}
.x6_c00188{left:168.933333pt;}
.xf_c00188{left:206.168213pt;}
.x1_c00188{left:301.733333pt;}
.x5_c00188{left:302.666667pt;}
.x4_c00188{left:305.066667pt;}
.x3_c00188{left:308.400000pt;}
.x2_c00188{left:310.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_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_4b2342014ec4ad79865e322e.woff2')format("woff");}.ff1_c00189{font-family:ff1_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:ff2_c00189;src:url('chunks/assets/font_4347ccf3f37c8bb1a00cdcce.woff2')format("woff");}.ff2_c00189{font-family:ff2_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:ff3_c00189;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.v1_c00189{vertical-align:-102.000000px;}
.v0_c00189{vertical-align:0.000000px;}
.v2_c00189{vertical-align:42.000000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls2_c00189{letter-spacing:3.000000px;}
.ls0_c00189{letter-spacing:4.800000px;}
.ls1_c00189{letter-spacing:6.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-22.629000px;}
.ws5_c00189{word-spacing:-19.629000px;}
.ws3_c00189{word-spacing:-16.629000px;}
.ws6_c00189{word-spacing:0.000000px;}
.ws2_c00189{word-spacing:1.917000px;}
.ws1_c00189{word-spacing:3.795000px;}
.ws4_c00189{word-spacing:117.138000px;}
._1f_c00189{margin-left:-24.771000px;}
._2a_c00189{margin-left:-19.458000px;}
._21_c00189{margin-left:-17.664000px;}
._d_c00189{margin-left:-15.456000px;}
._15_c00189{margin-left:-13.317000px;}
._e_c00189{margin-left:-12.213000px;}
._11_c00189{margin-left:-9.867000px;}
._12_c00189{margin-left:-8.163000px;}
._b_c00189{margin-left:-7.038000px;}
._f_c00189{margin-left:-6.003000px;}
._13_c00189{margin-left:-4.761000px;}
._c_c00189{margin-left:-3.381000px;}
._a_c00189{margin-left:-2.001000px;}
._10_c00189{width:1.035000px;}
._16_c00189{width:2.277000px;}
._5_c00189{width:3.312000px;}
._2_c00189{width:5.244000px;}
._0_c00189{width:6.486000px;}
._14_c00189{width:7.515000px;}
._1_c00189{width:8.556000px;}
._3_c00189{width:10.419000px;}
._22_c00189{width:12.075000px;}
._17_c00189{width:13.476000px;}
._23_c00189{width:14.772000px;}
._8_c00189{width:16.077000px;}
._7_c00189{width:17.733000px;}
._24_c00189{width:21.411000px;}
._4_c00189{width:22.707000px;}
._9_c00189{width:24.654000px;}
._6_c00189{width:36.453000px;}
._18_c00189{width:50.592000px;}
._27_c00189{width:67.182000px;}
._1d_c00189{width:72.234000px;}
._19_c00189{width:83.457000px;}
._1b_c00189{width:85.008000px;}
._25_c00189{width:86.658000px;}
._1c_c00189{width:88.362000px;}
._1a_c00189{width:91.356000px;}
._1e_c00189{width:114.663000px;}
._29_c00189{width:218.163000px;}
._28_c00189{width:276.276000px;}
._26_c00189{width:284.178000px;}
._20_c00189{width:288.489000px;}
.fc2_c00189{color:transparent;}
.fc1_c00189{color:rgb(128,128,128);}
.fc0_c00189{color:rgb(0,0,0);}
.fs2_c00189{font-size:48.000000px;}
.fs1_c00189{font-size:66.000000px;}
.fs0_c00189{font-size:69.000000px;}
.y0_c00189{bottom:0.000000px;}
.y1c_c00189{bottom:3.105000px;}
.y1b_c00189{bottom:7.228369px;}
.y1a_c00189{bottom:74.820000px;}
.y19_c00189{bottom:101.220000px;}
.y18_c00189{bottom:126.870000px;}
.y17_c00189{bottom:140.970000px;}
.y16_c00189{bottom:176.220000px;}
.y15_c00189{bottom:201.420000px;}
.y14_c00189{bottom:226.770000px;}
.y13_c00189{bottom:251.820000px;}
.y12_c00189{bottom:275.370000px;}
.y11_c00189{bottom:302.370000px;}
.y10_c00189{bottom:328.020000px;}
.yf_c00189{bottom:352.620000px;}
.ye_c00189{bottom:376.320000px;}
.yd_c00189{bottom:400.920000px;}
.yc_c00189{bottom:426.870000px;}
.yb_c00189{bottom:451.620000px;}
.ya_c00189{bottom:476.820000px;}
.y9_c00189{bottom:500.820000px;}
.y8_c00189{bottom:526.770000px;}
.y7_c00189{bottom:550.770000px;}
.y6_c00189{bottom:601.320000px;}
.y5_c00189{bottom:626.070000px;}
.y4_c00189{bottom:651.720000px;}
.y3_c00189{bottom:676.620000px;}
.y2_c00189{bottom:701.370000px;}
.y1_c00189{bottom:751.170000px;}
.h5_c00189{height:13.200073px;}
.h6_c00189{height:43.804688px;}
.h3_c00189{height:80.758301px;}
.h2_c00189{height:87.361816px;}
.h4_c00189{height:129.361816px;}
.h0_c00189{height:836.700000px;}
.h1_c00189{height:837.000000px;}
.w2_c00189{width:104.875500px;}
.w1_c00189{width:551.250000px;}
.w0_c00189{width:551.325000px;}
.x0_c00189{left:0.000000px;}
.x7_c00189{left:26.700000px;}
.x8_c00189{left:79.950000px;}
.x6_c00189{left:92.250000px;}
.x5_c00189{left:93.450000px;}
.x4_c00189{left:94.500000px;}
.x3_c00189{left:96.300000px;}
.x2_c00189{left:119.850000px;}
.x1_c00189{left:126.600000px;}
.xa_c00189{left:227.476730px;}
.x9_c00189{left:502.950000px;}
@media print{
.v1_c00189{vertical-align:-90.666667pt;}
.v0_c00189{vertical-align:0.000000pt;}
.v2_c00189{vertical-align:37.333333pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls2_c00189{letter-spacing:2.666667pt;}
.ls0_c00189{letter-spacing:4.266667pt;}
.ls1_c00189{letter-spacing:5.333333pt;}
.ws0_c00189{word-spacing:-20.114667pt;}
.ws5_c00189{word-spacing:-17.448000pt;}
.ws3_c00189{word-spacing:-14.781333pt;}
.ws6_c00189{word-spacing:0.000000pt;}
.ws2_c00189{word-spacing:1.704000pt;}
.ws1_c00189{word-spacing:3.373333pt;}
.ws4_c00189{word-spacing:104.122667pt;}
._1f_c00189{margin-left:-22.018667pt;}
._2a_c00189{margin-left:-17.296000pt;}
._21_c00189{margin-left:-15.701333pt;}
._d_c00189{margin-left:-13.738667pt;}
._15_c00189{margin-left:-11.837333pt;}
._e_c00189{margin-left:-10.856000pt;}
._11_c00189{margin-left:-8.770667pt;}
._12_c00189{margin-left:-7.256000pt;}
._b_c00189{margin-left:-6.256000pt;}
._f_c00189{margin-left:-5.336000pt;}
._13_c00189{margin-left:-4.232000pt;}
._c_c00189{margin-left:-3.005333pt;}
._a_c00189{margin-left:-1.778667pt;}
._10_c00189{width:0.920000pt;}
._16_c00189{width:2.024000pt;}
._5_c00189{width:2.944000pt;}
._2_c00189{width:4.661333pt;}
._0_c00189{width:5.765333pt;}
._14_c00189{width:6.680000pt;}
._1_c00189{width:7.605333pt;}
._3_c00189{width:9.261333pt;}
._22_c00189{width:10.733333pt;}
._17_c00189{width:11.978667pt;}
._23_c00189{width:13.130667pt;}
._8_c00189{width:14.290667pt;}
._7_c00189{width:15.762667pt;}
._24_c00189{width:19.032000pt;}
._4_c00189{width:20.184000pt;}
._9_c00189{width:21.914667pt;}
._6_c00189{width:32.402667pt;}
._18_c00189{width:44.970667pt;}
._27_c00189{width:59.717333pt;}
._1d_c00189{width:64.208000pt;}
._19_c00189{width:74.184000pt;}
._1b_c00189{width:75.562667pt;}
._25_c00189{width:77.029333pt;}
._1c_c00189{width:78.544000pt;}
._1a_c00189{width:81.205333pt;}
._1e_c00189{width:101.922667pt;}
._29_c00189{width:193.922667pt;}
._28_c00189{width:245.578667pt;}
._26_c00189{width:252.602667pt;}
._20_c00189{width:256.434667pt;}
.fs2_c00189{font-size:42.666667pt;}
.fs1_c00189{font-size:58.666667pt;}
.fs0_c00189{font-size:61.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y1c_c00189{bottom:2.760000pt;}
.y1b_c00189{bottom:6.425217pt;}
.y1a_c00189{bottom:66.506667pt;}
.y19_c00189{bottom:89.973333pt;}
.y18_c00189{bottom:112.773333pt;}
.y17_c00189{bottom:125.306667pt;}
.y16_c00189{bottom:156.640000pt;}
.y15_c00189{bottom:179.040000pt;}
.y14_c00189{bottom:201.573333pt;}
.y13_c00189{bottom:223.840000pt;}
.y12_c00189{bottom:244.773333pt;}
.y11_c00189{bottom:268.773333pt;}
.y10_c00189{bottom:291.573333pt;}
.yf_c00189{bottom:313.440000pt;}
.ye_c00189{bottom:334.506667pt;}
.yd_c00189{bottom:356.373333pt;}
.yc_c00189{bottom:379.440000pt;}
.yb_c00189{bottom:401.440000pt;}
.ya_c00189{bottom:423.840000pt;}
.y9_c00189{bottom:445.173333pt;}
.y8_c00189{bottom:468.240000pt;}
.y7_c00189{bottom:489.573333pt;}
.y6_c00189{bottom:534.506667pt;}
.y5_c00189{bottom:556.506667pt;}
.y4_c00189{bottom:579.306667pt;}
.y3_c00189{bottom:601.440000pt;}
.y2_c00189{bottom:623.440000pt;}
.y1_c00189{bottom:667.706667pt;}
.h5_c00189{height:11.733399pt;}
.h6_c00189{height:38.937500pt;}
.h3_c00189{height:71.785156pt;}
.h2_c00189{height:77.654948pt;}
.h4_c00189{height:114.988281pt;}
.h0_c00189{height:743.733333pt;}
.h1_c00189{height:744.000000pt;}
.w2_c00189{width:93.222667pt;}
.w1_c00189{width:490.000000pt;}
.w0_c00189{width:490.066667pt;}
.x0_c00189{left:0.000000pt;}
.x7_c00189{left:23.733333pt;}
.x8_c00189{left:71.066667pt;}
.x6_c00189{left:82.000000pt;}
.x5_c00189{left:83.066667pt;}
.x4_c00189{left:84.000000pt;}
.x3_c00189{left:85.600000pt;}
.x2_c00189{left:106.533333pt;}
.x1_c00189{left:112.533333pt;}
.xa_c00189{left:202.201538pt;}
.x9_c00189{left:447.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_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_a0a4789930a6a8f2ca7bd19e.woff2')format("woff");}.ff1_c00190{font-family:ff1_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:ff2_c00190;src:url('chunks/assets/font_2821bd89890a8df0058f03d1.woff2')format("woff");}.ff2_c00190{font-family:ff2_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:ff3_c00190;src:url('chunks/assets/font_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff3_c00190{font-family:ff3_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:ff4_c00190;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00190{font-family:ff4_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;}
.ls1_c00190{letter-spacing:0.000000px;}
.ls2_c00190{letter-spacing:3.000000px;}
.ls0_c00190{letter-spacing:3.600000px;}
.ls4_c00190{letter-spacing:6.000000px;}
.ls3_c00190{letter-spacing:18.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:-34.629000px;}
.ws2_c00190{word-spacing:-22.629000px;}
.ws0_c00190{word-spacing:-16.629000px;}
.ws4_c00190{word-spacing:0.000000px;}
.ws3_c00190{word-spacing:0.483000px;}
._1b_c00190{margin-left:-17.283000px;}
._19_c00190{margin-left:-15.732000px;}
._17_c00190{margin-left:-13.947000px;}
._1e_c00190{margin-left:-12.834000px;}
._18_c00190{margin-left:-11.721000px;}
._e_c00190{margin-left:-10.488000px;}
._d_c00190{margin-left:-8.556000px;}
._14_c00190{margin-left:-6.624000px;}
._13_c00190{margin-left:-4.659000px;}
._10_c00190{margin-left:-2.760000px;}
._6_c00190{margin-left:-1.587000px;}
._0_c00190{width:1.242000px;}
._1_c00190{width:3.036000px;}
._2_c00190{width:4.071000px;}
._8_c00190{width:5.106000px;}
._f_c00190{width:6.384000px;}
._9_c00190{width:7.452000px;}
._4_c00190{width:8.901000px;}
._c_c00190{width:10.695000px;}
._1c_c00190{width:11.727000px;}
._a_c00190{width:13.110000px;}
._7_c00190{width:14.904000px;}
._5_c00190{width:17.388000px;}
._1d_c00190{width:18.837000px;}
._15_c00190{width:21.045000px;}
._1a_c00190{width:22.773000px;}
._11_c00190{width:24.633000px;}
._1f_c00190{width:30.360000px;}
._16_c00190{width:31.671000px;}
._12_c00190{width:34.638000px;}
._b_c00190{width:36.570000px;}
._20_c00190{width:110.607000px;}
._3_c00190{width:486.978000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(128,128,128);}
.fc0_c00190{color:rgb(0,0,0);}
.fs2_c00190{font-size:48.000000px;}
.fs1_c00190{font-size:66.000000px;}
.fs0_c00190{font-size:69.000000px;}
.y0_c00190{bottom:0.000000px;}
.y1b_c00190{bottom:3.105000px;}
.y1a_c00190{bottom:7.228357px;}
.y19_c00190{bottom:59.730000px;}
.y18_c00190{bottom:161.280000px;}
.y17_c00190{bottom:184.980000px;}
.y16_c00190{bottom:211.230000px;}
.y15_c00190{bottom:236.280000px;}
.y14_c00190{bottom:261.180000px;}
.y13_c00190{bottom:285.930000px;}
.y12_c00190{bottom:311.280000px;}
.y11_c00190{bottom:335.880000px;}
.y10_c00190{bottom:360.480000px;}
.yf_c00190{bottom:385.380000px;}
.ye_c00190{bottom:410.130000px;}
.yd_c00190{bottom:460.380000px;}
.yc_c00190{bottom:508.680000px;}
.yb_c00190{bottom:533.280000px;}
.ya_c00190{bottom:558.030000px;}
.y9_c00190{bottom:582.930000px;}
.y8_c00190{bottom:607.830000px;}
.y7_c00190{bottom:633.180000px;}
.y6_c00190{bottom:657.480000px;}
.y5_c00190{bottom:682.530000px;}
.y4_c00190{bottom:707.730000px;}
.y3_c00190{bottom:732.330000px;}
.y2_c00190{bottom:757.080000px;}
.y1_c00190{bottom:782.430000px;}
.h5_c00190{height:13.200074px;}
.h6_c00190{height:43.804688px;}
.h4_c00190{height:80.758301px;}
.h2_c00190{height:87.361816px;}
.h3_c00190{height:87.961816px;}
.h1_c00190{height:816.750000px;}
.h0_c00190{height:817.050000px;}
.w2_c00190{width:104.875500px;}
.w0_c00190{width:550.275000px;}
.w1_c00190{width:550.500000px;}
.x0_c00190{left:0.000000px;}
.x7_c00190{left:22.950000px;}
.x2_c00190{left:24.300000px;}
.x3_c00190{left:25.650000px;}
.x6_c00190{left:27.300000px;}
.x8_c00190{left:28.950000px;}
.x5_c00190{left:51.000000px;}
.x4_c00190{left:184.500000px;}
.x1_c00190{left:187.350000px;}
.xa_c00190{left:226.951767px;}
.x9_c00190{left:391.500000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls1_c00190{letter-spacing:0.000000pt;}
.ls2_c00190{letter-spacing:2.666667pt;}
.ls0_c00190{letter-spacing:3.200000pt;}
.ls4_c00190{letter-spacing:5.333333pt;}
.ls3_c00190{letter-spacing:16.000000pt;}
.ws1_c00190{word-spacing:-30.781333pt;}
.ws2_c00190{word-spacing:-20.114667pt;}
.ws0_c00190{word-spacing:-14.781333pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.ws3_c00190{word-spacing:0.429333pt;}
._1b_c00190{margin-left:-15.362667pt;}
._19_c00190{margin-left:-13.984000pt;}
._17_c00190{margin-left:-12.397333pt;}
._1e_c00190{margin-left:-11.408000pt;}
._18_c00190{margin-left:-10.418667pt;}
._e_c00190{margin-left:-9.322667pt;}
._d_c00190{margin-left:-7.605333pt;}
._14_c00190{margin-left:-5.888000pt;}
._13_c00190{margin-left:-4.141333pt;}
._10_c00190{margin-left:-2.453333pt;}
._6_c00190{margin-left:-1.410667pt;}
._0_c00190{width:1.104000pt;}
._1_c00190{width:2.698667pt;}
._2_c00190{width:3.618667pt;}
._8_c00190{width:4.538667pt;}
._f_c00190{width:5.674667pt;}
._9_c00190{width:6.624000pt;}
._4_c00190{width:7.912000pt;}
._c_c00190{width:9.506667pt;}
._1c_c00190{width:10.424000pt;}
._a_c00190{width:11.653333pt;}
._7_c00190{width:13.248000pt;}
._5_c00190{width:15.456000pt;}
._1d_c00190{width:16.744000pt;}
._15_c00190{width:18.706667pt;}
._1a_c00190{width:20.242667pt;}
._11_c00190{width:21.896000pt;}
._1f_c00190{width:26.986667pt;}
._16_c00190{width:28.152000pt;}
._12_c00190{width:30.789333pt;}
._b_c00190{width:32.506667pt;}
._20_c00190{width:98.317333pt;}
._3_c00190{width:432.869333pt;}
.fs2_c00190{font-size:42.666667pt;}
.fs1_c00190{font-size:58.666667pt;}
.fs0_c00190{font-size:61.333333pt;}
.y0_c00190{bottom:0.000000pt;}
.y1b_c00190{bottom:2.760000pt;}
.y1a_c00190{bottom:6.425206pt;}
.y19_c00190{bottom:53.093333pt;}
.y18_c00190{bottom:143.360000pt;}
.y17_c00190{bottom:164.426667pt;}
.y16_c00190{bottom:187.760000pt;}
.y15_c00190{bottom:210.026667pt;}
.y14_c00190{bottom:232.160000pt;}
.y13_c00190{bottom:254.160000pt;}
.y12_c00190{bottom:276.693333pt;}
.y11_c00190{bottom:298.560000pt;}
.y10_c00190{bottom:320.426667pt;}
.yf_c00190{bottom:342.560000pt;}
.ye_c00190{bottom:364.560000pt;}
.yd_c00190{bottom:409.226667pt;}
.yc_c00190{bottom:452.160000pt;}
.yb_c00190{bottom:474.026667pt;}
.ya_c00190{bottom:496.026667pt;}
.y9_c00190{bottom:518.160000pt;}
.y8_c00190{bottom:540.293333pt;}
.y7_c00190{bottom:562.826667pt;}
.y6_c00190{bottom:584.426667pt;}
.y5_c00190{bottom:606.693333pt;}
.y4_c00190{bottom:629.093333pt;}
.y3_c00190{bottom:650.960000pt;}
.y2_c00190{bottom:672.960000pt;}
.y1_c00190{bottom:695.493333pt;}
.h5_c00190{height:11.733399pt;}
.h6_c00190{height:38.937500pt;}
.h4_c00190{height:71.785156pt;}
.h2_c00190{height:77.654948pt;}
.h3_c00190{height:78.188281pt;}
.h1_c00190{height:726.000000pt;}
.h0_c00190{height:726.266667pt;}
.w2_c00190{width:93.222667pt;}
.w0_c00190{width:489.133333pt;}
.w1_c00190{width:489.333333pt;}
.x0_c00190{left:0.000000pt;}
.x7_c00190{left:20.400000pt;}
.x2_c00190{left:21.600000pt;}
.x3_c00190{left:22.800000pt;}
.x6_c00190{left:24.266667pt;}
.x8_c00190{left:25.733333pt;}
.x5_c00190{left:45.333333pt;}
.x4_c00190{left:164.000000pt;}
.x1_c00190{left:166.533333pt;}
.xa_c00190{left:201.734904pt;}
.x9_c00190{left:348.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_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_b9c4633ef78af9d1b2835c42.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.568848;font-style:normal;font-weight:normal;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_9d6edc7368189a8965164b5e.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.480469;font-style:normal;font-weight:normal;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_b9016bad712c13cea6680152.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.568848;font-style:normal;font-weight:normal;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_8a13250bbeb84429d17f061b.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_69cc2dc16d614a0ed9e6c907.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;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_c00191;src:url('chunks/assets/font_4f4a46d26159769d79b64c86.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:1.437000;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00191{font-family:ff8_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;}
.ls6_c00191{letter-spacing:-3.000000px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls7_c00191{letter-spacing:3.000000px;}
.ls5_c00191{letter-spacing:6.000000px;}
.ls1_c00191{letter-spacing:11.925000px;}
.ls2_c00191{letter-spacing:21.153000px;}
.ls0_c00191{letter-spacing:22.704000px;}
.ls3_c00191{letter-spacing:31.800000px;}
.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;}
}
.ws3_c00191{word-spacing:-48.024000px;}
.ws2_c00191{word-spacing:-19.629000px;}
.ws1_c00191{word-spacing:-16.629000px;}
.ws0_c00191{word-spacing:-3.516000px;}
.ws5_c00191{word-spacing:0.000000px;}
.ws4_c00191{word-spacing:2.934000px;}
._26_c00191{margin-left:-26.445000px;}
._3_c00191{margin-left:-18.216000px;}
._19_c00191{margin-left:-17.181000px;}
._14_c00191{margin-left:-16.068000px;}
._1a_c00191{margin-left:-14.763000px;}
._28_c00191{margin-left:-12.435000px;}
._2_c00191{margin-left:-10.956000px;}
._4_c00191{margin-left:-9.042000px;}
._16_c00191{margin-left:-7.383000px;}
._17_c00191{margin-left:-5.925000px;}
._13_c00191{margin-left:-4.485000px;}
._12_c00191{margin-left:-3.243000px;}
._11_c00191{margin-left:-1.587000px;}
._0_c00191{width:1.716000px;}
._10_c00191{width:3.450000px;}
._15_c00191{width:5.244000px;}
._f_c00191{width:6.624000px;}
._c_c00191{width:8.136000px;}
._1c_c00191{width:9.771000px;}
._1_c00191{width:11.154000px;}
._22_c00191{width:12.189000px;}
._5_c00191{width:13.530000px;}
._b_c00191{width:15.318000px;}
._1b_c00191{width:16.632000px;}
._d_c00191{width:18.222000px;}
._9_c00191{width:20.601000px;}
._7_c00191{width:22.563000px;}
._6_c00191{width:24.426000px;}
._2c_c00191{width:26.289000px;}
._8_c00191{width:27.669000px;}
._1e_c00191{width:34.593000px;}
._2e_c00191{width:36.546000px;}
._2a_c00191{width:40.923000px;}
._1f_c00191{width:53.358000px;}
._20_c00191{width:62.046000px;}
._18_c00191{width:75.360000px;}
._1d_c00191{width:83.025000px;}
._23_c00191{width:92.802000px;}
._21_c00191{width:96.738000px;}
._2f_c00191{width:98.748000px;}
._25_c00191{width:101.802000px;}
._27_c00191{width:110.820000px;}
._29_c00191{width:123.009000px;}
._2d_c00191{width:132.687000px;}
._a_c00191{width:189.198000px;}
._e_c00191{width:242.604000px;}
._24_c00191{width:257.094000px;}
._2b_c00191{width:396.957000px;}
.fc2_c00191{color:transparent;}
.fc1_c00191{color:rgb(128,128,128);}
.fc0_c00191{color:rgb(0,0,0);}
.fs6_c00191{font-size:48.000000px;}
.fs4_c00191{font-size:54.000000px;}
.fs3_c00191{font-size:55.200000px;}
.fs2_c00191{font-size:57.000000px;}
.fs0_c00191{font-size:66.000000px;}
.fs1_c00191{font-size:69.000000px;}
.fs5_c00191{font-size:87.000000px;}
.y0_c00191{bottom:0.000000px;}
.y20_c00191{bottom:3.105000px;}
.y1f_c00191{bottom:7.228369px;}
.y1d_c00191{bottom:77.970000px;}
.y1c_c00191{bottom:100.620000px;}
.y1b_c00191{bottom:126.120000px;}
.y1a_c00191{bottom:152.220000px;}
.y19_c00191{bottom:176.820000px;}
.y18_c00191{bottom:200.370000px;}
.y17_c00191{bottom:226.020000px;}
.y16_c00191{bottom:252.120000px;}
.y15_c00191{bottom:274.320000px;}
.y14_c00191{bottom:300.720000px;}
.y13_c00191{bottom:325.320000px;}
.y1e_c00191{bottom:336.720000px;}
.y12_c00191{bottom:349.620000px;}
.y11_c00191{bottom:374.520000px;}
.y10_c00191{bottom:398.970000px;}
.yf_c00191{bottom:423.570000px;}
.ye_c00191{bottom:448.770000px;}
.y1_c00191{bottom:463.020000px;}
.yd_c00191{bottom:473.520000px;}
.yc_c00191{bottom:498.420000px;}
.yb_c00191{bottom:523.170000px;}
.ya_c00191{bottom:549.420000px;}
.y9_c00191{bottom:572.670000px;}
.y8_c00191{bottom:598.020000px;}
.y7_c00191{bottom:622.320000px;}
.y6_c00191{bottom:648.270000px;}
.y5_c00191{bottom:673.620000px;}
.y4_c00191{bottom:697.920000px;}
.y3_c00191{bottom:722.970000px;}
.y2_c00191{bottom:747.870000px;}
.h6_c00191{height:13.200073px;}
.h7_c00191{height:43.804688px;}
.h3_c00191{height:80.758301px;}
.h2_c00191{height:83.563477px;}
.h4_c00191{height:87.361816px;}
.h5_c00191{height:92.829000px;}
.h0_c00191{height:836.700000px;}
.h1_c00191{height:837.000000px;}
.w2_c00191{width:104.875500px;}
.w1_c00191{width:551.250000px;}
.w0_c00191{width:551.325000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:18.150000px;}
.x9_c00191{left:32.850000px;}
.x7_c00191{left:34.200000px;}
.x4_c00191{left:79.350000px;}
.x8_c00191{left:81.300000px;}
.x5_c00191{left:82.350000px;}
.x6_c00191{left:83.700000px;}
.x3_c00191{left:106.350000px;}
.x2_c00191{left:124.200000px;}
.xb_c00191{left:227.476730px;}
.xa_c00191{left:495.900000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls6_c00191{letter-spacing:-2.666667pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls7_c00191{letter-spacing:2.666667pt;}
.ls5_c00191{letter-spacing:5.333333pt;}
.ls1_c00191{letter-spacing:10.600000pt;}
.ls2_c00191{letter-spacing:18.802667pt;}
.ls0_c00191{letter-spacing:20.181333pt;}
.ls3_c00191{letter-spacing:28.266667pt;}
.ws3_c00191{word-spacing:-42.688000pt;}
.ws2_c00191{word-spacing:-17.448000pt;}
.ws1_c00191{word-spacing:-14.781333pt;}
.ws0_c00191{word-spacing:-3.125333pt;}
.ws5_c00191{word-spacing:0.000000pt;}
.ws4_c00191{word-spacing:2.608000pt;}
._26_c00191{margin-left:-23.506667pt;}
._3_c00191{margin-left:-16.192000pt;}
._19_c00191{margin-left:-15.272000pt;}
._14_c00191{margin-left:-14.282667pt;}
._1a_c00191{margin-left:-13.122667pt;}
._28_c00191{margin-left:-11.053333pt;}
._2_c00191{margin-left:-9.738667pt;}
._4_c00191{margin-left:-8.037333pt;}
._16_c00191{margin-left:-6.562667pt;}
._17_c00191{margin-left:-5.266667pt;}
._13_c00191{margin-left:-3.986667pt;}
._12_c00191{margin-left:-2.882667pt;}
._11_c00191{margin-left:-1.410667pt;}
._0_c00191{width:1.525333pt;}
._10_c00191{width:3.066667pt;}
._15_c00191{width:4.661333pt;}
._f_c00191{width:5.888000pt;}
._c_c00191{width:7.232000pt;}
._1c_c00191{width:8.685333pt;}
._1_c00191{width:9.914667pt;}
._22_c00191{width:10.834667pt;}
._5_c00191{width:12.026667pt;}
._b_c00191{width:13.616000pt;}
._1b_c00191{width:14.784000pt;}
._d_c00191{width:16.197333pt;}
._9_c00191{width:18.312000pt;}
._7_c00191{width:20.056000pt;}
._6_c00191{width:21.712000pt;}
._2c_c00191{width:23.368000pt;}
._8_c00191{width:24.594667pt;}
._1e_c00191{width:30.749333pt;}
._2e_c00191{width:32.485333pt;}
._2a_c00191{width:36.376000pt;}
._1f_c00191{width:47.429333pt;}
._20_c00191{width:55.152000pt;}
._18_c00191{width:66.986667pt;}
._1d_c00191{width:73.800000pt;}
._23_c00191{width:82.490667pt;}
._21_c00191{width:85.989333pt;}
._2f_c00191{width:87.776000pt;}
._25_c00191{width:90.490667pt;}
._27_c00191{width:98.506667pt;}
._29_c00191{width:109.341333pt;}
._2d_c00191{width:117.944000pt;}
._a_c00191{width:168.176000pt;}
._e_c00191{width:215.648000pt;}
._24_c00191{width:228.528000pt;}
._2b_c00191{width:352.850667pt;}
.fs6_c00191{font-size:42.666667pt;}
.fs4_c00191{font-size:48.000000pt;}
.fs3_c00191{font-size:49.066667pt;}
.fs2_c00191{font-size:50.666667pt;}
.fs0_c00191{font-size:58.666667pt;}
.fs1_c00191{font-size:61.333333pt;}
.fs5_c00191{font-size:77.333333pt;}
.y0_c00191{bottom:0.000000pt;}
.y20_c00191{bottom:2.760000pt;}
.y1f_c00191{bottom:6.425217pt;}
.y1d_c00191{bottom:69.306667pt;}
.y1c_c00191{bottom:89.440000pt;}
.y1b_c00191{bottom:112.106667pt;}
.y1a_c00191{bottom:135.306667pt;}
.y19_c00191{bottom:157.173333pt;}
.y18_c00191{bottom:178.106667pt;}
.y17_c00191{bottom:200.906667pt;}
.y16_c00191{bottom:224.106667pt;}
.y15_c00191{bottom:243.840000pt;}
.y14_c00191{bottom:267.306667pt;}
.y13_c00191{bottom:289.173333pt;}
.y1e_c00191{bottom:299.306667pt;}
.y12_c00191{bottom:310.773333pt;}
.y11_c00191{bottom:332.906667pt;}
.y10_c00191{bottom:354.640000pt;}
.yf_c00191{bottom:376.506667pt;}
.ye_c00191{bottom:398.906667pt;}
.y1_c00191{bottom:411.573333pt;}
.yd_c00191{bottom:420.906667pt;}
.yc_c00191{bottom:443.040000pt;}
.yb_c00191{bottom:465.040000pt;}
.ya_c00191{bottom:488.373333pt;}
.y9_c00191{bottom:509.040000pt;}
.y8_c00191{bottom:531.573333pt;}
.y7_c00191{bottom:553.173333pt;}
.y6_c00191{bottom:576.240000pt;}
.y5_c00191{bottom:598.773333pt;}
.y4_c00191{bottom:620.373333pt;}
.y3_c00191{bottom:642.640000pt;}
.y2_c00191{bottom:664.773333pt;}
.h6_c00191{height:11.733399pt;}
.h7_c00191{height:38.937500pt;}
.h3_c00191{height:71.785156pt;}
.h2_c00191{height:74.278646pt;}
.h4_c00191{height:77.654948pt;}
.h5_c00191{height:82.514667pt;}
.h0_c00191{height:743.733333pt;}
.h1_c00191{height:744.000000pt;}
.w2_c00191{width:93.222667pt;}
.w1_c00191{width:490.000000pt;}
.w0_c00191{width:490.066667pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:16.133333pt;}
.x9_c00191{left:29.200000pt;}
.x7_c00191{left:30.400000pt;}
.x4_c00191{left:70.533333pt;}
.x8_c00191{left:72.266667pt;}
.x5_c00191{left:73.200000pt;}
.x6_c00191{left:74.400000pt;}
.x3_c00191{left:94.533333pt;}
.x2_c00191{left:110.400000pt;}
.xb_c00191{left:202.201538pt;}
.xa_c00191{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_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_58ebf9a982f061c1c5d709e1.woff2')format("woff");}.ff1_c00192{font-family:ff1_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:ff2_c00192;src:url('chunks/assets/font_4bdc644203dd85c9d3558b4c.woff2')format("woff");}.ff2_c00192{font-family:ff2_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:ff3_c00192;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_15789261a09a94a343f09ad5.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_d785d48a8b7efeaec6701808.woff2')format("woff");}.ff5_c00192{font-family:ff5_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:ff6_c00192;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00192{font-family:ff6_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);}
.v1_c00192{vertical-align:-58.200000px;}
.v0_c00192{vertical-align:0.000000px;}
.ls4_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:3.000000px;}
.ls5_c00192{letter-spacing:6.000000px;}
.ls2_c00192{letter-spacing:14.925000px;}
.ls3_c00192{letter-spacing:18.000000px;}
.ls1_c00192{letter-spacing:26.400000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00192{word-spacing:-34.629000px;}
.ws3_c00192{word-spacing:-33.000000px;}
.ws5_c00192{word-spacing:-22.629000px;}
.ws6_c00192{word-spacing:-19.182000px;}
.ws0_c00192{word-spacing:-16.629000px;}
.ws1_c00192{word-spacing:-0.480000px;}
.ws7_c00192{word-spacing:0.000000px;}
.ws2_c00192{word-spacing:5.175000px;}
._2d_c00192{margin-left:-21.735000px;}
._1f_c00192{margin-left:-20.679000px;}
._1a_c00192{margin-left:-17.112000px;}
._16_c00192{margin-left:-13.476000px;}
._10_c00192{margin-left:-11.466000px;}
._20_c00192{margin-left:-10.167000px;}
._6_c00192{margin-left:-8.556000px;}
._18_c00192{margin-left:-7.245000px;}
._8_c00192{margin-left:-6.060000px;}
._15_c00192{margin-left:-5.055000px;}
._2_c00192{margin-left:-3.450000px;}
._1_c00192{margin-left:-1.656000px;}
._0_c00192{width:1.794000px;}
._4_c00192{width:3.252000px;}
._c_c00192{width:4.860000px;}
._12_c00192{width:6.033000px;}
._b_c00192{width:7.134000px;}
._a_c00192{width:8.634000px;}
._7_c00192{width:9.852000px;}
._5_c00192{width:11.388000px;}
._25_c00192{width:13.005000px;}
._9_c00192{width:14.064000px;}
._d_c00192{width:15.546000px;}
._24_c00192{width:17.181000px;}
._29_c00192{width:18.423000px;}
._22_c00192{width:20.715000px;}
._28_c00192{width:22.011000px;}
._14_c00192{width:23.022000px;}
._21_c00192{width:27.267000px;}
._1b_c00192{width:29.256000px;}
._23_c00192{width:35.661000px;}
._1d_c00192{width:40.203000px;}
._13_c00192{width:43.338000px;}
._11_c00192{width:54.678000px;}
._26_c00192{width:74.400000px;}
._1c_c00192{width:78.645000px;}
._2e_c00192{width:92.874000px;}
._17_c00192{width:102.396000px;}
._27_c00192{width:105.570000px;}
._19_c00192{width:146.505000px;}
._2a_c00192{width:152.730000px;}
._1e_c00192{width:282.138000px;}
._e_c00192{width:284.310000px;}
._2b_c00192{width:312.768000px;}
._3_c00192{width:489.741000px;}
._f_c00192{width:820.770000px;}
._2c_c00192{width:998.499000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(128,128,128);}
.fc0_c00192{color:rgb(0,0,0);}
.fs3_c00192{font-size:48.000000px;}
.fs2_c00192{font-size:66.000000px;}
.fs0_c00192{font-size:69.000000px;}
.fs1_c00192{font-size:78.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1c_c00192{bottom:3.105000px;}
.y1b_c00192{bottom:7.228371px;}
.y1a_c00192{bottom:114.765000px;}
.y19_c00192{bottom:139.815000px;}
.y18_c00192{bottom:165.465000px;}
.y17_c00192{bottom:189.465000px;}
.y16_c00192{bottom:215.415000px;}
.y15_c00192{bottom:240.315000px;}
.y14_c00192{bottom:265.365000px;}
.y13_c00192{bottom:289.965000px;}
.y12_c00192{bottom:314.865000px;}
.y11_c00192{bottom:339.615000px;}
.y10_c00192{bottom:364.215000px;}
.yf_c00192{bottom:388.815000px;}
.ye_c00192{bottom:413.565000px;}
.yd_c00192{bottom:438.765000px;}
.yc_c00192{bottom:463.515000px;}
.yb_c00192{bottom:488.115000px;}
.ya_c00192{bottom:536.715000px;}
.y9_c00192{bottom:585.615000px;}
.y8_c00192{bottom:610.965000px;}
.y7_c00192{bottom:635.565000px;}
.y6_c00192{bottom:660.915000px;}
.y5_c00192{bottom:685.215000px;}
.y4_c00192{bottom:710.565000px;}
.y3_c00192{bottom:735.165000px;}
.y2_c00192{bottom:759.465000px;}
.y1_c00192{bottom:784.365000px;}
.h5_c00192{height:13.200074px;}
.h6_c00192{height:43.804688px;}
.h4_c00192{height:80.758301px;}
.h2_c00192{height:87.361816px;}
.h3_c00192{height:98.756836px;}
.h1_c00192{height:831.000000px;}
.h0_c00192{height:831.075000px;}
.w1_c00192{width:104.875500px;}
.w0_c00192{width:560.250000px;}
.x0_c00192{left:0.000000px;}
.x2_c00192{left:19.350000px;}
.x4_c00192{left:22.950000px;}
.x5_c00192{left:24.000000px;}
.x8_c00192{left:25.350000px;}
.xa_c00192{left:26.400000px;}
.x3_c00192{left:46.200000px;}
.x9_c00192{left:49.050000px;}
.x7_c00192{left:50.250000px;}
.x6_c00192{left:52.650000px;}
.x1_c00192{left:185.550000px;}
.xb_c00192{left:231.939240px;}
@media print{
.v1_c00192{vertical-align:-51.733333pt;}
.v0_c00192{vertical-align:0.000000pt;}
.ls4_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:2.666667pt;}
.ls5_c00192{letter-spacing:5.333333pt;}
.ls2_c00192{letter-spacing:13.266667pt;}
.ls3_c00192{letter-spacing:16.000000pt;}
.ls1_c00192{letter-spacing:23.466667pt;}
.ws4_c00192{word-spacing:-30.781333pt;}
.ws3_c00192{word-spacing:-29.333333pt;}
.ws5_c00192{word-spacing:-20.114667pt;}
.ws6_c00192{word-spacing:-17.050667pt;}
.ws0_c00192{word-spacing:-14.781333pt;}
.ws1_c00192{word-spacing:-0.426667pt;}
.ws7_c00192{word-spacing:0.000000pt;}
.ws2_c00192{word-spacing:4.600000pt;}
._2d_c00192{margin-left:-19.320000pt;}
._1f_c00192{margin-left:-18.381333pt;}
._1a_c00192{margin-left:-15.210667pt;}
._16_c00192{margin-left:-11.978667pt;}
._10_c00192{margin-left:-10.192000pt;}
._20_c00192{margin-left:-9.037333pt;}
._6_c00192{margin-left:-7.605333pt;}
._18_c00192{margin-left:-6.440000pt;}
._8_c00192{margin-left:-5.386667pt;}
._15_c00192{margin-left:-4.493333pt;}
._2_c00192{margin-left:-3.066667pt;}
._1_c00192{margin-left:-1.472000pt;}
._0_c00192{width:1.594667pt;}
._4_c00192{width:2.890667pt;}
._c_c00192{width:4.320000pt;}
._12_c00192{width:5.362667pt;}
._b_c00192{width:6.341333pt;}
._a_c00192{width:7.674667pt;}
._7_c00192{width:8.757333pt;}
._5_c00192{width:10.122667pt;}
._25_c00192{width:11.560000pt;}
._9_c00192{width:12.501333pt;}
._d_c00192{width:13.818667pt;}
._24_c00192{width:15.272000pt;}
._29_c00192{width:16.376000pt;}
._22_c00192{width:18.413333pt;}
._28_c00192{width:19.565333pt;}
._14_c00192{width:20.464000pt;}
._21_c00192{width:24.237333pt;}
._1b_c00192{width:26.005333pt;}
._23_c00192{width:31.698667pt;}
._1d_c00192{width:35.736000pt;}
._13_c00192{width:38.522667pt;}
._11_c00192{width:48.602667pt;}
._26_c00192{width:66.133333pt;}
._1c_c00192{width:69.906667pt;}
._2e_c00192{width:82.554667pt;}
._17_c00192{width:91.018667pt;}
._27_c00192{width:93.840000pt;}
._19_c00192{width:130.226667pt;}
._2a_c00192{width:135.760000pt;}
._1e_c00192{width:250.789333pt;}
._e_c00192{width:252.720000pt;}
._2b_c00192{width:278.016000pt;}
._3_c00192{width:435.325333pt;}
._f_c00192{width:729.573333pt;}
._2c_c00192{width:887.554667pt;}
.fs3_c00192{font-size:42.666667pt;}
.fs2_c00192{font-size:58.666667pt;}
.fs0_c00192{font-size:61.333333pt;}
.fs1_c00192{font-size:69.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y1c_c00192{bottom:2.760000pt;}
.y1b_c00192{bottom:6.425219pt;}
.y1a_c00192{bottom:102.013333pt;}
.y19_c00192{bottom:124.280000pt;}
.y18_c00192{bottom:147.080000pt;}
.y17_c00192{bottom:168.413333pt;}
.y16_c00192{bottom:191.480000pt;}
.y15_c00192{bottom:213.613333pt;}
.y14_c00192{bottom:235.880000pt;}
.y13_c00192{bottom:257.746667pt;}
.y12_c00192{bottom:279.880000pt;}
.y11_c00192{bottom:301.880000pt;}
.y10_c00192{bottom:323.746667pt;}
.yf_c00192{bottom:345.613333pt;}
.ye_c00192{bottom:367.613333pt;}
.yd_c00192{bottom:390.013333pt;}
.yc_c00192{bottom:412.013333pt;}
.yb_c00192{bottom:433.880000pt;}
.ya_c00192{bottom:477.080000pt;}
.y9_c00192{bottom:520.546667pt;}
.y8_c00192{bottom:543.080000pt;}
.y7_c00192{bottom:564.946667pt;}
.y6_c00192{bottom:587.480000pt;}
.y5_c00192{bottom:609.080000pt;}
.y4_c00192{bottom:631.613333pt;}
.y3_c00192{bottom:653.480000pt;}
.y2_c00192{bottom:675.080000pt;}
.y1_c00192{bottom:697.213333pt;}
.h5_c00192{height:11.733399pt;}
.h6_c00192{height:38.937500pt;}
.h4_c00192{height:71.785156pt;}
.h2_c00192{height:77.654948pt;}
.h3_c00192{height:87.783854pt;}
.h1_c00192{height:738.666667pt;}
.h0_c00192{height:738.733333pt;}
.w1_c00192{width:93.222667pt;}
.w0_c00192{width:498.000000pt;}
.x0_c00192{left:0.000000pt;}
.x2_c00192{left:17.200000pt;}
.x4_c00192{left:20.400000pt;}
.x5_c00192{left:21.333333pt;}
.x8_c00192{left:22.533333pt;}
.xa_c00192{left:23.466667pt;}
.x3_c00192{left:41.066667pt;}
.x9_c00192{left:43.600000pt;}
.x7_c00192{left:44.666667pt;}
.x6_c00192{left:46.800000pt;}
.x1_c00192{left:164.933333pt;}
.xb_c00192{left:206.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_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_143140e01d6234298df812a2.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.568848;font-style:normal;font-weight:normal;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_2015a8e18fe8c2023bfd7f0d.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_553baaa60b9fe1c51688633c.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00193{font-family:ff4_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;}
.ls5_c00193{letter-spacing:0.000000px;}
.ls4_c00193{letter-spacing:3.000000px;}
.ls1_c00193{letter-spacing:5.433000px;}
.ls6_c00193{letter-spacing:6.000000px;}
.ls3_c00193{letter-spacing:16.656000px;}
.ls0_c00193{letter-spacing:24.171000px;}
.ls2_c00193{letter-spacing:92.571000px;}
.ls7_c00193{letter-spacing:96.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;}
}
.ws2_c00193{word-spacing:-63.846000px;}
.ws1_c00193{word-spacing:-22.629000px;}
.ws3_c00193{word-spacing:-16.629000px;}
.ws0_c00193{word-spacing:-4.137000px;}
.ws4_c00193{word-spacing:-0.069000px;}
.ws5_c00193{word-spacing:0.000000px;}
._27_c00193{margin-left:-110.124000px;}
._28_c00193{margin-left:-92.118000px;}
._1e_c00193{margin-left:-21.528000px;}
._1f_c00193{margin-left:-20.079000px;}
._2a_c00193{margin-left:-18.009000px;}
._11_c00193{margin-left:-15.111000px;}
._15_c00193{margin-left:-11.592000px;}
._12_c00193{margin-left:-10.005000px;}
._17_c00193{margin-left:-8.832000px;}
._23_c00193{margin-left:-7.314000px;}
._16_c00193{margin-left:-6.279000px;}
._f_c00193{margin-left:-4.899000px;}
._13_c00193{margin-left:-3.726000px;}
._10_c00193{margin-left:-2.415000px;}
._4_c00193{margin-left:-1.242000px;}
._3_c00193{width:1.173000px;}
._0_c00193{width:3.105000px;}
._18_c00193{width:4.278000px;}
._1_c00193{width:5.520000px;}
._1a_c00193{width:7.176000px;}
._c_c00193{width:8.763000px;}
._b_c00193{width:10.557000px;}
._2b_c00193{width:11.661000px;}
._a_c00193{width:12.765000px;}
._d_c00193{width:13.860000px;}
._14_c00193{width:14.904000px;}
._19_c00193{width:16.659000px;}
._30_c00193{width:18.285000px;}
._8_c00193{width:19.692000px;}
._2d_c00193{width:20.982000px;}
._6_c00193{width:22.563000px;}
._5_c00193{width:23.874000px;}
._e_c00193{width:25.392000px;}
._7_c00193{width:27.393000px;}
._2e_c00193{width:30.948000px;}
._34_c00193{width:35.994000px;}
._31_c00193{width:37.230000px;}
._9_c00193{width:41.976000px;}
._33_c00193{width:45.678000px;}
._26_c00193{width:50.319000px;}
._29_c00193{width:70.746000px;}
._25_c00193{width:72.804000px;}
._1d_c00193{width:79.212000px;}
._1c_c00193{width:81.006000px;}
._21_c00193{width:84.249000px;}
._20_c00193{width:85.776000px;}
._24_c00193{width:86.976000px;}
._1b_c00193{width:96.291000px;}
._32_c00193{width:99.384000px;}
._22_c00193{width:109.374000px;}
._2f_c00193{width:123.441000px;}
._2c_c00193{width:269.760000px;}
._2_c00193{width:374.571000px;}
._35_c00193{width:1142.664000px;}
.fc2_c00193{color:transparent;}
.fc1_c00193{color:rgb(128,128,128);}
.fc0_c00193{color:rgb(0,0,0);}
.fs2_c00193{font-size:48.000000px;}
.fs0_c00193{font-size:69.000000px;}
.fs1_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y1e_c00193{bottom:3.105000px;}
.y1d_c00193{bottom:7.228371px;}
.y1c_c00193{bottom:62.865000px;}
.y1b_c00193{bottom:114.765000px;}
.y1a_c00193{bottom:137.415000px;}
.y19_c00193{bottom:164.415000px;}
.y18_c00193{bottom:190.065000px;}
.y17_c00193{bottom:214.515000px;}
.y16_c00193{bottom:239.715000px;}
.y15_c00193{bottom:264.915000px;}
.y14_c00193{bottom:289.365000px;}
.y13_c00193{bottom:315.015000px;}
.y12_c00193{bottom:338.865000px;}
.y11_c00193{bottom:363.465000px;}
.y10_c00193{bottom:388.815000px;}
.yf_c00193{bottom:414.165000px;}
.ye_c00193{bottom:439.065000px;}
.yd_c00193{bottom:465.165000px;}
.yc_c00193{bottom:489.465000px;}
.yb_c00193{bottom:515.115000px;}
.ya_c00193{bottom:538.965000px;}
.y9_c00193{bottom:564.015000px;}
.y8_c00193{bottom:589.365000px;}
.y7_c00193{bottom:614.715000px;}
.y6_c00193{bottom:640.215000px;}
.y5_c00193{bottom:664.515000px;}
.y4_c00193{bottom:689.865000px;}
.y3_c00193{bottom:716.565000px;}
.y2_c00193{bottom:739.815000px;}
.y1_c00193{bottom:788.865000px;}
.h5_c00193{height:13.200074px;}
.h6_c00193{height:43.804688px;}
.h3_c00193{height:80.758301px;}
.h2_c00193{height:87.361816px;}
.h4_c00193{height:91.160156px;}
.h0_c00193{height:828.375000px;}
.h1_c00193{height:828.750000px;}
.w2_c00193{width:104.875500px;}
.w1_c00193{width:556.500000px;}
.w0_c00193{width:556.725000px;}
.x0_c00193{left:0.000000px;}
.xc_c00193{left:26.700000px;}
.x7_c00193{left:32.400000px;}
.xd_c00193{left:36.150000px;}
.x9_c00193{left:38.250000px;}
.x8_c00193{left:48.300000px;}
.xb_c00193{left:72.600000px;}
.xe_c00193{left:93.150000px;}
.xa_c00193{left:94.800000px;}
.x5_c00193{left:97.200000px;}
.x6_c00193{left:98.550000px;}
.x1_c00193{left:114.900000px;}
.x4_c00193{left:122.250000px;}
.x2_c00193{left:140.700000px;}
.x3_c00193{left:143.550000px;}
.xf_c00193{left:163.800000px;}
.x10_c00193{left:230.176758px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls5_c00193{letter-spacing:0.000000pt;}
.ls4_c00193{letter-spacing:2.666667pt;}
.ls1_c00193{letter-spacing:4.829333pt;}
.ls6_c00193{letter-spacing:5.333333pt;}
.ls3_c00193{letter-spacing:14.805333pt;}
.ls0_c00193{letter-spacing:21.485333pt;}
.ls2_c00193{letter-spacing:82.285333pt;}
.ls7_c00193{letter-spacing:85.333333pt;}
.ws2_c00193{word-spacing:-56.752000pt;}
.ws1_c00193{word-spacing:-20.114667pt;}
.ws3_c00193{word-spacing:-14.781333pt;}
.ws0_c00193{word-spacing:-3.677333pt;}
.ws4_c00193{word-spacing:-0.061333pt;}
.ws5_c00193{word-spacing:0.000000pt;}
._27_c00193{margin-left:-97.888000pt;}
._28_c00193{margin-left:-81.882667pt;}
._1e_c00193{margin-left:-19.136000pt;}
._1f_c00193{margin-left:-17.848000pt;}
._2a_c00193{margin-left:-16.008000pt;}
._11_c00193{margin-left:-13.432000pt;}
._15_c00193{margin-left:-10.304000pt;}
._12_c00193{margin-left:-8.893333pt;}
._17_c00193{margin-left:-7.850667pt;}
._23_c00193{margin-left:-6.501333pt;}
._16_c00193{margin-left:-5.581333pt;}
._f_c00193{margin-left:-4.354667pt;}
._13_c00193{margin-left:-3.312000pt;}
._10_c00193{margin-left:-2.146667pt;}
._4_c00193{margin-left:-1.104000pt;}
._3_c00193{width:1.042667pt;}
._0_c00193{width:2.760000pt;}
._18_c00193{width:3.802667pt;}
._1_c00193{width:4.906667pt;}
._1a_c00193{width:6.378667pt;}
._c_c00193{width:7.789333pt;}
._b_c00193{width:9.384000pt;}
._2b_c00193{width:10.365333pt;}
._a_c00193{width:11.346667pt;}
._d_c00193{width:12.320000pt;}
._14_c00193{width:13.248000pt;}
._19_c00193{width:14.808000pt;}
._30_c00193{width:16.253333pt;}
._8_c00193{width:17.504000pt;}
._2d_c00193{width:18.650667pt;}
._6_c00193{width:20.056000pt;}
._5_c00193{width:21.221333pt;}
._e_c00193{width:22.570667pt;}
._7_c00193{width:24.349333pt;}
._2e_c00193{width:27.509333pt;}
._34_c00193{width:31.994667pt;}
._31_c00193{width:33.093333pt;}
._9_c00193{width:37.312000pt;}
._33_c00193{width:40.602667pt;}
._26_c00193{width:44.728000pt;}
._29_c00193{width:62.885333pt;}
._25_c00193{width:64.714667pt;}
._1d_c00193{width:70.410667pt;}
._1c_c00193{width:72.005333pt;}
._21_c00193{width:74.888000pt;}
._20_c00193{width:76.245333pt;}
._24_c00193{width:77.312000pt;}
._1b_c00193{width:85.592000pt;}
._32_c00193{width:88.341333pt;}
._22_c00193{width:97.221333pt;}
._2f_c00193{width:109.725333pt;}
._2c_c00193{width:239.786667pt;}
._2_c00193{width:332.952000pt;}
._35_c00193{width:1015.701333pt;}
.fs2_c00193{font-size:42.666667pt;}
.fs0_c00193{font-size:61.333333pt;}
.fs1_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y1e_c00193{bottom:2.760000pt;}
.y1d_c00193{bottom:6.425219pt;}
.y1c_c00193{bottom:55.880000pt;}
.y1b_c00193{bottom:102.013333pt;}
.y1a_c00193{bottom:122.146667pt;}
.y19_c00193{bottom:146.146667pt;}
.y18_c00193{bottom:168.946667pt;}
.y17_c00193{bottom:190.680000pt;}
.y16_c00193{bottom:213.080000pt;}
.y15_c00193{bottom:235.480000pt;}
.y14_c00193{bottom:257.213333pt;}
.y13_c00193{bottom:280.013333pt;}
.y12_c00193{bottom:301.213333pt;}
.y11_c00193{bottom:323.080000pt;}
.y10_c00193{bottom:345.613333pt;}
.yf_c00193{bottom:368.146667pt;}
.ye_c00193{bottom:390.280000pt;}
.yd_c00193{bottom:413.480000pt;}
.yc_c00193{bottom:435.080000pt;}
.yb_c00193{bottom:457.880000pt;}
.ya_c00193{bottom:479.080000pt;}
.y9_c00193{bottom:501.346667pt;}
.y8_c00193{bottom:523.880000pt;}
.y7_c00193{bottom:546.413333pt;}
.y6_c00193{bottom:569.080000pt;}
.y5_c00193{bottom:590.680000pt;}
.y4_c00193{bottom:613.213333pt;}
.y3_c00193{bottom:636.946667pt;}
.y2_c00193{bottom:657.613333pt;}
.y1_c00193{bottom:701.213333pt;}
.h5_c00193{height:11.733399pt;}
.h6_c00193{height:38.937500pt;}
.h3_c00193{height:71.785156pt;}
.h2_c00193{height:77.654948pt;}
.h4_c00193{height:81.031250pt;}
.h0_c00193{height:736.333333pt;}
.h1_c00193{height:736.666667pt;}
.w2_c00193{width:93.222667pt;}
.w1_c00193{width:494.666667pt;}
.w0_c00193{width:494.866667pt;}
.x0_c00193{left:0.000000pt;}
.xc_c00193{left:23.733333pt;}
.x7_c00193{left:28.800000pt;}
.xd_c00193{left:32.133333pt;}
.x9_c00193{left:34.000000pt;}
.x8_c00193{left:42.933333pt;}
.xb_c00193{left:64.533333pt;}
.xe_c00193{left:82.800000pt;}
.xa_c00193{left:84.266667pt;}
.x5_c00193{left:86.400000pt;}
.x6_c00193{left:87.600000pt;}
.x1_c00193{left:102.133333pt;}
.x4_c00193{left:108.666667pt;}
.x2_c00193{left:125.066667pt;}
.x3_c00193{left:127.600000pt;}
.xf_c00193{left:145.600000pt;}
.x10_c00193{left:204.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aae349e361dc745e2b79be31.woff2')format("woff");}.ff1_c00194{font-family:ff1_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:ff2_c00194;src:url('chunks/assets/font_df03c60c7e1b46da0277e2ef.woff2')format("woff");}.ff2_c00194{font-family:ff2_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:ff3_c00194;src:url('chunks/assets/font_942809982f0a0a5e8c3f42a9.woff2')format("woff");}.ff3_c00194{font-family:ff3_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:ff4_c00194;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00194{font-family:ff4_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:ff5_c00194;src:url('chunks/assets/font_aa60eef2ae38e707e63a0da6.woff2')format("woff");}.ff5_c00194{font-family:ff5_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:ff6_c00194;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00194{letter-spacing:0.000000px;}
.ls3_c00194{letter-spacing:3.000000px;}
.ls0_c00194{letter-spacing:6.000000px;}
.ls1_c00194{letter-spacing:11.925000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00194{word-spacing:-44.022000px;}
.ws2_c00194{word-spacing:-33.000000px;}
.ws0_c00194{word-spacing:-22.629000px;}
.ws4_c00194{word-spacing:-16.629000px;}
.ws1_c00194{word-spacing:-5.793000px;}
.ws5_c00194{word-spacing:0.000000px;}
._24_c00194{margin-left:-21.747000px;}
._10_c00194{margin-left:-14.922000px;}
._20_c00194{margin-left:-12.987000px;}
._12_c00194{margin-left:-10.695000px;}
._13_c00194{margin-left:-9.588000px;}
._11_c00194{margin-left:-8.196000px;}
._15_c00194{margin-left:-6.555000px;}
._14_c00194{margin-left:-5.541000px;}
._e_c00194{margin-left:-4.485000px;}
._2_c00194{margin-left:-3.312000px;}
._1_c00194{margin-left:-2.208000px;}
._f_c00194{margin-left:-1.173000px;}
._0_c00194{width:1.794000px;}
._16_c00194{width:3.105000px;}
._4_c00194{width:4.209000px;}
._5_c00194{width:5.589000px;}
._6_c00194{width:6.762000px;}
._7_c00194{width:8.625000px;}
._1f_c00194{width:9.798000px;}
._8_c00194{width:10.833000px;}
._1c_c00194{width:11.910000px;}
._17_c00194{width:12.999000px;}
._b_c00194{width:14.328000px;}
._1a_c00194{width:16.008000px;}
._1e_c00194{width:17.457000px;}
._c_c00194{width:18.837000px;}
._1b_c00194{width:20.724000px;}
._18_c00194{width:22.512000px;}
._9_c00194{width:24.519000px;}
._1d_c00194{width:28.500000px;}
._19_c00194{width:38.151000px;}
._d_c00194{width:41.034000px;}
._22_c00194{width:58.374000px;}
._a_c00194{width:82.473000px;}
._21_c00194{width:104.685000px;}
._23_c00194{width:107.385000px;}
._3_c00194{width:488.550000px;}
._25_c00194{width:611.340000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(128,128,128);}
.fc0_c00194{color:rgb(0,0,0);}
.fs3_c00194{font-size:48.000000px;}
.fs1_c00194{font-size:60.000000px;}
.fs2_c00194{font-size:66.000000px;}
.fs0_c00194{font-size:69.000000px;}
.y0_c00194{bottom:0.000000px;}
.y1e_c00194{bottom:3.105000px;}
.y1d_c00194{bottom:7.228363px;}
.y1c_c00194{bottom:71.850000px;}
.y1b_c00194{bottom:96.600000px;}
.y1a_c00194{bottom:121.500000px;}
.y19_c00194{bottom:146.100000px;}
.y18_c00194{bottom:170.400000px;}
.y17_c00194{bottom:195.450000px;}
.y16_c00194{bottom:219.750000px;}
.y15_c00194{bottom:244.800000px;}
.y14_c00194{bottom:269.100000px;}
.y13_c00194{bottom:294.000000px;}
.y12_c00194{bottom:318.900000px;}
.y11_c00194{bottom:343.200000px;}
.y10_c00194{bottom:367.650000px;}
.yf_c00194{bottom:391.950000px;}
.ye_c00194{bottom:416.550000px;}
.yd_c00194{bottom:441.450000px;}
.yc_c00194{bottom:466.200000px;}
.yb_c00194{bottom:490.350000px;}
.ya_c00194{bottom:514.350000px;}
.y9_c00194{bottom:538.050000px;}
.y8_c00194{bottom:562.650000px;}
.y7_c00194{bottom:587.550000px;}
.y6_c00194{bottom:612.000000px;}
.y5_c00194{bottom:638.250000px;}
.y4_c00194{bottom:661.200000px;}
.y3_c00194{bottom:686.700000px;}
.y2_c00194{bottom:735.300000px;}
.y1_c00194{bottom:784.650000px;}
.h3_c00194{height:13.200074px;}
.h4_c00194{height:43.804688px;}
.h2_c00194{height:80.758301px;}
.h1_c00194{height:87.361816px;}
.h0_c00194{height:823.500000px;}
.w2_c00194{width:104.875500px;}
.w1_c00194{width:554.250000px;}
.w0_c00194{width:554.550000px;}
.x0_c00194{left:0.000000px;}
.x4_c00194{left:21.000000px;}
.x5_c00194{left:23.400000px;}
.x6_c00194{left:24.600000px;}
.x3_c00194{left:48.000000px;}
.x2_c00194{left:51.750000px;}
.x1_c00194{left:188.700000px;}
.x8_c00194{left:229.089249px;}
.x7_c00194{left:260.250000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls2_c00194{letter-spacing:0.000000pt;}
.ls3_c00194{letter-spacing:2.666667pt;}
.ls0_c00194{letter-spacing:5.333333pt;}
.ls1_c00194{letter-spacing:10.600000pt;}
.ws3_c00194{word-spacing:-39.130667pt;}
.ws2_c00194{word-spacing:-29.333333pt;}
.ws0_c00194{word-spacing:-20.114667pt;}
.ws4_c00194{word-spacing:-14.781333pt;}
.ws1_c00194{word-spacing:-5.149333pt;}
.ws5_c00194{word-spacing:0.000000pt;}
._24_c00194{margin-left:-19.330667pt;}
._10_c00194{margin-left:-13.264000pt;}
._20_c00194{margin-left:-11.544000pt;}
._12_c00194{margin-left:-9.506667pt;}
._13_c00194{margin-left:-8.522667pt;}
._11_c00194{margin-left:-7.285333pt;}
._15_c00194{margin-left:-5.826667pt;}
._14_c00194{margin-left:-4.925333pt;}
._e_c00194{margin-left:-3.986667pt;}
._2_c00194{margin-left:-2.944000pt;}
._1_c00194{margin-left:-1.962667pt;}
._f_c00194{margin-left:-1.042667pt;}
._0_c00194{width:1.594667pt;}
._16_c00194{width:2.760000pt;}
._4_c00194{width:3.741333pt;}
._5_c00194{width:4.968000pt;}
._6_c00194{width:6.010667pt;}
._7_c00194{width:7.666667pt;}
._1f_c00194{width:8.709333pt;}
._8_c00194{width:9.629333pt;}
._1c_c00194{width:10.586667pt;}
._17_c00194{width:11.554667pt;}
._b_c00194{width:12.736000pt;}
._1a_c00194{width:14.229333pt;}
._1e_c00194{width:15.517333pt;}
._c_c00194{width:16.744000pt;}
._1b_c00194{width:18.421333pt;}
._18_c00194{width:20.010667pt;}
._9_c00194{width:21.794667pt;}
._1d_c00194{width:25.333333pt;}
._19_c00194{width:33.912000pt;}
._d_c00194{width:36.474667pt;}
._22_c00194{width:51.888000pt;}
._a_c00194{width:73.309333pt;}
._21_c00194{width:93.053333pt;}
._23_c00194{width:95.453333pt;}
._3_c00194{width:434.266667pt;}
._25_c00194{width:543.413333pt;}
.fs3_c00194{font-size:42.666667pt;}
.fs1_c00194{font-size:53.333333pt;}
.fs2_c00194{font-size:58.666667pt;}
.fs0_c00194{font-size:61.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y1e_c00194{bottom:2.760000pt;}
.y1d_c00194{bottom:6.425212pt;}
.y1c_c00194{bottom:63.866667pt;}
.y1b_c00194{bottom:85.866667pt;}
.y1a_c00194{bottom:108.000000pt;}
.y19_c00194{bottom:129.866667pt;}
.y18_c00194{bottom:151.466667pt;}
.y17_c00194{bottom:173.733333pt;}
.y16_c00194{bottom:195.333333pt;}
.y15_c00194{bottom:217.600000pt;}
.y14_c00194{bottom:239.200000pt;}
.y13_c00194{bottom:261.333333pt;}
.y12_c00194{bottom:283.466667pt;}
.y11_c00194{bottom:305.066667pt;}
.y10_c00194{bottom:326.800000pt;}
.yf_c00194{bottom:348.400000pt;}
.ye_c00194{bottom:370.266667pt;}
.yd_c00194{bottom:392.400000pt;}
.yc_c00194{bottom:414.400000pt;}
.yb_c00194{bottom:435.866667pt;}
.ya_c00194{bottom:457.200000pt;}
.y9_c00194{bottom:478.266667pt;}
.y8_c00194{bottom:500.133333pt;}
.y7_c00194{bottom:522.266667pt;}
.y6_c00194{bottom:544.000000pt;}
.y5_c00194{bottom:567.333333pt;}
.y4_c00194{bottom:587.733333pt;}
.y3_c00194{bottom:610.400000pt;}
.y2_c00194{bottom:653.600000pt;}
.y1_c00194{bottom:697.466667pt;}
.h3_c00194{height:11.733399pt;}
.h4_c00194{height:38.937500pt;}
.h2_c00194{height:71.785156pt;}
.h1_c00194{height:77.654948pt;}
.h0_c00194{height:732.000000pt;}
.w2_c00194{width:93.222667pt;}
.w1_c00194{width:492.666667pt;}
.w0_c00194{width:492.933333pt;}
.x0_c00194{left:0.000000pt;}
.x4_c00194{left:18.666667pt;}
.x5_c00194{left:20.800000pt;}
.x6_c00194{left:21.866667pt;}
.x3_c00194{left:42.666667pt;}
.x2_c00194{left:46.000000pt;}
.x1_c00194{left:167.733333pt;}
.x8_c00194{left:203.634888pt;}
.x7_c00194{left:231.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_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_98f1ab1bd46d1f5161c27f08.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.568848;font-style:normal;font-weight:normal;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_cddeea3d76159a988397f971.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_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_122029076cfc7ee6e6781138.woff2')format("woff");}.ff4_c00195{font-family:ff4_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:ff5_c00195;src:url('chunks/assets/font_47d91490696c4b04178f2176.woff2')format("woff");}.ff5_c00195{font-family:ff5_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:ff6_c00195;src:url('chunks/assets/font_f6a6960b2e5b5b5fd23f3106.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00195;src:url('chunks/assets/font_d6b3bea3ececc069519e2775.woff2')format("woff");}.ff7_c00195{font-family:ff7_c00195;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_c00195;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00195{font-family:ff8_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;}
.ls4_c00195{letter-spacing:0.000000px;}
.ls1_c00195{letter-spacing:3.000000px;}
.ls6_c00195{letter-spacing:6.000000px;}
.ls3_c00195{letter-spacing:15.102000px;}
.ls5_c00195{letter-spacing:18.000000px;}
.ls0_c00195{letter-spacing:19.971000px;}
.ls2_c00195{letter-spacing:23.560800px;}
.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:-44.022000px;}
.ws2_c00195{word-spacing:-34.629000px;}
.ws3_c00195{word-spacing:-22.629000px;}
.ws1_c00195{word-spacing:-16.629000px;}
.ws4_c00195{word-spacing:-11.568000px;}
.ws5_c00195{word-spacing:-0.828000px;}
.ws6_c00195{word-spacing:0.000000px;}
._21_c00195{margin-left:-23.616000px;}
._1d_c00195{margin-left:-14.922000px;}
._20_c00195{margin-left:-13.335000px;}
._1f_c00195{margin-left:-11.739000px;}
._19_c00195{margin-left:-9.474000px;}
._16_c00195{margin-left:-8.142000px;}
._2_c00195{margin-left:-6.702000px;}
._1_c00195{margin-left:-5.175000px;}
._4_c00195{margin-left:-3.648000px;}
._3_c00195{margin-left:-2.484000px;}
._a_c00195{margin-left:-1.266000px;}
._8_c00195{width:1.242000px;}
._7_c00195{width:2.967000px;}
._6_c00195{width:4.752000px;}
._11_c00195{width:6.003000px;}
._9_c00195{width:7.047000px;}
._b_c00195{width:9.048000px;}
._14_c00195{width:10.281000px;}
._0_c00195{width:11.454000px;}
._d_c00195{width:12.636000px;}
._e_c00195{width:14.076000px;}
._10_c00195{width:15.810000px;}
._c_c00195{width:17.931000px;}
._1c_c00195{width:19.161000px;}
._f_c00195{width:20.760000px;}
._22_c00195{width:21.771000px;}
._12_c00195{width:22.803000px;}
._15_c00195{width:24.132000px;}
._17_c00195{width:32.295000px;}
._13_c00195{width:39.597000px;}
._24_c00195{width:83.745000px;}
._23_c00195{width:101.697000px;}
._1e_c00195{width:103.143000px;}
._1a_c00195{width:168.108000px;}
._1b_c00195{width:261.786000px;}
._25_c00195{width:266.175000px;}
._5_c00195{width:384.192000px;}
._18_c00195{width:456.729000px;}
._26_c00195{width:1439.700000px;}
.fc2_c00195{color:transparent;}
.fc1_c00195{color:rgb(128,128,128);}
.fc0_c00195{color:rgb(0,0,0);}
.fs5_c00195{font-size:24.000000px;}
.fs4_c00195{font-size:48.000000px;}
.fs2_c00195{font-size:51.000000px;}
.fs3_c00195{font-size:55.200000px;}
.fs1_c00195{font-size:66.000000px;}
.fs0_c00195{font-size:69.000000px;}
.y0_c00195{bottom:0.000000px;}
.y20_c00195{bottom:3.105000px;}
.y1f_c00195{bottom:7.228369px;}
.y1e_c00195{bottom:79.020000px;}
.y1d_c00195{bottom:110.970000px;}
.y1c_c00195{bottom:130.920000px;}
.y1b_c00195{bottom:156.270000px;}
.y1a_c00195{bottom:181.170000px;}
.y19_c00195{bottom:205.920000px;}
.y18_c00195{bottom:230.820000px;}
.y17_c00195{bottom:255.420000px;}
.y16_c00195{bottom:280.170000px;}
.y15_c00195{bottom:305.820000px;}
.y14_c00195{bottom:329.670000px;}
.y13_c00195{bottom:353.370000px;}
.y12_c00195{bottom:379.020000px;}
.y11_c00195{bottom:403.020000px;}
.y10_c00195{bottom:427.320000px;}
.yf_c00195{bottom:452.220000px;}
.ye_c00195{bottom:477.570000px;}
.yd_c00195{bottom:501.570000px;}
.yc_c00195{bottom:525.870000px;}
.yb_c00195{bottom:551.370000px;}
.ya_c00195{bottom:575.370000px;}
.y9_c00195{bottom:600.120000px;}
.y8_c00195{bottom:624.270000px;}
.y7_c00195{bottom:649.620000px;}
.y6_c00195{bottom:674.370000px;}
.y5_c00195{bottom:698.670000px;}
.y4_c00195{bottom:723.270000px;}
.y3_c00195{bottom:748.170000px;}
.y2_c00195{bottom:772.770000px;}
.y1_c00195{bottom:797.820000px;}
.h5_c00195{height:13.200073px;}
.h6_c00195{height:43.804688px;}
.h4_c00195{height:64.571777px;}
.h3_c00195{height:80.758301px;}
.h2_c00195{height:87.361816px;}
.h1_c00195{height:844.500000px;}
.h0_c00195{height:844.800000px;}
.w2_c00195{width:104.875500px;}
.w1_c00195{width:567.750000px;}
.w0_c00195{width:567.825000px;}
.x0_c00195{left:0.000000px;}
.x9_c00195{left:36.900000px;}
.xb_c00195{left:39.600000px;}
.x4_c00195{left:54.450000px;}
.x7_c00195{left:70.200000px;}
.x8_c00195{left:99.900000px;}
.x3_c00195{left:102.900000px;}
.x2_c00195{left:103.950000px;}
.x1_c00195{left:119.100000px;}
.x6_c00195{left:124.950000px;}
.x5_c00195{left:126.600000px;}
.xa_c00195{left:127.950000px;}
.xc_c00195{left:235.726730px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls4_c00195{letter-spacing:0.000000pt;}
.ls1_c00195{letter-spacing:2.666667pt;}
.ls6_c00195{letter-spacing:5.333333pt;}
.ls3_c00195{letter-spacing:13.424000pt;}
.ls5_c00195{letter-spacing:16.000000pt;}
.ls0_c00195{letter-spacing:17.752000pt;}
.ls2_c00195{letter-spacing:20.942933pt;}
.ws0_c00195{word-spacing:-39.130667pt;}
.ws2_c00195{word-spacing:-30.781333pt;}
.ws3_c00195{word-spacing:-20.114667pt;}
.ws1_c00195{word-spacing:-14.781333pt;}
.ws4_c00195{word-spacing:-10.282667pt;}
.ws5_c00195{word-spacing:-0.736000pt;}
.ws6_c00195{word-spacing:0.000000pt;}
._21_c00195{margin-left:-20.992000pt;}
._1d_c00195{margin-left:-13.264000pt;}
._20_c00195{margin-left:-11.853333pt;}
._1f_c00195{margin-left:-10.434667pt;}
._19_c00195{margin-left:-8.421333pt;}
._16_c00195{margin-left:-7.237333pt;}
._2_c00195{margin-left:-5.957333pt;}
._1_c00195{margin-left:-4.600000pt;}
._4_c00195{margin-left:-3.242667pt;}
._3_c00195{margin-left:-2.208000pt;}
._a_c00195{margin-left:-1.125333pt;}
._8_c00195{width:1.104000pt;}
._7_c00195{width:2.637333pt;}
._6_c00195{width:4.224000pt;}
._11_c00195{width:5.336000pt;}
._9_c00195{width:6.264000pt;}
._b_c00195{width:8.042667pt;}
._14_c00195{width:9.138667pt;}
._0_c00195{width:10.181333pt;}
._d_c00195{width:11.232000pt;}
._e_c00195{width:12.512000pt;}
._10_c00195{width:14.053333pt;}
._c_c00195{width:15.938667pt;}
._1c_c00195{width:17.032000pt;}
._f_c00195{width:18.453333pt;}
._22_c00195{width:19.352000pt;}
._12_c00195{width:20.269333pt;}
._15_c00195{width:21.450667pt;}
._17_c00195{width:28.706667pt;}
._13_c00195{width:35.197333pt;}
._24_c00195{width:74.440000pt;}
._23_c00195{width:90.397333pt;}
._1e_c00195{width:91.682667pt;}
._1a_c00195{width:149.429333pt;}
._1b_c00195{width:232.698667pt;}
._25_c00195{width:236.600000pt;}
._5_c00195{width:341.504000pt;}
._18_c00195{width:405.981333pt;}
._26_c00195{width:1279.733333pt;}
.fs5_c00195{font-size:21.333333pt;}
.fs4_c00195{font-size:42.666667pt;}
.fs2_c00195{font-size:45.333333pt;}
.fs3_c00195{font-size:49.066667pt;}
.fs1_c00195{font-size:58.666667pt;}
.fs0_c00195{font-size:61.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y20_c00195{bottom:2.760000pt;}
.y1f_c00195{bottom:6.425217pt;}
.y1e_c00195{bottom:70.240000pt;}
.y1d_c00195{bottom:98.640000pt;}
.y1c_c00195{bottom:116.373333pt;}
.y1b_c00195{bottom:138.906667pt;}
.y1a_c00195{bottom:161.040000pt;}
.y19_c00195{bottom:183.040000pt;}
.y18_c00195{bottom:205.173333pt;}
.y17_c00195{bottom:227.040000pt;}
.y16_c00195{bottom:249.040000pt;}
.y15_c00195{bottom:271.840000pt;}
.y14_c00195{bottom:293.040000pt;}
.y13_c00195{bottom:314.106667pt;}
.y12_c00195{bottom:336.906667pt;}
.y11_c00195{bottom:358.240000pt;}
.y10_c00195{bottom:379.840000pt;}
.yf_c00195{bottom:401.973333pt;}
.ye_c00195{bottom:424.506667pt;}
.yd_c00195{bottom:445.840000pt;}
.yc_c00195{bottom:467.440000pt;}
.yb_c00195{bottom:490.106667pt;}
.ya_c00195{bottom:511.440000pt;}
.y9_c00195{bottom:533.440000pt;}
.y8_c00195{bottom:554.906667pt;}
.y7_c00195{bottom:577.440000pt;}
.y6_c00195{bottom:599.440000pt;}
.y5_c00195{bottom:621.040000pt;}
.y4_c00195{bottom:642.906667pt;}
.y3_c00195{bottom:665.040000pt;}
.y2_c00195{bottom:686.906667pt;}
.y1_c00195{bottom:709.173333pt;}
.h5_c00195{height:11.733399pt;}
.h6_c00195{height:38.937500pt;}
.h4_c00195{height:57.397135pt;}
.h3_c00195{height:71.785156pt;}
.h2_c00195{height:77.654948pt;}
.h1_c00195{height:750.666667pt;}
.h0_c00195{height:750.933333pt;}
.w2_c00195{width:93.222667pt;}
.w1_c00195{width:504.666667pt;}
.w0_c00195{width:504.733333pt;}
.x0_c00195{left:0.000000pt;}
.x9_c00195{left:32.800000pt;}
.xb_c00195{left:35.200000pt;}
.x4_c00195{left:48.400000pt;}
.x7_c00195{left:62.400000pt;}
.x8_c00195{left:88.800000pt;}
.x3_c00195{left:91.466667pt;}
.x2_c00195{left:92.400000pt;}
.x1_c00195{left:105.866667pt;}
.x6_c00195{left:111.066667pt;}
.x5_c00195{left:112.533333pt;}
.xa_c00195{left:113.733333pt;}
.xc_c00195{left:209.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_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_4ebf459f94bbaea2906968c4.woff2')format("woff");}.ff1_c00196{font-family:ff1_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:ff2_c00196;src:url('chunks/assets/font_4234926725afab580de24f3b.woff2')format("woff");}.ff2_c00196{font-family:ff2_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:ff3_c00196;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00196{font-family:ff3_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;}
.ls5_c00196{letter-spacing:0.000000px;}
.ls4_c00196{letter-spacing:3.000000px;}
.ls3_c00196{letter-spacing:6.000000px;}
.ls1_c00196{letter-spacing:11.925000px;}
.ls0_c00196{letter-spacing:13.125000px;}
.ls2_c00196{letter-spacing:17.325000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00196{word-spacing:-16.629000px;}
.ws1_c00196{word-spacing:-7.035000px;}
.ws0_c00196{word-spacing:-6.552000px;}
.ws3_c00196{word-spacing:0.000000px;}
._c_c00196{margin-left:-15.801000px;}
._17_c00196{margin-left:-10.887000px;}
._16_c00196{margin-left:-9.666000px;}
._d_c00196{margin-left:-8.004000px;}
._23_c00196{margin-left:-6.762000px;}
._11_c00196{margin-left:-5.751000px;}
._12_c00196{margin-left:-4.692000px;}
._e_c00196{margin-left:-3.438000px;}
._13_c00196{margin-left:-2.421000px;}
._f_c00196{margin-left:-1.380000px;}
._18_c00196{width:1.035000px;}
._5_c00196{width:2.346000px;}
._3_c00196{width:3.657000px;}
._4_c00196{width:4.761000px;}
._15_c00196{width:5.853000px;}
._19_c00196{width:7.626000px;}
._14_c00196{width:8.982000px;}
._0_c00196{width:10.971000px;}
._10_c00196{width:12.564000px;}
._1_c00196{width:14.559000px;}
._1c_c00196{width:16.281000px;}
._7_c00196{width:17.319000px;}
._a_c00196{width:18.744000px;}
._9_c00196{width:20.493000px;}
._1f_c00196{width:22.710000px;}
._2_c00196{width:24.219000px;}
._8_c00196{width:26.013000px;}
._1b_c00196{width:29.388000px;}
._1a_c00196{width:38.283000px;}
._1e_c00196{width:39.873000px;}
._24_c00196{width:41.727000px;}
._b_c00196{width:43.953000px;}
._22_c00196{width:47.661000px;}
._6_c00196{width:83.583000px;}
._20_c00196{width:104.346000px;}
._1d_c00196{width:105.993000px;}
._21_c00196{width:110.436000px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(128,128,128);}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:48.000000px;}
.fs0_c00196{font-size:69.000000px;}
.y0_c00196{bottom:0.000000px;}
.y1e_c00196{bottom:3.105000px;}
.y1d_c00196{bottom:7.228363px;}
.y1c_c00196{bottom:65.250000px;}
.y1b_c00196{bottom:90.450000px;}
.y1a_c00196{bottom:115.800000px;}
.y19_c00196{bottom:140.400000px;}
.y18_c00196{bottom:163.050000px;}
.y17_c00196{bottom:188.400000px;}
.y16_c00196{bottom:213.300000px;}
.y15_c00196{bottom:238.500000px;}
.y14_c00196{bottom:262.800000px;}
.y13_c00196{bottom:288.900000px;}
.y12_c00196{bottom:312.450000px;}
.y11_c00196{bottom:337.050000px;}
.y10_c00196{bottom:361.350000px;}
.yf_c00196{bottom:385.800000px;}
.ye_c00196{bottom:410.400000px;}
.yd_c00196{bottom:435.000000px;}
.yc_c00196{bottom:459.600000px;}
.yb_c00196{bottom:483.600000px;}
.ya_c00196{bottom:507.600000px;}
.y9_c00196{bottom:531.600000px;}
.y8_c00196{bottom:555.900000px;}
.y7_c00196{bottom:580.800000px;}
.y6_c00196{bottom:605.100000px;}
.y5_c00196{bottom:629.700000px;}
.y4_c00196{bottom:655.350000px;}
.y3_c00196{bottom:678.750000px;}
.y2_c00196{bottom:703.800000px;}
.y1_c00196{bottom:728.400000px;}
.h3_c00196{height:13.200074px;}
.h4_c00196{height:43.804688px;}
.h2_c00196{height:80.758301px;}
.h1_c00196{height:87.361816px;}
.h0_c00196{height:823.500000px;}
.w2_c00196{width:104.875500px;}
.w1_c00196{width:554.250000px;}
.w0_c00196{width:554.550000px;}
.x0_c00196{left:0.000000px;}
.x3_c00196{left:22.350000px;}
.x6_c00196{left:24.300000px;}
.x7_c00196{left:25.350000px;}
.x8_c00196{left:27.000000px;}
.x9_c00196{left:28.050000px;}
.x5_c00196{left:38.850000px;}
.x2_c00196{left:45.300000px;}
.x4_c00196{left:47.250000px;}
.x1_c00196{left:49.200000px;}
.xb_c00196{left:229.089249px;}
.xa_c00196{left:260.250000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls5_c00196{letter-spacing:0.000000pt;}
.ls4_c00196{letter-spacing:2.666667pt;}
.ls3_c00196{letter-spacing:5.333333pt;}
.ls1_c00196{letter-spacing:10.600000pt;}
.ls0_c00196{letter-spacing:11.666667pt;}
.ls2_c00196{letter-spacing:15.400000pt;}
.ws2_c00196{word-spacing:-14.781333pt;}
.ws1_c00196{word-spacing:-6.253333pt;}
.ws0_c00196{word-spacing:-5.824000pt;}
.ws3_c00196{word-spacing:0.000000pt;}
._c_c00196{margin-left:-14.045333pt;}
._17_c00196{margin-left:-9.677333pt;}
._16_c00196{margin-left:-8.592000pt;}
._d_c00196{margin-left:-7.114667pt;}
._23_c00196{margin-left:-6.010667pt;}
._11_c00196{margin-left:-5.112000pt;}
._12_c00196{margin-left:-4.170667pt;}
._e_c00196{margin-left:-3.056000pt;}
._13_c00196{margin-left:-2.152000pt;}
._f_c00196{margin-left:-1.226667pt;}
._18_c00196{width:0.920000pt;}
._5_c00196{width:2.085333pt;}
._3_c00196{width:3.250667pt;}
._4_c00196{width:4.232000pt;}
._15_c00196{width:5.202667pt;}
._19_c00196{width:6.778667pt;}
._14_c00196{width:7.984000pt;}
._0_c00196{width:9.752000pt;}
._10_c00196{width:11.168000pt;}
._1_c00196{width:12.941333pt;}
._1c_c00196{width:14.472000pt;}
._7_c00196{width:15.394667pt;}
._a_c00196{width:16.661333pt;}
._9_c00196{width:18.216000pt;}
._1f_c00196{width:20.186667pt;}
._2_c00196{width:21.528000pt;}
._8_c00196{width:23.122667pt;}
._1b_c00196{width:26.122667pt;}
._1a_c00196{width:34.029333pt;}
._1e_c00196{width:35.442667pt;}
._24_c00196{width:37.090667pt;}
._b_c00196{width:39.069333pt;}
._22_c00196{width:42.365333pt;}
._6_c00196{width:74.296000pt;}
._20_c00196{width:92.752000pt;}
._1d_c00196{width:94.216000pt;}
._21_c00196{width:98.165333pt;}
.fs1_c00196{font-size:42.666667pt;}
.fs0_c00196{font-size:61.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y1e_c00196{bottom:2.760000pt;}
.y1d_c00196{bottom:6.425212pt;}
.y1c_c00196{bottom:58.000000pt;}
.y1b_c00196{bottom:80.400000pt;}
.y1a_c00196{bottom:102.933333pt;}
.y19_c00196{bottom:124.800000pt;}
.y18_c00196{bottom:144.933333pt;}
.y17_c00196{bottom:167.466667pt;}
.y16_c00196{bottom:189.600000pt;}
.y15_c00196{bottom:212.000000pt;}
.y14_c00196{bottom:233.600000pt;}
.y13_c00196{bottom:256.800000pt;}
.y12_c00196{bottom:277.733333pt;}
.y11_c00196{bottom:299.600000pt;}
.y10_c00196{bottom:321.200000pt;}
.yf_c00196{bottom:342.933333pt;}
.ye_c00196{bottom:364.800000pt;}
.yd_c00196{bottom:386.666667pt;}
.yc_c00196{bottom:408.533333pt;}
.yb_c00196{bottom:429.866667pt;}
.ya_c00196{bottom:451.200000pt;}
.y9_c00196{bottom:472.533333pt;}
.y8_c00196{bottom:494.133333pt;}
.y7_c00196{bottom:516.266667pt;}
.y6_c00196{bottom:537.866667pt;}
.y5_c00196{bottom:559.733333pt;}
.y4_c00196{bottom:582.533333pt;}
.y3_c00196{bottom:603.333333pt;}
.y2_c00196{bottom:625.600000pt;}
.y1_c00196{bottom:647.466667pt;}
.h3_c00196{height:11.733399pt;}
.h4_c00196{height:38.937500pt;}
.h2_c00196{height:71.785156pt;}
.h1_c00196{height:77.654948pt;}
.h0_c00196{height:732.000000pt;}
.w2_c00196{width:93.222667pt;}
.w1_c00196{width:492.666667pt;}
.w0_c00196{width:492.933333pt;}
.x0_c00196{left:0.000000pt;}
.x3_c00196{left:19.866667pt;}
.x6_c00196{left:21.600000pt;}
.x7_c00196{left:22.533333pt;}
.x8_c00196{left:24.000000pt;}
.x9_c00196{left:24.933333pt;}
.x5_c00196{left:34.533333pt;}
.x2_c00196{left:40.266667pt;}
.x4_c00196{left:42.000000pt;}
.x1_c00196{left:43.733333pt;}
.xb_c00196{left:203.634888pt;}
.xa_c00196{left:231.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_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_d215f2d5561512ad54d1420d.woff2')format("woff");}.ff1_c00197{font-family:ff1_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:ff2_c00197;src:url('chunks/assets/font_8e3e849789382ba9f7866b3f.woff2')format("woff");}.ff2_c00197{font-family:ff2_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:ff3_c00197;src:url('chunks/assets/font_aaaf8d06a76b927bb8a9fe80.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.311035;font-style:normal;font-weight:normal;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_e803c3cb73106305284b2528.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00197;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00197{font-family:ff6_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;}
.lsb_c00197{letter-spacing:0.000000px;}
.ls6_c00197{letter-spacing:2.130000px;}
.lsc_c00197{letter-spacing:3.000000px;}
.ls1_c00197{letter-spacing:3.171000px;}
.ls3_c00197{letter-spacing:4.371000px;}
.ls0_c00197{letter-spacing:6.000000px;}
.ls2_c00197{letter-spacing:6.171000px;}
.ls8_c00197{letter-spacing:9.600000px;}
.ls5_c00197{letter-spacing:11.289000px;}
.ls4_c00197{letter-spacing:13.560000px;}
.lsa_c00197{letter-spacing:15.600000px;}
.lsd_c00197{letter-spacing:18.000000px;}
.ls7_c00197{letter-spacing:21.000000px;}
.ls9_c00197{letter-spacing:28.077000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-34.629000px;}
.ws1_c00197{word-spacing:-22.629000px;}
.ws4_c00197{word-spacing:-20.130000px;}
.ws2_c00197{word-spacing:-16.629000px;}
.ws5_c00197{word-spacing:0.000000px;}
.ws3_c00197{word-spacing:2.295000px;}
._1e_c00197{margin-left:-63.618000px;}
._20_c00197{margin-left:-31.464000px;}
._19_c00197{margin-left:-21.597000px;}
._27_c00197{margin-left:-18.933000px;}
._11_c00197{margin-left:-16.422000px;}
._15_c00197{margin-left:-15.180000px;}
._17_c00197{margin-left:-12.393000px;}
._13_c00197{margin-left:-10.626000px;}
._9_c00197{margin-left:-9.417000px;}
._b_c00197{margin-left:-8.211000px;}
._e_c00197{margin-left:-6.900000px;}
._7_c00197{margin-left:-5.244000px;}
._f_c00197{margin-left:-3.969000px;}
._c_c00197{margin-left:-2.967000px;}
._0_c00197{margin-left:-1.656000px;}
._2_c00197{width:1.794000px;}
._1_c00197{width:3.381000px;}
._3_c00197{width:4.830000px;}
._4_c00197{width:6.831000px;}
._a_c00197{width:7.833000px;}
._12_c00197{width:8.970000px;}
._22_c00197{width:10.392000px;}
._6_c00197{width:11.454000px;}
._26_c00197{width:12.588000px;}
._5_c00197{width:13.593000px;}
._14_c00197{width:14.868000px;}
._18_c00197{width:16.353000px;}
._d_c00197{width:17.490000px;}
._25_c00197{width:18.537000px;}
._29_c00197{width:20.253000px;}
._8_c00197{width:21.528000px;}
._24_c00197{width:23.391000px;}
._28_c00197{width:25.119000px;}
._2b_c00197{width:26.439000px;}
._1c_c00197{width:27.489000px;}
._23_c00197{width:29.463000px;}
._2a_c00197{width:32.913000px;}
._1b_c00197{width:34.128000px;}
._2c_c00197{width:56.325000px;}
._1f_c00197{width:100.050000px;}
._10_c00197{width:130.386000px;}
._1a_c00197{width:151.386000px;}
._16_c00197{width:187.824000px;}
._21_c00197{width:237.153000px;}
._1d_c00197{width:590.340000px;}
._2d_c00197{width:1614.117000px;}
.fc2_c00197{color:transparent;}
.fc1_c00197{color:rgb(128,128,128);}
.fc0_c00197{color:rgb(0,0,0);}
.fs4_c00197{font-size:48.000000px;}
.fs3_c00197{font-size:66.000000px;}
.fs0_c00197{font-size:69.000000px;}
.fs2_c00197{font-size:75.000000px;}
.fs1_c00197{font-size:78.000000px;}
.y0_c00197{bottom:0.000000px;}
.y1c_c00197{bottom:3.105000px;}
.y1b_c00197{bottom:7.228369px;}
.y1a_c00197{bottom:74.820000px;}
.y19_c00197{bottom:98.820000px;}
.y18_c00197{bottom:125.220000px;}
.y17_c00197{bottom:174.720000px;}
.y16_c00197{bottom:225.720000px;}
.y15_c00197{bottom:250.320000px;}
.y14_c00197{bottom:275.370000px;}
.y13_c00197{bottom:300.270000px;}
.y12_c00197{bottom:325.020000px;}
.y11_c00197{bottom:348.570000px;}
.y10_c00197{bottom:373.620000px;}
.yf_c00197{bottom:397.920000px;}
.ye_c00197{bottom:423.120000px;}
.yd_c00197{bottom:446.820000px;}
.yc_c00197{bottom:472.170000px;}
.yb_c00197{bottom:497.370000px;}
.ya_c00197{bottom:521.670000px;}
.y9_c00197{bottom:546.420000px;}
.y8_c00197{bottom:570.420000px;}
.y7_c00197{bottom:620.370000px;}
.y6_c00197{bottom:669.270000px;}
.y5_c00197{bottom:693.870000px;}
.y4_c00197{bottom:718.770000px;}
.y3_c00197{bottom:743.220000px;}
.y2_c00197{bottom:767.820000px;}
.y1_c00197{bottom:793.020000px;}
.h5_c00197{height:13.200073px;}
.h6_c00197{height:43.804688px;}
.h3_c00197{height:80.758301px;}
.h2_c00197{height:87.361816px;}
.h4_c00197{height:94.958496px;}
.h1_c00197{height:844.500000px;}
.h0_c00197{height:844.800000px;}
.w2_c00197{width:104.875500px;}
.w1_c00197{width:567.750000px;}
.w0_c00197{width:567.825000px;}
.x0_c00197{left:0.000000px;}
.xa_c00197{left:41.550000px;}
.x9_c00197{left:56.250000px;}
.x6_c00197{left:75.600000px;}
.xe_c00197{left:100.950000px;}
.x7_c00197{left:102.150000px;}
.xc_c00197{left:103.200000px;}
.x3_c00197{left:104.400000px;}
.x8_c00197{left:106.650000px;}
.x4_c00197{left:108.450000px;}
.x2_c00197{left:109.650000px;}
.xb_c00197{left:130.650000px;}
.xd_c00197{left:147.450000px;}
.xf_c00197{left:235.726730px;}
.x1_c00197{left:263.550000px;}
.x5_c00197{left:268.350000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.lsb_c00197{letter-spacing:0.000000pt;}
.ls6_c00197{letter-spacing:1.893333pt;}
.lsc_c00197{letter-spacing:2.666667pt;}
.ls1_c00197{letter-spacing:2.818667pt;}
.ls3_c00197{letter-spacing:3.885333pt;}
.ls0_c00197{letter-spacing:5.333333pt;}
.ls2_c00197{letter-spacing:5.485333pt;}
.ls8_c00197{letter-spacing:8.533333pt;}
.ls5_c00197{letter-spacing:10.034667pt;}
.ls4_c00197{letter-spacing:12.053333pt;}
.lsa_c00197{letter-spacing:13.866667pt;}
.lsd_c00197{letter-spacing:16.000000pt;}
.ls7_c00197{letter-spacing:18.666667pt;}
.ls9_c00197{letter-spacing:24.957333pt;}
.ws0_c00197{word-spacing:-30.781333pt;}
.ws1_c00197{word-spacing:-20.114667pt;}
.ws4_c00197{word-spacing:-17.893333pt;}
.ws2_c00197{word-spacing:-14.781333pt;}
.ws5_c00197{word-spacing:0.000000pt;}
.ws3_c00197{word-spacing:2.040000pt;}
._1e_c00197{margin-left:-56.549333pt;}
._20_c00197{margin-left:-27.968000pt;}
._19_c00197{margin-left:-19.197333pt;}
._27_c00197{margin-left:-16.829333pt;}
._11_c00197{margin-left:-14.597333pt;}
._15_c00197{margin-left:-13.493333pt;}
._17_c00197{margin-left:-11.016000pt;}
._13_c00197{margin-left:-9.445333pt;}
._9_c00197{margin-left:-8.370667pt;}
._b_c00197{margin-left:-7.298667pt;}
._e_c00197{margin-left:-6.133333pt;}
._7_c00197{margin-left:-4.661333pt;}
._f_c00197{margin-left:-3.528000pt;}
._c_c00197{margin-left:-2.637333pt;}
._0_c00197{margin-left:-1.472000pt;}
._2_c00197{width:1.594667pt;}
._1_c00197{width:3.005333pt;}
._3_c00197{width:4.293333pt;}
._4_c00197{width:6.072000pt;}
._a_c00197{width:6.962667pt;}
._12_c00197{width:7.973333pt;}
._22_c00197{width:9.237333pt;}
._6_c00197{width:10.181333pt;}
._26_c00197{width:11.189333pt;}
._5_c00197{width:12.082667pt;}
._14_c00197{width:13.216000pt;}
._18_c00197{width:14.536000pt;}
._d_c00197{width:15.546667pt;}
._25_c00197{width:16.477333pt;}
._29_c00197{width:18.002667pt;}
._8_c00197{width:19.136000pt;}
._24_c00197{width:20.792000pt;}
._28_c00197{width:22.328000pt;}
._2b_c00197{width:23.501333pt;}
._1c_c00197{width:24.434667pt;}
._23_c00197{width:26.189333pt;}
._2a_c00197{width:29.256000pt;}
._1b_c00197{width:30.336000pt;}
._2c_c00197{width:50.066667pt;}
._1f_c00197{width:88.933333pt;}
._10_c00197{width:115.898667pt;}
._1a_c00197{width:134.565333pt;}
._16_c00197{width:166.954667pt;}
._21_c00197{width:210.802667pt;}
._1d_c00197{width:524.746667pt;}
._2d_c00197{width:1434.770667pt;}
.fs4_c00197{font-size:42.666667pt;}
.fs3_c00197{font-size:58.666667pt;}
.fs0_c00197{font-size:61.333333pt;}
.fs2_c00197{font-size:66.666667pt;}
.fs1_c00197{font-size:69.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y1c_c00197{bottom:2.760000pt;}
.y1b_c00197{bottom:6.425217pt;}
.y1a_c00197{bottom:66.506667pt;}
.y19_c00197{bottom:87.840000pt;}
.y18_c00197{bottom:111.306667pt;}
.y17_c00197{bottom:155.306667pt;}
.y16_c00197{bottom:200.640000pt;}
.y15_c00197{bottom:222.506667pt;}
.y14_c00197{bottom:244.773333pt;}
.y13_c00197{bottom:266.906667pt;}
.y12_c00197{bottom:288.906667pt;}
.y11_c00197{bottom:309.840000pt;}
.y10_c00197{bottom:332.106667pt;}
.yf_c00197{bottom:353.706667pt;}
.ye_c00197{bottom:376.106667pt;}
.yd_c00197{bottom:397.173333pt;}
.yc_c00197{bottom:419.706667pt;}
.yb_c00197{bottom:442.106667pt;}
.ya_c00197{bottom:463.706667pt;}
.y9_c00197{bottom:485.706667pt;}
.y8_c00197{bottom:507.040000pt;}
.y7_c00197{bottom:551.440000pt;}
.y6_c00197{bottom:594.906667pt;}
.y5_c00197{bottom:616.773333pt;}
.y4_c00197{bottom:638.906667pt;}
.y3_c00197{bottom:660.640000pt;}
.y2_c00197{bottom:682.506667pt;}
.y1_c00197{bottom:704.906667pt;}
.h5_c00197{height:11.733399pt;}
.h6_c00197{height:38.937500pt;}
.h3_c00197{height:71.785156pt;}
.h2_c00197{height:77.654948pt;}
.h4_c00197{height:84.407552pt;}
.h1_c00197{height:750.666667pt;}
.h0_c00197{height:750.933333pt;}
.w2_c00197{width:93.222667pt;}
.w1_c00197{width:504.666667pt;}
.w0_c00197{width:504.733333pt;}
.x0_c00197{left:0.000000pt;}
.xa_c00197{left:36.933333pt;}
.x9_c00197{left:50.000000pt;}
.x6_c00197{left:67.200000pt;}
.xe_c00197{left:89.733333pt;}
.x7_c00197{left:90.800000pt;}
.xc_c00197{left:91.733333pt;}
.x3_c00197{left:92.800000pt;}
.x8_c00197{left:94.800000pt;}
.x4_c00197{left:96.400000pt;}
.x2_c00197{left:97.466667pt;}
.xb_c00197{left:116.133333pt;}
.xd_c00197{left:131.066667pt;}
.xf_c00197{left:209.534871pt;}
.x1_c00197{left:234.266667pt;}
.x5_c00197{left:238.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_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_df1f260d7c107e3b643af835.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_7a8956bcd7aa56f4d8759308.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_f32f28da0e5471beaf6fb8dc.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;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_c00198;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00198{font-family:ff4_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:ff5_c00198;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;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_c00198;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00198{font-family:ff6_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;}
.ls3_c00198{letter-spacing:0.000000px;}
.ls4_c00198{letter-spacing:3.000000px;}
.ls2_c00198{letter-spacing:4.236000px;}
.ls0_c00198{letter-spacing:4.800000px;}
.ls6_c00198{letter-spacing:6.000000px;}
.ls7_c00198{letter-spacing:9.000000px;}
.ls1_c00198{letter-spacing:21.171000px;}
.ls5_c00198{letter-spacing:27.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:-46.818000px;}
.ws4_c00198{word-spacing:-28.521000px;}
.ws3_c00198{word-spacing:-22.629000px;}
.ws2_c00198{word-spacing:-19.014000px;}
.ws0_c00198{word-spacing:-16.629000px;}
.ws5_c00198{word-spacing:0.000000px;}
._25_c00198{margin-left:-19.389000px;}
._6_c00198{margin-left:-15.387000px;}
._26_c00198{margin-left:-14.352000px;}
._5_c00198{margin-left:-9.546000px;}
._2_c00198{margin-left:-8.073000px;}
._3_c00198{margin-left:-5.934000px;}
._1_c00198{margin-left:-4.554000px;}
._4_c00198{margin-left:-3.519000px;}
._15_c00198{margin-left:-2.484000px;}
._f_c00198{margin-left:-1.449000px;}
._d_c00198{width:1.173000px;}
._0_c00198{width:2.208000px;}
._c_c00198{width:3.519000px;}
._a_c00198{width:5.106000px;}
._b_c00198{width:6.900000px;}
._12_c00198{width:8.349000px;}
._14_c00198{width:9.927000px;}
._13_c00198{width:11.316000px;}
._19_c00198{width:12.627000px;}
._17_c00198{width:14.145000px;}
._e_c00198{width:16.113000px;}
._1b_c00198{width:17.319000px;}
._11_c00198{width:18.387000px;}
._1e_c00198{width:20.778000px;}
._8_c00198{width:22.287000px;}
._1a_c00198{width:23.391000px;}
._16_c00198{width:25.392000px;}
._1d_c00198{width:27.228000px;}
._24_c00198{width:33.741000px;}
._20_c00198{width:35.937000px;}
._10_c00198{width:38.673000px;}
._22_c00198{width:40.728000px;}
._18_c00198{width:44.505000px;}
._2a_c00198{width:58.821000px;}
._28_c00198{width:67.068000px;}
._7_c00198{width:74.313000px;}
._2d_c00198{width:78.141000px;}
._1c_c00198{width:99.345000px;}
._2c_c00198{width:101.466000px;}
._21_c00198{width:129.981000px;}
._2b_c00198{width:165.738000px;}
._1f_c00198{width:170.970000px;}
._2e_c00198{width:195.063000px;}
._29_c00198{width:296.700000px;}
._9_c00198{width:332.994000px;}
._23_c00198{width:1114.695000px;}
._27_c00198{width:1203.573000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(128,128,128);}
.fc0_c00198{color:rgb(0,0,0);}
.fs4_c00198{font-size:24.000000px;}
.fs5_c00198{font-size:48.000000px;}
.fs1_c00198{font-size:54.000000px;}
.fs2_c00198{font-size:66.000000px;}
.fs0_c00198{font-size:69.000000px;}
.fs3_c00198{font-size:81.000000px;}
.y0_c00198{bottom:0.000000px;}
.y20_c00198{bottom:3.105000px;}
.y1f_c00198{bottom:7.228369px;}
.y1e_c00198{bottom:57.420000px;}
.y1d_c00198{bottom:84.270000px;}
.y1c_c00198{bottom:109.320000px;}
.y1b_c00198{bottom:134.370000px;}
.y1a_c00198{bottom:161.670000px;}
.y19_c00198{bottom:183.870000px;}
.y18_c00198{bottom:208.170000px;}
.y17_c00198{bottom:232.770000px;}
.y16_c00198{bottom:258.120000px;}
.y15_c00198{bottom:296.220000px;}
.y14_c00198{bottom:305.070000px;}
.y13_c00198{bottom:354.720000px;}
.y12_c00198{bottom:371.520000px;}
.y11_c00198{bottom:388.770000px;}
.y10_c00198{bottom:406.320000px;}
.yf_c00198{bottom:423.870000px;}
.ye_c00198{bottom:440.670000px;}
.yd_c00198{bottom:458.670000px;}
.yc_c00198{bottom:493.020000px;}
.yb_c00198{bottom:528.870000px;}
.ya_c00198{bottom:553.170000px;}
.y9_c00198{bottom:578.070000px;}
.y8_c00198{bottom:602.670000px;}
.y7_c00198{bottom:628.020000px;}
.y6_c00198{bottom:651.720000px;}
.y5_c00198{bottom:676.620000px;}
.y4_c00198{bottom:700.920000px;}
.y3_c00198{bottom:725.670000px;}
.y2_c00198{bottom:751.170000px;}
.y1_c00198{bottom:775.620000px;}
.h7_c00198{height:13.200073px;}
.h8_c00198{height:43.804688px;}
.h3_c00198{height:58.536000px;}
.h4_c00198{height:68.370117px;}
.h5_c00198{height:80.758301px;}
.h2_c00198{height:87.361816px;}
.h6_c00198{height:102.555176px;}
.h0_c00198{height:821.850000px;}
.h1_c00198{height:822.000000px;}
.w1_c00198{width:104.875500px;}
.w0_c00198{width:553.500000px;}
.x0_c00198{left:0.000000px;}
.x3_c00198{left:21.300000px;}
.x6_c00198{left:22.350000px;}
.xa_c00198{left:23.400000px;}
.xb_c00198{left:25.950000px;}
.x5_c00198{left:40.950000px;}
.x2_c00198{left:43.200000px;}
.x9_c00198{left:47.700000px;}
.x7_c00198{left:55.350000px;}
.xc_c00198{left:95.550000px;}
.x4_c00198{left:171.750000px;}
.x1_c00198{left:177.150000px;}
.x8_c00198{left:209.250000px;}
.xe_c00198{left:228.564240px;}
.xd_c00198{left:420.900000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls3_c00198{letter-spacing:0.000000pt;}
.ls4_c00198{letter-spacing:2.666667pt;}
.ls2_c00198{letter-spacing:3.765333pt;}
.ls0_c00198{letter-spacing:4.266667pt;}
.ls6_c00198{letter-spacing:5.333333pt;}
.ls7_c00198{letter-spacing:8.000000pt;}
.ls1_c00198{letter-spacing:18.818667pt;}
.ls5_c00198{letter-spacing:24.000000pt;}
.ws1_c00198{word-spacing:-41.616000pt;}
.ws4_c00198{word-spacing:-25.352000pt;}
.ws3_c00198{word-spacing:-20.114667pt;}
.ws2_c00198{word-spacing:-16.901333pt;}
.ws0_c00198{word-spacing:-14.781333pt;}
.ws5_c00198{word-spacing:0.000000pt;}
._25_c00198{margin-left:-17.234667pt;}
._6_c00198{margin-left:-13.677333pt;}
._26_c00198{margin-left:-12.757333pt;}
._5_c00198{margin-left:-8.485333pt;}
._2_c00198{margin-left:-7.176000pt;}
._3_c00198{margin-left:-5.274667pt;}
._1_c00198{margin-left:-4.048000pt;}
._4_c00198{margin-left:-3.128000pt;}
._15_c00198{margin-left:-2.208000pt;}
._f_c00198{margin-left:-1.288000pt;}
._d_c00198{width:1.042667pt;}
._0_c00198{width:1.962667pt;}
._c_c00198{width:3.128000pt;}
._a_c00198{width:4.538667pt;}
._b_c00198{width:6.133333pt;}
._12_c00198{width:7.421333pt;}
._14_c00198{width:8.824000pt;}
._13_c00198{width:10.058667pt;}
._19_c00198{width:11.224000pt;}
._17_c00198{width:12.573333pt;}
._e_c00198{width:14.322667pt;}
._1b_c00198{width:15.394667pt;}
._11_c00198{width:16.344000pt;}
._1e_c00198{width:18.469333pt;}
._8_c00198{width:19.810667pt;}
._1a_c00198{width:20.792000pt;}
._16_c00198{width:22.570667pt;}
._1d_c00198{width:24.202667pt;}
._24_c00198{width:29.992000pt;}
._20_c00198{width:31.944000pt;}
._10_c00198{width:34.376000pt;}
._22_c00198{width:36.202667pt;}
._18_c00198{width:39.560000pt;}
._2a_c00198{width:52.285333pt;}
._28_c00198{width:59.616000pt;}
._7_c00198{width:66.056000pt;}
._2d_c00198{width:69.458667pt;}
._1c_c00198{width:88.306667pt;}
._2c_c00198{width:90.192000pt;}
._21_c00198{width:115.538667pt;}
._2b_c00198{width:147.322667pt;}
._1f_c00198{width:151.973333pt;}
._2e_c00198{width:173.389333pt;}
._29_c00198{width:263.733333pt;}
._9_c00198{width:295.994667pt;}
._23_c00198{width:990.840000pt;}
._27_c00198{width:1069.842667pt;}
.fs4_c00198{font-size:21.333333pt;}
.fs5_c00198{font-size:42.666667pt;}
.fs1_c00198{font-size:48.000000pt;}
.fs2_c00198{font-size:58.666667pt;}
.fs0_c00198{font-size:61.333333pt;}
.fs3_c00198{font-size:72.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y20_c00198{bottom:2.760000pt;}
.y1f_c00198{bottom:6.425217pt;}
.y1e_c00198{bottom:51.040000pt;}
.y1d_c00198{bottom:74.906667pt;}
.y1c_c00198{bottom:97.173333pt;}
.y1b_c00198{bottom:119.440000pt;}
.y1a_c00198{bottom:143.706667pt;}
.y19_c00198{bottom:163.440000pt;}
.y18_c00198{bottom:185.040000pt;}
.y17_c00198{bottom:206.906667pt;}
.y16_c00198{bottom:229.440000pt;}
.y15_c00198{bottom:263.306667pt;}
.y14_c00198{bottom:271.173333pt;}
.y13_c00198{bottom:315.306667pt;}
.y12_c00198{bottom:330.240000pt;}
.y11_c00198{bottom:345.573333pt;}
.y10_c00198{bottom:361.173333pt;}
.yf_c00198{bottom:376.773333pt;}
.ye_c00198{bottom:391.706667pt;}
.yd_c00198{bottom:407.706667pt;}
.yc_c00198{bottom:438.240000pt;}
.yb_c00198{bottom:470.106667pt;}
.ya_c00198{bottom:491.706667pt;}
.y9_c00198{bottom:513.840000pt;}
.y8_c00198{bottom:535.706667pt;}
.y7_c00198{bottom:558.240000pt;}
.y6_c00198{bottom:579.306667pt;}
.y5_c00198{bottom:601.440000pt;}
.y4_c00198{bottom:623.040000pt;}
.y3_c00198{bottom:645.040000pt;}
.y2_c00198{bottom:667.706667pt;}
.y1_c00198{bottom:689.440000pt;}
.h7_c00198{height:11.733399pt;}
.h8_c00198{height:38.937500pt;}
.h3_c00198{height:52.032000pt;}
.h4_c00198{height:60.773438pt;}
.h5_c00198{height:71.785156pt;}
.h2_c00198{height:77.654948pt;}
.h6_c00198{height:91.160156pt;}
.h0_c00198{height:730.533333pt;}
.h1_c00198{height:730.666667pt;}
.w1_c00198{width:93.222667pt;}
.w0_c00198{width:492.000000pt;}
.x0_c00198{left:0.000000pt;}
.x3_c00198{left:18.933333pt;}
.x6_c00198{left:19.866667pt;}
.xa_c00198{left:20.800000pt;}
.xb_c00198{left:23.066667pt;}
.x5_c00198{left:36.400000pt;}
.x2_c00198{left:38.400000pt;}
.x9_c00198{left:42.400000pt;}
.x7_c00198{left:49.200000pt;}
.xc_c00198{left:84.933333pt;}
.x4_c00198{left:152.666667pt;}
.x1_c00198{left:157.466667pt;}
.x8_c00198{left:186.000000pt;}
.xe_c00198{left:203.168213pt;}
.xd_c00198{left:374.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_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_ea38f7ee1d7eecdf1d59d753.woff2')format("woff");}.ff1_c00199{font-family:ff1_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:ff2_c00199;src:url('chunks/assets/font_75ba70db413959cf8893e62c.woff2')format("woff");}.ff2_c00199{font-family:ff2_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:ff3_c00199;src:url('chunks/assets/font_f8850b83d8732ca91fcae8c9.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_6084b5908cef75ca7c5a9736.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00199{font-family:ff5_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);}
.v1_c00199{vertical-align:-94.200000px;}
.v0_c00199{vertical-align:0.000000px;}
.ls7_c00199{letter-spacing:0.000000px;}
.ls5_c00199{letter-spacing:0.184800px;}
.ls4_c00199{letter-spacing:3.000000px;}
.ls0_c00199{letter-spacing:3.600000px;}
.ls2_c00199{letter-spacing:4.800000px;}
.ls1_c00199{letter-spacing:9.600000px;}
.ls3_c00199{letter-spacing:13.677000px;}
.ls6_c00199{letter-spacing:13.890000px;}
.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;}
}
.ws2_c00199{word-spacing:-19.629000px;}
.ws1_c00199{word-spacing:-19.521000px;}
.ws0_c00199{word-spacing:-16.629000px;}
.ws3_c00199{word-spacing:-15.616800px;}
.ws5_c00199{word-spacing:0.000000px;}
.ws4_c00199{word-spacing:1298.745000px;}
._3_c00199{margin-left:-34.176000px;}
._f_c00199{margin-left:-14.775000px;}
._26_c00199{margin-left:-11.256000px;}
._2_c00199{margin-left:-10.005000px;}
._1e_c00199{margin-left:-8.946000px;}
._15_c00199{margin-left:-7.788000px;}
._4_c00199{margin-left:-6.624000px;}
._11_c00199{margin-left:-4.554000px;}
._a_c00199{margin-left:-3.381000px;}
._1_c00199{margin-left:-2.139000px;}
._9_c00199{margin-left:-1.035000px;}
._b_c00199{width:1.932000px;}
._6_c00199{width:3.243000px;}
._d_c00199{width:4.494000px;}
._e_c00199{width:5.718000px;}
._8_c00199{width:7.452000px;}
._1d_c00199{width:8.775000px;}
._1b_c00199{width:9.933000px;}
._c_c00199{width:11.178000px;}
._17_c00199{width:12.687000px;}
._0_c00199{width:13.800000px;}
._12_c00199{width:14.904000px;}
._7_c00199{width:16.008000px;}
._13_c00199{width:17.181000px;}
._23_c00199{width:18.267000px;}
._14_c00199{width:20.700000px;}
._19_c00199{width:21.762000px;}
._25_c00199{width:23.118000px;}
._1c_c00199{width:24.357000px;}
._1a_c00199{width:26.055000px;}
._21_c00199{width:28.242000px;}
._10_c00199{width:34.983000px;}
._27_c00199{width:39.075000px;}
._16_c00199{width:40.830000px;}
._1f_c00199{width:43.278000px;}
._24_c00199{width:90.891000px;}
._18_c00199{width:95.973000px;}
._22_c00199{width:98.532000px;}
._20_c00199{width:128.202000px;}
._28_c00199{width:255.270000px;}
._5_c00199{width:359.565000px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(128,128,128);}
.fc0_c00199{color:rgb(0,0,0);}
.fs5_c00199{font-size:48.000000px;}
.fs3_c00199{font-size:64.800000px;}
.fs1_c00199{font-size:66.000000px;}
.fs0_c00199{font-size:69.000000px;}
.fs4_c00199{font-size:72.000000px;}
.fs2_c00199{font-size:81.000000px;}
.y0_c00199{bottom:0.000000px;}
.y1f_c00199{bottom:3.105000px;}
.y1e_c00199{bottom:7.228357px;}
.y1d_c00199{bottom:95.130000px;}
.y1c_c00199{bottom:120.780000px;}
.y1b_c00199{bottom:146.130000px;}
.y1a_c00199{bottom:170.130000px;}
.y19_c00199{bottom:195.180000px;}
.y18_c00199{bottom:220.080000px;}
.y17_c00199{bottom:244.980000px;}
.y16_c00199{bottom:269.730000px;}
.y15_c00199{bottom:294.630000px;}
.y14_c00199{bottom:319.380000px;}
.y13_c00199{bottom:343.530000px;}
.y12_c00199{bottom:367.980000px;}
.y11_c00199{bottom:391.230000px;}
.y10_c00199{bottom:416.880000px;}
.yf_c00199{bottom:442.230000px;}
.ye_c00199{bottom:466.530000px;}
.yd_c00199{bottom:491.430000px;}
.yc_c00199{bottom:516.030000px;}
.yb_c00199{bottom:540.030000px;}
.ya_c00199{bottom:565.380000px;}
.y9_c00199{bottom:589.980000px;}
.y8_c00199{bottom:614.580000px;}
.y7_c00199{bottom:639.180000px;}
.y6_c00199{bottom:663.930000px;}
.y5_c00199{bottom:688.830000px;}
.y4_c00199{bottom:713.430000px;}
.y3_c00199{bottom:738.480000px;}
.y2_c00199{bottom:763.080000px;}
.y1_c00199{bottom:787.830000px;}
.h4_c00199{height:13.200074px;}
.h5_c00199{height:43.804688px;}
.h1_c00199{height:87.361816px;}
.h3_c00199{height:91.160156px;}
.h2_c00199{height:102.555176px;}
.h0_c00199{height:833.250000px;}
.w2_c00199{width:104.875500px;}
.w0_c00199{width:559.425000px;}
.w1_c00199{width:559.500000px;}
.x0_c00199{left:0.000000px;}
.xa_c00199{left:32.850000px;}
.xd_c00199{left:34.200000px;}
.x9_c00199{left:38.250000px;}
.x3_c00199{left:45.600000px;}
.x8_c00199{left:46.950000px;}
.xb_c00199{left:48.000000px;}
.xc_c00199{left:49.350000px;}
.x2_c00199{left:94.050000px;}
.x4_c00199{left:95.550000px;}
.x6_c00199{left:96.750000px;}
.x1_c00199{left:108.000000px;}
.x7_c00199{left:119.850000px;}
.x5_c00199{left:193.650000px;}
.xe_c00199{left:231.526749px;}
@media print{
.v1_c00199{vertical-align:-83.733333pt;}
.v0_c00199{vertical-align:0.000000pt;}
.ls7_c00199{letter-spacing:0.000000pt;}
.ls5_c00199{letter-spacing:0.164267pt;}
.ls4_c00199{letter-spacing:2.666667pt;}
.ls0_c00199{letter-spacing:3.200000pt;}
.ls2_c00199{letter-spacing:4.266667pt;}
.ls1_c00199{letter-spacing:8.533333pt;}
.ls3_c00199{letter-spacing:12.157333pt;}
.ls6_c00199{letter-spacing:12.346667pt;}
.ws2_c00199{word-spacing:-17.448000pt;}
.ws1_c00199{word-spacing:-17.352000pt;}
.ws0_c00199{word-spacing:-14.781333pt;}
.ws3_c00199{word-spacing:-13.881600pt;}
.ws5_c00199{word-spacing:0.000000pt;}
.ws4_c00199{word-spacing:1154.440000pt;}
._3_c00199{margin-left:-30.378667pt;}
._f_c00199{margin-left:-13.133333pt;}
._26_c00199{margin-left:-10.005333pt;}
._2_c00199{margin-left:-8.893333pt;}
._1e_c00199{margin-left:-7.952000pt;}
._15_c00199{margin-left:-6.922667pt;}
._4_c00199{margin-left:-5.888000pt;}
._11_c00199{margin-left:-4.048000pt;}
._a_c00199{margin-left:-3.005333pt;}
._1_c00199{margin-left:-1.901333pt;}
._9_c00199{margin-left:-0.920000pt;}
._b_c00199{width:1.717333pt;}
._6_c00199{width:2.882667pt;}
._d_c00199{width:3.994667pt;}
._e_c00199{width:5.082667pt;}
._8_c00199{width:6.624000pt;}
._1d_c00199{width:7.800000pt;}
._1b_c00199{width:8.829333pt;}
._c_c00199{width:9.936000pt;}
._17_c00199{width:11.277333pt;}
._0_c00199{width:12.266667pt;}
._12_c00199{width:13.248000pt;}
._7_c00199{width:14.229333pt;}
._13_c00199{width:15.272000pt;}
._23_c00199{width:16.237333pt;}
._14_c00199{width:18.400000pt;}
._19_c00199{width:19.344000pt;}
._25_c00199{width:20.549333pt;}
._1c_c00199{width:21.650667pt;}
._1a_c00199{width:23.160000pt;}
._21_c00199{width:25.104000pt;}
._10_c00199{width:31.096000pt;}
._27_c00199{width:34.733333pt;}
._16_c00199{width:36.293333pt;}
._1f_c00199{width:38.469333pt;}
._24_c00199{width:80.792000pt;}
._18_c00199{width:85.309333pt;}
._22_c00199{width:87.584000pt;}
._20_c00199{width:113.957333pt;}
._28_c00199{width:226.906667pt;}
._5_c00199{width:319.613333pt;}
.fs5_c00199{font-size:42.666667pt;}
.fs3_c00199{font-size:57.600000pt;}
.fs1_c00199{font-size:58.666667pt;}
.fs0_c00199{font-size:61.333333pt;}
.fs4_c00199{font-size:64.000000pt;}
.fs2_c00199{font-size:72.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y1f_c00199{bottom:2.760000pt;}
.y1e_c00199{bottom:6.425206pt;}
.y1d_c00199{bottom:84.560000pt;}
.y1c_c00199{bottom:107.360000pt;}
.y1b_c00199{bottom:129.893333pt;}
.y1a_c00199{bottom:151.226667pt;}
.y19_c00199{bottom:173.493333pt;}
.y18_c00199{bottom:195.626667pt;}
.y17_c00199{bottom:217.760000pt;}
.y16_c00199{bottom:239.760000pt;}
.y15_c00199{bottom:261.893333pt;}
.y14_c00199{bottom:283.893333pt;}
.y13_c00199{bottom:305.360000pt;}
.y12_c00199{bottom:327.093333pt;}
.y11_c00199{bottom:347.760000pt;}
.y10_c00199{bottom:370.560000pt;}
.yf_c00199{bottom:393.093333pt;}
.ye_c00199{bottom:414.693333pt;}
.yd_c00199{bottom:436.826667pt;}
.yc_c00199{bottom:458.693333pt;}
.yb_c00199{bottom:480.026667pt;}
.ya_c00199{bottom:502.560000pt;}
.y9_c00199{bottom:524.426667pt;}
.y8_c00199{bottom:546.293333pt;}
.y7_c00199{bottom:568.160000pt;}
.y6_c00199{bottom:590.160000pt;}
.y5_c00199{bottom:612.293333pt;}
.y4_c00199{bottom:634.160000pt;}
.y3_c00199{bottom:656.426667pt;}
.y2_c00199{bottom:678.293333pt;}
.y1_c00199{bottom:700.293333pt;}
.h4_c00199{height:11.733399pt;}
.h5_c00199{height:38.937500pt;}
.h1_c00199{height:77.654948pt;}
.h3_c00199{height:81.031250pt;}
.h2_c00199{height:91.160156pt;}
.h0_c00199{height:740.666667pt;}
.w2_c00199{width:93.222667pt;}
.w0_c00199{width:497.266667pt;}
.w1_c00199{width:497.333333pt;}
.x0_c00199{left:0.000000pt;}
.xa_c00199{left:29.200000pt;}
.xd_c00199{left:30.400000pt;}
.x9_c00199{left:34.000000pt;}
.x3_c00199{left:40.533333pt;}
.x8_c00199{left:41.733333pt;}
.xb_c00199{left:42.666667pt;}
.xc_c00199{left:43.866667pt;}
.x2_c00199{left:83.600000pt;}
.x4_c00199{left:84.933333pt;}
.x6_c00199{left:86.000000pt;}
.x1_c00199{left:96.000000pt;}
.x7_c00199{left:106.533333pt;}
.x5_c00199{left:172.133333pt;}
.xe_c00199{left:205.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_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_288ad9e27eac07dba5316764.woff2')format("woff");}.ff1_c00200{font-family:ff1_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:ff2_c00200;src:url('chunks/assets/font_528cc3d4bb94328da3758dbd.woff2')format("woff");}.ff2_c00200{font-family:ff2_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:ff3_c00200;src:url('chunks/assets/font_53ae2cb24135a0102299a50e.woff2')format("woff");}.ff3_c00200{font-family:ff3_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:ff4_c00200;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff4_c00200{font-family:ff4_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:ff5_c00200;src:url('chunks/assets/font_4ed3924b1ecde58442a75d81.woff2')format("woff");}.ff5_c00200{font-family:ff5_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:ff6_c00200;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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);}
.v1_c00200{vertical-align:-100.800000px;}
.v0_c00200{vertical-align:0.000000px;}
.ls7_c00200{letter-spacing:0.000000px;}
.ls6_c00200{letter-spacing:3.000000px;}
.ls4_c00200{letter-spacing:6.000000px;}
.ls5_c00200{letter-spacing:18.543000px;}
.ls1_c00200{letter-spacing:19.800000px;}
.ls2_c00200{letter-spacing:21.000000px;}
.ls3_c00200{letter-spacing:28.914000px;}
.ls0_c00200{letter-spacing:30.600000px;}
.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;}
}
.ws2_c00200{word-spacing:-44.022000px;}
.ws0_c00200{word-spacing:-22.629000px;}
.ws4_c00200{word-spacing:-22.098000px;}
.ws5_c00200{word-spacing:-19.521000px;}
.ws1_c00200{word-spacing:-16.629000px;}
.ws3_c00200{word-spacing:-15.906000px;}
.ws6_c00200{word-spacing:0.000000px;}
._2a_c00200{margin-left:-31.236000px;}
._28_c00200{margin-left:-28.797000px;}
._2c_c00200{margin-left:-24.795000px;}
._2d_c00200{margin-left:-23.628000px;}
._24_c00200{margin-left:-22.269000px;}
._27_c00200{margin-left:-20.697000px;}
._1a_c00200{margin-left:-18.699000px;}
._12_c00200{margin-left:-16.662000px;}
._14_c00200{margin-left:-15.282000px;}
._29_c00200{margin-left:-14.271000px;}
._13_c00200{margin-left:-12.696000px;}
._1b_c00200{margin-left:-11.040000px;}
._e_c00200{margin-left:-9.561000px;}
._1f_c00200{margin-left:-8.511000px;}
._f_c00200{margin-left:-7.452000px;}
._11_c00200{margin-left:-6.141000px;}
._10_c00200{margin-left:-4.209000px;}
._3_c00200{margin-left:-2.898000px;}
._2_c00200{margin-left:-1.311000px;}
._1_c00200{width:1.380000px;}
._0_c00200{width:3.036000px;}
._6_c00200{width:4.761000px;}
._4_c00200{width:5.865000px;}
._b_c00200{width:7.002000px;}
._5_c00200{width:8.004000px;}
._7_c00200{width:9.867000px;}
._19_c00200{width:11.289000px;}
._d_c00200{width:13.248000px;}
._9_c00200{width:14.559000px;}
._16_c00200{width:15.699000px;}
._17_c00200{width:16.974000px;}
._21_c00200{width:20.091000px;}
._20_c00200{width:21.222000px;}
._1e_c00200{width:22.320000px;}
._26_c00200{width:23.910000px;}
._8_c00200{width:30.864000px;}
._c_c00200{width:34.182000px;}
._25_c00200{width:36.741000px;}
._1c_c00200{width:40.638000px;}
._2e_c00200{width:46.260000px;}
._a_c00200{width:48.903000px;}
._2b_c00200{width:59.424000px;}
._23_c00200{width:79.419000px;}
._22_c00200{width:83.835000px;}
._15_c00200{width:104.880000px;}
._1d_c00200{width:165.702000px;}
._18_c00200{width:398.547000px;}
.fc2_c00200{color:transparent;}
.fc1_c00200{color:rgb(128,128,128);}
.fc0_c00200{color:rgb(0,0,0);}
.fs4_c00200{font-size:48.000000px;}
.fs1_c00200{font-size:66.000000px;}
.fs0_c00200{font-size:69.000000px;}
.fs3_c00200{font-size:81.000000px;}
.fs2_c00200{font-size:87.000000px;}
.y0_c00200{bottom:0.000000px;}
.y1c_c00200{bottom:3.105000px;}
.y1b_c00200{bottom:7.228371px;}
.y1a_c00200{bottom:97.215000px;}
.y19_c00200{bottom:122.565000px;}
.y18_c00200{bottom:147.165000px;}
.y17_c00200{bottom:171.915000px;}
.y16_c00200{bottom:196.815000px;}
.y15_c00200{bottom:221.115000px;}
.y14_c00200{bottom:246.165000px;}
.y13_c00200{bottom:271.065000px;}
.y12_c00200{bottom:296.115000px;}
.y11_c00200{bottom:320.715000px;}
.y10_c00200{bottom:345.615000px;}
.yf_c00200{bottom:369.615000px;}
.ye_c00200{bottom:394.665000px;}
.yd_c00200{bottom:419.865000px;}
.yc_c00200{bottom:443.865000px;}
.yb_c00200{bottom:468.765000px;}
.ya_c00200{bottom:493.215000px;}
.y9_c00200{bottom:516.765000px;}
.y8_c00200{bottom:541.365000px;}
.y7_c00200{bottom:589.965000px;}
.y6_c00200{bottom:615.315000px;}
.y5_c00200{bottom:641.265000px;}
.y4_c00200{bottom:665.265000px;}
.y3_c00200{bottom:690.315000px;}
.y2_c00200{bottom:739.515000px;}
.y1_c00200{bottom:788.715000px;}
.h6_c00200{height:13.200074px;}
.h7_c00200{height:43.804688px;}
.h3_c00200{height:80.758301px;}
.h2_c00200{height:87.361816px;}
.h5_c00200{height:102.555176px;}
.h4_c00200{height:110.151855px;}
.h1_c00200{height:831.000000px;}
.h0_c00200{height:831.075000px;}
.w1_c00200{width:104.875500px;}
.w0_c00200{width:560.250000px;}
.x0_c00200{left:0.000000px;}
.x5_c00200{left:23.400000px;}
.x4_c00200{left:27.000000px;}
.x6_c00200{left:28.050000px;}
.x7_c00200{left:29.100000px;}
.x3_c00200{left:51.300000px;}
.x8_c00200{left:53.100000px;}
.x2_c00200{left:62.100000px;}
.x1_c00200{left:187.200000px;}
.x9_c00200{left:231.939240px;}
@media print{
.v1_c00200{vertical-align:-89.600000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.ls7_c00200{letter-spacing:0.000000pt;}
.ls6_c00200{letter-spacing:2.666667pt;}
.ls4_c00200{letter-spacing:5.333333pt;}
.ls5_c00200{letter-spacing:16.482667pt;}
.ls1_c00200{letter-spacing:17.600000pt;}
.ls2_c00200{letter-spacing:18.666667pt;}
.ls3_c00200{letter-spacing:25.701333pt;}
.ls0_c00200{letter-spacing:27.200000pt;}
.ws2_c00200{word-spacing:-39.130667pt;}
.ws0_c00200{word-spacing:-20.114667pt;}
.ws4_c00200{word-spacing:-19.642667pt;}
.ws5_c00200{word-spacing:-17.352000pt;}
.ws1_c00200{word-spacing:-14.781333pt;}
.ws3_c00200{word-spacing:-14.138667pt;}
.ws6_c00200{word-spacing:0.000000pt;}
._2a_c00200{margin-left:-27.765333pt;}
._28_c00200{margin-left:-25.597333pt;}
._2c_c00200{margin-left:-22.040000pt;}
._2d_c00200{margin-left:-21.002667pt;}
._24_c00200{margin-left:-19.794667pt;}
._27_c00200{margin-left:-18.397333pt;}
._1a_c00200{margin-left:-16.621333pt;}
._12_c00200{margin-left:-14.810667pt;}
._14_c00200{margin-left:-13.584000pt;}
._29_c00200{margin-left:-12.685333pt;}
._13_c00200{margin-left:-11.285333pt;}
._1b_c00200{margin-left:-9.813333pt;}
._e_c00200{margin-left:-8.498667pt;}
._1f_c00200{margin-left:-7.565333pt;}
._f_c00200{margin-left:-6.624000pt;}
._11_c00200{margin-left:-5.458667pt;}
._10_c00200{margin-left:-3.741333pt;}
._3_c00200{margin-left:-2.576000pt;}
._2_c00200{margin-left:-1.165333pt;}
._1_c00200{width:1.226667pt;}
._0_c00200{width:2.698667pt;}
._6_c00200{width:4.232000pt;}
._4_c00200{width:5.213333pt;}
._b_c00200{width:6.224000pt;}
._5_c00200{width:7.114667pt;}
._7_c00200{width:8.770667pt;}
._19_c00200{width:10.034667pt;}
._d_c00200{width:11.776000pt;}
._9_c00200{width:12.941333pt;}
._16_c00200{width:13.954667pt;}
._17_c00200{width:15.088000pt;}
._21_c00200{width:17.858667pt;}
._20_c00200{width:18.864000pt;}
._1e_c00200{width:19.840000pt;}
._26_c00200{width:21.253333pt;}
._8_c00200{width:27.434667pt;}
._c_c00200{width:30.384000pt;}
._25_c00200{width:32.658667pt;}
._1c_c00200{width:36.122667pt;}
._2e_c00200{width:41.120000pt;}
._a_c00200{width:43.469333pt;}
._2b_c00200{width:52.821333pt;}
._23_c00200{width:70.594667pt;}
._22_c00200{width:74.520000pt;}
._15_c00200{width:93.226667pt;}
._1d_c00200{width:147.290667pt;}
._18_c00200{width:354.264000pt;}
.fs4_c00200{font-size:42.666667pt;}
.fs1_c00200{font-size:58.666667pt;}
.fs0_c00200{font-size:61.333333pt;}
.fs3_c00200{font-size:72.000000pt;}
.fs2_c00200{font-size:77.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y1c_c00200{bottom:2.760000pt;}
.y1b_c00200{bottom:6.425219pt;}
.y1a_c00200{bottom:86.413333pt;}
.y19_c00200{bottom:108.946667pt;}
.y18_c00200{bottom:130.813333pt;}
.y17_c00200{bottom:152.813333pt;}
.y16_c00200{bottom:174.946667pt;}
.y15_c00200{bottom:196.546667pt;}
.y14_c00200{bottom:218.813333pt;}
.y13_c00200{bottom:240.946667pt;}
.y12_c00200{bottom:263.213333pt;}
.y11_c00200{bottom:285.080000pt;}
.y10_c00200{bottom:307.213333pt;}
.yf_c00200{bottom:328.546667pt;}
.ye_c00200{bottom:350.813333pt;}
.yd_c00200{bottom:373.213333pt;}
.yc_c00200{bottom:394.546667pt;}
.yb_c00200{bottom:416.680000pt;}
.ya_c00200{bottom:438.413333pt;}
.y9_c00200{bottom:459.346667pt;}
.y8_c00200{bottom:481.213333pt;}
.y7_c00200{bottom:524.413333pt;}
.y6_c00200{bottom:546.946667pt;}
.y5_c00200{bottom:570.013333pt;}
.y4_c00200{bottom:591.346667pt;}
.y3_c00200{bottom:613.613333pt;}
.y2_c00200{bottom:657.346667pt;}
.y1_c00200{bottom:701.080000pt;}
.h6_c00200{height:11.733399pt;}
.h7_c00200{height:38.937500pt;}
.h3_c00200{height:71.785156pt;}
.h2_c00200{height:77.654948pt;}
.h5_c00200{height:91.160156pt;}
.h4_c00200{height:97.912760pt;}
.h1_c00200{height:738.666667pt;}
.h0_c00200{height:738.733333pt;}
.w1_c00200{width:93.222667pt;}
.w0_c00200{width:498.000000pt;}
.x0_c00200{left:0.000000pt;}
.x5_c00200{left:20.800000pt;}
.x4_c00200{left:24.000000pt;}
.x6_c00200{left:24.933333pt;}
.x7_c00200{left:25.866667pt;}
.x3_c00200{left:45.600000pt;}
.x8_c00200{left:47.200000pt;}
.x2_c00200{left:55.200000pt;}
.x1_c00200{left:166.400000pt;}
.x9_c00200{left:206.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_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_788d488746857f9fc99d80f1.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.568848;font-style:normal;font-weight:normal;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_9147c155f7d70fcf394c1969.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.568848;font-style:normal;font-weight:normal;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_3194895bb49518aeed73679c.woff2')format("woff");}.ff3_c00201{font-family:ff3_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:ff4_c00201;src:url('chunks/assets/font_c97f62a8a992b5103a510a73.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_93a602605d82fe7b19abeb97.woff2')format("woff");}.ff5_c00201{font-family:ff5_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:ff6_c00201;src:url('chunks/assets/font_bebb81841daa00911c2057d3.woff2')format("woff");}.ff6_c00201{font-family:ff6_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:ff7_c00201;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00201{font-family:ff7_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;}
.ls6_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:2.400000px;}
.ls5_c00201{letter-spacing:3.000000px;}
.ls7_c00201{letter-spacing:6.000000px;}
.ls4_c00201{letter-spacing:8.121000px;}
.ls1_c00201{letter-spacing:14.400000px;}
.ls2_c00201{letter-spacing:23.091000px;}
.ls0_c00201{letter-spacing:36.771000px;}
.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;}
}
.ws2_c00201{word-spacing:-44.022000px;}
.ws4_c00201{word-spacing:-22.629000px;}
.ws1_c00201{word-spacing:-19.629000px;}
.ws6_c00201{word-spacing:-17.250000px;}
.ws0_c00201{word-spacing:-16.629000px;}
.ws3_c00201{word-spacing:-13.303200px;}
.ws7_c00201{word-spacing:0.000000px;}
.ws5_c00201{word-spacing:8.349000px;}
._26_c00201{margin-left:-23.892000px;}
._9_c00201{margin-left:-19.320000px;}
._28_c00201{margin-left:-18.102000px;}
._1_c00201{margin-left:-15.042000px;}
._23_c00201{margin-left:-12.861000px;}
._2c_c00201{margin-left:-11.385000px;}
._1f_c00201{margin-left:-10.150200px;}
._0_c00201{margin-left:-8.280000px;}
._1d_c00201{margin-left:-7.278000px;}
._2_c00201{margin-left:-6.072000px;}
._c_c00201{margin-left:-4.209000px;}
._17_c00201{margin-left:-3.207000px;}
._7_c00201{margin-left:-2.139000px;}
._3_c00201{margin-left:-1.020000px;}
._14_c00201{width:1.173000px;}
._b_c00201{width:2.208000px;}
._10_c00201{width:3.312000px;}
._e_c00201{width:5.037000px;}
._1c_c00201{width:6.624000px;}
._f_c00201{width:7.728000px;}
._11_c00201{width:9.315000px;}
._d_c00201{width:10.695000px;}
._13_c00201{width:11.730000px;}
._1a_c00201{width:13.800000px;}
._21_c00201{width:14.802000px;}
._1e_c00201{width:16.041000px;}
._12_c00201{width:17.250000px;}
._3c_c00201{width:18.423000px;}
._16_c00201{width:21.666000px;}
._2e_c00201{width:23.922000px;}
._24_c00201{width:26.688000px;}
._6_c00201{width:29.325000px;}
._8_c00201{width:31.050000px;}
._22_c00201{width:33.624000px;}
._2d_c00201{width:35.113800px;}
._33_c00201{width:39.624000px;}
._20_c00201{width:40.968000px;}
._27_c00201{width:43.056000px;}
._2a_c00201{width:48.162000px;}
._36_c00201{width:52.654200px;}
._15_c00201{width:56.919000px;}
._31_c00201{width:60.180000px;}
._30_c00201{width:62.712000px;}
._34_c00201{width:64.239000px;}
._29_c00201{width:80.185200px;}
._2f_c00201{width:84.108000px;}
._35_c00201{width:87.078000px;}
._18_c00201{width:97.149000px;}
._3b_c00201{width:107.844000px;}
._2b_c00201{width:109.593000px;}
._19_c00201{width:154.629000px;}
._3a_c00201{width:161.322000px;}
._1b_c00201{width:168.813000px;}
._38_c00201{width:173.248800px;}
._37_c00201{width:228.045000px;}
._4_c00201{width:325.125000px;}
._39_c00201{width:371.853000px;}
._25_c00201{width:467.757000px;}
._32_c00201{width:476.658000px;}
._5_c00201{width:574.563000px;}
._a_c00201{width:635.841000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(128,128,128);}
.fc0_c00201{color:rgb(0,0,0);}
.fs6_c00201{font-size:48.000000px;}
.fs1_c00201{font-size:51.000000px;}
.fs3_c00201{font-size:55.200000px;}
.fs4_c00201{font-size:57.000000px;}
.fs5_c00201{font-size:60.000000px;}
.fs2_c00201{font-size:66.000000px;}
.fs0_c00201{font-size:69.000000px;}
.y0_c00201{bottom:0.000000px;}
.y20_c00201{bottom:3.105000px;}
.y1f_c00201{bottom:7.228371px;}
.y1e_c00201{bottom:81.315000px;}
.y1d_c00201{bottom:102.915000px;}
.y1c_c00201{bottom:129.015000px;}
.y1b_c00201{bottom:154.215000px;}
.y1a_c00201{bottom:179.265000px;}
.y19_c00201{bottom:203.865000px;}
.y18_c00201{bottom:227.865000px;}
.y17_c00201{bottom:253.815000px;}
.y16_c00201{bottom:277.215000px;}
.y15_c00201{bottom:302.715000px;}
.y14_c00201{bottom:326.415000px;}
.y13_c00201{bottom:350.415000px;}
.y12_c00201{bottom:375.015000px;}
.y11_c00201{bottom:398.715000px;}
.y10_c00201{bottom:423.015000px;}
.yf_c00201{bottom:449.265000px;}
.ye_c00201{bottom:474.315000px;}
.yd_c00201{bottom:499.515000px;}
.yc_c00201{bottom:548.415000px;}
.yb_c00201{bottom:597.465000px;}
.y1_c00201{bottom:612.015000px;}
.ya_c00201{bottom:622.815000px;}
.y9_c00201{bottom:647.415000px;}
.y8_c00201{bottom:671.715000px;}
.y7_c00201{bottom:696.615000px;}
.y6_c00201{bottom:721.965000px;}
.y5_c00201{bottom:746.265000px;}
.y4_c00201{bottom:771.315000px;}
.y3_c00201{bottom:795.915000px;}
.y2_c00201{bottom:810.015000px;}
.h4_c00201{height:13.200074px;}
.h5_c00201{height:43.804688px;}
.h3_c00201{height:64.571777px;}
.h2_c00201{height:87.361816px;}
.h0_c00201{height:828.375000px;}
.h1_c00201{height:828.750000px;}
.w2_c00201{width:104.875500px;}
.w1_c00201{width:556.500000px;}
.w0_c00201{width:556.725000px;}
.x0_c00201{left:0.000000px;}
.x7_c00201{left:31.350000px;}
.x1_c00201{left:32.700000px;}
.x2_c00201{left:40.050000px;}
.x3_c00201{left:43.800000px;}
.x6_c00201{left:45.900000px;}
.x9_c00201{left:70.800000px;}
.xe_c00201{left:92.400000px;}
.x5_c00201{left:94.050000px;}
.x8_c00201{left:95.550000px;}
.xd_c00201{left:96.750000px;}
.xa_c00201{left:97.800000px;}
.xc_c00201{left:102.600000px;}
.x4_c00201{left:120.150000px;}
.xb_c00201{left:132.600000px;}
.x10_c00201{left:230.176758px;}
.xf_c00201{left:500.550000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls6_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:2.133333pt;}
.ls5_c00201{letter-spacing:2.666667pt;}
.ls7_c00201{letter-spacing:5.333333pt;}
.ls4_c00201{letter-spacing:7.218667pt;}
.ls1_c00201{letter-spacing:12.800000pt;}
.ls2_c00201{letter-spacing:20.525333pt;}
.ls0_c00201{letter-spacing:32.685333pt;}
.ws2_c00201{word-spacing:-39.130667pt;}
.ws4_c00201{word-spacing:-20.114667pt;}
.ws1_c00201{word-spacing:-17.448000pt;}
.ws6_c00201{word-spacing:-15.333333pt;}
.ws0_c00201{word-spacing:-14.781333pt;}
.ws3_c00201{word-spacing:-11.825067pt;}
.ws7_c00201{word-spacing:0.000000pt;}
.ws5_c00201{word-spacing:7.421333pt;}
._26_c00201{margin-left:-21.237333pt;}
._9_c00201{margin-left:-17.173333pt;}
._28_c00201{margin-left:-16.090667pt;}
._1_c00201{margin-left:-13.370667pt;}
._23_c00201{margin-left:-11.432000pt;}
._2c_c00201{margin-left:-10.120000pt;}
._1f_c00201{margin-left:-9.022400pt;}
._0_c00201{margin-left:-7.360000pt;}
._1d_c00201{margin-left:-6.469333pt;}
._2_c00201{margin-left:-5.397333pt;}
._c_c00201{margin-left:-3.741333pt;}
._17_c00201{margin-left:-2.850667pt;}
._7_c00201{margin-left:-1.901333pt;}
._3_c00201{margin-left:-0.906667pt;}
._14_c00201{width:1.042667pt;}
._b_c00201{width:1.962667pt;}
._10_c00201{width:2.944000pt;}
._e_c00201{width:4.477333pt;}
._1c_c00201{width:5.888000pt;}
._f_c00201{width:6.869333pt;}
._11_c00201{width:8.280000pt;}
._d_c00201{width:9.506667pt;}
._13_c00201{width:10.426667pt;}
._1a_c00201{width:12.266667pt;}
._21_c00201{width:13.157333pt;}
._1e_c00201{width:14.258667pt;}
._12_c00201{width:15.333333pt;}
._3c_c00201{width:16.376000pt;}
._16_c00201{width:19.258667pt;}
._2e_c00201{width:21.264000pt;}
._24_c00201{width:23.722667pt;}
._6_c00201{width:26.066667pt;}
._8_c00201{width:27.600000pt;}
._22_c00201{width:29.888000pt;}
._2d_c00201{width:31.212267pt;}
._33_c00201{width:35.221333pt;}
._20_c00201{width:36.416000pt;}
._27_c00201{width:38.272000pt;}
._2a_c00201{width:42.810667pt;}
._36_c00201{width:46.803733pt;}
._15_c00201{width:50.594667pt;}
._31_c00201{width:53.493333pt;}
._30_c00201{width:55.744000pt;}
._34_c00201{width:57.101333pt;}
._29_c00201{width:71.275733pt;}
._2f_c00201{width:74.762667pt;}
._35_c00201{width:77.402667pt;}
._18_c00201{width:86.354667pt;}
._3b_c00201{width:95.861333pt;}
._2b_c00201{width:97.416000pt;}
._19_c00201{width:137.448000pt;}
._3a_c00201{width:143.397333pt;}
._1b_c00201{width:150.056000pt;}
._38_c00201{width:153.998933pt;}
._37_c00201{width:202.706667pt;}
._4_c00201{width:289.000000pt;}
._39_c00201{width:330.536000pt;}
._25_c00201{width:415.784000pt;}
._32_c00201{width:423.696000pt;}
._5_c00201{width:510.722667pt;}
._a_c00201{width:565.192000pt;}
.fs6_c00201{font-size:42.666667pt;}
.fs1_c00201{font-size:45.333333pt;}
.fs3_c00201{font-size:49.066667pt;}
.fs4_c00201{font-size:50.666667pt;}
.fs5_c00201{font-size:53.333333pt;}
.fs2_c00201{font-size:58.666667pt;}
.fs0_c00201{font-size:61.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y20_c00201{bottom:2.760000pt;}
.y1f_c00201{bottom:6.425219pt;}
.y1e_c00201{bottom:72.280000pt;}
.y1d_c00201{bottom:91.480000pt;}
.y1c_c00201{bottom:114.680000pt;}
.y1b_c00201{bottom:137.080000pt;}
.y1a_c00201{bottom:159.346667pt;}
.y19_c00201{bottom:181.213333pt;}
.y18_c00201{bottom:202.546667pt;}
.y17_c00201{bottom:225.613333pt;}
.y16_c00201{bottom:246.413333pt;}
.y15_c00201{bottom:269.080000pt;}
.y14_c00201{bottom:290.146667pt;}
.y13_c00201{bottom:311.480000pt;}
.y12_c00201{bottom:333.346667pt;}
.y11_c00201{bottom:354.413333pt;}
.y10_c00201{bottom:376.013333pt;}
.yf_c00201{bottom:399.346667pt;}
.ye_c00201{bottom:421.613333pt;}
.yd_c00201{bottom:444.013333pt;}
.yc_c00201{bottom:487.480000pt;}
.yb_c00201{bottom:531.080000pt;}
.y1_c00201{bottom:544.013333pt;}
.ya_c00201{bottom:553.613333pt;}
.y9_c00201{bottom:575.480000pt;}
.y8_c00201{bottom:597.080000pt;}
.y7_c00201{bottom:619.213333pt;}
.y6_c00201{bottom:641.746667pt;}
.y5_c00201{bottom:663.346667pt;}
.y4_c00201{bottom:685.613333pt;}
.y3_c00201{bottom:707.480000pt;}
.y2_c00201{bottom:720.013333pt;}
.h4_c00201{height:11.733399pt;}
.h5_c00201{height:38.937500pt;}
.h3_c00201{height:57.397135pt;}
.h2_c00201{height:77.654948pt;}
.h0_c00201{height:736.333333pt;}
.h1_c00201{height:736.666667pt;}
.w2_c00201{width:93.222667pt;}
.w1_c00201{width:494.666667pt;}
.w0_c00201{width:494.866667pt;}
.x0_c00201{left:0.000000pt;}
.x7_c00201{left:27.866667pt;}
.x1_c00201{left:29.066667pt;}
.x2_c00201{left:35.600000pt;}
.x3_c00201{left:38.933333pt;}
.x6_c00201{left:40.800000pt;}
.x9_c00201{left:62.933333pt;}
.xe_c00201{left:82.133333pt;}
.x5_c00201{left:83.600000pt;}
.x8_c00201{left:84.933333pt;}
.xd_c00201{left:86.000000pt;}
.xa_c00201{left:86.933333pt;}
.xc_c00201{left:91.200000pt;}
.x4_c00201{left:106.800000pt;}
.xb_c00201{left:117.866667pt;}
.x10_c00201{left:204.601563pt;}
.xf_c00201{left:444.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_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_9b39d99f8b6f5512d491b0c7.woff2')format("woff");}.ff1_c00202{font-family:ff1_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:ff2_c00202;src:url('chunks/assets/font_75b4d5d5033e18a2f3206110.woff2')format("woff");}.ff2_c00202{font-family:ff2_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:ff3_c00202;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_3f76d65ef0bd865f6c904c7f.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;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_c00202;src:url('chunks/assets/font_7b2258af37fb2d3098b6bf8e.woff2')format("woff");}.ff5_c00202{font-family:ff5_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:ff6_c00202;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00202{font-family:ff6_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;}
.ls5_c00202{letter-spacing:0.000000px;}
.ls4_c00202{letter-spacing:3.000000px;}
.ls6_c00202{letter-spacing:6.000000px;}
.ls0_c00202{letter-spacing:6.600000px;}
.ls2_c00202{letter-spacing:13.800000px;}
.ls1_c00202{letter-spacing:17.325000px;}
.ls3_c00202{letter-spacing:19.200000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00202{word-spacing:-42.000000px;}
.ws0_c00202{word-spacing:-22.629000px;}
.ws2_c00202{word-spacing:0.000000px;}
._13_c00202{margin-left:-22.356000px;}
._26_c00202{margin-left:-18.336000px;}
._1a_c00202{margin-left:-12.765000px;}
._1c_c00202{margin-left:-9.867000px;}
._15_c00202{margin-left:-8.625000px;}
._6_c00202{margin-left:-7.305000px;}
._14_c00202{margin-left:-5.865000px;}
._2_c00202{margin-left:-3.795000px;}
._3_c00202{margin-left:-2.346000px;}
._4_c00202{margin-left:-1.104000px;}
._0_c00202{width:1.518000px;}
._1_c00202{width:3.036000px;}
._8_c00202{width:4.071000px;}
._b_c00202{width:5.382000px;}
._9_c00202{width:6.624000px;}
._16_c00202{width:8.349000px;}
._17_c00202{width:9.591000px;}
._f_c00202{width:11.385000px;}
._a_c00202{width:13.524000px;}
._11_c00202{width:15.387000px;}
._10_c00202{width:16.422000px;}
._c_c00202{width:18.009000px;}
._d_c00202{width:21.873000px;}
._1f_c00202{width:23.460000px;}
._e_c00202{width:25.737000px;}
._23_c00202{width:26.913000px;}
._20_c00202{width:30.672000px;}
._19_c00202{width:34.845000px;}
._18_c00202{width:37.872000px;}
._1e_c00202{width:39.261000px;}
._1d_c00202{width:57.237000px;}
._12_c00202{width:63.384000px;}
._5_c00202{width:71.829000px;}
._22_c00202{width:73.761000px;}
._1b_c00202{width:86.250000px;}
._21_c00202{width:107.769000px;}
._24_c00202{width:115.269000px;}
._28_c00202{width:142.776000px;}
._27_c00202{width:259.041000px;}
._7_c00202{width:404.547000px;}
._25_c00202{width:502.842000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(128,128,128);}
.fc0_c00202{color:rgb(0,0,0);}
.fs5_c00202{font-size:48.000000px;}
.fs3_c00202{font-size:54.000000px;}
.fs2_c00202{font-size:66.000000px;}
.fs0_c00202{font-size:69.000000px;}
.fs4_c00202{font-size:72.000000px;}
.fs1_c00202{font-size:75.000000px;}
.y0_c00202{bottom:0.000000px;}
.y20_c00202{bottom:3.105000px;}
.y1f_c00202{bottom:7.228371px;}
.y1e_c00202{bottom:55.065000px;}
.y1d_c00202{bottom:79.665000px;}
.y1c_c00202{bottom:105.315000px;}
.y1b_c00202{bottom:129.915000px;}
.y1a_c00202{bottom:155.715000px;}
.y19_c00202{bottom:179.865000px;}
.y18_c00202{bottom:206.865000px;}
.y17_c00202{bottom:231.315000px;}
.y16_c00202{bottom:255.165000px;}
.y15_c00202{bottom:279.915000px;}
.y14_c00202{bottom:307.815000px;}
.y13_c00202{bottom:331.515000px;}
.y12_c00202{bottom:356.115000px;}
.y11_c00202{bottom:380.115000px;}
.y10_c00202{bottom:406.065000px;}
.yf_c00202{bottom:430.965000px;}
.ye_c00202{bottom:456.615000px;}
.yd_c00202{bottom:481.365000px;}
.yc_c00202{bottom:505.365000px;}
.yb_c00202{bottom:529.515000px;}
.ya_c00202{bottom:555.165000px;}
.y9_c00202{bottom:579.915000px;}
.y8_c00202{bottom:604.215000px;}
.y7_c00202{bottom:629.415000px;}
.y6_c00202{bottom:654.765000px;}
.y5_c00202{bottom:679.815000px;}
.y4_c00202{bottom:705.165000px;}
.y3_c00202{bottom:730.065000px;}
.y2_c00202{bottom:755.115000px;}
.y1_c00202{bottom:779.715000px;}
.h4_c00202{height:13.200074px;}
.h5_c00202{height:43.804688px;}
.h2_c00202{height:87.361816px;}
.h3_c00202{height:94.958496px;}
.h1_c00202{height:831.000000px;}
.h0_c00202{height:831.075000px;}
.w1_c00202{width:104.875500px;}
.w0_c00202{width:560.250000px;}
.x0_c00202{left:0.000000px;}
.x6_c00202{left:20.250000px;}
.x5_c00202{left:21.600000px;}
.x4_c00202{left:22.650000px;}
.x3_c00202{left:23.850000px;}
.x2_c00202{left:25.200000px;}
.x7_c00202{left:56.700000px;}
.x1_c00202{left:191.400000px;}
.x9_c00202{left:231.939240px;}
.x8_c00202{left:259.200000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls5_c00202{letter-spacing:0.000000pt;}
.ls4_c00202{letter-spacing:2.666667pt;}
.ls6_c00202{letter-spacing:5.333333pt;}
.ls0_c00202{letter-spacing:5.866667pt;}
.ls2_c00202{letter-spacing:12.266667pt;}
.ls1_c00202{letter-spacing:15.400000pt;}
.ls3_c00202{letter-spacing:17.066667pt;}
.ws1_c00202{word-spacing:-37.333333pt;}
.ws0_c00202{word-spacing:-20.114667pt;}
.ws2_c00202{word-spacing:0.000000pt;}
._13_c00202{margin-left:-19.872000pt;}
._26_c00202{margin-left:-16.298667pt;}
._1a_c00202{margin-left:-11.346667pt;}
._1c_c00202{margin-left:-8.770667pt;}
._15_c00202{margin-left:-7.666667pt;}
._6_c00202{margin-left:-6.493333pt;}
._14_c00202{margin-left:-5.213333pt;}
._2_c00202{margin-left:-3.373333pt;}
._3_c00202{margin-left:-2.085333pt;}
._4_c00202{margin-left:-0.981333pt;}
._0_c00202{width:1.349333pt;}
._1_c00202{width:2.698667pt;}
._8_c00202{width:3.618667pt;}
._b_c00202{width:4.784000pt;}
._9_c00202{width:5.888000pt;}
._16_c00202{width:7.421333pt;}
._17_c00202{width:8.525333pt;}
._f_c00202{width:10.120000pt;}
._a_c00202{width:12.021333pt;}
._11_c00202{width:13.677333pt;}
._10_c00202{width:14.597333pt;}
._c_c00202{width:16.008000pt;}
._d_c00202{width:19.442667pt;}
._1f_c00202{width:20.853333pt;}
._e_c00202{width:22.877333pt;}
._23_c00202{width:23.922667pt;}
._20_c00202{width:27.264000pt;}
._19_c00202{width:30.973333pt;}
._18_c00202{width:33.664000pt;}
._1e_c00202{width:34.898667pt;}
._1d_c00202{width:50.877333pt;}
._12_c00202{width:56.341333pt;}
._5_c00202{width:63.848000pt;}
._22_c00202{width:65.565333pt;}
._1b_c00202{width:76.666667pt;}
._21_c00202{width:95.794667pt;}
._24_c00202{width:102.461333pt;}
._28_c00202{width:126.912000pt;}
._27_c00202{width:230.258667pt;}
._7_c00202{width:359.597333pt;}
._25_c00202{width:446.970667pt;}
.fs5_c00202{font-size:42.666667pt;}
.fs3_c00202{font-size:48.000000pt;}
.fs2_c00202{font-size:58.666667pt;}
.fs0_c00202{font-size:61.333333pt;}
.fs4_c00202{font-size:64.000000pt;}
.fs1_c00202{font-size:66.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y20_c00202{bottom:2.760000pt;}
.y1f_c00202{bottom:6.425219pt;}
.y1e_c00202{bottom:48.946667pt;}
.y1d_c00202{bottom:70.813333pt;}
.y1c_c00202{bottom:93.613333pt;}
.y1b_c00202{bottom:115.480000pt;}
.y1a_c00202{bottom:138.413333pt;}
.y19_c00202{bottom:159.880000pt;}
.y18_c00202{bottom:183.880000pt;}
.y17_c00202{bottom:205.613333pt;}
.y16_c00202{bottom:226.813333pt;}
.y15_c00202{bottom:248.813333pt;}
.y14_c00202{bottom:273.613333pt;}
.y13_c00202{bottom:294.680000pt;}
.y12_c00202{bottom:316.546667pt;}
.y11_c00202{bottom:337.880000pt;}
.y10_c00202{bottom:360.946667pt;}
.yf_c00202{bottom:383.080000pt;}
.ye_c00202{bottom:405.880000pt;}
.yd_c00202{bottom:427.880000pt;}
.yc_c00202{bottom:449.213333pt;}
.yb_c00202{bottom:470.680000pt;}
.ya_c00202{bottom:493.480000pt;}
.y9_c00202{bottom:515.480000pt;}
.y8_c00202{bottom:537.080000pt;}
.y7_c00202{bottom:559.480000pt;}
.y6_c00202{bottom:582.013333pt;}
.y5_c00202{bottom:604.280000pt;}
.y4_c00202{bottom:626.813333pt;}
.y3_c00202{bottom:648.946667pt;}
.y2_c00202{bottom:671.213333pt;}
.y1_c00202{bottom:693.080000pt;}
.h4_c00202{height:11.733399pt;}
.h5_c00202{height:38.937500pt;}
.h2_c00202{height:77.654948pt;}
.h3_c00202{height:84.407552pt;}
.h1_c00202{height:738.666667pt;}
.h0_c00202{height:738.733333pt;}
.w1_c00202{width:93.222667pt;}
.w0_c00202{width:498.000000pt;}
.x0_c00202{left:0.000000pt;}
.x6_c00202{left:18.000000pt;}
.x5_c00202{left:19.200000pt;}
.x4_c00202{left:20.133333pt;}
.x3_c00202{left:21.200000pt;}
.x2_c00202{left:22.400000pt;}
.x7_c00202{left:50.400000pt;}
.x1_c00202{left:170.133333pt;}
.x9_c00202{left:206.168213pt;}
.x8_c00202{left:230.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b4c9fad5b826875523b6c49.woff2')format("woff");}.ff1_c00203{font-family:ff1_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:ff2_c00203;src:url('chunks/assets/font_bb253993814f965d6237d67b.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.311035;font-style:normal;font-weight:normal;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_abc9613ddbc690821e42503b.woff2')format("woff");}.ff3_c00203{font-family:ff3_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:ff4_c00203;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00203{font-family:ff4_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);}
.m1_c00203{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00203{vertical-align:-100.200000px;}
.v1_c00203{vertical-align:-97.800000px;}
.v0_c00203{vertical-align:0.000000px;}
.lsa_c00203{letter-spacing:0.000000px;}
.ls2_c00203{letter-spacing:0.600000px;}
.ls4_c00203{letter-spacing:2.571000px;}
.lsb_c00203{letter-spacing:3.000000px;}
.ls1_c00203{letter-spacing:3.771000px;}
.ls9_c00203{letter-spacing:4.371000px;}
.lsd_c00203{letter-spacing:6.000000px;}
.ls8_c00203{letter-spacing:7.800000px;}
.ls0_c00203{letter-spacing:13.530000px;}
.lse_c00203{letter-spacing:15.000000px;}
.lsc_c00203{letter-spacing:18.000000px;}
.ls7_c00203{letter-spacing:33.171000px;}
.ls5_c00203{letter-spacing:79.371000px;}
.ls6_c00203{letter-spacing:83.571000px;}
.ls3_c00203{letter-spacing:85.971000px;}
.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;}
}
.ws1_c00203{word-spacing:-34.629000px;}
.ws6_c00203{word-spacing:-31.629000px;}
.ws0_c00203{word-spacing:-27.852000px;}
.ws2_c00203{word-spacing:-22.629000px;}
.ws3_c00203{word-spacing:-19.629000px;}
.ws4_c00203{word-spacing:-16.629000px;}
.ws5_c00203{word-spacing:-0.792000px;}
.ws8_c00203{word-spacing:0.000000px;}
.ws7_c00203{word-spacing:2.901000px;}
._43_c00203{margin-left:-45.585000px;}
._3e_c00203{margin-left:-44.370000px;}
._2b_c00203{margin-left:-28.980000px;}
._3c_c00203{margin-left:-27.939000px;}
._0_c00203{margin-left:-26.850000px;}
._23_c00203{margin-left:-23.667000px;}
._25_c00203{margin-left:-20.616000px;}
._33_c00203{margin-left:-19.359000px;}
._26_c00203{margin-left:-18.285000px;}
._31_c00203{margin-left:-16.974000px;}
._22_c00203{margin-left:-14.574000px;}
._36_c00203{margin-left:-13.317000px;}
._16_c00203{margin-left:-12.006000px;}
._27_c00203{margin-left:-10.458000px;}
._5_c00203{margin-left:-8.970000px;}
._19_c00203{margin-left:-7.692000px;}
._13_c00203{margin-left:-6.141000px;}
._d_c00203{margin-left:-4.899000px;}
._4_c00203{margin-left:-3.105000px;}
._2_c00203{margin-left:-1.656000px;}
._c_c00203{width:1.449000px;}
._b_c00203{width:2.484000px;}
._3_c00203{width:4.140000px;}
._a_c00203{width:5.589000px;}
._7_c00203{width:6.900000px;}
._8_c00203{width:8.211000px;}
._9_c00203{width:9.453000px;}
._46_c00203{width:10.488000px;}
._12_c00203{width:11.661000px;}
._11_c00203{width:13.179000px;}
._1f_c00203{width:14.766000px;}
._14_c00203{width:15.768000px;}
._f_c00203{width:17.319000px;}
._10_c00203{width:18.492000px;}
._39_c00203{width:19.734000px;}
._e_c00203{width:20.838000px;}
._2e_c00203{width:22.302000px;}
._2d_c00203{width:23.322000px;}
._38_c00203{width:24.426000px;}
._3a_c00203{width:26.634000px;}
._34_c00203{width:29.877000px;}
._1a_c00203{width:30.981000px;}
._1c_c00203{width:32.499000px;}
._17_c00203{width:35.547000px;}
._44_c00203{width:37.125000px;}
._21_c00203{width:39.009000px;}
._28_c00203{width:45.468000px;}
._15_c00203{width:48.438000px;}
._2c_c00203{width:55.062000px;}
._45_c00203{width:58.650000px;}
._40_c00203{width:64.707000px;}
._3b_c00203{width:76.137000px;}
._20_c00203{width:81.765000px;}
._42_c00203{width:95.844000px;}
._29_c00203{width:101.373000px;}
._41_c00203{width:102.525000px;}
._1e_c00203{width:107.361000px;}
._32_c00203{width:112.125000px;}
._2a_c00203{width:117.522000px;}
._30_c00203{width:128.388000px;}
._18_c00203{width:129.432000px;}
._37_c00203{width:223.872000px;}
._1b_c00203{width:258.273000px;}
._1d_c00203{width:263.112000px;}
._24_c00203{width:268.404000px;}
._3d_c00203{width:325.440000px;}
._1_c00203{width:374.592000px;}
._6_c00203{width:397.374000px;}
._2f_c00203{width:417.510000px;}
._35_c00203{width:772.587000px;}
._3f_c00203{width:775.755000px;}
.fc2_c00203{color:transparent;}
.fc1_c00203{color:rgb(128,128,128);}
.fc0_c00203{color:rgb(0,0,0);}
.fs2_c00203{font-size:45.000000px;}
.fs3_c00203{font-size:48.000000px;}
.fs1_c00203{font-size:66.000000px;}
.fs0_c00203{font-size:69.000000px;}
.y0_c00203{bottom:0.000000px;}
.y1c_c00203{bottom:3.105000px;}
.y1b_c00203{bottom:7.228371px;}
.y1a_c00203{bottom:82.815000px;}
.y19_c00203{bottom:110.115000px;}
.y18_c00203{bottom:134.715000px;}
.y17_c00203{bottom:160.665000px;}
.y16_c00203{bottom:185.415000px;}
.y15_c00203{bottom:212.415000px;}
.y14_c00203{bottom:235.965000px;}
.y13_c00203{bottom:286.665000px;}
.y12_c00203{bottom:312.315000px;}
.y11_c00203{bottom:337.215000px;}
.y10_c00203{bottom:362.115000px;}
.yf_c00203{bottom:387.765000px;}
.ye_c00203{bottom:412.065000px;}
.yd_c00203{bottom:437.415000px;}
.yc_c00203{bottom:462.465000px;}
.yb_c00203{bottom:486.465000px;}
.ya_c00203{bottom:512.115000px;}
.y9_c00203{bottom:537.315000px;}
.y8_c00203{bottom:562.365000px;}
.y7_c00203{bottom:586.965000px;}
.y6_c00203{bottom:612.015000px;}
.y5_c00203{bottom:637.215000px;}
.y4_c00203{bottom:662.265000px;}
.y3_c00203{bottom:687.465000px;}
.y2_c00203{bottom:738.165000px;}
.y1_c00203{bottom:787.515000px;}
.h5_c00203{height:13.200074px;}
.h6_c00203{height:43.804688px;}
.h4_c00203{height:56.975098px;}
.h3_c00203{height:80.758301px;}
.h2_c00203{height:87.361816px;}
.h0_c00203{height:839.175000px;}
.h1_c00203{height:839.250000px;}
.w2_c00203{width:104.875500px;}
.w0_c00203{width:563.775000px;}
.w1_c00203{width:564.000000px;}
.x0_c00203{left:0.000000px;}
.x7_c00203{left:32.400000px;}
.x6_c00203{left:49.950000px;}
.xb_c00203{left:96.300000px;}
.x4_c00203{left:99.900000px;}
.x9_c00203{left:103.050000px;}
.x5_c00203{left:108.300000px;}
.x1_c00203{left:114.750000px;}
.xc_c00203{left:119.550000px;}
.xa_c00203{left:122.250000px;}
.x3_c00203{left:124.500000px;}
.x8_c00203{left:128.250000px;}
.x2_c00203{left:138.300000px;}
.xd_c00203{left:233.701767px;}
@media print{
.v2_c00203{vertical-align:-89.066667pt;}
.v1_c00203{vertical-align:-86.933333pt;}
.v0_c00203{vertical-align:0.000000pt;}
.lsa_c00203{letter-spacing:0.000000pt;}
.ls2_c00203{letter-spacing:0.533333pt;}
.ls4_c00203{letter-spacing:2.285333pt;}
.lsb_c00203{letter-spacing:2.666667pt;}
.ls1_c00203{letter-spacing:3.352000pt;}
.ls9_c00203{letter-spacing:3.885333pt;}
.lsd_c00203{letter-spacing:5.333333pt;}
.ls8_c00203{letter-spacing:6.933333pt;}
.ls0_c00203{letter-spacing:12.026667pt;}
.lse_c00203{letter-spacing:13.333333pt;}
.lsc_c00203{letter-spacing:16.000000pt;}
.ls7_c00203{letter-spacing:29.485333pt;}
.ls5_c00203{letter-spacing:70.552000pt;}
.ls6_c00203{letter-spacing:74.285333pt;}
.ls3_c00203{letter-spacing:76.418667pt;}
.ws1_c00203{word-spacing:-30.781333pt;}
.ws6_c00203{word-spacing:-28.114667pt;}
.ws0_c00203{word-spacing:-24.757333pt;}
.ws2_c00203{word-spacing:-20.114667pt;}
.ws3_c00203{word-spacing:-17.448000pt;}
.ws4_c00203{word-spacing:-14.781333pt;}
.ws5_c00203{word-spacing:-0.704000pt;}
.ws8_c00203{word-spacing:0.000000pt;}
.ws7_c00203{word-spacing:2.578667pt;}
._43_c00203{margin-left:-40.520000pt;}
._3e_c00203{margin-left:-39.440000pt;}
._2b_c00203{margin-left:-25.760000pt;}
._3c_c00203{margin-left:-24.834667pt;}
._0_c00203{margin-left:-23.866667pt;}
._23_c00203{margin-left:-21.037333pt;}
._25_c00203{margin-left:-18.325333pt;}
._33_c00203{margin-left:-17.208000pt;}
._26_c00203{margin-left:-16.253333pt;}
._31_c00203{margin-left:-15.088000pt;}
._22_c00203{margin-left:-12.954667pt;}
._36_c00203{margin-left:-11.837333pt;}
._16_c00203{margin-left:-10.672000pt;}
._27_c00203{margin-left:-9.296000pt;}
._5_c00203{margin-left:-7.973333pt;}
._19_c00203{margin-left:-6.837333pt;}
._13_c00203{margin-left:-5.458667pt;}
._d_c00203{margin-left:-4.354667pt;}
._4_c00203{margin-left:-2.760000pt;}
._2_c00203{margin-left:-1.472000pt;}
._c_c00203{width:1.288000pt;}
._b_c00203{width:2.208000pt;}
._3_c00203{width:3.680000pt;}
._a_c00203{width:4.968000pt;}
._7_c00203{width:6.133333pt;}
._8_c00203{width:7.298667pt;}
._9_c00203{width:8.402667pt;}
._46_c00203{width:9.322667pt;}
._12_c00203{width:10.365333pt;}
._11_c00203{width:11.714667pt;}
._1f_c00203{width:13.125333pt;}
._14_c00203{width:14.016000pt;}
._f_c00203{width:15.394667pt;}
._10_c00203{width:16.437333pt;}
._39_c00203{width:17.541333pt;}
._e_c00203{width:18.522667pt;}
._2e_c00203{width:19.824000pt;}
._2d_c00203{width:20.730667pt;}
._38_c00203{width:21.712000pt;}
._3a_c00203{width:23.674667pt;}
._34_c00203{width:26.557333pt;}
._1a_c00203{width:27.538667pt;}
._1c_c00203{width:28.888000pt;}
._17_c00203{width:31.597333pt;}
._44_c00203{width:33.000000pt;}
._21_c00203{width:34.674667pt;}
._28_c00203{width:40.416000pt;}
._15_c00203{width:43.056000pt;}
._2c_c00203{width:48.944000pt;}
._45_c00203{width:52.133333pt;}
._40_c00203{width:57.517333pt;}
._3b_c00203{width:67.677333pt;}
._20_c00203{width:72.680000pt;}
._42_c00203{width:85.194667pt;}
._29_c00203{width:90.109333pt;}
._41_c00203{width:91.133333pt;}
._1e_c00203{width:95.432000pt;}
._32_c00203{width:99.666667pt;}
._2a_c00203{width:104.464000pt;}
._30_c00203{width:114.122667pt;}
._18_c00203{width:115.050667pt;}
._37_c00203{width:198.997333pt;}
._1b_c00203{width:229.576000pt;}
._1d_c00203{width:233.877333pt;}
._24_c00203{width:238.581333pt;}
._3d_c00203{width:289.280000pt;}
._1_c00203{width:332.970667pt;}
._6_c00203{width:353.221333pt;}
._2f_c00203{width:371.120000pt;}
._35_c00203{width:686.744000pt;}
._3f_c00203{width:689.560000pt;}
.fs2_c00203{font-size:40.000000pt;}
.fs3_c00203{font-size:42.666667pt;}
.fs1_c00203{font-size:58.666667pt;}
.fs0_c00203{font-size:61.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y1c_c00203{bottom:2.760000pt;}
.y1b_c00203{bottom:6.425219pt;}
.y1a_c00203{bottom:73.613333pt;}
.y19_c00203{bottom:97.880000pt;}
.y18_c00203{bottom:119.746667pt;}
.y17_c00203{bottom:142.813333pt;}
.y16_c00203{bottom:164.813333pt;}
.y15_c00203{bottom:188.813333pt;}
.y14_c00203{bottom:209.746667pt;}
.y13_c00203{bottom:254.813333pt;}
.y12_c00203{bottom:277.613333pt;}
.y11_c00203{bottom:299.746667pt;}
.y10_c00203{bottom:321.880000pt;}
.yf_c00203{bottom:344.680000pt;}
.ye_c00203{bottom:366.280000pt;}
.yd_c00203{bottom:388.813333pt;}
.yc_c00203{bottom:411.080000pt;}
.yb_c00203{bottom:432.413333pt;}
.ya_c00203{bottom:455.213333pt;}
.y9_c00203{bottom:477.613333pt;}
.y8_c00203{bottom:499.880000pt;}
.y7_c00203{bottom:521.746667pt;}
.y6_c00203{bottom:544.013333pt;}
.y5_c00203{bottom:566.413333pt;}
.y4_c00203{bottom:588.680000pt;}
.y3_c00203{bottom:611.080000pt;}
.y2_c00203{bottom:656.146667pt;}
.y1_c00203{bottom:700.013333pt;}
.h5_c00203{height:11.733399pt;}
.h6_c00203{height:38.937500pt;}
.h4_c00203{height:50.644531pt;}
.h3_c00203{height:71.785156pt;}
.h2_c00203{height:77.654948pt;}
.h0_c00203{height:745.933333pt;}
.h1_c00203{height:746.000000pt;}
.w2_c00203{width:93.222667pt;}
.w0_c00203{width:501.133333pt;}
.w1_c00203{width:501.333333pt;}
.x0_c00203{left:0.000000pt;}
.x7_c00203{left:28.800000pt;}
.x6_c00203{left:44.400000pt;}
.xb_c00203{left:85.600000pt;}
.x4_c00203{left:88.800000pt;}
.x9_c00203{left:91.600000pt;}
.x5_c00203{left:96.266667pt;}
.x1_c00203{left:102.000000pt;}
.xc_c00203{left:106.266667pt;}
.xa_c00203{left:108.666667pt;}
.x3_c00203{left:110.666667pt;}
.x8_c00203{left:114.000000pt;}
.x2_c00203{left:122.933333pt;}
.xd_c00203{left:207.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_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_ff13032ec9134ca90a81b0c4.woff2')format("woff");}.ff1_c00204{font-family:ff1_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:ff2_c00204;src:url('chunks/assets/font_7fcfffd61e2a0fd0391182a9.woff2')format("woff");}.ff2_c00204{font-family:ff2_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:ff3_c00204;src:url('chunks/assets/font_220851c887567fcd56da1fd3.woff2')format("woff");}.ff3_c00204{font-family:ff3_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:ff4_c00204;src:url('chunks/assets/font_ed6588d8015188c7938c67a5.woff2')format("woff");}.ff4_c00204{font-family:ff4_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:ff5_c00204;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00204{font-family:ff5_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);}
.m1_c00204{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_c00204{vertical-align:0.000000px;}
.ls5_c00204{letter-spacing:0.000000px;}
.ls6_c00204{letter-spacing:3.000000px;}
.ls1_c00204{letter-spacing:3.600000px;}
.ls0_c00204{letter-spacing:6.000000px;}
.ls4_c00204{letter-spacing:13.125000px;}
.ls3_c00204{letter-spacing:13.725000px;}
.ls2_c00204{letter-spacing:14.325000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-16.629000px;}
.ws0_c00204{word-spacing:-1.104000px;}
.ws2_c00204{word-spacing:0.000000px;}
._22_c00204{margin-left:-25.308000px;}
._37_c00204{margin-left:-20.097000px;}
._31_c00204{margin-left:-15.222000px;}
._2f_c00204{margin-left:-13.506000px;}
._1a_c00204{margin-left:-12.351000px;}
._1d_c00204{margin-left:-10.626000px;}
._1b_c00204{margin-left:-9.039000px;}
._28_c00204{margin-left:-7.866000px;}
._4_c00204{margin-left:-6.486000px;}
._5_c00204{margin-left:-5.175000px;}
._1_c00204{margin-left:-3.105000px;}
._2_c00204{margin-left:-1.173000px;}
._0_c00204{width:1.794000px;}
._9_c00204{width:3.579000px;}
._7_c00204{width:4.950000px;}
._a_c00204{width:6.357000px;}
._b_c00204{width:7.401000px;}
._34_c00204{width:8.505000px;}
._8_c00204{width:9.600000px;}
._c_c00204{width:10.617000px;}
._6_c00204{width:12.225000px;}
._2d_c00204{width:13.593000px;}
._e_c00204{width:15.675000px;}
._12_c00204{width:16.725000px;}
._32_c00204{width:18.066000px;}
._21_c00204{width:20.688000px;}
._2c_c00204{width:21.867000px;}
._3a_c00204{width:23.013000px;}
._2e_c00204{width:24.150000px;}
._29_c00204{width:25.323000px;}
._33_c00204{width:26.367000px;}
._18_c00204{width:28.221000px;}
._15_c00204{width:29.325000px;}
._16_c00204{width:34.074000px;}
._17_c00204{width:35.328000px;}
._2a_c00204{width:36.501000px;}
._24_c00204{width:37.680000px;}
._39_c00204{width:39.069000px;}
._26_c00204{width:40.359000px;}
._30_c00204{width:53.640000px;}
._14_c00204{width:56.799000px;}
._10_c00204{width:58.725000px;}
._1e_c00204{width:61.824000px;}
._f_c00204{width:62.925000px;}
._13_c00204{width:67.425000px;}
._d_c00204{width:81.573000px;}
._1c_c00204{width:83.007000px;}
._20_c00204{width:86.649000px;}
._3b_c00204{width:93.261000px;}
._19_c00204{width:96.186000px;}
._38_c00204{width:108.807000px;}
._35_c00204{width:118.023000px;}
._23_c00204{width:147.729000px;}
._36_c00204{width:209.235000px;}
._27_c00204{width:227.796000px;}
._25_c00204{width:271.056000px;}
._1f_c00204{width:285.315000px;}
._11_c00204{width:439.725000px;}
._3_c00204{width:505.971000px;}
._3c_c00204{width:563.631000px;}
._2b_c00204{width:574.659000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(128,128,128);}
.fc0_c00204{color:rgb(0,0,0);}
.fs5_c00204{font-size:48.000000px;}
.fs4_c00204{font-size:54.000000px;}
.fs2_c00204{font-size:60.000000px;}
.fs3_c00204{font-size:66.000000px;}
.fs0_c00204{font-size:69.000000px;}
.fs1_c00204{font-size:75.000000px;}
.y0_c00204{bottom:0.000000px;}
.y20_c00204{bottom:3.105000px;}
.y1f_c00204{bottom:7.228371px;}
.y1e_c00204{bottom:57.465000px;}
.y1d_c00204{bottom:82.815000px;}
.y1c_c00204{bottom:107.415000px;}
.y1b_c00204{bottom:133.065000px;}
.y1a_c00204{bottom:156.615000px;}
.y19_c00204{bottom:181.965000px;}
.y18_c00204{bottom:207.315000px;}
.y17_c00204{bottom:231.615000px;}
.y16_c00204{bottom:258.165000px;}
.y15_c00204{bottom:282.615000px;}
.y14_c00204{bottom:307.815000px;}
.y13_c00204{bottom:333.165000px;}
.y12_c00204{bottom:357.765000px;}
.y11_c00204{bottom:382.815000px;}
.y10_c00204{bottom:407.715000px;}
.yf_c00204{bottom:432.465000px;}
.ye_c00204{bottom:457.665000px;}
.yd_c00204{bottom:482.265000px;}
.yc_c00204{bottom:505.965000px;}
.yb_c00204{bottom:530.865000px;}
.ya_c00204{bottom:555.315000px;}
.y9_c00204{bottom:580.815000px;}
.y8_c00204{bottom:605.565000px;}
.y7_c00204{bottom:630.465000px;}
.y6_c00204{bottom:652.365000px;}
.y5_c00204{bottom:667.215000px;}
.y4_c00204{bottom:691.515000px;}
.y3_c00204{bottom:730.065000px;}
.y2_c00204{bottom:755.415000px;}
.y1_c00204{bottom:780.765000px;}
.h4_c00204{height:13.200074px;}
.h5_c00204{height:43.804688px;}
.h2_c00204{height:87.361816px;}
.h3_c00204{height:94.958496px;}
.h1_c00204{height:831.000000px;}
.h0_c00204{height:831.075000px;}
.w1_c00204{width:104.875500px;}
.w0_c00204{width:560.250000px;}
.x0_c00204{left:0.000000px;}
.x6_c00204{left:24.300000px;}
.x2_c00204{left:25.350000px;}
.x5_c00204{left:26.700000px;}
.x7_c00204{left:28.050000px;}
.x9_c00204{left:30.000000px;}
.x4_c00204{left:87.150000px;}
.x3_c00204{left:91.650000px;}
.x8_c00204{left:99.300000px;}
.x1_c00204{left:190.350000px;}
.xb_c00204{left:231.939240px;}
.xa_c00204{left:259.950000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls5_c00204{letter-spacing:0.000000pt;}
.ls6_c00204{letter-spacing:2.666667pt;}
.ls1_c00204{letter-spacing:3.200000pt;}
.ls0_c00204{letter-spacing:5.333333pt;}
.ls4_c00204{letter-spacing:11.666667pt;}
.ls3_c00204{letter-spacing:12.200000pt;}
.ls2_c00204{letter-spacing:12.733333pt;}
.ws1_c00204{word-spacing:-14.781333pt;}
.ws0_c00204{word-spacing:-0.981333pt;}
.ws2_c00204{word-spacing:0.000000pt;}
._22_c00204{margin-left:-22.496000pt;}
._37_c00204{margin-left:-17.864000pt;}
._31_c00204{margin-left:-13.530667pt;}
._2f_c00204{margin-left:-12.005333pt;}
._1a_c00204{margin-left:-10.978667pt;}
._1d_c00204{margin-left:-9.445333pt;}
._1b_c00204{margin-left:-8.034667pt;}
._28_c00204{margin-left:-6.992000pt;}
._4_c00204{margin-left:-5.765333pt;}
._5_c00204{margin-left:-4.600000pt;}
._1_c00204{margin-left:-2.760000pt;}
._2_c00204{margin-left:-1.042667pt;}
._0_c00204{width:1.594667pt;}
._9_c00204{width:3.181333pt;}
._7_c00204{width:4.400000pt;}
._a_c00204{width:5.650667pt;}
._b_c00204{width:6.578667pt;}
._34_c00204{width:7.560000pt;}
._8_c00204{width:8.533333pt;}
._c_c00204{width:9.437333pt;}
._6_c00204{width:10.866667pt;}
._2d_c00204{width:12.082667pt;}
._e_c00204{width:13.933333pt;}
._12_c00204{width:14.866667pt;}
._32_c00204{width:16.058667pt;}
._21_c00204{width:18.389333pt;}
._2c_c00204{width:19.437333pt;}
._3a_c00204{width:20.456000pt;}
._2e_c00204{width:21.466667pt;}
._29_c00204{width:22.509333pt;}
._33_c00204{width:23.437333pt;}
._18_c00204{width:25.085333pt;}
._15_c00204{width:26.066667pt;}
._16_c00204{width:30.288000pt;}
._17_c00204{width:31.402667pt;}
._2a_c00204{width:32.445333pt;}
._24_c00204{width:33.493333pt;}
._39_c00204{width:34.728000pt;}
._26_c00204{width:35.874667pt;}
._30_c00204{width:47.680000pt;}
._14_c00204{width:50.488000pt;}
._10_c00204{width:52.200000pt;}
._1e_c00204{width:54.954667pt;}
._f_c00204{width:55.933333pt;}
._13_c00204{width:59.933333pt;}
._d_c00204{width:72.509333pt;}
._1c_c00204{width:73.784000pt;}
._20_c00204{width:77.021333pt;}
._3b_c00204{width:82.898667pt;}
._19_c00204{width:85.498667pt;}
._38_c00204{width:96.717333pt;}
._35_c00204{width:104.909333pt;}
._23_c00204{width:131.314667pt;}
._36_c00204{width:185.986667pt;}
._27_c00204{width:202.485333pt;}
._25_c00204{width:240.938667pt;}
._1f_c00204{width:253.613333pt;}
._11_c00204{width:390.866667pt;}
._3_c00204{width:449.752000pt;}
._3c_c00204{width:501.005333pt;}
._2b_c00204{width:510.808000pt;}
.fs5_c00204{font-size:42.666667pt;}
.fs4_c00204{font-size:48.000000pt;}
.fs2_c00204{font-size:53.333333pt;}
.fs3_c00204{font-size:58.666667pt;}
.fs0_c00204{font-size:61.333333pt;}
.fs1_c00204{font-size:66.666667pt;}
.y0_c00204{bottom:0.000000pt;}
.y20_c00204{bottom:2.760000pt;}
.y1f_c00204{bottom:6.425219pt;}
.y1e_c00204{bottom:51.080000pt;}
.y1d_c00204{bottom:73.613333pt;}
.y1c_c00204{bottom:95.480000pt;}
.y1b_c00204{bottom:118.280000pt;}
.y1a_c00204{bottom:139.213333pt;}
.y19_c00204{bottom:161.746667pt;}
.y18_c00204{bottom:184.280000pt;}
.y17_c00204{bottom:205.880000pt;}
.y16_c00204{bottom:229.480000pt;}
.y15_c00204{bottom:251.213333pt;}
.y14_c00204{bottom:273.613333pt;}
.y13_c00204{bottom:296.146667pt;}
.y12_c00204{bottom:318.013333pt;}
.y11_c00204{bottom:340.280000pt;}
.y10_c00204{bottom:362.413333pt;}
.yf_c00204{bottom:384.413333pt;}
.ye_c00204{bottom:406.813333pt;}
.yd_c00204{bottom:428.680000pt;}
.yc_c00204{bottom:449.746667pt;}
.yb_c00204{bottom:471.880000pt;}
.ya_c00204{bottom:493.613333pt;}
.y9_c00204{bottom:516.280000pt;}
.y8_c00204{bottom:538.280000pt;}
.y7_c00204{bottom:560.413333pt;}
.y6_c00204{bottom:579.880000pt;}
.y5_c00204{bottom:593.080000pt;}
.y4_c00204{bottom:614.680000pt;}
.y3_c00204{bottom:648.946667pt;}
.y2_c00204{bottom:671.480000pt;}
.y1_c00204{bottom:694.013333pt;}
.h4_c00204{height:11.733399pt;}
.h5_c00204{height:38.937500pt;}
.h2_c00204{height:77.654948pt;}
.h3_c00204{height:84.407552pt;}
.h1_c00204{height:738.666667pt;}
.h0_c00204{height:738.733333pt;}
.w1_c00204{width:93.222667pt;}
.w0_c00204{width:498.000000pt;}
.x0_c00204{left:0.000000pt;}
.x6_c00204{left:21.600000pt;}
.x2_c00204{left:22.533333pt;}
.x5_c00204{left:23.733333pt;}
.x7_c00204{left:24.933333pt;}
.x9_c00204{left:26.666667pt;}
.x4_c00204{left:77.466667pt;}
.x3_c00204{left:81.466667pt;}
.x8_c00204{left:88.266667pt;}
.x1_c00204{left:169.200000pt;}
.xb_c00204{left:206.168213pt;}
.xa_c00204{left:231.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_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_bed418b50d5387cf2ec993d1.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;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_c00205;src:url('chunks/assets/font_8f68f7160f63b632c693a5ad.woff2')format("woff");}.ff2_c00205{font-family:ff2_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:ff3_c00205;src:url('chunks/assets/font_2ff0ba11d8b6a396f782616a.woff2')format("woff");}.ff3_c00205{font-family:ff3_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:ff4_c00205;src:url('chunks/assets/font_7def7eb5cc728f1d0166499c.woff2')format("woff");}.ff4_c00205{font-family:ff4_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:ff5_c00205;src:url('chunks/assets/font_e9bc943255cce484a90cd05d.woff2')format("woff");}.ff5_c00205{font-family:ff5_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:ff6_c00205;src:url('chunks/assets/font_23fbefff15845faf64f0f385.woff2')format("woff");}.ff6_c00205{font-family:ff6_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:ff7_c00205;src:url('chunks/assets/font_5dd3ff6f2f834b301b2bee83.woff2')format("woff");}.ff7_c00205{font-family:ff7_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:ff8_c00205;src:url('chunks/assets/font_ee92cdf6b652975ea7574c23.woff2')format("woff");}.ff8_c00205{font-family:ff8_c00205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00205;src:url('chunks/assets/font_88a28e763bbf8d486584e76d.woff2')format("woff");}.ff9_c00205{font-family:ff9_c00205;line-height:1.437000;font-style:normal;font-weight: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_c00205;src:url('chunks/assets/font_a3fa8c2e7f93caa74a6f8d22.woff2')format("woff");}.ffa_c00205{font-family:ffa_c00205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00205;src:url('chunks/assets/font_d9b0d8312d6bfe9c3f9e9421.woff2')format("woff");}.ffb_c00205{font-family:ffb_c00205;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:ffc_c00205;src:url('chunks/assets/font_4b2d9edaf5dc15db159de356.woff2')format("woff");}.ffc_c00205{font-family:ffc_c00205;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_c00205;src:url('chunks/assets/font_01a0c086a8906d3e9ed1b5ed.woff2')format("woff");}.ffd_c00205{font-family:ffd_c00205;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:ffe_c00205;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffe_c00205{font-family:ffe_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;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(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);}
.m2_c00205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls9_c00205{letter-spacing:-6.000000px;}
.lsc_c00205{letter-spacing:-3.000000px;}
.ls6_c00205{letter-spacing:0.000000px;}
.ls1_c00205{letter-spacing:2.463000px;}
.lsb_c00205{letter-spacing:3.000000px;}
.ls3_c00205{letter-spacing:6.000000px;}
.ls8_c00205{letter-spacing:9.000000px;}
.ls4_c00205{letter-spacing:9.900000px;}
.ls0_c00205{letter-spacing:10.020000px;}
.lsd_c00205{letter-spacing:12.000000px;}
.ls2_c00205{letter-spacing:15.000000px;}
.lsa_c00205{letter-spacing:18.000000px;}
.ls7_c00205{letter-spacing:21.000000px;}
.ls5_c00205{letter-spacing:338.592000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-60.120000px;}
.ws3_c00205{word-spacing:-39.120000px;}
.ws9_c00205{word-spacing:-36.000000px;}
.ws5_c00205{word-spacing:-32.250000px;}
.ws8_c00205{word-spacing:-31.668000px;}
.ws7_c00205{word-spacing:-30.342000px;}
.wsd_c00205{word-spacing:-28.629000px;}
.ws1_c00205{word-spacing:-27.600000px;}
.wsb_c00205{word-spacing:-24.000000px;}
.wsf_c00205{word-spacing:-23.859000px;}
.ws2_c00205{word-spacing:-22.737000px;}
.wse_c00205{word-spacing:-22.629000px;}
.ws10_c00205{word-spacing:-20.136000px;}
.ws6_c00205{word-spacing:-16.629000px;}
.wsa_c00205{word-spacing:-0.711000px;}
.wsc_c00205{word-spacing:-0.060000px;}
.ws11_c00205{word-spacing:0.000000px;}
.ws4_c00205{word-spacing:0.969000px;}
._47_c00205{margin-left:-41.187000px;}
._d_c00205{margin-left:-33.852000px;}
._10_c00205{margin-left:-30.492000px;}
._19_c00205{margin-left:-28.500000px;}
._1d_c00205{margin-left:-24.114000px;}
._1c_c00205{margin-left:-21.825000px;}
._17_c00205{margin-left:-19.620000px;}
._0_c00205{margin-left:-18.090000px;}
._44_c00205{margin-left:-16.215000px;}
._5_c00205{margin-left:-15.108000px;}
._28_c00205{margin-left:-13.965000px;}
._7_c00205{margin-left:-12.852000px;}
._a_c00205{margin-left:-11.640000px;}
._3b_c00205{margin-left:-10.374000px;}
._4_c00205{margin-left:-8.856000px;}
._9_c00205{margin-left:-7.056000px;}
._24_c00205{margin-left:-5.928000px;}
._2_c00205{margin-left:-4.644000px;}
._16_c00205{margin-left:-2.880000px;}
._3_c00205{margin-left:-1.566000px;}
._22_c00205{width:1.425000px;}
._21_c00205{width:3.144000px;}
._f_c00205{width:4.836000px;}
._37_c00205{width:5.877000px;}
._11_c00205{width:6.888000px;}
._15_c00205{width:8.304000px;}
._13_c00205{width:9.996000px;}
._2d_c00205{width:11.058000px;}
._32_c00205{width:12.729000px;}
._14_c00205{width:13.812000px;}
._20_c00205{width:15.225000px;}
._2c_c00205{width:16.947000px;}
._33_c00205{width:18.579000px;}
._e_c00205{width:20.484000px;}
._30_c00205{width:21.888000px;}
._18_c00205{width:23.292000px;}
._35_c00205{width:25.527000px;}
._38_c00205{width:26.772000px;}
._27_c00205{width:28.914000px;}
._36_c00205{width:30.477000px;}
._1_c00205{width:32.400000px;}
._8_c00205{width:37.800000px;}
._c_c00205{width:41.772000px;}
._6_c00205{width:43.512000px;}
._4c_c00205{width:46.416000px;}
._2f_c00205{width:48.276000px;}
._29_c00205{width:49.362000px;}
._49_c00205{width:50.892000px;}
._39_c00205{width:54.579000px;}
._41_c00205{width:60.039000px;}
._40_c00205{width:67.362000px;}
._1e_c00205{width:71.013000px;}
._2a_c00205{width:73.473000px;}
._4e_c00205{width:75.573000px;}
._1f_c00205{width:80.328000px;}
._4f_c00205{width:90.567000px;}
._2e_c00205{width:92.418000px;}
._50_c00205{width:94.989000px;}
._51_c00205{width:100.455000px;}
._3c_c00205{width:105.384000px;}
._2b_c00205{width:106.800000px;}
._4b_c00205{width:114.123000px;}
._46_c00205{width:127.344000px;}
._25_c00205{width:128.763000px;}
._3e_c00205{width:130.407000px;}
._12_c00205{width:144.300000px;}
._48_c00205{width:165.912000px;}
._26_c00205{width:175.344000px;}
._b_c00205{width:197.244000px;}
._31_c00205{width:206.067000px;}
._1b_c00205{width:219.225000px;}
._3d_c00205{width:220.341000px;}
._3f_c00205{width:222.690000px;}
._42_c00205{width:233.586000px;}
._1a_c00205{width:241.110000px;}
._4a_c00205{width:246.762000px;}
._3a_c00205{width:422.529000px;}
._4d_c00205{width:528.288000px;}
._23_c00205{width:594.018000px;}
._34_c00205{width:595.572000px;}
._45_c00205{width:747.132000px;}
._43_c00205{width:826.185000px;}
.fc2_c00205{color:transparent;}
.fc1_c00205{color:rgb(128,128,128);}
.fc0_c00205{color:rgb(0,0,0);}
.fs9_c00205{font-size:39.000000px;}
.fs2_c00205{font-size:48.000000px;}
.fs0_c00205{font-size:54.000000px;}
.fs4_c00205{font-size:57.000000px;}
.fs3_c00205{font-size:60.000000px;}
.fs8_c00205{font-size:69.000000px;}
.fsa_c00205{font-size:72.000000px;}
.fs5_c00205{font-size:75.000000px;}
.fs7_c00205{font-size:78.000000px;}
.fs1_c00205{font-size:84.000000px;}
.fs6_c00205{font-size:93.000000px;}
.fsc_c00205{font-size:96.000000px;}
.fsb_c00205{font-size:99.000000px;}
.y0_c00205{bottom:0.000000px;}
.y1d_c00205{bottom:3.105000px;}
.y1c_c00205{bottom:7.228369px;}
.y1b_c00205{bottom:73.620000px;}
.y1a_c00205{bottom:200.820000px;}
.y19_c00205{bottom:227.070000px;}
.y18_c00205{bottom:249.420000px;}
.y17_c00205{bottom:277.770000px;}
.y16_c00205{bottom:302.670000px;}
.y15_c00205{bottom:328.320000px;}
.y14_c00205{bottom:352.920000px;}
.y13_c00205{bottom:401.520000px;}
.y12_c00205{bottom:446.520000px;}
.y11_c00205{bottom:461.670000px;}
.y10_c00205{bottom:478.620000px;}
.yf_c00205{bottom:501.570000px;}
.ye_c00205{bottom:514.320000px;}
.yd_c00205{bottom:526.170000px;}
.yc_c00205{bottom:549.120000px;}
.yb_c00205{bottom:569.370000px;}
.ya_c00205{bottom:579.420000px;}
.y9_c00205{bottom:623.070000px;}
.y8_c00205{bottom:640.170000px;}
.y7_c00205{bottom:673.620000px;}
.y6_c00205{bottom:687.420000px;}
.y5_c00205{bottom:706.020000px;}
.y4_c00205{bottom:723.870000px;}
.y3_c00205{bottom:737.670000px;}
.y2_c00205{bottom:760.020000px;}
.y1_c00205{bottom:772.470000px;}
.h12_c00205{height:13.200073px;}
.h13_c00205{height:43.804688px;}
.h7_c00205{height:55.942383px;}
.h9_c00205{height:56.179688px;}
.ha_c00205{height:57.445312px;}
.hd_c00205{height:69.539062px;}
.he_c00205{height:70.628906px;}
.h3_c00205{height:72.168457px;}
.h5_c00205{height:73.571777px;}
.hc_c00205{height:75.966797px;}
.hf_c00205{height:80.758301px;}
.h8_c00205{height:81.744000px;}
.h2_c00205{height:84.656250px;}
.hb_c00205{height:87.361816px;}
.h4_c00205{height:94.958496px;}
.h6_c00205{height:100.812000px;}
.h11_c00205{height:112.359375px;}
.h10_c00205{height:115.870605px;}
.h1_c00205{height:844.500000px;}
.h0_c00205{height:844.800000px;}
.w2_c00205{width:104.875500px;}
.w1_c00205{width:567.750000px;}
.w0_c00205{width:567.825000px;}
.x0_c00205{left:0.000000px;}
.xa_c00205{left:23.250000px;}
.x9_c00205{left:40.050000px;}
.xc_c00205{left:45.900000px;}
.x7_c00205{left:88.650000px;}
.x11_c00205{left:89.700000px;}
.xd_c00205{left:92.100000px;}
.x3_c00205{left:94.200000px;}
.x6_c00205{left:106.200000px;}
.x1_c00205{left:112.950000px;}
.xb_c00205{left:128.850000px;}
.x4_c00205{left:130.200000px;}
.xe_c00205{left:133.950000px;}
.x8_c00205{left:138.300000px;}
.x5_c00205{left:141.450000px;}
.xf_c00205{left:157.350000px;}
.x13_c00205{left:235.726730px;}
.x2_c00205{left:238.950000px;}
.x10_c00205{left:247.350000px;}
.x12_c00205{left:459.900000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls9_c00205{letter-spacing:-5.333333pt;}
.lsc_c00205{letter-spacing:-2.666667pt;}
.ls6_c00205{letter-spacing:0.000000pt;}
.ls1_c00205{letter-spacing:2.189333pt;}
.lsb_c00205{letter-spacing:2.666667pt;}
.ls3_c00205{letter-spacing:5.333333pt;}
.ls8_c00205{letter-spacing:8.000000pt;}
.ls4_c00205{letter-spacing:8.800000pt;}
.ls0_c00205{letter-spacing:8.906667pt;}
.lsd_c00205{letter-spacing:10.666667pt;}
.ls2_c00205{letter-spacing:13.333333pt;}
.lsa_c00205{letter-spacing:16.000000pt;}
.ls7_c00205{letter-spacing:18.666667pt;}
.ls5_c00205{letter-spacing:300.970667pt;}
.ws0_c00205{word-spacing:-53.440000pt;}
.ws3_c00205{word-spacing:-34.773333pt;}
.ws9_c00205{word-spacing:-32.000000pt;}
.ws5_c00205{word-spacing:-28.666667pt;}
.ws8_c00205{word-spacing:-28.149333pt;}
.ws7_c00205{word-spacing:-26.970667pt;}
.wsd_c00205{word-spacing:-25.448000pt;}
.ws1_c00205{word-spacing:-24.533333pt;}
.wsb_c00205{word-spacing:-21.333333pt;}
.wsf_c00205{word-spacing:-21.208000pt;}
.ws2_c00205{word-spacing:-20.210667pt;}
.wse_c00205{word-spacing:-20.114667pt;}
.ws10_c00205{word-spacing:-17.898667pt;}
.ws6_c00205{word-spacing:-14.781333pt;}
.wsa_c00205{word-spacing:-0.632000pt;}
.wsc_c00205{word-spacing:-0.053333pt;}
.ws11_c00205{word-spacing:0.000000pt;}
.ws4_c00205{word-spacing:0.861333pt;}
._47_c00205{margin-left:-36.610667pt;}
._d_c00205{margin-left:-30.090667pt;}
._10_c00205{margin-left:-27.104000pt;}
._19_c00205{margin-left:-25.333333pt;}
._1d_c00205{margin-left:-21.434667pt;}
._1c_c00205{margin-left:-19.400000pt;}
._17_c00205{margin-left:-17.440000pt;}
._0_c00205{margin-left:-16.080000pt;}
._44_c00205{margin-left:-14.413333pt;}
._5_c00205{margin-left:-13.429333pt;}
._28_c00205{margin-left:-12.413333pt;}
._7_c00205{margin-left:-11.424000pt;}
._a_c00205{margin-left:-10.346667pt;}
._3b_c00205{margin-left:-9.221333pt;}
._4_c00205{margin-left:-7.872000pt;}
._9_c00205{margin-left:-6.272000pt;}
._24_c00205{margin-left:-5.269333pt;}
._2_c00205{margin-left:-4.128000pt;}
._16_c00205{margin-left:-2.560000pt;}
._3_c00205{margin-left:-1.392000pt;}
._22_c00205{width:1.266667pt;}
._21_c00205{width:2.794667pt;}
._f_c00205{width:4.298667pt;}
._37_c00205{width:5.224000pt;}
._11_c00205{width:6.122667pt;}
._15_c00205{width:7.381333pt;}
._13_c00205{width:8.885333pt;}
._2d_c00205{width:9.829333pt;}
._32_c00205{width:11.314667pt;}
._14_c00205{width:12.277333pt;}
._20_c00205{width:13.533333pt;}
._2c_c00205{width:15.064000pt;}
._33_c00205{width:16.514667pt;}
._e_c00205{width:18.208000pt;}
._30_c00205{width:19.456000pt;}
._18_c00205{width:20.704000pt;}
._35_c00205{width:22.690667pt;}
._38_c00205{width:23.797333pt;}
._27_c00205{width:25.701333pt;}
._36_c00205{width:27.090667pt;}
._1_c00205{width:28.800000pt;}
._8_c00205{width:33.600000pt;}
._c_c00205{width:37.130667pt;}
._6_c00205{width:38.677333pt;}
._4c_c00205{width:41.258667pt;}
._2f_c00205{width:42.912000pt;}
._29_c00205{width:43.877333pt;}
._49_c00205{width:45.237333pt;}
._39_c00205{width:48.514667pt;}
._41_c00205{width:53.368000pt;}
._40_c00205{width:59.877333pt;}
._1e_c00205{width:63.122667pt;}
._2a_c00205{width:65.309333pt;}
._4e_c00205{width:67.176000pt;}
._1f_c00205{width:71.402667pt;}
._4f_c00205{width:80.504000pt;}
._2e_c00205{width:82.149333pt;}
._50_c00205{width:84.434667pt;}
._51_c00205{width:89.293333pt;}
._3c_c00205{width:93.674667pt;}
._2b_c00205{width:94.933333pt;}
._4b_c00205{width:101.442667pt;}
._46_c00205{width:113.194667pt;}
._25_c00205{width:114.456000pt;}
._3e_c00205{width:115.917333pt;}
._12_c00205{width:128.266667pt;}
._48_c00205{width:147.477333pt;}
._26_c00205{width:155.861333pt;}
._b_c00205{width:175.328000pt;}
._31_c00205{width:183.170667pt;}
._1b_c00205{width:194.866667pt;}
._3d_c00205{width:195.858667pt;}
._3f_c00205{width:197.946667pt;}
._42_c00205{width:207.632000pt;}
._1a_c00205{width:214.320000pt;}
._4a_c00205{width:219.344000pt;}
._3a_c00205{width:375.581333pt;}
._4d_c00205{width:469.589333pt;}
._23_c00205{width:528.016000pt;}
._34_c00205{width:529.397333pt;}
._45_c00205{width:664.117333pt;}
._43_c00205{width:734.386667pt;}
.fs9_c00205{font-size:34.666667pt;}
.fs2_c00205{font-size:42.666667pt;}
.fs0_c00205{font-size:48.000000pt;}
.fs4_c00205{font-size:50.666667pt;}
.fs3_c00205{font-size:53.333333pt;}
.fs8_c00205{font-size:61.333333pt;}
.fsa_c00205{font-size:64.000000pt;}
.fs5_c00205{font-size:66.666667pt;}
.fs7_c00205{font-size:69.333333pt;}
.fs1_c00205{font-size:74.666667pt;}
.fs6_c00205{font-size:82.666667pt;}
.fsc_c00205{font-size:85.333333pt;}
.fsb_c00205{font-size:88.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y1d_c00205{bottom:2.760000pt;}
.y1c_c00205{bottom:6.425217pt;}
.y1b_c00205{bottom:65.440000pt;}
.y1a_c00205{bottom:178.506667pt;}
.y19_c00205{bottom:201.840000pt;}
.y18_c00205{bottom:221.706667pt;}
.y17_c00205{bottom:246.906667pt;}
.y16_c00205{bottom:269.040000pt;}
.y15_c00205{bottom:291.840000pt;}
.y14_c00205{bottom:313.706667pt;}
.y13_c00205{bottom:356.906667pt;}
.y12_c00205{bottom:396.906667pt;}
.y11_c00205{bottom:410.373333pt;}
.y10_c00205{bottom:425.440000pt;}
.yf_c00205{bottom:445.840000pt;}
.ye_c00205{bottom:457.173333pt;}
.yd_c00205{bottom:467.706667pt;}
.yc_c00205{bottom:488.106667pt;}
.yb_c00205{bottom:506.106667pt;}
.ya_c00205{bottom:515.040000pt;}
.y9_c00205{bottom:553.840000pt;}
.y8_c00205{bottom:569.040000pt;}
.y7_c00205{bottom:598.773333pt;}
.y6_c00205{bottom:611.040000pt;}
.y5_c00205{bottom:627.573333pt;}
.y4_c00205{bottom:643.440000pt;}
.y3_c00205{bottom:655.706667pt;}
.y2_c00205{bottom:675.573333pt;}
.y1_c00205{bottom:686.640000pt;}
.h12_c00205{height:11.733399pt;}
.h13_c00205{height:38.937500pt;}
.h7_c00205{height:49.726562pt;}
.h9_c00205{height:49.937500pt;}
.ha_c00205{height:51.062500pt;}
.hd_c00205{height:61.812500pt;}
.he_c00205{height:62.781250pt;}
.h3_c00205{height:64.149740pt;}
.h5_c00205{height:65.397135pt;}
.hc_c00205{height:67.526042pt;}
.hf_c00205{height:71.785156pt;}
.h8_c00205{height:72.661333pt;}
.h2_c00205{height:75.250000pt;}
.hb_c00205{height:77.654948pt;}
.h4_c00205{height:84.407552pt;}
.h6_c00205{height:89.610667pt;}
.h11_c00205{height:99.875000pt;}
.h10_c00205{height:102.996094pt;}
.h1_c00205{height:750.666667pt;}
.h0_c00205{height:750.933333pt;}
.w2_c00205{width:93.222667pt;}
.w1_c00205{width:504.666667pt;}
.w0_c00205{width:504.733333pt;}
.x0_c00205{left:0.000000pt;}
.xa_c00205{left:20.666667pt;}
.x9_c00205{left:35.600000pt;}
.xc_c00205{left:40.800000pt;}
.x7_c00205{left:78.800000pt;}
.x11_c00205{left:79.733333pt;}
.xd_c00205{left:81.866667pt;}
.x3_c00205{left:83.733333pt;}
.x6_c00205{left:94.400000pt;}
.x1_c00205{left:100.400000pt;}
.xb_c00205{left:114.533333pt;}
.x4_c00205{left:115.733333pt;}
.xe_c00205{left:119.066667pt;}
.x8_c00205{left:122.933333pt;}
.x5_c00205{left:125.733333pt;}
.xf_c00205{left:139.866667pt;}
.x13_c00205{left:209.534871pt;}
.x2_c00205{left:212.400000pt;}
.x10_c00205{left:219.866667pt;}
.x12_c00205{left:408.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_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_2f1e9272b2f32cf2151741ef.woff2')format("woff");}.ff1_c00206{font-family:ff1_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:ff2_c00206;src:url('chunks/assets/font_a77bc527ea458a9109b0c14d.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;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_c00206;src:url('chunks/assets/font_7d465c222faf25a6e533d50e.woff2')format("woff");}.ff3_c00206{font-family:ff3_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:ff4_c00206;src:url('chunks/assets/font_5ad5ad8b769b8187d42611a4.woff2')format("woff");}.ff4_c00206{font-family:ff4_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:ff5_c00206;src:url('chunks/assets/font_bdf650ed4faf479f82f5938f.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.437000;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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);}
.v0_c00206{vertical-align:0.000000px;}
.ls7_c00206{letter-spacing:0.000000px;}
.ls1_c00206{letter-spacing:2.400000px;}
.ls6_c00206{letter-spacing:3.000000px;}
.ls2_c00206{letter-spacing:3.033000px;}
.ls8_c00206{letter-spacing:6.000000px;}
.ls3_c00206{letter-spacing:9.000000px;}
.ls4_c00206{letter-spacing:15.000000px;}
.ls5_c00206{letter-spacing:16.800000px;}
.lsa_c00206{letter-spacing:18.000000px;}
.ls9_c00206{letter-spacing:24.000000px;}
.ls0_c00206{letter-spacing:24.171000px;}
.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;}
}
.ws1_c00206{word-spacing:-44.022000px;}
.ws5_c00206{word-spacing:-40.629000px;}
.ws6_c00206{word-spacing:-34.629000px;}
.ws2_c00206{word-spacing:-19.629000px;}
.ws4_c00206{word-spacing:-16.629000px;}
.ws3_c00206{word-spacing:-11.568000px;}
.ws0_c00206{word-spacing:-5.034000px;}
.ws7_c00206{word-spacing:0.000000px;}
._40_c00206{margin-left:-68.283000px;}
._6_c00206{margin-left:-31.368000px;}
._38_c00206{margin-left:-28.773000px;}
._22_c00206{margin-left:-22.770000px;}
._24_c00206{margin-left:-21.528000px;}
._26_c00206{margin-left:-18.756000px;}
._3_c00206{margin-left:-17.448000px;}
._c_c00206{margin-left:-15.429000px;}
._21_c00206{margin-left:-14.295000px;}
._e_c00206{margin-left:-13.263000px;}
._1b_c00206{margin-left:-12.057000px;}
._27_c00206{margin-left:-10.587000px;}
._17_c00206{margin-left:-9.216000px;}
._0_c00206{margin-left:-7.644000px;}
._15_c00206{margin-left:-6.336000px;}
._1_c00206{margin-left:-5.148000px;}
._5_c00206{margin-left:-3.546000px;}
._9_c00206{margin-left:-2.388000px;}
._d_c00206{margin-left:-1.005000px;}
._8_c00206{width:1.449000px;}
._10_c00206{width:2.484000px;}
._1f_c00206{width:3.846000px;}
._a_c00206{width:5.382000px;}
._16_c00206{width:7.068000px;}
._f_c00206{width:8.142000px;}
._2a_c00206{width:10.170000px;}
._2_c00206{width:11.232000px;}
._14_c00206{width:12.510000px;}
._4_c00206{width:14.421000px;}
._30_c00206{width:16.524000px;}
._2d_c00206{width:17.610000px;}
._12_c00206{width:18.906000px;}
._b_c00206{width:20.631000px;}
._36_c00206{width:21.771000px;}
._11_c00206{width:23.529000px;}
._3c_c00206{width:24.678000px;}
._13_c00206{width:26.427000px;}
._37_c00206{width:27.438000px;}
._7_c00206{width:30.912000px;}
._23_c00206{width:36.519000px;}
._2e_c00206{width:38.859000px;}
._31_c00206{width:40.200000px;}
._32_c00206{width:41.967000px;}
._25_c00206{width:44.349000px;}
._1e_c00206{width:53.052000px;}
._3a_c00206{width:57.588000px;}
._28_c00206{width:61.908000px;}
._1a_c00206{width:65.904000px;}
._2c_c00206{width:67.524000px;}
._20_c00206{width:73.206000px;}
._3e_c00206{width:89.127000px;}
._19_c00206{width:90.420000px;}
._2f_c00206{width:96.009000px;}
._33_c00206{width:106.281000px;}
._29_c00206{width:117.507000px;}
._3b_c00206{width:154.185000px;}
._1d_c00206{width:160.626000px;}
._41_c00206{width:164.217000px;}
._1c_c00206{width:166.656000px;}
._35_c00206{width:177.486000px;}
._34_c00206{width:201.345000px;}
._2b_c00206{width:223.128000px;}
._18_c00206{width:257.568000px;}
._39_c00206{width:263.304000px;}
._3f_c00206{width:295.125000px;}
._3d_c00206{width:311.715000px;}
._42_c00206{width:1561.722000px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(128,128,128);}
.fc0_c00206{color:rgb(0,0,0);}
.fs3_c00206{font-size:48.000000px;}
.fs2_c00206{font-size:66.000000px;}
.fs1_c00206{font-size:69.000000px;}
.fs5_c00206{font-size:75.000000px;}
.fs0_c00206{font-size:78.000000px;}
.fs4_c00206{font-size:84.000000px;}
.y0_c00206{bottom:0.000000px;}
.y1e_c00206{bottom:3.105000px;}
.y1d_c00206{bottom:7.228371px;}
.y1c_c00206{bottom:49.065000px;}
.y1b_c00206{bottom:74.715000px;}
.y1a_c00206{bottom:100.665000px;}
.y19_c00206{bottom:150.315000px;}
.y18_c00206{bottom:178.515000px;}
.y17_c00206{bottom:200.115000px;}
.y16_c00206{bottom:225.465000px;}
.y15_c00206{bottom:251.115000px;}
.y14_c00206{bottom:276.465000px;}
.y13_c00206{bottom:300.015000px;}
.y12_c00206{bottom:326.115000px;}
.y11_c00206{bottom:351.015000px;}
.y10_c00206{bottom:376.365000px;}
.yf_c00206{bottom:401.265000px;}
.ye_c00206{bottom:426.015000px;}
.yd_c00206{bottom:451.215000px;}
.yc_c00206{bottom:475.965000px;}
.yb_c00206{bottom:500.265000px;}
.ya_c00206{bottom:524.865000px;}
.y9_c00206{bottom:549.915000px;}
.y8_c00206{bottom:575.115000px;}
.y7_c00206{bottom:600.465000px;}
.y6_c00206{bottom:626.115000px;}
.y5_c00206{bottom:651.165000px;}
.y4_c00206{bottom:676.665000px;}
.y3_c00206{bottom:703.815000px;}
.y2_c00206{bottom:727.365000px;}
.y1_c00206{bottom:753.015000px;}
.h7_c00206{height:13.200074px;}
.h8_c00206{height:43.804688px;}
.h4_c00206{height:60.773438px;}
.h3_c00206{height:87.361816px;}
.h5_c00206{height:88.032000px;}
.h2_c00206{height:91.291992px;}
.h6_c00206{height:94.958496px;}
.h1_c00206{height:831.000000px;}
.h0_c00206{height:831.075000px;}
.w2_c00206{width:104.875500px;}
.w0_c00206{width:566.175000px;}
.w1_c00206{width:566.250000px;}
.x0_c00206{left:0.000000px;}
.x7_c00206{left:24.600000px;}
.x4_c00206{left:26.100000px;}
.x1_c00206{left:27.300000px;}
.x5_c00206{left:28.350000px;}
.x2_c00206{left:57.300000px;}
.x3_c00206{left:94.350000px;}
.x6_c00206{left:145.200000px;}
.x8_c00206{left:234.901749px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls7_c00206{letter-spacing:0.000000pt;}
.ls1_c00206{letter-spacing:2.133333pt;}
.ls6_c00206{letter-spacing:2.666667pt;}
.ls2_c00206{letter-spacing:2.696000pt;}
.ls8_c00206{letter-spacing:5.333333pt;}
.ls3_c00206{letter-spacing:8.000000pt;}
.ls4_c00206{letter-spacing:13.333333pt;}
.ls5_c00206{letter-spacing:14.933333pt;}
.lsa_c00206{letter-spacing:16.000000pt;}
.ls9_c00206{letter-spacing:21.333333pt;}
.ls0_c00206{letter-spacing:21.485333pt;}
.ws1_c00206{word-spacing:-39.130667pt;}
.ws5_c00206{word-spacing:-36.114667pt;}
.ws6_c00206{word-spacing:-30.781333pt;}
.ws2_c00206{word-spacing:-17.448000pt;}
.ws4_c00206{word-spacing:-14.781333pt;}
.ws3_c00206{word-spacing:-10.282667pt;}
.ws0_c00206{word-spacing:-4.474667pt;}
.ws7_c00206{word-spacing:0.000000pt;}
._40_c00206{margin-left:-60.696000pt;}
._6_c00206{margin-left:-27.882667pt;}
._38_c00206{margin-left:-25.576000pt;}
._22_c00206{margin-left:-20.240000pt;}
._24_c00206{margin-left:-19.136000pt;}
._26_c00206{margin-left:-16.672000pt;}
._3_c00206{margin-left:-15.509333pt;}
._c_c00206{margin-left:-13.714667pt;}
._21_c00206{margin-left:-12.706667pt;}
._e_c00206{margin-left:-11.789333pt;}
._1b_c00206{margin-left:-10.717333pt;}
._27_c00206{margin-left:-9.410667pt;}
._17_c00206{margin-left:-8.192000pt;}
._0_c00206{margin-left:-6.794667pt;}
._15_c00206{margin-left:-5.632000pt;}
._1_c00206{margin-left:-4.576000pt;}
._5_c00206{margin-left:-3.152000pt;}
._9_c00206{margin-left:-2.122667pt;}
._d_c00206{margin-left:-0.893333pt;}
._8_c00206{width:1.288000pt;}
._10_c00206{width:2.208000pt;}
._1f_c00206{width:3.418667pt;}
._a_c00206{width:4.784000pt;}
._16_c00206{width:6.282667pt;}
._f_c00206{width:7.237333pt;}
._2a_c00206{width:9.040000pt;}
._2_c00206{width:9.984000pt;}
._14_c00206{width:11.120000pt;}
._4_c00206{width:12.818667pt;}
._30_c00206{width:14.688000pt;}
._2d_c00206{width:15.653333pt;}
._12_c00206{width:16.805333pt;}
._b_c00206{width:18.338667pt;}
._36_c00206{width:19.352000pt;}
._11_c00206{width:20.914667pt;}
._3c_c00206{width:21.936000pt;}
._13_c00206{width:23.490667pt;}
._37_c00206{width:24.389333pt;}
._7_c00206{width:27.477333pt;}
._23_c00206{width:32.461333pt;}
._2e_c00206{width:34.541333pt;}
._31_c00206{width:35.733333pt;}
._32_c00206{width:37.304000pt;}
._25_c00206{width:39.421333pt;}
._1e_c00206{width:47.157333pt;}
._3a_c00206{width:51.189333pt;}
._28_c00206{width:55.029333pt;}
._1a_c00206{width:58.581333pt;}
._2c_c00206{width:60.021333pt;}
._20_c00206{width:65.072000pt;}
._3e_c00206{width:79.224000pt;}
._19_c00206{width:80.373333pt;}
._2f_c00206{width:85.341333pt;}
._33_c00206{width:94.472000pt;}
._29_c00206{width:104.450667pt;}
._3b_c00206{width:137.053333pt;}
._1d_c00206{width:142.778667pt;}
._41_c00206{width:145.970667pt;}
._1c_c00206{width:148.138667pt;}
._35_c00206{width:157.765333pt;}
._34_c00206{width:178.973333pt;}
._2b_c00206{width:198.336000pt;}
._18_c00206{width:228.949333pt;}
._39_c00206{width:234.048000pt;}
._3f_c00206{width:262.333333pt;}
._3d_c00206{width:277.080000pt;}
._42_c00206{width:1388.197333pt;}
.fs3_c00206{font-size:42.666667pt;}
.fs2_c00206{font-size:58.666667pt;}
.fs1_c00206{font-size:61.333333pt;}
.fs5_c00206{font-size:66.666667pt;}
.fs0_c00206{font-size:69.333333pt;}
.fs4_c00206{font-size:74.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y1e_c00206{bottom:2.760000pt;}
.y1d_c00206{bottom:6.425219pt;}
.y1c_c00206{bottom:43.613333pt;}
.y1b_c00206{bottom:66.413333pt;}
.y1a_c00206{bottom:89.480000pt;}
.y19_c00206{bottom:133.613333pt;}
.y18_c00206{bottom:158.680000pt;}
.y17_c00206{bottom:177.880000pt;}
.y16_c00206{bottom:200.413333pt;}
.y15_c00206{bottom:223.213333pt;}
.y14_c00206{bottom:245.746667pt;}
.y13_c00206{bottom:266.680000pt;}
.y12_c00206{bottom:289.880000pt;}
.y11_c00206{bottom:312.013333pt;}
.y10_c00206{bottom:334.546667pt;}
.yf_c00206{bottom:356.680000pt;}
.ye_c00206{bottom:378.680000pt;}
.yd_c00206{bottom:401.080000pt;}
.yc_c00206{bottom:423.080000pt;}
.yb_c00206{bottom:444.680000pt;}
.ya_c00206{bottom:466.546667pt;}
.y9_c00206{bottom:488.813333pt;}
.y8_c00206{bottom:511.213333pt;}
.y7_c00206{bottom:533.746667pt;}
.y6_c00206{bottom:556.546667pt;}
.y5_c00206{bottom:578.813333pt;}
.y4_c00206{bottom:601.480000pt;}
.y3_c00206{bottom:625.613333pt;}
.y2_c00206{bottom:646.546667pt;}
.y1_c00206{bottom:669.346667pt;}
.h7_c00206{height:11.733399pt;}
.h8_c00206{height:38.937500pt;}
.h4_c00206{height:54.020833pt;}
.h3_c00206{height:77.654948pt;}
.h5_c00206{height:78.250667pt;}
.h2_c00206{height:81.148438pt;}
.h6_c00206{height:84.407552pt;}
.h1_c00206{height:738.666667pt;}
.h0_c00206{height:738.733333pt;}
.w2_c00206{width:93.222667pt;}
.w0_c00206{width:503.266667pt;}
.w1_c00206{width:503.333333pt;}
.x0_c00206{left:0.000000pt;}
.x7_c00206{left:21.866667pt;}
.x4_c00206{left:23.200000pt;}
.x1_c00206{left:24.266667pt;}
.x5_c00206{left:25.200000pt;}
.x2_c00206{left:50.933333pt;}
.x3_c00206{left:83.866667pt;}
.x6_c00206{left:129.066667pt;}
.x8_c00206{left:208.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_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_646f16f3efbbcad379d37ff0.woff2')format("woff");}.ff1_c00207{font-family:ff1_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:ff2_c00207;src:url('chunks/assets/font_99e2610dd3ded094bc8700f9.woff2')format("woff");}.ff2_c00207{font-family:ff2_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:ff3_c00207;src:url('chunks/assets/font_3f1712c3181eb16f1e78ea6c.woff2')format("woff");}.ff3_c00207{font-family:ff3_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:ff4_c00207;src:url('chunks/assets/font_38ae6c82a12a95895c3c3e90.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_683cd54b3ca07b7be4466347.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00207{font-family:ff6_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:ff7_c00207;src:url('chunks/assets/font_429524301271159b117a89a6.woff2')format("woff");}.ff7_c00207{font-family:ff7_c00207;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_c00207;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff8_c00207{font-family:ff8_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:ff9_c00207;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00207{font-family:ff9_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;}
.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;}
.ls9_c00207{letter-spacing:0.000000px;}
.ls6_c00207{letter-spacing:2.100000px;}
.lsa_c00207{letter-spacing:3.000000px;}
.ls7_c00207{letter-spacing:3.600000px;}
.ls0_c00207{letter-spacing:4.971000px;}
.lsb_c00207{letter-spacing:6.000000px;}
.ls2_c00207{letter-spacing:7.104000px;}
.ls4_c00207{letter-spacing:9.000000px;}
.ls1_c00207{letter-spacing:12.633000px;}
.ls8_c00207{letter-spacing:13.725000px;}
.ls3_c00207{letter-spacing:17.469000px;}
.lsc_c00207{letter-spacing:18.000000px;}
.ls5_c00207{letter-spacing:37.200000px;}
.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:-44.988000px;}
.ws0_c00207{word-spacing:-22.629000px;}
.ws3_c00207{word-spacing:-19.629000px;}
.ws2_c00207{word-spacing:-16.629000px;}
.ws4_c00207{word-spacing:-15.906000px;}
.ws6_c00207{word-spacing:-0.138000px;}
.ws7_c00207{word-spacing:0.000000px;}
.ws5_c00207{word-spacing:9.039000px;}
._3b_c00207{margin-left:-42.615000px;}
._29_c00207{margin-left:-34.239000px;}
._40_c00207{margin-left:-33.198000px;}
._3f_c00207{margin-left:-27.867000px;}
._2e_c00207{margin-left:-23.976000px;}
._23_c00207{margin-left:-20.562000px;}
._2c_c00207{margin-left:-18.576000px;}
._9_c00207{margin-left:-17.112000px;}
._1d_c00207{margin-left:-15.456000px;}
._13_c00207{margin-left:-13.869000px;}
._16_c00207{margin-left:-12.630000px;}
._12_c00207{margin-left:-11.301000px;}
._32_c00207{margin-left:-9.936000px;}
._c_c00207{margin-left:-8.763000px;}
._f_c00207{margin-left:-7.359000px;}
._b_c00207{margin-left:-5.778000px;}
._6_c00207{margin-left:-4.431000px;}
._4_c00207{margin-left:-2.787000px;}
._0_c00207{margin-left:-1.311000px;}
._5_c00207{width:1.125000px;}
._3_c00207{width:2.370000px;}
._2_c00207{width:3.450000px;}
._1_c00207{width:5.175000px;}
._d_c00207{width:6.633000px;}
._1b_c00207{width:7.857000px;}
._25_c00207{width:9.522000px;}
._e_c00207{width:10.695000px;}
._7_c00207{width:12.225000px;}
._21_c00207{width:13.338000px;}
._1f_c00207{width:15.180000px;}
._42_c00207{width:16.362000px;}
._1c_c00207{width:18.078000px;}
._1a_c00207{width:19.734000px;}
._19_c00207{width:20.883000px;}
._10_c00207{width:22.269000px;}
._3c_c00207{width:23.883000px;}
._17_c00207{width:26.298000px;}
._22_c00207{width:28.485000px;}
._37_c00207{width:30.791400px;}
._11_c00207{width:32.073000px;}
._14_c00207{width:33.144000px;}
._35_c00207{width:34.929000px;}
._20_c00207{width:37.473600px;}
._2f_c00207{width:44.091000px;}
._38_c00207{width:45.240000px;}
._33_c00207{width:50.751000px;}
._43_c00207{width:54.195000px;}
._30_c00207{width:55.467000px;}
._3a_c00207{width:60.257400px;}
._36_c00207{width:65.178000px;}
._34_c00207{width:82.383000px;}
._2d_c00207{width:84.672000px;}
._44_c00207{width:96.273000px;}
._3e_c00207{width:106.485000px;}
._39_c00207{width:109.935000px;}
._2b_c00207{width:136.416000px;}
._18_c00207{width:140.904000px;}
._15_c00207{width:148.620000px;}
._41_c00207{width:192.585000px;}
._31_c00207{width:221.874000px;}
._8_c00207{width:229.734000px;}
._1e_c00207{width:239.001000px;}
._28_c00207{width:247.272000px;}
._3d_c00207{width:273.336000px;}
._a_c00207{width:299.874000px;}
._24_c00207{width:415.371000px;}
._26_c00207{width:426.465000px;}
._27_c00207{width:449.799000px;}
._2a_c00207{width:533.931000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(128,128,128);}
.fc0_c00207{color:rgb(0,0,0);}
.fs5_c00207{font-size:45.000000px;}
.fs8_c00207{font-size:48.000000px;}
.fs2_c00207{font-size:55.200000px;}
.fs6_c00207{font-size:60.000000px;}
.fs3_c00207{font-size:66.000000px;}
.fs0_c00207{font-size:69.000000px;}
.fs4_c00207{font-size:72.000000px;}
.fs1_c00207{font-size:75.000000px;}
.fs7_c00207{font-size:87.000000px;}
.y0_c00207{bottom:0.000000px;}
.y1f_c00207{bottom:3.105000px;}
.y1e_c00207{bottom:7.228357px;}
.y1d_c00207{bottom:83.130000px;}
.y1c_c00207{bottom:109.980000px;}
.y1b_c00207{bottom:135.780000px;}
.y1a_c00207{bottom:160.080000px;}
.y19_c00207{bottom:185.580000px;}
.y18_c00207{bottom:210.330000px;}
.y17_c00207{bottom:236.580000px;}
.y16_c00207{bottom:261.180000px;}
.y15_c00207{bottom:286.830000px;}
.y14_c00207{bottom:311.580000px;}
.y13_c00207{bottom:336.480000px;}
.y12_c00207{bottom:361.080000px;}
.y11_c00207{bottom:384.030000px;}
.y10_c00207{bottom:409.680000px;}
.yf_c00207{bottom:434.430000px;}
.ye_c00207{bottom:461.130000px;}
.yd_c00207{bottom:487.080000px;}
.yc_c00207{bottom:511.980000px;}
.yb_c00207{bottom:536.730000px;}
.ya_c00207{bottom:563.280000px;}
.y9_c00207{bottom:588.030000px;}
.y8_c00207{bottom:612.330000px;}
.y7_c00207{bottom:637.830000px;}
.y6_c00207{bottom:663.180000px;}
.y5_c00207{bottom:689.580000px;}
.y4_c00207{bottom:713.430000px;}
.y3_c00207{bottom:736.830000px;}
.y2_c00207{bottom:763.380000px;}
.y1_c00207{bottom:788.730000px;}
.h8_c00207{height:13.200074px;}
.h9_c00207{height:43.804688px;}
.h5_c00207{height:56.975098px;}
.h6_c00207{height:77.247070px;}
.h3_c00207{height:80.758301px;}
.h1_c00207{height:87.361816px;}
.h4_c00207{height:91.160156px;}
.h7_c00207{height:94.308000px;}
.h2_c00207{height:94.958496px;}
.h0_c00207{height:833.250000px;}
.w2_c00207{width:104.875500px;}
.w0_c00207{width:559.425000px;}
.w1_c00207{width:559.500000px;}
.x0_c00207{left:0.000000px;}
.xe_c00207{left:20.250000px;}
.x6_c00207{left:22.050000px;}
.x7_c00207{left:36.900000px;}
.x4_c00207{left:53.250000px;}
.xd_c00207{left:68.850000px;}
.x5_c00207{left:83.400000px;}
.x2_c00207{left:85.500000px;}
.xb_c00207{left:86.850000px;}
.x9_c00207{left:88.500000px;}
.x3_c00207{left:110.250000px;}
.xc_c00207{left:113.100000px;}
.xa_c00207{left:123.900000px;}
.xf_c00207{left:134.400000px;}
.x8_c00207{left:228.600000px;}
.x10_c00207{left:231.526749px;}
.x1_c00207{left:235.650000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls9_c00207{letter-spacing:0.000000pt;}
.ls6_c00207{letter-spacing:1.866667pt;}
.lsa_c00207{letter-spacing:2.666667pt;}
.ls7_c00207{letter-spacing:3.200000pt;}
.ls0_c00207{letter-spacing:4.418667pt;}
.lsb_c00207{letter-spacing:5.333333pt;}
.ls2_c00207{letter-spacing:6.314667pt;}
.ls4_c00207{letter-spacing:8.000000pt;}
.ls1_c00207{letter-spacing:11.229333pt;}
.ls8_c00207{letter-spacing:12.200000pt;}
.ls3_c00207{letter-spacing:15.528000pt;}
.lsc_c00207{letter-spacing:16.000000pt;}
.ls5_c00207{letter-spacing:33.066667pt;}
.ws1_c00207{word-spacing:-39.989333pt;}
.ws0_c00207{word-spacing:-20.114667pt;}
.ws3_c00207{word-spacing:-17.448000pt;}
.ws2_c00207{word-spacing:-14.781333pt;}
.ws4_c00207{word-spacing:-14.138667pt;}
.ws6_c00207{word-spacing:-0.122667pt;}
.ws7_c00207{word-spacing:0.000000pt;}
.ws5_c00207{word-spacing:8.034667pt;}
._3b_c00207{margin-left:-37.880000pt;}
._29_c00207{margin-left:-30.434667pt;}
._40_c00207{margin-left:-29.509333pt;}
._3f_c00207{margin-left:-24.770667pt;}
._2e_c00207{margin-left:-21.312000pt;}
._23_c00207{margin-left:-18.277333pt;}
._2c_c00207{margin-left:-16.512000pt;}
._9_c00207{margin-left:-15.210667pt;}
._1d_c00207{margin-left:-13.738667pt;}
._13_c00207{margin-left:-12.328000pt;}
._16_c00207{margin-left:-11.226667pt;}
._12_c00207{margin-left:-10.045333pt;}
._32_c00207{margin-left:-8.832000pt;}
._c_c00207{margin-left:-7.789333pt;}
._f_c00207{margin-left:-6.541333pt;}
._b_c00207{margin-left:-5.136000pt;}
._6_c00207{margin-left:-3.938667pt;}
._4_c00207{margin-left:-2.477333pt;}
._0_c00207{margin-left:-1.165333pt;}
._5_c00207{width:1.000000pt;}
._3_c00207{width:2.106667pt;}
._2_c00207{width:3.066667pt;}
._1_c00207{width:4.600000pt;}
._d_c00207{width:5.896000pt;}
._1b_c00207{width:6.984000pt;}
._25_c00207{width:8.464000pt;}
._e_c00207{width:9.506667pt;}
._7_c00207{width:10.866667pt;}
._21_c00207{width:11.856000pt;}
._1f_c00207{width:13.493333pt;}
._42_c00207{width:14.544000pt;}
._1c_c00207{width:16.069333pt;}
._1a_c00207{width:17.541333pt;}
._19_c00207{width:18.562667pt;}
._10_c00207{width:19.794667pt;}
._3c_c00207{width:21.229333pt;}
._17_c00207{width:23.376000pt;}
._22_c00207{width:25.320000pt;}
._37_c00207{width:27.370133pt;}
._11_c00207{width:28.509333pt;}
._14_c00207{width:29.461333pt;}
._35_c00207{width:31.048000pt;}
._20_c00207{width:33.309867pt;}
._2f_c00207{width:39.192000pt;}
._38_c00207{width:40.213333pt;}
._33_c00207{width:45.112000pt;}
._43_c00207{width:48.173333pt;}
._30_c00207{width:49.304000pt;}
._3a_c00207{width:53.562133pt;}
._36_c00207{width:57.936000pt;}
._34_c00207{width:73.229333pt;}
._2d_c00207{width:75.264000pt;}
._44_c00207{width:85.576000pt;}
._3e_c00207{width:94.653333pt;}
._39_c00207{width:97.720000pt;}
._2b_c00207{width:121.258667pt;}
._18_c00207{width:125.248000pt;}
._15_c00207{width:132.106667pt;}
._41_c00207{width:171.186667pt;}
._31_c00207{width:197.221333pt;}
._8_c00207{width:204.208000pt;}
._1e_c00207{width:212.445333pt;}
._28_c00207{width:219.797333pt;}
._3d_c00207{width:242.965333pt;}
._a_c00207{width:266.554667pt;}
._24_c00207{width:369.218667pt;}
._26_c00207{width:379.080000pt;}
._27_c00207{width:399.821333pt;}
._2a_c00207{width:474.605333pt;}
.fs5_c00207{font-size:40.000000pt;}
.fs8_c00207{font-size:42.666667pt;}
.fs2_c00207{font-size:49.066667pt;}
.fs6_c00207{font-size:53.333333pt;}
.fs3_c00207{font-size:58.666667pt;}
.fs0_c00207{font-size:61.333333pt;}
.fs4_c00207{font-size:64.000000pt;}
.fs1_c00207{font-size:66.666667pt;}
.fs7_c00207{font-size:77.333333pt;}
.y0_c00207{bottom:0.000000pt;}
.y1f_c00207{bottom:2.760000pt;}
.y1e_c00207{bottom:6.425206pt;}
.y1d_c00207{bottom:73.893333pt;}
.y1c_c00207{bottom:97.760000pt;}
.y1b_c00207{bottom:120.693333pt;}
.y1a_c00207{bottom:142.293333pt;}
.y19_c00207{bottom:164.960000pt;}
.y18_c00207{bottom:186.960000pt;}
.y17_c00207{bottom:210.293333pt;}
.y16_c00207{bottom:232.160000pt;}
.y15_c00207{bottom:254.960000pt;}
.y14_c00207{bottom:276.960000pt;}
.y13_c00207{bottom:299.093333pt;}
.y12_c00207{bottom:320.960000pt;}
.y11_c00207{bottom:341.360000pt;}
.y10_c00207{bottom:364.160000pt;}
.yf_c00207{bottom:386.160000pt;}
.ye_c00207{bottom:409.893333pt;}
.yd_c00207{bottom:432.960000pt;}
.yc_c00207{bottom:455.093333pt;}
.yb_c00207{bottom:477.093333pt;}
.ya_c00207{bottom:500.693333pt;}
.y9_c00207{bottom:522.693333pt;}
.y8_c00207{bottom:544.293333pt;}
.y7_c00207{bottom:566.960000pt;}
.y6_c00207{bottom:589.493333pt;}
.y5_c00207{bottom:612.960000pt;}
.y4_c00207{bottom:634.160000pt;}
.y3_c00207{bottom:654.960000pt;}
.y2_c00207{bottom:678.560000pt;}
.y1_c00207{bottom:701.093333pt;}
.h8_c00207{height:11.733399pt;}
.h9_c00207{height:38.937500pt;}
.h5_c00207{height:50.644531pt;}
.h6_c00207{height:68.664062pt;}
.h3_c00207{height:71.785156pt;}
.h1_c00207{height:77.654948pt;}
.h4_c00207{height:81.031250pt;}
.h7_c00207{height:83.829333pt;}
.h2_c00207{height:84.407552pt;}
.h0_c00207{height:740.666667pt;}
.w2_c00207{width:93.222667pt;}
.w0_c00207{width:497.266667pt;}
.w1_c00207{width:497.333333pt;}
.x0_c00207{left:0.000000pt;}
.xe_c00207{left:18.000000pt;}
.x6_c00207{left:19.600000pt;}
.x7_c00207{left:32.800000pt;}
.x4_c00207{left:47.333333pt;}
.xd_c00207{left:61.200000pt;}
.x5_c00207{left:74.133333pt;}
.x2_c00207{left:76.000000pt;}
.xb_c00207{left:77.200000pt;}
.x9_c00207{left:78.666667pt;}
.x3_c00207{left:98.000000pt;}
.xc_c00207{left:100.533333pt;}
.xa_c00207{left:110.133333pt;}
.xf_c00207{left:119.466667pt;}
.x8_c00207{left:203.200000pt;}
.x10_c00207{left:205.801554pt;}
.x1_c00207{left:209.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_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_2c4ebaeff8023ba0669e8d2d.woff2')format("woff");}.ff1_c00208{font-family:ff1_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:ff2_c00208;src:url('chunks/assets/font_75d502e2afbc1217f75b18f4.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_5d74f2f6b92cf682f0c6a14b.woff2')format("woff");}.ff3_c00208{font-family:ff3_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:ff4_c00208;src:url('chunks/assets/font_2ffac7c8d7ca73288b935339.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_1aa1ced972974ae27fe77909.woff2')format("woff");}.ff5_c00208{font-family:ff5_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:ff6_c00208;src:url('chunks/assets/font_ea949e3e8e6db511addc74d5.woff2')format("woff");}.ff6_c00208{font-family:ff6_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:ff7_c00208;src:url('chunks/assets/font_849dfef4c0ad4abd85d42b54.woff2')format("woff");}.ff7_c00208{font-family:ff7_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:ff8_c00208;src:url('chunks/assets/font_fecf565e145aafb363d5bd07.woff2')format("woff");}.ff8_c00208{font-family:ff8_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:ff9_c00208;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00208{font-family:ff9_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;}
.ls5_c00208{letter-spacing:-6.000000px;}
.ls4_c00208{letter-spacing:0.000000px;}
.ls3_c00208{letter-spacing:3.000000px;}
.ls2_c00208{letter-spacing:6.000000px;}
.ls6_c00208{letter-spacing:9.000000px;}
.ls0_c00208{letter-spacing:13.800000px;}
.ls1_c00208{letter-spacing:17.943000px;}
.ls7_c00208{letter-spacing:21.000000px;}
.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;}
}
.ws3_c00208{word-spacing:-56.235000px;}
.ws2_c00208{word-spacing:-44.988000px;}
.ws1_c00208{word-spacing:-44.022000px;}
.ws4_c00208{word-spacing:-25.050000px;}
.ws0_c00208{word-spacing:-19.629000px;}
.ws5_c00208{word-spacing:-18.000000px;}
.ws6_c00208{word-spacing:-16.629000px;}
.ws7_c00208{word-spacing:-16.303200px;}
.ws8_c00208{word-spacing:0.000000px;}
._24_c00208{margin-left:-66.585000px;}
._39_c00208{margin-left:-60.582000px;}
._33_c00208{margin-left:-30.594000px;}
._36_c00208{margin-left:-27.183000px;}
._26_c00208{margin-left:-22.980000px;}
._27_c00208{margin-left:-21.426000px;}
._17_c00208{margin-left:-20.355000px;}
._28_c00208{margin-left:-19.260000px;}
._1c_c00208{margin-left:-16.251000px;}
._1b_c00208{margin-left:-13.938000px;}
._b_c00208{margin-left:-12.006000px;}
._11_c00208{margin-left:-10.902000px;}
._a_c00208{margin-left:-8.976000px;}
._c_c00208{margin-left:-7.176000px;}
._1f_c00208{margin-left:-5.865000px;}
._3_c00208{margin-left:-4.830000px;}
._6_c00208{margin-left:-3.450000px;}
._5_c00208{margin-left:-1.794000px;}
._8_c00208{width:1.035000px;}
._0_c00208{width:2.139000px;}
._1_c00208{width:3.381000px;}
._9_c00208{width:4.899000px;}
._7_c00208{width:6.417000px;}
._d_c00208{width:7.728000px;}
._10_c00208{width:9.177000px;}
._2_c00208{width:10.626000px;}
._12_c00208{width:11.730000px;}
._4_c00208{width:12.972000px;}
._13_c00208{width:14.766000px;}
._f_c00208{width:16.836000px;}
._1e_c00208{width:18.285000px;}
._1d_c00208{width:20.016000px;}
._29_c00208{width:21.735000px;}
._2f_c00208{width:23.052000px;}
._19_c00208{width:25.599000px;}
._14_c00208{width:26.772000px;}
._15_c00208{width:28.911000px;}
._25_c00208{width:30.807000px;}
._16_c00208{width:33.120000px;}
._18_c00208{width:37.674000px;}
._2c_c00208{width:46.092000px;}
._37_c00208{width:51.825000px;}
._23_c00208{width:54.648000px;}
._2e_c00208{width:58.512000px;}
._31_c00208{width:78.963000px;}
._30_c00208{width:87.147000px;}
._e_c00208{width:97.497000px;}
._2a_c00208{width:98.733000px;}
._1a_c00208{width:102.948000px;}
._20_c00208{width:133.524000px;}
._32_c00208{width:171.258000px;}
._2b_c00208{width:196.062000px;}
._35_c00208{width:345.552000px;}
._22_c00208{width:409.275000px;}
._34_c00208{width:494.316000px;}
._2d_c00208{width:508.116000px;}
._21_c00208{width:549.171000px;}
._38_c00208{width:1517.145000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(128,128,128);}
.fc0_c00208{color:rgb(0,0,0);}
.fsa_c00208{font-size:45.000000px;}
.fsb_c00208{font-size:48.000000px;}
.fs2_c00208{font-size:55.200000px;}
.fs5_c00208{font-size:57.000000px;}
.fs6_c00208{font-size:60.000000px;}
.fs1_c00208{font-size:66.000000px;}
.fs0_c00208{font-size:69.000000px;}
.fs8_c00208{font-size:72.000000px;}
.fs3_c00208{font-size:75.000000px;}
.fs7_c00208{font-size:78.000000px;}
.fs9_c00208{font-size:81.000000px;}
.fs4_c00208{font-size:96.000000px;}
.y0_c00208{bottom:0.000000px;}
.y1e_c00208{bottom:3.105000px;}
.y1d_c00208{bottom:7.228371px;}
.y1a_c00208{bottom:51.015000px;}
.y19_c00208{bottom:81.315000px;}
.y18_c00208{bottom:105.015000px;}
.y17_c00208{bottom:129.615000px;}
.y16_c00208{bottom:154.365000px;}
.y15_c00208{bottom:177.915000px;}
.y14_c00208{bottom:204.315000px;}
.y13_c00208{bottom:231.165000px;}
.y12_c00208{bottom:255.615000px;}
.y11_c00208{bottom:281.115000px;}
.y10_c00208{bottom:311.265000px;}
.yf_c00208{bottom:330.465000px;}
.ye_c00208{bottom:382.065000px;}
.yd_c00208{bottom:407.715000px;}
.yc_c00208{bottom:432.465000px;}
.yb_c00208{bottom:456.615000px;}
.ya_c00208{bottom:481.665000px;}
.y9_c00208{bottom:558.315000px;}
.y8_c00208{bottom:583.215000px;}
.y7_c00208{bottom:608.565000px;}
.y6_c00208{bottom:633.165000px;}
.y5_c00208{bottom:658.515000px;}
.y4_c00208{bottom:683.565000px;}
.y3_c00208{bottom:708.465000px;}
.y2_c00208{bottom:733.365000px;}
.y1c_c00208{bottom:736.815000px;}
.y1b_c00208{bottom:753.315000px;}
.y1_c00208{bottom:758.415000px;}
.h8_c00208{height:13.200074px;}
.h9_c00208{height:43.804688px;}
.h7_c00208{height:56.975098px;}
.h3_c00208{height:80.758301px;}
.h2_c00208{height:87.361816px;}
.h5_c00208{height:91.160156px;}
.h4_c00208{height:94.958496px;}
.h6_c00208{height:102.555176px;}
.h1_c00208{height:831.000000px;}
.h0_c00208{height:831.075000px;}
.w2_c00208{width:104.875500px;}
.w0_c00208{width:566.175000px;}
.w1_c00208{width:566.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:24.000000px;}
.x2_c00208{left:26.250000px;}
.x3_c00208{left:28.050000px;}
.x8_c00208{left:29.700000px;}
.x7_c00208{left:31.650000px;}
.xa_c00208{left:33.000000px;}
.x4_c00208{left:52.200000px;}
.x5_c00208{left:53.250000px;}
.x9_c00208{left:56.700000px;}
.x6_c00208{left:132.000000px;}
.xd_c00208{left:234.901749px;}
.xb_c00208{left:508.500000px;}
.xc_c00208{left:518.100000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls5_c00208{letter-spacing:-5.333333pt;}
.ls4_c00208{letter-spacing:0.000000pt;}
.ls3_c00208{letter-spacing:2.666667pt;}
.ls2_c00208{letter-spacing:5.333333pt;}
.ls6_c00208{letter-spacing:8.000000pt;}
.ls0_c00208{letter-spacing:12.266667pt;}
.ls1_c00208{letter-spacing:15.949333pt;}
.ls7_c00208{letter-spacing:18.666667pt;}
.ws3_c00208{word-spacing:-49.986667pt;}
.ws2_c00208{word-spacing:-39.989333pt;}
.ws1_c00208{word-spacing:-39.130667pt;}
.ws4_c00208{word-spacing:-22.266667pt;}
.ws0_c00208{word-spacing:-17.448000pt;}
.ws5_c00208{word-spacing:-16.000000pt;}
.ws6_c00208{word-spacing:-14.781333pt;}
.ws7_c00208{word-spacing:-14.491733pt;}
.ws8_c00208{word-spacing:0.000000pt;}
._24_c00208{margin-left:-59.186667pt;}
._39_c00208{margin-left:-53.850667pt;}
._33_c00208{margin-left:-27.194667pt;}
._36_c00208{margin-left:-24.162667pt;}
._26_c00208{margin-left:-20.426667pt;}
._27_c00208{margin-left:-19.045333pt;}
._17_c00208{margin-left:-18.093333pt;}
._28_c00208{margin-left:-17.120000pt;}
._1c_c00208{margin-left:-14.445333pt;}
._1b_c00208{margin-left:-12.389333pt;}
._b_c00208{margin-left:-10.672000pt;}
._11_c00208{margin-left:-9.690667pt;}
._a_c00208{margin-left:-7.978667pt;}
._c_c00208{margin-left:-6.378667pt;}
._1f_c00208{margin-left:-5.213333pt;}
._3_c00208{margin-left:-4.293333pt;}
._6_c00208{margin-left:-3.066667pt;}
._5_c00208{margin-left:-1.594667pt;}
._8_c00208{width:0.920000pt;}
._0_c00208{width:1.901333pt;}
._1_c00208{width:3.005333pt;}
._9_c00208{width:4.354667pt;}
._7_c00208{width:5.704000pt;}
._d_c00208{width:6.869333pt;}
._10_c00208{width:8.157333pt;}
._2_c00208{width:9.445333pt;}
._12_c00208{width:10.426667pt;}
._4_c00208{width:11.530667pt;}
._13_c00208{width:13.125333pt;}
._f_c00208{width:14.965333pt;}
._1e_c00208{width:16.253333pt;}
._1d_c00208{width:17.792000pt;}
._29_c00208{width:19.320000pt;}
._2f_c00208{width:20.490667pt;}
._19_c00208{width:22.754667pt;}
._14_c00208{width:23.797333pt;}
._15_c00208{width:25.698667pt;}
._25_c00208{width:27.384000pt;}
._16_c00208{width:29.440000pt;}
._18_c00208{width:33.488000pt;}
._2c_c00208{width:40.970667pt;}
._37_c00208{width:46.066667pt;}
._23_c00208{width:48.576000pt;}
._2e_c00208{width:52.010667pt;}
._31_c00208{width:70.189333pt;}
._30_c00208{width:77.464000pt;}
._e_c00208{width:86.664000pt;}
._2a_c00208{width:87.762667pt;}
._1a_c00208{width:91.509333pt;}
._20_c00208{width:118.688000pt;}
._32_c00208{width:152.229333pt;}
._2b_c00208{width:174.277333pt;}
._35_c00208{width:307.157333pt;}
._22_c00208{width:363.800000pt;}
._34_c00208{width:439.392000pt;}
._2d_c00208{width:451.658667pt;}
._21_c00208{width:488.152000pt;}
._38_c00208{width:1348.573333pt;}
.fsa_c00208{font-size:40.000000pt;}
.fsb_c00208{font-size:42.666667pt;}
.fs2_c00208{font-size:49.066667pt;}
.fs5_c00208{font-size:50.666667pt;}
.fs6_c00208{font-size:53.333333pt;}
.fs1_c00208{font-size:58.666667pt;}
.fs0_c00208{font-size:61.333333pt;}
.fs8_c00208{font-size:64.000000pt;}
.fs3_c00208{font-size:66.666667pt;}
.fs7_c00208{font-size:69.333333pt;}
.fs9_c00208{font-size:72.000000pt;}
.fs4_c00208{font-size:85.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y1e_c00208{bottom:2.760000pt;}
.y1d_c00208{bottom:6.425219pt;}
.y1a_c00208{bottom:45.346667pt;}
.y19_c00208{bottom:72.280000pt;}
.y18_c00208{bottom:93.346667pt;}
.y17_c00208{bottom:115.213333pt;}
.y16_c00208{bottom:137.213333pt;}
.y15_c00208{bottom:158.146667pt;}
.y14_c00208{bottom:181.613333pt;}
.y13_c00208{bottom:205.480000pt;}
.y12_c00208{bottom:227.213333pt;}
.y11_c00208{bottom:249.880000pt;}
.y10_c00208{bottom:276.680000pt;}
.yf_c00208{bottom:293.746667pt;}
.ye_c00208{bottom:339.613333pt;}
.yd_c00208{bottom:362.413333pt;}
.yc_c00208{bottom:384.413333pt;}
.yb_c00208{bottom:405.880000pt;}
.ya_c00208{bottom:428.146667pt;}
.y9_c00208{bottom:496.280000pt;}
.y8_c00208{bottom:518.413333pt;}
.y7_c00208{bottom:540.946667pt;}
.y6_c00208{bottom:562.813333pt;}
.y5_c00208{bottom:585.346667pt;}
.y4_c00208{bottom:607.613333pt;}
.y3_c00208{bottom:629.746667pt;}
.y2_c00208{bottom:651.880000pt;}
.y1c_c00208{bottom:654.946667pt;}
.y1b_c00208{bottom:669.613333pt;}
.y1_c00208{bottom:674.146667pt;}
.h8_c00208{height:11.733399pt;}
.h9_c00208{height:38.937500pt;}
.h7_c00208{height:50.644531pt;}
.h3_c00208{height:71.785156pt;}
.h2_c00208{height:77.654948pt;}
.h5_c00208{height:81.031250pt;}
.h4_c00208{height:84.407552pt;}
.h6_c00208{height:91.160156pt;}
.h1_c00208{height:738.666667pt;}
.h0_c00208{height:738.733333pt;}
.w2_c00208{width:93.222667pt;}
.w0_c00208{width:503.266667pt;}
.w1_c00208{width:503.333333pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:21.333333pt;}
.x2_c00208{left:23.333333pt;}
.x3_c00208{left:24.933333pt;}
.x8_c00208{left:26.400000pt;}
.x7_c00208{left:28.133333pt;}
.xa_c00208{left:29.333333pt;}
.x4_c00208{left:46.400000pt;}
.x5_c00208{left:47.333333pt;}
.x9_c00208{left:50.400000pt;}
.x6_c00208{left:117.333333pt;}
.xd_c00208{left:208.801554pt;}
.xb_c00208{left:452.000000pt;}
.xc_c00208{left:460.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_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_e909f1a4e4353706dcb90cb4.woff2')format("woff");}.ff1_c00209{font-family:ff1_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:ff2_c00209;src:url('chunks/assets/font_f9f91c2745a9f48e389dd5e6.woff2')format("woff");}.ff2_c00209{font-family:ff2_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:ff3_c00209;src:url('chunks/assets/font_cdb86d9a498564a46cf9fe81.woff2')format("woff");}.ff3_c00209{font-family:ff3_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:ff4_c00209;src:url('chunks/assets/font_d47bb8bae06e37daf1a1d488.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;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_c00209;src:url('chunks/assets/font_e16b1032f4aaa6cd32093b64.woff2')format("woff");}.ff5_c00209{font-family:ff5_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:ff6_c00209;src:url('chunks/assets/font_226998ae65b6cf04194f263f.woff2')format("woff");}.ff6_c00209{font-family:ff6_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:ff7_c00209;src:url('chunks/assets/font_4c354dae29e08d9d97dc0085.woff2')format("woff");}.ff7_c00209{font-family:ff7_c00209;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_c00209;src:url('chunks/assets/font_12e135c396bb487199ddc0dd.woff2')format("woff");}.ff8_c00209{font-family:ff8_c00209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00209;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00209{font-family:ff9_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;}
.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;}
.ls7_c00209{letter-spacing:-9.000000px;}
.ls9_c00209{letter-spacing:-3.000000px;}
.ls5_c00209{letter-spacing:0.000000px;}
.ls2_c00209{letter-spacing:0.102000px;}
.ls6_c00209{letter-spacing:3.000000px;}
.ls4_c00209{letter-spacing:6.000000px;}
.ls0_c00209{letter-spacing:12.000000px;}
.ls1_c00209{letter-spacing:12.891000px;}
.ls3_c00209{letter-spacing:13.200000px;}
.ls8_c00209{letter-spacing:15.000000px;}
.lsa_c00209{letter-spacing:39.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:-39.825000px;}
.ws7_c00209{word-spacing:-33.000000px;}
.ws6_c00209{word-spacing:-22.629000px;}
.ws5_c00209{word-spacing:-20.784000px;}
.ws8_c00209{word-spacing:-20.352000px;}
.ws3_c00209{word-spacing:-17.640000px;}
.ws4_c00209{word-spacing:-15.060000px;}
.ws9_c00209{word-spacing:-14.352000px;}
.ws1_c00209{word-spacing:-8.448000px;}
.ws2_c00209{word-spacing:-3.654000px;}
.wsa_c00209{word-spacing:0.000000px;}
._27_c00209{margin-left:-43.293000px;}
._43_c00209{margin-left:-39.384000px;}
._25_c00209{margin-left:-34.431000px;}
._2e_c00209{margin-left:-25.230000px;}
._26_c00209{margin-left:-21.114000px;}
._15_c00209{margin-left:-19.200000px;}
._37_c00209{margin-left:-17.919000px;}
._9_c00209{margin-left:-16.125000px;}
._33_c00209{margin-left:-14.676000px;}
._1b_c00209{margin-left:-13.593000px;}
._1d_c00209{margin-left:-11.523000px;}
._18_c00209{margin-left:-10.350000px;}
._7_c00209{margin-left:-9.075000px;}
._0_c00209{margin-left:-8.025000px;}
._1_c00209{margin-left:-6.750000px;}
._5_c00209{margin-left:-5.625000px;}
._6_c00209{margin-left:-4.425000px;}
._4_c00209{margin-left:-3.375000px;}
._3_c00209{margin-left:-1.800000px;}
._44_c00209{width:1.008000px;}
._e_c00209{width:2.025000px;}
._8_c00209{width:3.300000px;}
._d_c00209{width:4.500000px;}
._a_c00209{width:5.700000px;}
._11_c00209{width:7.350000px;}
._f_c00209{width:8.400000px;}
._14_c00209{width:9.525000px;}
._13_c00209{width:10.650000px;}
._23_c00209{width:12.147000px;}
._12_c00209{width:14.100000px;}
._32_c00209{width:15.192000px;}
._46_c00209{width:16.836000px;}
._29_c00209{width:18.195000px;}
._36_c00209{width:19.665000px;}
._28_c00209{width:20.748000px;}
._45_c00209{width:22.164000px;}
._22_c00209{width:23.352000px;}
._c_c00209{width:24.600000px;}
._34_c00209{width:26.541000px;}
._3b_c00209{width:28.122000px;}
._21_c00209{width:29.187000px;}
._3f_c00209{width:33.576000px;}
._2d_c00209{width:36.126000px;}
._2b_c00209{width:41.298000px;}
._1c_c00209{width:42.747000px;}
._35_c00209{width:43.989000px;}
._b_c00209{width:45.075000px;}
._2c_c00209{width:46.431000px;}
._1f_c00209{width:50.163000px;}
._38_c00209{width:53.922000px;}
._30_c00209{width:63.948000px;}
._39_c00209{width:65.256000px;}
._1a_c00209{width:67.698000px;}
._41_c00209{width:69.042000px;}
._31_c00209{width:72.645000px;}
._20_c00209{width:75.432000px;}
._40_c00209{width:77.250000px;}
._3e_c00209{width:78.936000px;}
._1e_c00209{width:103.638000px;}
._16_c00209{width:109.125000px;}
._24_c00209{width:111.786000px;}
._42_c00209{width:120.873000px;}
._17_c00209{width:123.150000px;}
._2f_c00209{width:145.272000px;}
._3c_c00209{width:151.452000px;}
._10_c00209{width:215.925000px;}
._19_c00209{width:235.686000px;}
._3d_c00209{width:254.058000px;}
._3a_c00209{width:291.984000px;}
._2a_c00209{width:335.538000px;}
._2_c00209{width:536.925000px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(128,128,128);}
.fc0_c00209{color:rgb(0,0,0);}
.fs2_c00209{font-size:24.000000px;}
.fs7_c00209{font-size:48.000000px;}
.fs3_c00209{font-size:60.000000px;}
.fs1_c00209{font-size:69.000000px;}
.fs5_c00209{font-size:72.000000px;}
.fs0_c00209{font-size:75.000000px;}
.fs6_c00209{font-size:78.000000px;}
.fs4_c00209{font-size:84.000000px;}
.y0_c00209{bottom:0.000000px;}
.y1d_c00209{bottom:3.105000px;}
.y1c_c00209{bottom:7.228357px;}
.y1b_c00209{bottom:88.380000px;}
.y1a_c00209{bottom:114.180000px;}
.y19_c00209{bottom:139.080000px;}
.y18_c00209{bottom:164.730000px;}
.y17_c00209{bottom:190.680000px;}
.y16_c00209{bottom:216.030000px;}
.y15_c00209{bottom:240.930000px;}
.y14_c00209{bottom:265.680000px;}
.y13_c00209{bottom:291.630000px;}
.y12_c00209{bottom:316.680000px;}
.y11_c00209{bottom:340.830000px;}
.y10_c00209{bottom:365.580000px;}
.yf_c00209{bottom:389.880000px;}
.ye_c00209{bottom:414.780000px;}
.yd_c00209{bottom:464.130000px;}
.yc_c00209{bottom:487.680000px;}
.yb_c00209{bottom:516.480000px;}
.ya_c00209{bottom:541.980000px;}
.y9_c00209{bottom:567.030000px;}
.y8_c00209{bottom:592.380000px;}
.y7_c00209{bottom:616.680000px;}
.y6_c00209{bottom:640.230000px;}
.y5_c00209{bottom:666.930000px;}
.y4_c00209{bottom:692.580000px;}
.y3_c00209{bottom:717.630000px;}
.y2_c00209{bottom:742.530000px;}
.y1_c00209{bottom:767.580000px;}
.h7_c00209{height:13.200074px;}
.h5_c00209{height:30.386719px;}
.h8_c00209{height:43.804688px;}
.h3_c00209{height:65.040000px;}
.h4_c00209{height:80.758301px;}
.h2_c00209{height:87.361816px;}
.h6_c00209{height:91.160156px;}
.h1_c00209{height:94.958496px;}
.h0_c00209{height:833.250000px;}
.w2_c00209{width:104.875500px;}
.w0_c00209{width:563.775000px;}
.w1_c00209{width:564.000000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:22.950000px;}
.x1_c00209{left:36.450000px;}
.x3_c00209{left:51.600000px;}
.xe_c00209{left:85.350000px;}
.x7_c00209{left:87.000000px;}
.xd_c00209{left:88.050000px;}
.x8_c00209{left:89.400000px;}
.x9_c00209{left:91.500000px;}
.x5_c00209{left:93.450000px;}
.xb_c00209{left:108.600000px;}
.x6_c00209{left:111.300000px;}
.xc_c00209{left:113.100000px;}
.xa_c00209{left:124.500000px;}
.x4_c00209{left:162.000000px;}
.xf_c00209{left:233.701767px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls7_c00209{letter-spacing:-8.000000pt;}
.ls9_c00209{letter-spacing:-2.666667pt;}
.ls5_c00209{letter-spacing:0.000000pt;}
.ls2_c00209{letter-spacing:0.090667pt;}
.ls6_c00209{letter-spacing:2.666667pt;}
.ls4_c00209{letter-spacing:5.333333pt;}
.ls0_c00209{letter-spacing:10.666667pt;}
.ls1_c00209{letter-spacing:11.458667pt;}
.ls3_c00209{letter-spacing:11.733333pt;}
.ls8_c00209{letter-spacing:13.333333pt;}
.lsa_c00209{letter-spacing:34.666667pt;}
.ws0_c00209{word-spacing:-35.400000pt;}
.ws7_c00209{word-spacing:-29.333333pt;}
.ws6_c00209{word-spacing:-20.114667pt;}
.ws5_c00209{word-spacing:-18.474667pt;}
.ws8_c00209{word-spacing:-18.090667pt;}
.ws3_c00209{word-spacing:-15.680000pt;}
.ws4_c00209{word-spacing:-13.386667pt;}
.ws9_c00209{word-spacing:-12.757333pt;}
.ws1_c00209{word-spacing:-7.509333pt;}
.ws2_c00209{word-spacing:-3.248000pt;}
.wsa_c00209{word-spacing:0.000000pt;}
._27_c00209{margin-left:-38.482667pt;}
._43_c00209{margin-left:-35.008000pt;}
._25_c00209{margin-left:-30.605333pt;}
._2e_c00209{margin-left:-22.426667pt;}
._26_c00209{margin-left:-18.768000pt;}
._15_c00209{margin-left:-17.066667pt;}
._37_c00209{margin-left:-15.928000pt;}
._9_c00209{margin-left:-14.333333pt;}
._33_c00209{margin-left:-13.045333pt;}
._1b_c00209{margin-left:-12.082667pt;}
._1d_c00209{margin-left:-10.242667pt;}
._18_c00209{margin-left:-9.200000pt;}
._7_c00209{margin-left:-8.066667pt;}
._0_c00209{margin-left:-7.133333pt;}
._1_c00209{margin-left:-6.000000pt;}
._5_c00209{margin-left:-5.000000pt;}
._6_c00209{margin-left:-3.933333pt;}
._4_c00209{margin-left:-3.000000pt;}
._3_c00209{margin-left:-1.600000pt;}
._44_c00209{width:0.896000pt;}
._e_c00209{width:1.800000pt;}
._8_c00209{width:2.933333pt;}
._d_c00209{width:4.000000pt;}
._a_c00209{width:5.066667pt;}
._11_c00209{width:6.533333pt;}
._f_c00209{width:7.466667pt;}
._14_c00209{width:8.466667pt;}
._13_c00209{width:9.466667pt;}
._23_c00209{width:10.797333pt;}
._12_c00209{width:12.533333pt;}
._32_c00209{width:13.504000pt;}
._46_c00209{width:14.965333pt;}
._29_c00209{width:16.173333pt;}
._36_c00209{width:17.480000pt;}
._28_c00209{width:18.442667pt;}
._45_c00209{width:19.701333pt;}
._22_c00209{width:20.757333pt;}
._c_c00209{width:21.866667pt;}
._34_c00209{width:23.592000pt;}
._3b_c00209{width:24.997333pt;}
._21_c00209{width:25.944000pt;}
._3f_c00209{width:29.845333pt;}
._2d_c00209{width:32.112000pt;}
._2b_c00209{width:36.709333pt;}
._1c_c00209{width:37.997333pt;}
._35_c00209{width:39.101333pt;}
._b_c00209{width:40.066667pt;}
._2c_c00209{width:41.272000pt;}
._1f_c00209{width:44.589333pt;}
._38_c00209{width:47.930667pt;}
._30_c00209{width:56.842667pt;}
._39_c00209{width:58.005333pt;}
._1a_c00209{width:60.176000pt;}
._41_c00209{width:61.370667pt;}
._31_c00209{width:64.573333pt;}
._20_c00209{width:67.050667pt;}
._40_c00209{width:68.666667pt;}
._3e_c00209{width:70.165333pt;}
._1e_c00209{width:92.122667pt;}
._16_c00209{width:97.000000pt;}
._24_c00209{width:99.365333pt;}
._42_c00209{width:107.442667pt;}
._17_c00209{width:109.466667pt;}
._2f_c00209{width:129.130667pt;}
._3c_c00209{width:134.624000pt;}
._10_c00209{width:191.933333pt;}
._19_c00209{width:209.498667pt;}
._3d_c00209{width:225.829333pt;}
._3a_c00209{width:259.541333pt;}
._2a_c00209{width:298.256000pt;}
._2_c00209{width:477.266667pt;}
.fs2_c00209{font-size:21.333333pt;}
.fs7_c00209{font-size:42.666667pt;}
.fs3_c00209{font-size:53.333333pt;}
.fs1_c00209{font-size:61.333333pt;}
.fs5_c00209{font-size:64.000000pt;}
.fs0_c00209{font-size:66.666667pt;}
.fs6_c00209{font-size:69.333333pt;}
.fs4_c00209{font-size:74.666667pt;}
.y0_c00209{bottom:0.000000pt;}
.y1d_c00209{bottom:2.760000pt;}
.y1c_c00209{bottom:6.425206pt;}
.y1b_c00209{bottom:78.560000pt;}
.y1a_c00209{bottom:101.493333pt;}
.y19_c00209{bottom:123.626667pt;}
.y18_c00209{bottom:146.426667pt;}
.y17_c00209{bottom:169.493333pt;}
.y16_c00209{bottom:192.026667pt;}
.y15_c00209{bottom:214.160000pt;}
.y14_c00209{bottom:236.160000pt;}
.y13_c00209{bottom:259.226667pt;}
.y12_c00209{bottom:281.493333pt;}
.y11_c00209{bottom:302.960000pt;}
.y10_c00209{bottom:324.960000pt;}
.yf_c00209{bottom:346.560000pt;}
.ye_c00209{bottom:368.693333pt;}
.yd_c00209{bottom:412.560000pt;}
.yc_c00209{bottom:433.493333pt;}
.yb_c00209{bottom:459.093333pt;}
.ya_c00209{bottom:481.760000pt;}
.y9_c00209{bottom:504.026667pt;}
.y8_c00209{bottom:526.560000pt;}
.y7_c00209{bottom:548.160000pt;}
.y6_c00209{bottom:569.093333pt;}
.y5_c00209{bottom:592.826667pt;}
.y4_c00209{bottom:615.626667pt;}
.y3_c00209{bottom:637.893333pt;}
.y2_c00209{bottom:660.026667pt;}
.y1_c00209{bottom:682.293333pt;}
.h7_c00209{height:11.733399pt;}
.h5_c00209{height:27.010417pt;}
.h8_c00209{height:38.937500pt;}
.h3_c00209{height:57.813333pt;}
.h4_c00209{height:71.785156pt;}
.h2_c00209{height:77.654948pt;}
.h6_c00209{height:81.031250pt;}
.h1_c00209{height:84.407552pt;}
.h0_c00209{height:740.666667pt;}
.w2_c00209{width:93.222667pt;}
.w0_c00209{width:501.133333pt;}
.w1_c00209{width:501.333333pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:20.400000pt;}
.x1_c00209{left:32.400000pt;}
.x3_c00209{left:45.866667pt;}
.xe_c00209{left:75.866667pt;}
.x7_c00209{left:77.333333pt;}
.xd_c00209{left:78.266667pt;}
.x8_c00209{left:79.466667pt;}
.x9_c00209{left:81.333333pt;}
.x5_c00209{left:83.066667pt;}
.xb_c00209{left:96.533333pt;}
.x6_c00209{left:98.933333pt;}
.xc_c00209{left:100.533333pt;}
.xa_c00209{left:110.666667pt;}
.x4_c00209{left:144.000000pt;}
.xf_c00209{left:207.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_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_395dad39d9904a21d324ed7b.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_4cb6a685945ba7d0f93b9482.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_d183b7788ccc8b7ab60aace9.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_04981372eaf9e7bfed5fff5d.woff2')format("woff");}.ff4_c00210{font-family:ff4_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:ff5_c00210;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00210{font-family:ff6_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);}
.v1_c00210{vertical-align:-106.800000px;}
.v0_c00210{vertical-align:0.000000px;}
.ls3_c00210{letter-spacing:0.000000px;}
.ls2_c00210{letter-spacing:2.400000px;}
.ls4_c00210{letter-spacing:3.000000px;}
.ls6_c00210{letter-spacing:6.000000px;}
.ls5_c00210{letter-spacing:18.000000px;}
.ls0_c00210{letter-spacing:22.200000px;}
.ls1_c00210{letter-spacing:25.077000px;}
.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;}
}
.ws5_c00210{word-spacing:-48.126000px;}
.ws4_c00210{word-spacing:-39.100800px;}
.ws0_c00210{word-spacing:-34.629000px;}
.ws7_c00210{word-spacing:-19.629000px;}
.ws3_c00210{word-spacing:-18.924000px;}
.ws2_c00210{word-spacing:-16.629000px;}
.ws1_c00210{word-spacing:-6.759000px;}
.ws8_c00210{word-spacing:0.000000px;}
.ws6_c00210{word-spacing:798.441000px;}
._18_c00210{margin-left:-22.149000px;}
._1f_c00210{margin-left:-20.700000px;}
._25_c00210{margin-left:-18.489000px;}
._12_c00210{margin-left:-15.111000px;}
._a_c00210{margin-left:-13.593000px;}
._d_c00210{margin-left:-11.592000px;}
._1c_c00210{margin-left:-10.281000px;}
._11_c00210{margin-left:-9.033000px;}
._1_c00210{margin-left:-7.245000px;}
._10_c00210{margin-left:-5.244000px;}
._3_c00210{margin-left:-3.381000px;}
._2_c00210{margin-left:-2.139000px;}
._c_c00210{margin-left:-1.035000px;}
._0_c00210{width:1.863000px;}
._9_c00210{width:2.898000px;}
._5_c00210{width:4.140000px;}
._8_c00210{width:6.003000px;}
._6_c00210{width:7.935000px;}
._7_c00210{width:9.246000px;}
._b_c00210{width:10.419000px;}
._f_c00210{width:11.730000px;}
._14_c00210{width:12.834000px;}
._13_c00210{width:14.559000px;}
._1a_c00210{width:16.167000px;}
._e_c00210{width:18.078000px;}
._17_c00210{width:19.734000px;}
._21_c00210{width:22.224000px;}
._19_c00210{width:23.322000px;}
._1b_c00210{width:26.337000px;}
._15_c00210{width:34.308000px;}
._1d_c00210{width:36.777000px;}
._20_c00210{width:41.841000px;}
._23_c00210{width:47.499000px;}
._16_c00210{width:53.466000px;}
._22_c00210{width:72.822000px;}
._1e_c00210{width:230.916000px;}
._24_c00210{width:401.769000px;}
._4_c00210{width:485.133000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(128,128,128);}
.fc0_c00210{color:rgb(0,0,0);}
.fs3_c00210{font-size:48.000000px;}
.fs2_c00210{font-size:55.200000px;}
.fs1_c00210{font-size:66.000000px;}
.fs0_c00210{font-size:69.000000px;}
.y0_c00210{bottom:0.000000px;}
.y1c_c00210{bottom:3.105000px;}
.y1b_c00210{bottom:7.228371px;}
.y19_c00210{bottom:89.115000px;}
.y18_c00210{bottom:111.765000px;}
.y17_c00210{bottom:136.365000px;}
.y16_c00210{bottom:161.715000px;}
.y15_c00210{bottom:186.765000px;}
.y14_c00210{bottom:211.065000px;}
.y13_c00210{bottom:237.015000px;}
.y12_c00210{bottom:261.915000px;}
.y11_c00210{bottom:286.665000px;}
.y10_c00210{bottom:311.565000px;}
.yf_c00210{bottom:335.865000px;}
.ye_c00210{bottom:360.915000px;}
.y1a_c00210{bottom:369.615000px;}
.yd_c00210{bottom:386.115000px;}
.yc_c00210{bottom:410.715000px;}
.yb_c00210{bottom:436.065000px;}
.ya_c00210{bottom:461.115000px;}
.y9_c00210{bottom:485.715000px;}
.y8_c00210{bottom:533.715000px;}
.y7_c00210{bottom:583.215000px;}
.y6_c00210{bottom:608.865000px;}
.y5_c00210{bottom:634.215000px;}
.y4_c00210{bottom:659.115000px;}
.y3_c00210{bottom:709.065000px;}
.y2_c00210{bottom:757.365000px;}
.y1_c00210{bottom:783.765000px;}
.h4_c00210{height:13.200074px;}
.h5_c00210{height:43.804688px;}
.h3_c00210{height:80.758301px;}
.h2_c00210{height:87.361816px;}
.h0_c00210{height:825.675000px;}
.h1_c00210{height:825.750000px;}
.w2_c00210{width:104.875500px;}
.w0_c00210{width:562.125000px;}
.w1_c00210{width:562.500000px;}
.x0_c00210{left:0.000000px;}
.xb_c00210{left:25.200000px;}
.x6_c00210{left:26.700000px;}
.x2_c00210{left:32.100000px;}
.xc_c00210{left:33.300000px;}
.x5_c00210{left:34.650000px;}
.x9_c00210{left:36.000000px;}
.xd_c00210{left:37.800000px;}
.x8_c00210{left:53.700000px;}
.x4_c00210{left:57.300000px;}
.xa_c00210{left:58.950000px;}
.x7_c00210{left:67.200000px;}
.x3_c00210{left:177.750000px;}
.x1_c00210{left:187.650000px;}
.xf_c00210{left:232.876740px;}
.xe_c00210{left:527.400000px;}
@media print{
.v1_c00210{vertical-align:-94.933333pt;}
.v0_c00210{vertical-align:0.000000pt;}
.ls3_c00210{letter-spacing:0.000000pt;}
.ls2_c00210{letter-spacing:2.133333pt;}
.ls4_c00210{letter-spacing:2.666667pt;}
.ls6_c00210{letter-spacing:5.333333pt;}
.ls5_c00210{letter-spacing:16.000000pt;}
.ls0_c00210{letter-spacing:19.733333pt;}
.ls1_c00210{letter-spacing:22.290667pt;}
.ws5_c00210{word-spacing:-42.778667pt;}
.ws4_c00210{word-spacing:-34.756267pt;}
.ws0_c00210{word-spacing:-30.781333pt;}
.ws7_c00210{word-spacing:-17.448000pt;}
.ws3_c00210{word-spacing:-16.821333pt;}
.ws2_c00210{word-spacing:-14.781333pt;}
.ws1_c00210{word-spacing:-6.008000pt;}
.ws8_c00210{word-spacing:0.000000pt;}
.ws6_c00210{word-spacing:709.725333pt;}
._18_c00210{margin-left:-19.688000pt;}
._1f_c00210{margin-left:-18.400000pt;}
._25_c00210{margin-left:-16.434667pt;}
._12_c00210{margin-left:-13.432000pt;}
._a_c00210{margin-left:-12.082667pt;}
._d_c00210{margin-left:-10.304000pt;}
._1c_c00210{margin-left:-9.138667pt;}
._11_c00210{margin-left:-8.029333pt;}
._1_c00210{margin-left:-6.440000pt;}
._10_c00210{margin-left:-4.661333pt;}
._3_c00210{margin-left:-3.005333pt;}
._2_c00210{margin-left:-1.901333pt;}
._c_c00210{margin-left:-0.920000pt;}
._0_c00210{width:1.656000pt;}
._9_c00210{width:2.576000pt;}
._5_c00210{width:3.680000pt;}
._8_c00210{width:5.336000pt;}
._6_c00210{width:7.053333pt;}
._7_c00210{width:8.218667pt;}
._b_c00210{width:9.261333pt;}
._f_c00210{width:10.426667pt;}
._14_c00210{width:11.408000pt;}
._13_c00210{width:12.941333pt;}
._1a_c00210{width:14.370667pt;}
._e_c00210{width:16.069333pt;}
._17_c00210{width:17.541333pt;}
._21_c00210{width:19.754667pt;}
._19_c00210{width:20.730667pt;}
._1b_c00210{width:23.410667pt;}
._15_c00210{width:30.496000pt;}
._1d_c00210{width:32.690667pt;}
._20_c00210{width:37.192000pt;}
._23_c00210{width:42.221333pt;}
._16_c00210{width:47.525333pt;}
._22_c00210{width:64.730667pt;}
._1e_c00210{width:205.258667pt;}
._24_c00210{width:357.128000pt;}
._4_c00210{width:431.229333pt;}
.fs3_c00210{font-size:42.666667pt;}
.fs2_c00210{font-size:49.066667pt;}
.fs1_c00210{font-size:58.666667pt;}
.fs0_c00210{font-size:61.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y1c_c00210{bottom:2.760000pt;}
.y1b_c00210{bottom:6.425219pt;}
.y19_c00210{bottom:79.213333pt;}
.y18_c00210{bottom:99.346667pt;}
.y17_c00210{bottom:121.213333pt;}
.y16_c00210{bottom:143.746667pt;}
.y15_c00210{bottom:166.013333pt;}
.y14_c00210{bottom:187.613333pt;}
.y13_c00210{bottom:210.680000pt;}
.y12_c00210{bottom:232.813333pt;}
.y11_c00210{bottom:254.813333pt;}
.y10_c00210{bottom:276.946667pt;}
.yf_c00210{bottom:298.546667pt;}
.ye_c00210{bottom:320.813333pt;}
.y1a_c00210{bottom:328.546667pt;}
.yd_c00210{bottom:343.213333pt;}
.yc_c00210{bottom:365.080000pt;}
.yb_c00210{bottom:387.613333pt;}
.ya_c00210{bottom:409.880000pt;}
.y9_c00210{bottom:431.746667pt;}
.y8_c00210{bottom:474.413333pt;}
.y7_c00210{bottom:518.413333pt;}
.y6_c00210{bottom:541.213333pt;}
.y5_c00210{bottom:563.746667pt;}
.y4_c00210{bottom:585.880000pt;}
.y3_c00210{bottom:630.280000pt;}
.y2_c00210{bottom:673.213333pt;}
.y1_c00210{bottom:696.680000pt;}
.h4_c00210{height:11.733399pt;}
.h5_c00210{height:38.937500pt;}
.h3_c00210{height:71.785156pt;}
.h2_c00210{height:77.654948pt;}
.h0_c00210{height:733.933333pt;}
.h1_c00210{height:734.000000pt;}
.w2_c00210{width:93.222667pt;}
.w0_c00210{width:499.666667pt;}
.w1_c00210{width:500.000000pt;}
.x0_c00210{left:0.000000pt;}
.xb_c00210{left:22.400000pt;}
.x6_c00210{left:23.733333pt;}
.x2_c00210{left:28.533333pt;}
.xc_c00210{left:29.600000pt;}
.x5_c00210{left:30.800000pt;}
.x9_c00210{left:32.000000pt;}
.xd_c00210{left:33.600000pt;}
.x8_c00210{left:47.733333pt;}
.x4_c00210{left:50.933333pt;}
.xa_c00210{left:52.400000pt;}
.x7_c00210{left:59.733333pt;}
.x3_c00210{left:158.000000pt;}
.x1_c00210{left:166.800000pt;}
.xf_c00210{left:207.001546pt;}
.xe_c00210{left:468.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_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_0b0910527d42900f5fb27bb2.woff2')format("woff");}.ff1_c00211{font-family:ff1_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:ff2_c00211;src:url('chunks/assets/font_8cac7baab9db8581cc3faa97.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;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_c00211;src:url('chunks/assets/font_4885a50e15849912dc787f7a.woff2')format("woff");}.ff3_c00211{font-family:ff3_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:ff4_c00211;src:url('chunks/assets/font_a828150b219cf90aa367627d.woff2')format("woff");}.ff4_c00211{font-family:ff4_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:ff5_c00211;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff5_c00211{font-family:ff5_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:ff6_c00211;src:url('chunks/assets/font_f7fe8a9bc1c94f735f23492d.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00211{font-family:ff7_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;}
.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;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls5_c00211{letter-spacing:3.000000px;}
.ls0_c00211{letter-spacing:15.033000px;}
.ls2_c00211{letter-spacing:16.725000px;}
.ls3_c00211{letter-spacing:18.000000px;}
.ls1_c00211{letter-spacing:28.077000px;}
.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;}
}
.ws6_c00211{word-spacing:-44.022000px;}
.ws0_c00211{word-spacing:-34.629000px;}
.ws2_c00211{word-spacing:-33.000000px;}
.ws7_c00211{word-spacing:-20.574000px;}
.ws4_c00211{word-spacing:-18.924000px;}
.ws5_c00211{word-spacing:-16.629000px;}
.ws3_c00211{word-spacing:-1.035000px;}
.ws8_c00211{word-spacing:0.000000px;}
.ws1_c00211{word-spacing:4.347000px;}
._15_c00211{margin-left:-18.492000px;}
._13_c00211{margin-left:-16.134000px;}
._d_c00211{margin-left:-14.964000px;}
._14_c00211{margin-left:-12.972000px;}
._1e_c00211{margin-left:-11.949000px;}
._12_c00211{margin-left:-10.545000px;}
._1d_c00211{margin-left:-9.249000px;}
._5_c00211{margin-left:-7.935000px;}
._f_c00211{margin-left:-6.900000px;}
._8_c00211{margin-left:-5.244000px;}
._9_c00211{margin-left:-4.209000px;}
._7_c00211{margin-left:-3.174000px;}
._6_c00211{margin-left:-2.001000px;}
._e_c00211{width:1.875000px;}
._4_c00211{width:3.588000px;}
._0_c00211{width:5.106000px;}
._1_c00211{width:6.417000px;}
._2_c00211{width:7.866000px;}
._3_c00211{width:9.246000px;}
._11_c00211{width:10.836000px;}
._1f_c00211{width:12.723000px;}
._b_c00211{width:14.076000px;}
._10_c00211{width:15.807000px;}
._c_c00211{width:17.871000px;}
._16_c00211{width:19.665000px;}
._22_c00211{width:21.609000px;}
._a_c00211{width:22.632000px;}
._18_c00211{width:23.736000px;}
._21_c00211{width:25.473000px;}
._17_c00211{width:26.565000px;}
._1a_c00211{width:27.825000px;}
._19_c00211{width:29.388000px;}
._1c_c00211{width:33.825000px;}
._24_c00211{width:35.148000px;}
._23_c00211{width:37.659000px;}
._1b_c00211{width:44.232000px;}
._26_c00211{width:65.601000px;}
._28_c00211{width:68.451000px;}
._27_c00211{width:87.975000px;}
._20_c00211{width:101.154000px;}
._25_c00211{width:268.770000px;}
._29_c00211{width:567.390000px;}
._2a_c00211{width:728.151000px;}
.fc2_c00211{color:transparent;}
.fc1_c00211{color:rgb(128,128,128);}
.fc0_c00211{color:rgb(0,0,0);}
.fs4_c00211{font-size:48.000000px;}
.fs2_c00211{font-size:66.000000px;}
.fs0_c00211{font-size:69.000000px;}
.fs3_c00211{font-size:81.000000px;}
.fs1_c00211{font-size:84.000000px;}
.y0_c00211{bottom:0.000000px;}
.y1a_c00211{bottom:3.105000px;}
.y19_c00211{bottom:7.228369px;}
.y18_c00211{bottom:81.570000px;}
.y17_c00211{bottom:132.870000px;}
.y16_c00211{bottom:156.570000px;}
.y15_c00211{bottom:182.970000px;}
.y14_c00211{bottom:208.170000px;}
.y13_c00211{bottom:233.220000px;}
.y12_c00211{bottom:258.420000px;}
.y11_c00211{bottom:283.170000px;}
.y10_c00211{bottom:308.370000px;}
.yf_c00211{bottom:333.270000px;}
.ye_c00211{bottom:357.120000px;}
.yd_c00211{bottom:380.970000px;}
.yc_c00211{bottom:406.320000px;}
.yb_c00211{bottom:432.720000px;}
.ya_c00211{bottom:456.570000px;}
.y9_c00211{bottom:481.620000px;}
.y8_c00211{bottom:506.820000px;}
.y7_c00211{bottom:531.570000px;}
.y6_c00211{bottom:581.070000px;}
.y5_c00211{bottom:631.020000px;}
.y4_c00211{bottom:656.070000px;}
.y3_c00211{bottom:680.970000px;}
.y2_c00211{bottom:705.720000px;}
.y1_c00211{bottom:755.670000px;}
.h6_c00211{height:13.200073px;}
.h7_c00211{height:43.804688px;}
.h2_c00211{height:80.758301px;}
.h4_c00211{height:87.361816px;}
.h3_c00211{height:91.056000px;}
.h5_c00211{height:102.555176px;}
.h1_c00211{height:844.500000px;}
.h0_c00211{height:844.800000px;}
.w2_c00211{width:104.875500px;}
.w0_c00211{width:572.100000px;}
.w1_c00211{width:572.250000px;}
.x0_c00211{left:0.000000px;}
.xa_c00211{left:31.350000px;}
.x8_c00211{left:55.800000px;}
.xb_c00211{left:80.700000px;}
.xc_c00211{left:97.350000px;}
.x4_c00211{left:99.000000px;}
.x6_c00211{left:103.950000px;}
.x7_c00211{left:105.300000px;}
.x3_c00211{left:107.400000px;}
.x2_c00211{left:131.250000px;}
.x5_c00211{left:144.450000px;}
.x9_c00211{left:161.100000px;}
.xd_c00211{left:237.864258px;}
.x1_c00211{left:268.200000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls5_c00211{letter-spacing:2.666667pt;}
.ls0_c00211{letter-spacing:13.362667pt;}
.ls2_c00211{letter-spacing:14.866667pt;}
.ls3_c00211{letter-spacing:16.000000pt;}
.ls1_c00211{letter-spacing:24.957333pt;}
.ws6_c00211{word-spacing:-39.130667pt;}
.ws0_c00211{word-spacing:-30.781333pt;}
.ws2_c00211{word-spacing:-29.333333pt;}
.ws7_c00211{word-spacing:-18.288000pt;}
.ws4_c00211{word-spacing:-16.821333pt;}
.ws5_c00211{word-spacing:-14.781333pt;}
.ws3_c00211{word-spacing:-0.920000pt;}
.ws8_c00211{word-spacing:0.000000pt;}
.ws1_c00211{word-spacing:3.864000pt;}
._15_c00211{margin-left:-16.437333pt;}
._13_c00211{margin-left:-14.341333pt;}
._d_c00211{margin-left:-13.301333pt;}
._14_c00211{margin-left:-11.530667pt;}
._1e_c00211{margin-left:-10.621333pt;}
._12_c00211{margin-left:-9.373333pt;}
._1d_c00211{margin-left:-8.221333pt;}
._5_c00211{margin-left:-7.053333pt;}
._f_c00211{margin-left:-6.133333pt;}
._8_c00211{margin-left:-4.661333pt;}
._9_c00211{margin-left:-3.741333pt;}
._7_c00211{margin-left:-2.821333pt;}
._6_c00211{margin-left:-1.778667pt;}
._e_c00211{width:1.666667pt;}
._4_c00211{width:3.189333pt;}
._0_c00211{width:4.538667pt;}
._1_c00211{width:5.704000pt;}
._2_c00211{width:6.992000pt;}
._3_c00211{width:8.218667pt;}
._11_c00211{width:9.632000pt;}
._1f_c00211{width:11.309333pt;}
._b_c00211{width:12.512000pt;}
._10_c00211{width:14.050667pt;}
._c_c00211{width:15.885333pt;}
._16_c00211{width:17.480000pt;}
._22_c00211{width:19.208000pt;}
._a_c00211{width:20.117333pt;}
._18_c00211{width:21.098667pt;}
._21_c00211{width:22.642667pt;}
._17_c00211{width:23.613333pt;}
._1a_c00211{width:24.733333pt;}
._19_c00211{width:26.122667pt;}
._1c_c00211{width:30.066667pt;}
._24_c00211{width:31.242667pt;}
._23_c00211{width:33.474667pt;}
._1b_c00211{width:39.317333pt;}
._26_c00211{width:58.312000pt;}
._28_c00211{width:60.845333pt;}
._27_c00211{width:78.200000pt;}
._20_c00211{width:89.914667pt;}
._25_c00211{width:238.906667pt;}
._29_c00211{width:504.346667pt;}
._2a_c00211{width:647.245333pt;}
.fs4_c00211{font-size:42.666667pt;}
.fs2_c00211{font-size:58.666667pt;}
.fs0_c00211{font-size:61.333333pt;}
.fs3_c00211{font-size:72.000000pt;}
.fs1_c00211{font-size:74.666667pt;}
.y0_c00211{bottom:0.000000pt;}
.y1a_c00211{bottom:2.760000pt;}
.y19_c00211{bottom:6.425217pt;}
.y18_c00211{bottom:72.506667pt;}
.y17_c00211{bottom:118.106667pt;}
.y16_c00211{bottom:139.173333pt;}
.y15_c00211{bottom:162.640000pt;}
.y14_c00211{bottom:185.040000pt;}
.y13_c00211{bottom:207.306667pt;}
.y12_c00211{bottom:229.706667pt;}
.y11_c00211{bottom:251.706667pt;}
.y10_c00211{bottom:274.106667pt;}
.yf_c00211{bottom:296.240000pt;}
.ye_c00211{bottom:317.440000pt;}
.yd_c00211{bottom:338.640000pt;}
.yc_c00211{bottom:361.173333pt;}
.yb_c00211{bottom:384.640000pt;}
.ya_c00211{bottom:405.840000pt;}
.y9_c00211{bottom:428.106667pt;}
.y8_c00211{bottom:450.506667pt;}
.y7_c00211{bottom:472.506667pt;}
.y6_c00211{bottom:516.506667pt;}
.y5_c00211{bottom:560.906667pt;}
.y4_c00211{bottom:583.173333pt;}
.y3_c00211{bottom:605.306667pt;}
.y2_c00211{bottom:627.306667pt;}
.y1_c00211{bottom:671.706667pt;}
.h6_c00211{height:11.733399pt;}
.h7_c00211{height:38.937500pt;}
.h2_c00211{height:71.785156pt;}
.h4_c00211{height:77.654948pt;}
.h3_c00211{height:80.938667pt;}
.h5_c00211{height:91.160156pt;}
.h1_c00211{height:750.666667pt;}
.h0_c00211{height:750.933333pt;}
.w2_c00211{width:93.222667pt;}
.w0_c00211{width:508.533333pt;}
.w1_c00211{width:508.666667pt;}
.x0_c00211{left:0.000000pt;}
.xa_c00211{left:27.866667pt;}
.x8_c00211{left:49.600000pt;}
.xb_c00211{left:71.733333pt;}
.xc_c00211{left:86.533333pt;}
.x4_c00211{left:88.000000pt;}
.x6_c00211{left:92.400000pt;}
.x7_c00211{left:93.600000pt;}
.x3_c00211{left:95.466667pt;}
.x2_c00211{left:116.666667pt;}
.x5_c00211{left:128.400000pt;}
.x9_c00211{left:143.200000pt;}
.xd_c00211{left:211.434896pt;}
.x1_c00211{left:238.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df88c03bbf4fe8d552e4697f.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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_e2a061a429b721ef75dd328f.woff2')format("woff");}.ff3_c00212{font-family:ff3_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:ff4_c00212;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00212{font-family:ff4_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);}
.v0_c00212{vertical-align:0.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:3.000000px;}
.ls4_c00212{letter-spacing:6.000000px;}
.ls1_c00212{letter-spacing:12.360000px;}
.ls3_c00212{letter-spacing:18.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;}
}
.ws2_c00212{word-spacing:-34.629000px;}
.ws0_c00212{word-spacing:-33.000000px;}
.ws3_c00212{word-spacing:-22.629000px;}
.ws1_c00212{word-spacing:-16.629000px;}
.ws4_c00212{word-spacing:-4.482000px;}
.ws5_c00212{word-spacing:0.000000px;}
._24_c00212{margin-left:-23.184000px;}
._d_c00212{margin-left:-16.236000px;}
._f_c00212{margin-left:-14.628000px;}
._6_c00212{margin-left:-13.386000px;}
._10_c00212{margin-left:-12.282000px;}
._5_c00212{margin-left:-10.005000px;}
._7_c00212{margin-left:-7.935000px;}
._1d_c00212{margin-left:-6.891000px;}
._b_c00212{margin-left:-5.865000px;}
._1_c00212{margin-left:-4.416000px;}
._2_c00212{margin-left:-3.381000px;}
._3_c00212{margin-left:-2.037000px;}
._11_c00212{margin-left:-1.011000px;}
._0_c00212{width:1.518000px;}
._c_c00212{width:2.622000px;}
._e_c00212{width:3.657000px;}
._13_c00212{width:4.659000px;}
._8_c00212{width:6.003000px;}
._a_c00212{width:7.521000px;}
._9_c00212{width:8.970000px;}
._16_c00212{width:10.971000px;}
._19_c00212{width:12.006000px;}
._18_c00212{width:13.344000px;}
._1f_c00212{width:14.622000px;}
._1c_c00212{width:16.179000px;}
._1e_c00212{width:17.184000px;}
._12_c00212{width:18.216000px;}
._21_c00212{width:21.117000px;}
._15_c00212{width:22.893000px;}
._1a_c00212{width:27.147000px;}
._14_c00212{width:32.769000px;}
._17_c00212{width:37.233000px;}
._20_c00212{width:39.156000px;}
._22_c00212{width:112.134000px;}
._23_c00212{width:118.368000px;}
._26_c00212{width:189.234000px;}
._25_c00212{width:436.566000px;}
._4_c00212{width:511.782000px;}
._1b_c00212{width:1222.239000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(128,128,128);}
.fc0_c00212{color:rgb(0,0,0);}
.fs2_c00212{font-size:48.000000px;}
.fs1_c00212{font-size:66.000000px;}
.fs0_c00212{font-size:69.000000px;}
.y0_c00212{bottom:0.000000px;}
.y1b_c00212{bottom:3.105000px;}
.y1a_c00212{bottom:7.228371px;}
.y19_c00212{bottom:64.515000px;}
.y18_c00212{bottom:92.265000px;}
.y17_c00212{bottom:113.865000px;}
.y16_c00212{bottom:137.715000px;}
.y15_c00212{bottom:162.765000px;}
.y14_c00212{bottom:187.665000px;}
.y13_c00212{bottom:213.015000px;}
.y12_c00212{bottom:238.065000px;}
.y11_c00212{bottom:263.265000px;}
.y10_c00212{bottom:288.015000px;}
.yf_c00212{bottom:312.165000px;}
.ye_c00212{bottom:337.215000px;}
.yd_c00212{bottom:360.765000px;}
.yc_c00212{bottom:411.465000px;}
.yb_c00212{bottom:436.065000px;}
.ya_c00212{bottom:461.415000px;}
.y9_c00212{bottom:486.465000px;}
.y8_c00212{bottom:510.615000px;}
.y7_c00212{bottom:558.915000px;}
.y6_c00212{bottom:608.865000px;}
.y5_c00212{bottom:634.515000px;}
.y4_c00212{bottom:659.115000px;}
.y3_c00212{bottom:684.165000px;}
.y2_c00212{bottom:734.115000px;}
.y1_c00212{bottom:783.765000px;}
.h4_c00212{height:13.200074px;}
.h5_c00212{height:43.804688px;}
.h3_c00212{height:80.758301px;}
.h2_c00212{height:87.361816px;}
.h1_c00212{height:831.000000px;}
.h0_c00212{height:831.075000px;}
.w2_c00212{width:104.875500px;}
.w0_c00212{width:566.175000px;}
.w1_c00212{width:566.250000px;}
.x0_c00212{left:0.000000px;}
.x8_c00212{left:28.350000px;}
.x5_c00212{left:31.350000px;}
.x7_c00212{left:33.150000px;}
.x4_c00212{left:35.400000px;}
.x6_c00212{left:56.700000px;}
.x3_c00212{left:60.000000px;}
.x2_c00212{left:184.200000px;}
.x1_c00212{left:196.800000px;}
.xa_c00212{left:234.901749px;}
.x9_c00212{left:254.250000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:2.666667pt;}
.ls4_c00212{letter-spacing:5.333333pt;}
.ls1_c00212{letter-spacing:10.986667pt;}
.ls3_c00212{letter-spacing:16.000000pt;}
.ws2_c00212{word-spacing:-30.781333pt;}
.ws0_c00212{word-spacing:-29.333333pt;}
.ws3_c00212{word-spacing:-20.114667pt;}
.ws1_c00212{word-spacing:-14.781333pt;}
.ws4_c00212{word-spacing:-3.984000pt;}
.ws5_c00212{word-spacing:0.000000pt;}
._24_c00212{margin-left:-20.608000pt;}
._d_c00212{margin-left:-14.432000pt;}
._f_c00212{margin-left:-13.002667pt;}
._6_c00212{margin-left:-11.898667pt;}
._10_c00212{margin-left:-10.917333pt;}
._5_c00212{margin-left:-8.893333pt;}
._7_c00212{margin-left:-7.053333pt;}
._1d_c00212{margin-left:-6.125333pt;}
._b_c00212{margin-left:-5.213333pt;}
._1_c00212{margin-left:-3.925333pt;}
._2_c00212{margin-left:-3.005333pt;}
._3_c00212{margin-left:-1.810667pt;}
._11_c00212{margin-left:-0.898667pt;}
._0_c00212{width:1.349333pt;}
._c_c00212{width:2.330667pt;}
._e_c00212{width:3.250667pt;}
._13_c00212{width:4.141333pt;}
._8_c00212{width:5.336000pt;}
._a_c00212{width:6.685333pt;}
._9_c00212{width:7.973333pt;}
._16_c00212{width:9.752000pt;}
._19_c00212{width:10.672000pt;}
._18_c00212{width:11.861333pt;}
._1f_c00212{width:12.997333pt;}
._1c_c00212{width:14.381333pt;}
._1e_c00212{width:15.274667pt;}
._12_c00212{width:16.192000pt;}
._21_c00212{width:18.770667pt;}
._15_c00212{width:20.349333pt;}
._1a_c00212{width:24.130667pt;}
._14_c00212{width:29.128000pt;}
._17_c00212{width:33.096000pt;}
._20_c00212{width:34.805333pt;}
._22_c00212{width:99.674667pt;}
._23_c00212{width:105.216000pt;}
._26_c00212{width:168.208000pt;}
._25_c00212{width:388.058667pt;}
._4_c00212{width:454.917333pt;}
._1b_c00212{width:1086.434667pt;}
.fs2_c00212{font-size:42.666667pt;}
.fs1_c00212{font-size:58.666667pt;}
.fs0_c00212{font-size:61.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.y1b_c00212{bottom:2.760000pt;}
.y1a_c00212{bottom:6.425219pt;}
.y19_c00212{bottom:57.346667pt;}
.y18_c00212{bottom:82.013333pt;}
.y17_c00212{bottom:101.213333pt;}
.y16_c00212{bottom:122.413333pt;}
.y15_c00212{bottom:144.680000pt;}
.y14_c00212{bottom:166.813333pt;}
.y13_c00212{bottom:189.346667pt;}
.y12_c00212{bottom:211.613333pt;}
.y11_c00212{bottom:234.013333pt;}
.y10_c00212{bottom:256.013333pt;}
.yf_c00212{bottom:277.480000pt;}
.ye_c00212{bottom:299.746667pt;}
.yd_c00212{bottom:320.680000pt;}
.yc_c00212{bottom:365.746667pt;}
.yb_c00212{bottom:387.613333pt;}
.ya_c00212{bottom:410.146667pt;}
.y9_c00212{bottom:432.413333pt;}
.y8_c00212{bottom:453.880000pt;}
.y7_c00212{bottom:496.813333pt;}
.y6_c00212{bottom:541.213333pt;}
.y5_c00212{bottom:564.013333pt;}
.y4_c00212{bottom:585.880000pt;}
.y3_c00212{bottom:608.146667pt;}
.y2_c00212{bottom:652.546667pt;}
.y1_c00212{bottom:696.680000pt;}
.h4_c00212{height:11.733399pt;}
.h5_c00212{height:38.937500pt;}
.h3_c00212{height:71.785156pt;}
.h2_c00212{height:77.654948pt;}
.h1_c00212{height:738.666667pt;}
.h0_c00212{height:738.733333pt;}
.w2_c00212{width:93.222667pt;}
.w0_c00212{width:503.266667pt;}
.w1_c00212{width:503.333333pt;}
.x0_c00212{left:0.000000pt;}
.x8_c00212{left:25.200000pt;}
.x5_c00212{left:27.866667pt;}
.x7_c00212{left:29.466667pt;}
.x4_c00212{left:31.466667pt;}
.x6_c00212{left:50.400000pt;}
.x3_c00212{left:53.333333pt;}
.x2_c00212{left:163.733333pt;}
.x1_c00212{left:174.933333pt;}
.xa_c00212{left:208.801554pt;}
.x9_c00212{left:226.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_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_2d3c1bbf97aeab4659feb112.woff2')format("woff");}.ff1_c00213{font-family:ff1_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:ff2_c00213;src:url('chunks/assets/font_7a553f75dbdd2445ae9f47eb.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_d183b7788ccc8b7ab60aace9.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_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00213{font-family:ff4_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:ff5_c00213;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00213{font-family:ff5_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:0.000000px;}
.ls4_c00213{letter-spacing:3.000000px;}
.ls1_c00213{letter-spacing:6.000000px;}
.ls2_c00213{letter-spacing:18.000000px;}
.ls0_c00213{letter-spacing:28.077000px;}
.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;}
}
.ws4_c00213{word-spacing:-44.022000px;}
.ws0_c00213{word-spacing:-34.629000px;}
.ws2_c00213{word-spacing:-22.629000px;}
.ws3_c00213{word-spacing:-19.794000px;}
.ws5_c00213{word-spacing:-19.629000px;}
.ws1_c00213{word-spacing:-3.804000px;}
.ws6_c00213{word-spacing:0.000000px;}
._1e_c00213{margin-left:-19.113000px;}
._13_c00213{margin-left:-17.112000px;}
._11_c00213{margin-left:-15.111000px;}
._1c_c00213{margin-left:-14.007000px;}
._7_c00213{margin-left:-12.420000px;}
._5_c00213{margin-left:-11.247000px;}
._c_c00213{margin-left:-8.763000px;}
._8_c00213{margin-left:-7.383000px;}
._4_c00213{margin-left:-5.934000px;}
._6_c00213{margin-left:-4.278000px;}
._9_c00213{margin-left:-2.553000px;}
._b_c00213{margin-left:-1.035000px;}
._1a_c00213{width:1.104000px;}
._a_c00213{width:2.208000px;}
._2_c00213{width:3.795000px;}
._0_c00213{width:5.658000px;}
._1_c00213{width:7.521000px;}
._3_c00213{width:9.591000px;}
._f_c00213{width:10.764000px;}
._15_c00213{width:12.627000px;}
._14_c00213{width:13.869000px;}
._16_c00213{width:15.387000px;}
._1b_c00213{width:16.560000px;}
._10_c00213{width:18.561000px;}
._e_c00213{width:21.105000px;}
._1d_c00213{width:22.149000px;}
._d_c00213{width:23.529000px;}
._1f_c00213{width:25.668000px;}
._12_c00213{width:28.704000px;}
._19_c00213{width:32.427000px;}
._17_c00213{width:34.362000px;}
._18_c00213{width:36.468000px;}
._25_c00213{width:38.364000px;}
._21_c00213{width:81.282000px;}
._20_c00213{width:83.352000px;}
._22_c00213{width:85.422000px;}
._23_c00213{width:102.258000px;}
._24_c00213{width:111.711000px;}
._26_c00213{width:155.940000px;}
._27_c00213{width:249.030000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(128,128,128);}
.fc0_c00213{color:rgb(0,0,0);}
.fs2_c00213{font-size:48.000000px;}
.fs1_c00213{font-size:66.000000px;}
.fs0_c00213{font-size:69.000000px;}
.y0_c00213{bottom:0.000000px;}
.y1b_c00213{bottom:3.105000px;}
.y1a_c00213{bottom:7.228369px;}
.y19_c00213{bottom:69.870000px;}
.y18_c00213{bottom:96.570000px;}
.y17_c00213{bottom:121.170000px;}
.y16_c00213{bottom:146.520000px;}
.y15_c00213{bottom:171.720000px;}
.y14_c00213{bottom:196.770000px;}
.y13_c00213{bottom:222.420000px;}
.y12_c00213{bottom:247.020000px;}
.y11_c00213{bottom:271.920000px;}
.y10_c00213{bottom:297.570000px;}
.yf_c00213{bottom:322.020000px;}
.ye_c00213{bottom:346.320000px;}
.yd_c00213{bottom:371.820000px;}
.yc_c00213{bottom:396.270000px;}
.yb_c00213{bottom:421.170000px;}
.ya_c00213{bottom:446.520000px;}
.y9_c00213{bottom:471.420000px;}
.y8_c00213{bottom:496.470000px;}
.y7_c00213{bottom:521.670000px;}
.y6_c00213{bottom:570.720000px;}
.y5_c00213{bottom:621.570000px;}
.y4_c00213{bottom:646.320000px;}
.y3_c00213{bottom:671.670000px;}
.y2_c00213{bottom:696.870000px;}
.y1_c00213{bottom:746.820000px;}
.h4_c00213{height:13.200073px;}
.h5_c00213{height:43.804688px;}
.h2_c00213{height:80.758301px;}
.h3_c00213{height:87.361816px;}
.h1_c00213{height:844.500000px;}
.h0_c00213{height:844.800000px;}
.w2_c00213{width:104.875500px;}
.w0_c00213{width:572.100000px;}
.w1_c00213{width:572.250000px;}
.x0_c00213{left:0.000000px;}
.xa_c00213{left:36.150000px;}
.x9_c00213{left:46.500000px;}
.x7_c00213{left:92.100000px;}
.x5_c00213{left:94.500000px;}
.x6_c00213{left:96.300000px;}
.x3_c00213{left:99.600000px;}
.x4_c00213{left:110.400000px;}
.x8_c00213{left:120.600000px;}
.x2_c00213{left:123.600000px;}
.xc_c00213{left:237.864258px;}
.x1_c00213{left:258.150000px;}
.xb_c00213{left:525.900000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.ls4_c00213{letter-spacing:2.666667pt;}
.ls1_c00213{letter-spacing:5.333333pt;}
.ls2_c00213{letter-spacing:16.000000pt;}
.ls0_c00213{letter-spacing:24.957333pt;}
.ws4_c00213{word-spacing:-39.130667pt;}
.ws0_c00213{word-spacing:-30.781333pt;}
.ws2_c00213{word-spacing:-20.114667pt;}
.ws3_c00213{word-spacing:-17.594667pt;}
.ws5_c00213{word-spacing:-17.448000pt;}
.ws1_c00213{word-spacing:-3.381333pt;}
.ws6_c00213{word-spacing:0.000000pt;}
._1e_c00213{margin-left:-16.989333pt;}
._13_c00213{margin-left:-15.210667pt;}
._11_c00213{margin-left:-13.432000pt;}
._1c_c00213{margin-left:-12.450667pt;}
._7_c00213{margin-left:-11.040000pt;}
._5_c00213{margin-left:-9.997333pt;}
._c_c00213{margin-left:-7.789333pt;}
._8_c00213{margin-left:-6.562667pt;}
._4_c00213{margin-left:-5.274667pt;}
._6_c00213{margin-left:-3.802667pt;}
._9_c00213{margin-left:-2.269333pt;}
._b_c00213{margin-left:-0.920000pt;}
._1a_c00213{width:0.981333pt;}
._a_c00213{width:1.962667pt;}
._2_c00213{width:3.373333pt;}
._0_c00213{width:5.029333pt;}
._1_c00213{width:6.685333pt;}
._3_c00213{width:8.525333pt;}
._f_c00213{width:9.568000pt;}
._15_c00213{width:11.224000pt;}
._14_c00213{width:12.328000pt;}
._16_c00213{width:13.677333pt;}
._1b_c00213{width:14.720000pt;}
._10_c00213{width:16.498667pt;}
._e_c00213{width:18.760000pt;}
._1d_c00213{width:19.688000pt;}
._d_c00213{width:20.914667pt;}
._1f_c00213{width:22.816000pt;}
._12_c00213{width:25.514667pt;}
._19_c00213{width:28.824000pt;}
._17_c00213{width:30.544000pt;}
._18_c00213{width:32.416000pt;}
._25_c00213{width:34.101333pt;}
._21_c00213{width:72.250667pt;}
._20_c00213{width:74.090667pt;}
._22_c00213{width:75.930667pt;}
._23_c00213{width:90.896000pt;}
._24_c00213{width:99.298667pt;}
._26_c00213{width:138.613333pt;}
._27_c00213{width:221.360000pt;}
.fs2_c00213{font-size:42.666667pt;}
.fs1_c00213{font-size:58.666667pt;}
.fs0_c00213{font-size:61.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y1b_c00213{bottom:2.760000pt;}
.y1a_c00213{bottom:6.425217pt;}
.y19_c00213{bottom:62.106667pt;}
.y18_c00213{bottom:85.840000pt;}
.y17_c00213{bottom:107.706667pt;}
.y16_c00213{bottom:130.240000pt;}
.y15_c00213{bottom:152.640000pt;}
.y14_c00213{bottom:174.906667pt;}
.y13_c00213{bottom:197.706667pt;}
.y12_c00213{bottom:219.573333pt;}
.y11_c00213{bottom:241.706667pt;}
.y10_c00213{bottom:264.506667pt;}
.yf_c00213{bottom:286.240000pt;}
.ye_c00213{bottom:307.840000pt;}
.yd_c00213{bottom:330.506667pt;}
.yc_c00213{bottom:352.240000pt;}
.yb_c00213{bottom:374.373333pt;}
.ya_c00213{bottom:396.906667pt;}
.y9_c00213{bottom:419.040000pt;}
.y8_c00213{bottom:441.306667pt;}
.y7_c00213{bottom:463.706667pt;}
.y6_c00213{bottom:507.306667pt;}
.y5_c00213{bottom:552.506667pt;}
.y4_c00213{bottom:574.506667pt;}
.y3_c00213{bottom:597.040000pt;}
.y2_c00213{bottom:619.440000pt;}
.y1_c00213{bottom:663.840000pt;}
.h4_c00213{height:11.733399pt;}
.h5_c00213{height:38.937500pt;}
.h2_c00213{height:71.785156pt;}
.h3_c00213{height:77.654948pt;}
.h1_c00213{height:750.666667pt;}
.h0_c00213{height:750.933333pt;}
.w2_c00213{width:93.222667pt;}
.w0_c00213{width:508.533333pt;}
.w1_c00213{width:508.666667pt;}
.x0_c00213{left:0.000000pt;}
.xa_c00213{left:32.133333pt;}
.x9_c00213{left:41.333333pt;}
.x7_c00213{left:81.866667pt;}
.x5_c00213{left:84.000000pt;}
.x6_c00213{left:85.600000pt;}
.x3_c00213{left:88.533333pt;}
.x4_c00213{left:98.133333pt;}
.x8_c00213{left:107.200000pt;}
.x2_c00213{left:109.866667pt;}
.xc_c00213{left:211.434896pt;}
.x1_c00213{left:229.466667pt;}
.xb_c00213{left:467.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_13ca53f6e064689aa6a72500.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_e3a7e554ca56ed2e7a5bfcc2.woff2')format("woff");}.ff2_c00214{font-family:ff2_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:ff3_c00214;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00214{font-family:ff4_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);}
.v0_c00214{vertical-align:0.000000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls2_c00214{letter-spacing:3.000000px;}
.ls0_c00214{letter-spacing:5.400000px;}
.ls3_c00214{letter-spacing:6.000000px;}
.ls4_c00214{letter-spacing:18.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00214{word-spacing:-34.629000px;}
.ws1_c00214{word-spacing:-22.629000px;}
.ws0_c00214{word-spacing:-16.629000px;}
.ws3_c00214{word-spacing:0.000000px;}
._1d_c00214{margin-left:-65.412000px;}
._24_c00214{margin-left:-38.709000px;}
._27_c00214{margin-left:-21.459000px;}
._1b_c00214{margin-left:-16.629000px;}
._d_c00214{margin-left:-14.940000px;}
._1e_c00214{margin-left:-13.869000px;}
._2d_c00214{margin-left:-12.729000px;}
._21_c00214{margin-left:-11.454000px;}
._14_c00214{margin-left:-10.248000px;}
._1a_c00214{margin-left:-9.108000px;}
._7_c00214{margin-left:-8.073000px;}
._11_c00214{margin-left:-6.279000px;}
._3_c00214{margin-left:-5.106000px;}
._2_c00214{margin-left:-3.795000px;}
._15_c00214{margin-left:-2.760000px;}
._4_c00214{margin-left:-1.656000px;}
._1_c00214{width:1.380000px;}
._c_c00214{width:2.622000px;}
._0_c00214{width:3.657000px;}
._a_c00214{width:5.313000px;}
._20_c00214{width:6.348000px;}
._9_c00214{width:7.383000px;}
._b_c00214{width:8.799000px;}
._5_c00214{width:10.143000px;}
._10_c00214{width:11.730000px;}
._e_c00214{width:13.662000px;}
._13_c00214{width:15.180000px;}
._8_c00214{width:16.422000px;}
._f_c00214{width:17.733000px;}
._2a_c00214{width:19.386000px;}
._6_c00214{width:21.597000px;}
._17_c00214{width:23.061000px;}
._16_c00214{width:26.013000px;}
._19_c00214{width:27.255000px;}
._2b_c00214{width:34.302000px;}
._12_c00214{width:36.870000px;}
._2c_c00214{width:47.601000px;}
._28_c00214{width:58.995000px;}
._25_c00214{width:77.109000px;}
._1c_c00214{width:83.094000px;}
._26_c00214{width:93.909000px;}
._18_c00214{width:97.737000px;}
._23_c00214{width:115.257000px;}
._22_c00214{width:151.488000px;}
._1f_c00214{width:307.674000px;}
._29_c00214{width:358.455000px;}
._2e_c00214{width:637.707000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(128,128,128);}
.fc0_c00214{color:rgb(0,0,0);}
.fs3_c00214{font-size:48.000000px;}
.fs2_c00214{font-size:60.000000px;}
.fs1_c00214{font-size:66.000000px;}
.fs0_c00214{font-size:69.000000px;}
.y0_c00214{bottom:0.000000px;}
.y1d_c00214{bottom:3.105000px;}
.y1c_c00214{bottom:7.228363px;}
.y1b_c00214{bottom:65.250000px;}
.y1a_c00214{bottom:87.450000px;}
.y19_c00214{bottom:111.450000px;}
.y18_c00214{bottom:137.400000px;}
.y17_c00214{bottom:186.750000px;}
.y16_c00214{bottom:237.900000px;}
.y15_c00214{bottom:262.650000px;}
.y14_c00214{bottom:288.000000px;}
.y13_c00214{bottom:313.650000px;}
.y12_c00214{bottom:337.800000px;}
.y11_c00214{bottom:362.850000px;}
.y10_c00214{bottom:387.150000px;}
.yf_c00214{bottom:412.050000px;}
.ye_c00214{bottom:437.400000px;}
.yd_c00214{bottom:462.150000px;}
.yc_c00214{bottom:510.300000px;}
.yb_c00214{bottom:534.900000px;}
.ya_c00214{bottom:559.500000px;}
.y9_c00214{bottom:585.450000px;}
.y8_c00214{bottom:609.900000px;}
.y7_c00214{bottom:634.800000px;}
.y6_c00214{bottom:659.700000px;}
.y5_c00214{bottom:684.150000px;}
.y4_c00214{bottom:709.350000px;}
.y3_c00214{bottom:733.650000px;}
.y2_c00214{bottom:759.000000px;}
.y1_c00214{bottom:784.650000px;}
.h4_c00214{height:13.200074px;}
.h5_c00214{height:43.804688px;}
.h1_c00214{height:80.758301px;}
.h2_c00214{height:87.361816px;}
.h3_c00214{height:87.961816px;}
.h0_c00214{height:823.500000px;}
.w2_c00214{width:104.875500px;}
.w1_c00214{width:560.250000px;}
.w0_c00214{width:560.550000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:28.650000px;}
.x3_c00214{left:31.050000px;}
.x4_c00214{left:32.100000px;}
.x5_c00214{left:33.150000px;}
.x8_c00214{left:35.850000px;}
.x9_c00214{left:36.900000px;}
.xb_c00214{left:38.100000px;}
.x7_c00214{left:59.700000px;}
.xa_c00214{left:60.750000px;}
.xd_c00214{left:63.750000px;}
.xc_c00214{left:74.850000px;}
.x1_c00214{left:192.150000px;}
.x6_c00214{left:195.750000px;}
.xf_c00214{left:232.089249px;}
.xe_c00214{left:299.250000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls2_c00214{letter-spacing:2.666667pt;}
.ls0_c00214{letter-spacing:4.800000pt;}
.ls3_c00214{letter-spacing:5.333333pt;}
.ls4_c00214{letter-spacing:16.000000pt;}
.ws2_c00214{word-spacing:-30.781333pt;}
.ws1_c00214{word-spacing:-20.114667pt;}
.ws0_c00214{word-spacing:-14.781333pt;}
.ws3_c00214{word-spacing:0.000000pt;}
._1d_c00214{margin-left:-58.144000pt;}
._24_c00214{margin-left:-34.408000pt;}
._27_c00214{margin-left:-19.074667pt;}
._1b_c00214{margin-left:-14.781333pt;}
._d_c00214{margin-left:-13.280000pt;}
._1e_c00214{margin-left:-12.328000pt;}
._2d_c00214{margin-left:-11.314667pt;}
._21_c00214{margin-left:-10.181333pt;}
._14_c00214{margin-left:-9.109333pt;}
._1a_c00214{margin-left:-8.096000pt;}
._7_c00214{margin-left:-7.176000pt;}
._11_c00214{margin-left:-5.581333pt;}
._3_c00214{margin-left:-4.538667pt;}
._2_c00214{margin-left:-3.373333pt;}
._15_c00214{margin-left:-2.453333pt;}
._4_c00214{margin-left:-1.472000pt;}
._1_c00214{width:1.226667pt;}
._c_c00214{width:2.330667pt;}
._0_c00214{width:3.250667pt;}
._a_c00214{width:4.722667pt;}
._20_c00214{width:5.642667pt;}
._9_c00214{width:6.562667pt;}
._b_c00214{width:7.821333pt;}
._5_c00214{width:9.016000pt;}
._10_c00214{width:10.426667pt;}
._e_c00214{width:12.144000pt;}
._13_c00214{width:13.493333pt;}
._8_c00214{width:14.597333pt;}
._f_c00214{width:15.762667pt;}
._2a_c00214{width:17.232000pt;}
._6_c00214{width:19.197333pt;}
._17_c00214{width:20.498667pt;}
._16_c00214{width:23.122667pt;}
._19_c00214{width:24.226667pt;}
._2b_c00214{width:30.490667pt;}
._12_c00214{width:32.773333pt;}
._2c_c00214{width:42.312000pt;}
._28_c00214{width:52.440000pt;}
._25_c00214{width:68.541333pt;}
._1c_c00214{width:73.861333pt;}
._26_c00214{width:83.474667pt;}
._18_c00214{width:86.877333pt;}
._23_c00214{width:102.450667pt;}
._22_c00214{width:134.656000pt;}
._1f_c00214{width:273.488000pt;}
._29_c00214{width:318.626667pt;}
._2e_c00214{width:566.850667pt;}
.fs3_c00214{font-size:42.666667pt;}
.fs2_c00214{font-size:53.333333pt;}
.fs1_c00214{font-size:58.666667pt;}
.fs0_c00214{font-size:61.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y1d_c00214{bottom:2.760000pt;}
.y1c_c00214{bottom:6.425212pt;}
.y1b_c00214{bottom:58.000000pt;}
.y1a_c00214{bottom:77.733333pt;}
.y19_c00214{bottom:99.066667pt;}
.y18_c00214{bottom:122.133333pt;}
.y17_c00214{bottom:166.000000pt;}
.y16_c00214{bottom:211.466667pt;}
.y15_c00214{bottom:233.466667pt;}
.y14_c00214{bottom:256.000000pt;}
.y13_c00214{bottom:278.800000pt;}
.y12_c00214{bottom:300.266667pt;}
.y11_c00214{bottom:322.533333pt;}
.y10_c00214{bottom:344.133333pt;}
.yf_c00214{bottom:366.266667pt;}
.ye_c00214{bottom:388.800000pt;}
.yd_c00214{bottom:410.800000pt;}
.yc_c00214{bottom:453.600000pt;}
.yb_c00214{bottom:475.466667pt;}
.ya_c00214{bottom:497.333333pt;}
.y9_c00214{bottom:520.400000pt;}
.y8_c00214{bottom:542.133333pt;}
.y7_c00214{bottom:564.266667pt;}
.y6_c00214{bottom:586.400000pt;}
.y5_c00214{bottom:608.133333pt;}
.y4_c00214{bottom:630.533333pt;}
.y3_c00214{bottom:652.133333pt;}
.y2_c00214{bottom:674.666667pt;}
.y1_c00214{bottom:697.466667pt;}
.h4_c00214{height:11.733399pt;}
.h5_c00214{height:38.937500pt;}
.h1_c00214{height:71.785156pt;}
.h2_c00214{height:77.654948pt;}
.h3_c00214{height:78.188281pt;}
.h0_c00214{height:732.000000pt;}
.w2_c00214{width:93.222667pt;}
.w1_c00214{width:498.000000pt;}
.w0_c00214{width:498.266667pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:25.466667pt;}
.x3_c00214{left:27.600000pt;}
.x4_c00214{left:28.533333pt;}
.x5_c00214{left:29.466667pt;}
.x8_c00214{left:31.866667pt;}
.x9_c00214{left:32.800000pt;}
.xb_c00214{left:33.866667pt;}
.x7_c00214{left:53.066667pt;}
.xa_c00214{left:54.000000pt;}
.xd_c00214{left:56.666667pt;}
.xc_c00214{left:66.533333pt;}
.x1_c00214{left:170.800000pt;}
.x6_c00214{left:174.000000pt;}
.xf_c00214{left:206.301554pt;}
.xe_c00214{left:266.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_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_ce361b87e1f8aac2e0f01cb0.woff2')format("woff");}.ff1_c00215{font-family:ff1_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:ff2_c00215;src:url('chunks/assets/font_f2ace2ace290d2e1cd92c9c1.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00215{font-family:ff3_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;}
.ls2_c00215{letter-spacing:3.000000px;}
.ls0_c00215{letter-spacing:6.000000px;}
.ls1_c00215{letter-spacing:13.125000px;}
.ls4_c00215{letter-spacing:15.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-31.629000px;}
.ws3_c00215{word-spacing:-22.629000px;}
.ws0_c00215{word-spacing:-21.906000px;}
.ws2_c00215{word-spacing:-19.629000px;}
.ws4_c00215{word-spacing:0.000000px;}
._15_c00215{margin-left:-20.748000px;}
._b_c00215{margin-left:-14.718000px;}
._28_c00215{margin-left:-13.458000px;}
._19_c00215{margin-left:-11.730000px;}
._25_c00215{margin-left:-10.383000px;}
._9_c00215{margin-left:-9.240000px;}
._7_c00215{margin-left:-7.656000px;}
._8_c00215{margin-left:-6.288000px;}
._6_c00215{margin-left:-4.224000px;}
._5_c00215{margin-left:-2.442000px;}
._4_c00215{margin-left:-1.254000px;}
._0_c00215{width:1.320000px;}
._1_c00215{width:2.838000px;}
._12_c00215{width:3.855000px;}
._2_c00215{width:5.082000px;}
._c_c00215{width:6.600000px;}
._a_c00215{width:7.920000px;}
._21_c00215{width:8.949000px;}
._3_c00215{width:9.966000px;}
._13_c00215{width:11.010000px;}
._1b_c00215{width:12.339000px;}
._20_c00215{width:13.356000px;}
._d_c00215{width:14.586000px;}
._14_c00215{width:15.945000px;}
._e_c00215{width:17.028000px;}
._f_c00215{width:18.348000px;}
._10_c00215{width:19.602000px;}
._11_c00215{width:22.176000px;}
._1f_c00215{width:23.790000px;}
._27_c00215{width:25.269000px;}
._29_c00215{width:26.841000px;}
._18_c00215{width:28.143000px;}
._2a_c00215{width:32.340000px;}
._24_c00215{width:37.485000px;}
._1e_c00215{width:47.739000px;}
._16_c00215{width:79.458000px;}
._17_c00215{width:81.885000px;}
._22_c00215{width:84.294000px;}
._1d_c00215{width:87.129000px;}
._26_c00215{width:95.451000px;}
._1c_c00215{width:99.036000px;}
._23_c00215{width:107.487000px;}
._1a_c00215{width:136.965000px;}
.fc2_c00215{color:transparent;}
.fc1_c00215{color:rgb(128,128,128);}
.fc0_c00215{color:rgb(0,0,0);}
.fs2_c00215{font-size:48.000000px;}
.fs0_c00215{font-size:66.000000px;}
.fs1_c00215{font-size:69.000000px;}
.y0_c00215{bottom:0.000000px;}
.y20_c00215{bottom:3.105000px;}
.y1f_c00215{bottom:7.228369px;}
.y1e_c00215{bottom:74.520000px;}
.y1d_c00215{bottom:101.220000px;}
.y1c_c00215{bottom:124.470000px;}
.y1b_c00215{bottom:150.420000px;}
.y1a_c00215{bottom:175.770000px;}
.y19_c00215{bottom:200.370000px;}
.y18_c00215{bottom:225.420000px;}
.y17_c00215{bottom:249.720000px;}
.y16_c00215{bottom:275.070000px;}
.y15_c00215{bottom:299.670000px;}
.y14_c00215{bottom:324.570000px;}
.y13_c00215{bottom:348.870000px;}
.y12_c00215{bottom:371.520000px;}
.y11_c00215{bottom:397.170000px;}
.y10_c00215{bottom:422.220000px;}
.yf_c00215{bottom:447.120000px;}
.ye_c00215{bottom:471.720000px;}
.yd_c00215{bottom:497.520000px;}
.yc_c00215{bottom:521.670000px;}
.yb_c00215{bottom:548.070000px;}
.ya_c00215{bottom:573.120000px;}
.y9_c00215{bottom:597.270000px;}
.y8_c00215{bottom:622.620000px;}
.y7_c00215{bottom:647.670000px;}
.y6_c00215{bottom:672.870000px;}
.y5_c00215{bottom:698.220000px;}
.y4_c00215{bottom:722.970000px;}
.y3_c00215{bottom:748.170000px;}
.y2_c00215{bottom:773.520000px;}
.y1_c00215{bottom:797.820000px;}
.h6_c00215{height:13.200073px;}
.h7_c00215{height:43.804688px;}
.h2_c00215{height:77.247070px;}
.h4_c00215{height:80.758301px;}
.h3_c00215{height:83.563477px;}
.h5_c00215{height:87.361816px;}
.h1_c00215{height:844.500000px;}
.h0_c00215{height:844.800000px;}
.w2_c00215{width:104.875500px;}
.w0_c00215{width:572.100000px;}
.w1_c00215{width:572.250000px;}
.x0_c00215{left:0.000000px;}
.x8_c00215{left:36.750000px;}
.x6_c00215{left:40.500000px;}
.xb_c00215{left:50.550000px;}
.x7_c00215{left:56.250000px;}
.xc_c00215{left:73.200000px;}
.xe_c00215{left:95.550000px;}
.xd_c00215{left:96.750000px;}
.xa_c00215{left:98.550000px;}
.x3_c00215{left:99.900000px;}
.x4_c00215{left:101.250000px;}
.x9_c00215{left:102.600000px;}
.x2_c00215{left:103.650000px;}
.x5_c00215{left:128.550000px;}
.x10_c00215{left:237.864258px;}
.x1_c00215{left:255.600000px;}
.xf_c00215{left:474.450000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls2_c00215{letter-spacing:2.666667pt;}
.ls0_c00215{letter-spacing:5.333333pt;}
.ls1_c00215{letter-spacing:11.666667pt;}
.ls4_c00215{letter-spacing:13.333333pt;}
.ws1_c00215{word-spacing:-28.114667pt;}
.ws3_c00215{word-spacing:-20.114667pt;}
.ws0_c00215{word-spacing:-19.472000pt;}
.ws2_c00215{word-spacing:-17.448000pt;}
.ws4_c00215{word-spacing:0.000000pt;}
._15_c00215{margin-left:-18.442667pt;}
._b_c00215{margin-left:-13.082667pt;}
._28_c00215{margin-left:-11.962667pt;}
._19_c00215{margin-left:-10.426667pt;}
._25_c00215{margin-left:-9.229333pt;}
._9_c00215{margin-left:-8.213333pt;}
._7_c00215{margin-left:-6.805333pt;}
._8_c00215{margin-left:-5.589333pt;}
._6_c00215{margin-left:-3.754667pt;}
._5_c00215{margin-left:-2.170667pt;}
._4_c00215{margin-left:-1.114667pt;}
._0_c00215{width:1.173333pt;}
._1_c00215{width:2.522667pt;}
._12_c00215{width:3.426667pt;}
._2_c00215{width:4.517333pt;}
._c_c00215{width:5.866667pt;}
._a_c00215{width:7.040000pt;}
._21_c00215{width:7.954667pt;}
._3_c00215{width:8.858667pt;}
._13_c00215{width:9.786667pt;}
._1b_c00215{width:10.968000pt;}
._20_c00215{width:11.872000pt;}
._d_c00215{width:12.965333pt;}
._14_c00215{width:14.173333pt;}
._e_c00215{width:15.136000pt;}
._f_c00215{width:16.309333pt;}
._10_c00215{width:17.424000pt;}
._11_c00215{width:19.712000pt;}
._1f_c00215{width:21.146667pt;}
._27_c00215{width:22.461333pt;}
._29_c00215{width:23.858667pt;}
._18_c00215{width:25.016000pt;}
._2a_c00215{width:28.746667pt;}
._24_c00215{width:33.320000pt;}
._1e_c00215{width:42.434667pt;}
._16_c00215{width:70.629333pt;}
._17_c00215{width:72.786667pt;}
._22_c00215{width:74.928000pt;}
._1d_c00215{width:77.448000pt;}
._26_c00215{width:84.845333pt;}
._1c_c00215{width:88.032000pt;}
._23_c00215{width:95.544000pt;}
._1a_c00215{width:121.746667pt;}
.fs2_c00215{font-size:42.666667pt;}
.fs0_c00215{font-size:58.666667pt;}
.fs1_c00215{font-size:61.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y20_c00215{bottom:2.760000pt;}
.y1f_c00215{bottom:6.425217pt;}
.y1e_c00215{bottom:66.240000pt;}
.y1d_c00215{bottom:89.973333pt;}
.y1c_c00215{bottom:110.640000pt;}
.y1b_c00215{bottom:133.706667pt;}
.y1a_c00215{bottom:156.240000pt;}
.y19_c00215{bottom:178.106667pt;}
.y18_c00215{bottom:200.373333pt;}
.y17_c00215{bottom:221.973333pt;}
.y16_c00215{bottom:244.506667pt;}
.y15_c00215{bottom:266.373333pt;}
.y14_c00215{bottom:288.506667pt;}
.y13_c00215{bottom:310.106667pt;}
.y12_c00215{bottom:330.240000pt;}
.y11_c00215{bottom:353.040000pt;}
.y10_c00215{bottom:375.306667pt;}
.yf_c00215{bottom:397.440000pt;}
.ye_c00215{bottom:419.306667pt;}
.yd_c00215{bottom:442.240000pt;}
.yc_c00215{bottom:463.706667pt;}
.yb_c00215{bottom:487.173333pt;}
.ya_c00215{bottom:509.440000pt;}
.y9_c00215{bottom:530.906667pt;}
.y8_c00215{bottom:553.440000pt;}
.y7_c00215{bottom:575.706667pt;}
.y6_c00215{bottom:598.106667pt;}
.y5_c00215{bottom:620.640000pt;}
.y4_c00215{bottom:642.640000pt;}
.y3_c00215{bottom:665.040000pt;}
.y2_c00215{bottom:687.573333pt;}
.y1_c00215{bottom:709.173333pt;}
.h6_c00215{height:11.733399pt;}
.h7_c00215{height:38.937500pt;}
.h2_c00215{height:68.664062pt;}
.h4_c00215{height:71.785156pt;}
.h3_c00215{height:74.278646pt;}
.h5_c00215{height:77.654948pt;}
.h1_c00215{height:750.666667pt;}
.h0_c00215{height:750.933333pt;}
.w2_c00215{width:93.222667pt;}
.w0_c00215{width:508.533333pt;}
.w1_c00215{width:508.666667pt;}
.x0_c00215{left:0.000000pt;}
.x8_c00215{left:32.666667pt;}
.x6_c00215{left:36.000000pt;}
.xb_c00215{left:44.933333pt;}
.x7_c00215{left:50.000000pt;}
.xc_c00215{left:65.066667pt;}
.xe_c00215{left:84.933333pt;}
.xd_c00215{left:86.000000pt;}
.xa_c00215{left:87.600000pt;}
.x3_c00215{left:88.800000pt;}
.x4_c00215{left:90.000000pt;}
.x9_c00215{left:91.200000pt;}
.x2_c00215{left:92.133333pt;}
.x5_c00215{left:114.266667pt;}
.x10_c00215{left:211.434896pt;}
.x1_c00215{left:227.200000pt;}
.xf_c00215{left:421.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_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_990129a38673ecf39131996f.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_6e94228d57e3afb80e34b249.woff2')format("woff");}.ff2_c00216{font-family:ff2_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:ff3_c00216;src:url('chunks/assets/font_e36f7f5ad37c9cf95f411017.woff2')format("woff");}.ff3_c00216{font-family:ff3_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:ff4_c00216;src:url('chunks/assets/font_9268461a2a14046e9750194c.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_427b7dc39b6ab000da068168.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00216{font-family:ff6_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;}
.ls2_c00216{letter-spacing:0.000000px;}
.ls3_c00216{letter-spacing:3.000000px;}
.ls0_c00216{letter-spacing:4.200000px;}
.ls5_c00216{letter-spacing:6.000000px;}
.ls4_c00216{letter-spacing:15.000000px;}
.ls1_c00216{letter-spacing:25.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;}
}
.ws5_c00216{word-spacing:-44.022000px;}
.ws0_c00216{word-spacing:-34.521000px;}
.ws1_c00216{word-spacing:-22.629000px;}
.ws7_c00216{word-spacing:-19.629000px;}
.ws4_c00216{word-spacing:-16.629000px;}
.ws2_c00216{word-spacing:-13.303200px;}
.ws3_c00216{word-spacing:-7.173000px;}
.ws6_c00216{word-spacing:-1.104000px;}
.ws8_c00216{word-spacing:0.000000px;}
._f_c00216{margin-left:-23.068800px;}
._19_c00216{margin-left:-19.044000px;}
._18_c00216{margin-left:-16.179000px;}
._11_c00216{margin-left:-14.115000px;}
._17_c00216{margin-left:-11.064000px;}
._12_c00216{margin-left:-9.165000px;}
._c_c00216{margin-left:-7.740000px;}
._10_c00216{margin-left:-6.021000px;}
._4_c00216{margin-left:-4.605000px;}
._a_c00216{margin-left:-3.312000px;}
._b_c00216{margin-left:-2.037000px;}
._14_c00216{margin-left:-1.000800px;}
._1_c00216{width:1.656000px;}
._0_c00216{width:2.967000px;}
._2_c00216{width:4.899000px;}
._6_c00216{width:6.072000px;}
._8_c00216{width:7.659000px;}
._7_c00216{width:9.246000px;}
._9_c00216{width:10.695000px;}
._16_c00216{width:12.231000px;}
._d_c00216{width:13.347000px;}
._13_c00216{width:14.670000px;}
._1f_c00216{width:15.699000px;}
._20_c00216{width:17.088000px;}
._e_c00216{width:18.094800px;}
._15_c00216{width:20.203800px;}
._1d_c00216{width:21.936000px;}
._1b_c00216{width:23.640000px;}
._1e_c00216{width:26.992200px;}
._1a_c00216{width:31.854600px;}
._3_c00216{width:49.542000px;}
._1c_c00216{width:187.956000px;}
._5_c00216{width:435.804000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(128,128,128);}
.fc0_c00216{color:rgb(0,0,0);}
.fs6_c00216{font-size:48.000000px;}
.fs2_c00216{font-size:55.200000px;}
.fs5_c00216{font-size:66.000000px;}
.fs0_c00216{font-size:69.000000px;}
.fs3_c00216{font-size:78.000000px;}
.fs1_c00216{font-size:81.000000px;}
.fs4_c00216{font-size:84.000000px;}
.y0_c00216{bottom:0.000000px;}
.y1b_c00216{bottom:3.105000px;}
.y1a_c00216{bottom:7.228371px;}
.y19_c00216{bottom:73.215000px;}
.y18_c00216{bottom:120.465000px;}
.y17_c00216{bottom:146.115000px;}
.y16_c00216{bottom:171.165000px;}
.y15_c00216{bottom:195.765000px;}
.y14_c00216{bottom:219.765000px;}
.y13_c00216{bottom:245.415000px;}
.y12_c00216{bottom:271.065000px;}
.y11_c00216{bottom:295.365000px;}
.y10_c00216{bottom:320.415000px;}
.yf_c00216{bottom:345.015000px;}
.ye_c00216{bottom:369.615000px;}
.yd_c00216{bottom:394.665000px;}
.yc_c00216{bottom:419.865000px;}
.yb_c00216{bottom:444.165000px;}
.ya_c00216{bottom:469.515000px;}
.y9_c00216{bottom:494.415000px;}
.y8_c00216{bottom:542.415000px;}
.y7_c00216{bottom:592.065000px;}
.y6_c00216{bottom:617.265000px;}
.y5_c00216{bottom:642.315000px;}
.y4_c00216{bottom:667.365000px;}
.y3_c00216{bottom:691.665000px;}
.y2_c00216{bottom:740.865000px;}
.y1_c00216{bottom:790.815000px;}
.h6_c00216{height:13.200074px;}
.h7_c00216{height:43.804688px;}
.h5_c00216{height:80.758301px;}
.h2_c00216{height:87.361816px;}
.h4_c00216{height:91.291992px;}
.h3_c00216{height:94.803223px;}
.h1_c00216{height:831.000000px;}
.h0_c00216{height:831.075000px;}
.w2_c00216{width:104.875500px;}
.w0_c00216{width:566.175000px;}
.w1_c00216{width:566.250000px;}
.x0_c00216{left:0.000000px;}
.x6_c00216{left:25.350000px;}
.x4_c00216{left:27.600000px;}
.x3_c00216{left:28.650000px;}
.x9_c00216{left:30.000000px;}
.xa_c00216{left:31.050000px;}
.x2_c00216{left:52.950000px;}
.x7_c00216{left:54.300000px;}
.x5_c00216{left:64.050000px;}
.x8_c00216{left:65.250000px;}
.x1_c00216{left:188.700000px;}
.xc_c00216{left:234.901749px;}
.xb_c00216{left:408.000000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls2_c00216{letter-spacing:0.000000pt;}
.ls3_c00216{letter-spacing:2.666667pt;}
.ls0_c00216{letter-spacing:3.733333pt;}
.ls5_c00216{letter-spacing:5.333333pt;}
.ls4_c00216{letter-spacing:13.333333pt;}
.ls1_c00216{letter-spacing:22.400000pt;}
.ws5_c00216{word-spacing:-39.130667pt;}
.ws0_c00216{word-spacing:-30.685333pt;}
.ws1_c00216{word-spacing:-20.114667pt;}
.ws7_c00216{word-spacing:-17.448000pt;}
.ws4_c00216{word-spacing:-14.781333pt;}
.ws2_c00216{word-spacing:-11.825067pt;}
.ws3_c00216{word-spacing:-6.376000pt;}
.ws6_c00216{word-spacing:-0.981333pt;}
.ws8_c00216{word-spacing:0.000000pt;}
._f_c00216{margin-left:-20.505600pt;}
._19_c00216{margin-left:-16.928000pt;}
._18_c00216{margin-left:-14.381333pt;}
._11_c00216{margin-left:-12.546667pt;}
._17_c00216{margin-left:-9.834667pt;}
._12_c00216{margin-left:-8.146667pt;}
._c_c00216{margin-left:-6.880000pt;}
._10_c00216{margin-left:-5.352000pt;}
._4_c00216{margin-left:-4.093333pt;}
._a_c00216{margin-left:-2.944000pt;}
._b_c00216{margin-left:-1.810667pt;}
._14_c00216{margin-left:-0.889600pt;}
._1_c00216{width:1.472000pt;}
._0_c00216{width:2.637333pt;}
._2_c00216{width:4.354667pt;}
._6_c00216{width:5.397333pt;}
._8_c00216{width:6.808000pt;}
._7_c00216{width:8.218667pt;}
._9_c00216{width:9.506667pt;}
._16_c00216{width:10.872000pt;}
._d_c00216{width:11.864000pt;}
._13_c00216{width:13.040000pt;}
._1f_c00216{width:13.954667pt;}
._20_c00216{width:15.189333pt;}
._e_c00216{width:16.084267pt;}
._15_c00216{width:17.958933pt;}
._1d_c00216{width:19.498667pt;}
._1b_c00216{width:21.013333pt;}
._1e_c00216{width:23.993067pt;}
._1a_c00216{width:28.315200pt;}
._3_c00216{width:44.037333pt;}
._1c_c00216{width:167.072000pt;}
._5_c00216{width:387.381333pt;}
.fs6_c00216{font-size:42.666667pt;}
.fs2_c00216{font-size:49.066667pt;}
.fs5_c00216{font-size:58.666667pt;}
.fs0_c00216{font-size:61.333333pt;}
.fs3_c00216{font-size:69.333333pt;}
.fs1_c00216{font-size:72.000000pt;}
.fs4_c00216{font-size:74.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y1b_c00216{bottom:2.760000pt;}
.y1a_c00216{bottom:6.425219pt;}
.y19_c00216{bottom:65.080000pt;}
.y18_c00216{bottom:107.080000pt;}
.y17_c00216{bottom:129.880000pt;}
.y16_c00216{bottom:152.146667pt;}
.y15_c00216{bottom:174.013333pt;}
.y14_c00216{bottom:195.346667pt;}
.y13_c00216{bottom:218.146667pt;}
.y12_c00216{bottom:240.946667pt;}
.y11_c00216{bottom:262.546667pt;}
.y10_c00216{bottom:284.813333pt;}
.yf_c00216{bottom:306.680000pt;}
.ye_c00216{bottom:328.546667pt;}
.yd_c00216{bottom:350.813333pt;}
.yc_c00216{bottom:373.213333pt;}
.yb_c00216{bottom:394.813333pt;}
.ya_c00216{bottom:417.346667pt;}
.y9_c00216{bottom:439.480000pt;}
.y8_c00216{bottom:482.146667pt;}
.y7_c00216{bottom:526.280000pt;}
.y6_c00216{bottom:548.680000pt;}
.y5_c00216{bottom:570.946667pt;}
.y4_c00216{bottom:593.213333pt;}
.y3_c00216{bottom:614.813333pt;}
.y2_c00216{bottom:658.546667pt;}
.y1_c00216{bottom:702.946667pt;}
.h6_c00216{height:11.733399pt;}
.h7_c00216{height:38.937500pt;}
.h5_c00216{height:71.785156pt;}
.h2_c00216{height:77.654948pt;}
.h4_c00216{height:81.148438pt;}
.h3_c00216{height:84.269531pt;}
.h1_c00216{height:738.666667pt;}
.h0_c00216{height:738.733333pt;}
.w2_c00216{width:93.222667pt;}
.w0_c00216{width:503.266667pt;}
.w1_c00216{width:503.333333pt;}
.x0_c00216{left:0.000000pt;}
.x6_c00216{left:22.533333pt;}
.x4_c00216{left:24.533333pt;}
.x3_c00216{left:25.466667pt;}
.x9_c00216{left:26.666667pt;}
.xa_c00216{left:27.600000pt;}
.x2_c00216{left:47.066667pt;}
.x7_c00216{left:48.266667pt;}
.x5_c00216{left:56.933333pt;}
.x8_c00216{left:58.000000pt;}
.x1_c00216{left:167.733333pt;}
.xc_c00216{left:208.801554pt;}
.xb_c00216{left:362.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_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_c40a1ad49aeb8cf66bd2873d.woff2')format("woff");}.ff1_c00217{font-family:ff1_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:ff2_c00217;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_dd1cce7da4392a30b1fabcdc.woff2')format("woff");}.ff3_c00217{font-family:ff3_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:ff4_c00217;src:url('chunks/assets/font_47651e1ab926d24bfcbda9e6.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_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls5_c00217{letter-spacing:3.000000px;}
.ls4_c00217{letter-spacing:6.000000px;}
.ls2_c00217{letter-spacing:9.225000px;}
.ls0_c00217{letter-spacing:14.400000px;}
.ls6_c00217{letter-spacing:15.000000px;}
.ls1_c00217{letter-spacing:21.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;}
}
.ws6_c00217{word-spacing:-25.050000px;}
.ws5_c00217{word-spacing:-22.629000px;}
.ws1_c00217{word-spacing:-19.629000px;}
.ws4_c00217{word-spacing:-19.530000px;}
.ws2_c00217{word-spacing:-6.189000px;}
.ws0_c00217{word-spacing:-6.138000px;}
.ws3_c00217{word-spacing:-2.826000px;}
.ws7_c00217{word-spacing:0.000000px;}
._29_c00217{margin-left:-38.640000px;}
._32_c00217{margin-left:-28.725000px;}
._1c_c00217{margin-left:-21.252000px;}
._14_c00217{margin-left:-19.359000px;}
._12_c00217{margin-left:-17.940000px;}
._10_c00217{margin-left:-16.146000px;}
._1b_c00217{margin-left:-13.800000px;}
._11_c00217{margin-left:-12.006000px;}
._15_c00217{margin-left:-10.950000px;}
._13_c00217{margin-left:-9.660000px;}
._d_c00217{margin-left:-8.004000px;}
._b_c00217{margin-left:-6.348000px;}
._f_c00217{margin-left:-4.830000px;}
._a_c00217{margin-left:-3.657000px;}
._5_c00217{margin-left:-1.794000px;}
._8_c00217{width:1.242000px;}
._c_c00217{width:2.829000px;}
._1d_c00217{width:3.864000px;}
._16_c00217{width:5.037000px;}
._9_c00217{width:6.210000px;}
._3_c00217{width:7.935000px;}
._18_c00217{width:9.315000px;}
._21_c00217{width:10.350000px;}
._0_c00217{width:11.385000px;}
._17_c00217{width:12.765000px;}
._2_c00217{width:14.214000px;}
._1e_c00217{width:15.549000px;}
._27_c00217{width:16.629000px;}
._19_c00217{width:17.700000px;}
._e_c00217{width:19.251000px;}
._6_c00217{width:21.114000px;}
._2e_c00217{width:22.356000px;}
._26_c00217{width:23.565000px;}
._2c_c00217{width:25.425000px;}
._2d_c00217{width:26.568000px;}
._1a_c00217{width:28.392000px;}
._1_c00217{width:30.774000px;}
._31_c00217{width:32.046000px;}
._4_c00217{width:35.619000px;}
._7_c00217{width:37.329000px;}
._2a_c00217{width:38.433000px;}
._2f_c00217{width:59.244000px;}
._24_c00217{width:78.153000px;}
._22_c00217{width:82.455000px;}
._1f_c00217{width:84.111000px;}
._20_c00217{width:88.320000px;}
._2b_c00217{width:90.252000px;}
._25_c00217{width:96.738000px;}
._23_c00217{width:125.166000px;}
._30_c00217{width:178.881000px;}
._28_c00217{width:182.550000px;}
._33_c00217{width:1415.817000px;}
.fc2_c00217{color:transparent;}
.fc1_c00217{color:rgb(128,128,128);}
.fc0_c00217{color:rgb(0,0,0);}
.fs3_c00217{font-size:48.000000px;}
.fs1_c00217{font-size:66.000000px;}
.fs0_c00217{font-size:69.000000px;}
.fs2_c00217{font-size:75.000000px;}
.y0_c00217{bottom:0.000000px;}
.y1b_c00217{bottom:3.105000px;}
.y1a_c00217{bottom:7.228357px;}
.y19_c00217{bottom:78.930000px;}
.y18_c00217{bottom:103.380000px;}
.y17_c00217{bottom:128.880000px;}
.y16_c00217{bottom:178.530000px;}
.y15_c00217{bottom:204.630000px;}
.y14_c00217{bottom:228.780000px;}
.y13_c00217{bottom:253.230000px;}
.y12_c00217{bottom:278.880000px;}
.y11_c00217{bottom:304.080000px;}
.y10_c00217{bottom:328.080000px;}
.yf_c00217{bottom:352.380000px;}
.ye_c00217{bottom:377.280000px;}
.yd_c00217{bottom:402.030000px;}
.yc_c00217{bottom:426.030000px;}
.yb_c00217{bottom:451.230000px;}
.ya_c00217{bottom:476.580000px;}
.y9_c00217{bottom:501.630000px;}
.y8_c00217{bottom:526.230000px;}
.y7_c00217{bottom:551.580000px;}
.y6_c00217{bottom:576.480000px;}
.y5_c00217{bottom:625.680000px;}
.y4_c00217{bottom:675.780000px;}
.y3_c00217{bottom:700.980000px;}
.y2_c00217{bottom:726.030000px;}
.y1_c00217{bottom:750.630000px;}
.h5_c00217{height:13.200074px;}
.h6_c00217{height:43.804688px;}
.h1_c00217{height:80.758301px;}
.h2_c00217{height:87.361816px;}
.h3_c00217{height:87.780762px;}
.h4_c00217{height:94.958496px;}
.h0_c00217{height:833.250000px;}
.w2_c00217{width:104.875500px;}
.w0_c00217{width:563.775000px;}
.w1_c00217{width:564.000000px;}
.x0_c00217{left:0.000000px;}
.xa_c00217{left:33.150000px;}
.xc_c00217{left:45.900000px;}
.x9_c00217{left:50.250000px;}
.xf_c00217{left:87.450000px;}
.x3_c00217{left:88.800000px;}
.x8_c00217{left:90.900000px;}
.x4_c00217{left:93.150000px;}
.xb_c00217{left:94.500000px;}
.xd_c00217{left:108.450000px;}
.x2_c00217{left:115.500000px;}
.xe_c00217{left:116.700000px;}
.x6_c00217{left:117.900000px;}
.x7_c00217{left:119.100000px;}
.x5_c00217{left:126.300000px;}
.x1_c00217{left:225.900000px;}
.x10_c00217{left:233.701767px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls5_c00217{letter-spacing:2.666667pt;}
.ls4_c00217{letter-spacing:5.333333pt;}
.ls2_c00217{letter-spacing:8.200000pt;}
.ls0_c00217{letter-spacing:12.800000pt;}
.ls6_c00217{letter-spacing:13.333333pt;}
.ls1_c00217{letter-spacing:18.666667pt;}
.ws6_c00217{word-spacing:-22.266667pt;}
.ws5_c00217{word-spacing:-20.114667pt;}
.ws1_c00217{word-spacing:-17.448000pt;}
.ws4_c00217{word-spacing:-17.360000pt;}
.ws2_c00217{word-spacing:-5.501333pt;}
.ws0_c00217{word-spacing:-5.456000pt;}
.ws3_c00217{word-spacing:-2.512000pt;}
.ws7_c00217{word-spacing:0.000000pt;}
._29_c00217{margin-left:-34.346667pt;}
._32_c00217{margin-left:-25.533333pt;}
._1c_c00217{margin-left:-18.890667pt;}
._14_c00217{margin-left:-17.208000pt;}
._12_c00217{margin-left:-15.946667pt;}
._10_c00217{margin-left:-14.352000pt;}
._1b_c00217{margin-left:-12.266667pt;}
._11_c00217{margin-left:-10.672000pt;}
._15_c00217{margin-left:-9.733333pt;}
._13_c00217{margin-left:-8.586667pt;}
._d_c00217{margin-left:-7.114667pt;}
._b_c00217{margin-left:-5.642667pt;}
._f_c00217{margin-left:-4.293333pt;}
._a_c00217{margin-left:-3.250667pt;}
._5_c00217{margin-left:-1.594667pt;}
._8_c00217{width:1.104000pt;}
._c_c00217{width:2.514667pt;}
._1d_c00217{width:3.434667pt;}
._16_c00217{width:4.477333pt;}
._9_c00217{width:5.520000pt;}
._3_c00217{width:7.053333pt;}
._18_c00217{width:8.280000pt;}
._21_c00217{width:9.200000pt;}
._0_c00217{width:10.120000pt;}
._17_c00217{width:11.346667pt;}
._2_c00217{width:12.634667pt;}
._1e_c00217{width:13.821333pt;}
._27_c00217{width:14.781333pt;}
._19_c00217{width:15.733333pt;}
._e_c00217{width:17.112000pt;}
._6_c00217{width:18.768000pt;}
._2e_c00217{width:19.872000pt;}
._26_c00217{width:20.946667pt;}
._2c_c00217{width:22.600000pt;}
._2d_c00217{width:23.616000pt;}
._1a_c00217{width:25.237333pt;}
._1_c00217{width:27.354667pt;}
._31_c00217{width:28.485333pt;}
._4_c00217{width:31.661333pt;}
._7_c00217{width:33.181333pt;}
._2a_c00217{width:34.162667pt;}
._2f_c00217{width:52.661333pt;}
._24_c00217{width:69.469333pt;}
._22_c00217{width:73.293333pt;}
._1f_c00217{width:74.765333pt;}
._20_c00217{width:78.506667pt;}
._2b_c00217{width:80.224000pt;}
._25_c00217{width:85.989333pt;}
._23_c00217{width:111.258667pt;}
._30_c00217{width:159.005333pt;}
._28_c00217{width:162.266667pt;}
._33_c00217{width:1258.504000pt;}
.fs3_c00217{font-size:42.666667pt;}
.fs1_c00217{font-size:58.666667pt;}
.fs0_c00217{font-size:61.333333pt;}
.fs2_c00217{font-size:66.666667pt;}
.y0_c00217{bottom:0.000000pt;}
.y1b_c00217{bottom:2.760000pt;}
.y1a_c00217{bottom:6.425206pt;}
.y19_c00217{bottom:70.160000pt;}
.y18_c00217{bottom:91.893333pt;}
.y17_c00217{bottom:114.560000pt;}
.y16_c00217{bottom:158.693333pt;}
.y15_c00217{bottom:181.893333pt;}
.y14_c00217{bottom:203.360000pt;}
.y13_c00217{bottom:225.093333pt;}
.y12_c00217{bottom:247.893333pt;}
.y11_c00217{bottom:270.293333pt;}
.y10_c00217{bottom:291.626667pt;}
.yf_c00217{bottom:313.226667pt;}
.ye_c00217{bottom:335.360000pt;}
.yd_c00217{bottom:357.360000pt;}
.yc_c00217{bottom:378.693333pt;}
.yb_c00217{bottom:401.093333pt;}
.ya_c00217{bottom:423.626667pt;}
.y9_c00217{bottom:445.893333pt;}
.y8_c00217{bottom:467.760000pt;}
.y7_c00217{bottom:490.293333pt;}
.y6_c00217{bottom:512.426667pt;}
.y5_c00217{bottom:556.160000pt;}
.y4_c00217{bottom:600.693333pt;}
.y3_c00217{bottom:623.093333pt;}
.y2_c00217{bottom:645.360000pt;}
.y1_c00217{bottom:667.226667pt;}
.h5_c00217{height:11.733399pt;}
.h6_c00217{height:38.937500pt;}
.h1_c00217{height:71.785156pt;}
.h2_c00217{height:77.654948pt;}
.h3_c00217{height:78.027344pt;}
.h4_c00217{height:84.407552pt;}
.h0_c00217{height:740.666667pt;}
.w2_c00217{width:93.222667pt;}
.w0_c00217{width:501.133333pt;}
.w1_c00217{width:501.333333pt;}
.x0_c00217{left:0.000000pt;}
.xa_c00217{left:29.466667pt;}
.xc_c00217{left:40.800000pt;}
.x9_c00217{left:44.666667pt;}
.xf_c00217{left:77.733333pt;}
.x3_c00217{left:78.933333pt;}
.x8_c00217{left:80.800000pt;}
.x4_c00217{left:82.800000pt;}
.xb_c00217{left:84.000000pt;}
.xd_c00217{left:96.400000pt;}
.x2_c00217{left:102.666667pt;}
.xe_c00217{left:103.733333pt;}
.x6_c00217{left:104.800000pt;}
.x7_c00217{left:105.866667pt;}
.x5_c00217{left:112.266667pt;}
.x1_c00217{left:200.800000pt;}
.x10_c00217{left:207.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_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_99334ef2b839b10a388b4c88.woff2')format("woff");}.ff1_c00218{font-family:ff1_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:ff2_c00218;src:url('chunks/assets/font_d472fb608975dc4219fdc344.woff2')format("woff");}.ff2_c00218{font-family:ff2_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:ff3_c00218;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00218{font-family:ff4_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:ff5_c00218;src:url('chunks/assets/font_1999294db4a8c8df3488a185.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_2f0ebd8d16896069fcfc0a5b.woff2')format("woff");}.ff6_c00218{font-family:ff6_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:ff7_c00218;src:url('chunks/assets/font_f48389a501324eb2d54d1ed3.woff2')format("woff");}.ff7_c00218{font-family:ff7_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:ff8_c00218;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00218{font-family:ff8_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;}
.ls5_c00218{letter-spacing:-18.000000px;}
.ls4_c00218{letter-spacing:-6.000000px;}
.ls2_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:3.000000px;}
.ls3_c00218{letter-spacing:15.000000px;}
.ls0_c00218{letter-spacing:384.171000px;}
.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;}
}
.ws7_c00218{word-spacing:-62.523000px;}
.ws2_c00218{word-spacing:-44.022000px;}
.ws5_c00218{word-spacing:-34.056000px;}
.ws1_c00218{word-spacing:-31.629000px;}
.ws0_c00218{word-spacing:-16.629000px;}
.ws9_c00218{word-spacing:0.000000px;}
.ws6_c00218{word-spacing:0.966000px;}
.ws3_c00218{word-spacing:11.589000px;}
.ws8_c00218{word-spacing:16.341600px;}
.ws4_c00218{word-spacing:44.850000px;}
._29_c00218{margin-left:-41.814000px;}
._28_c00218{margin-left:-38.295000px;}
._1f_c00218{margin-left:-28.773000px;}
._1b_c00218{margin-left:-20.100000px;}
._2a_c00218{margin-left:-17.802000px;}
._c_c00218{margin-left:-8.418000px;}
._1d_c00218{margin-left:-7.245000px;}
._a_c00218{margin-left:-5.553000px;}
._7_c00218{margin-left:-4.416000px;}
._4_c00218{margin-left:-2.898000px;}
._0_c00218{margin-left:-1.656000px;}
._1_c00218{width:1.311000px;}
._2_c00218{width:2.484000px;}
._3_c00218{width:4.002000px;}
._10_c00218{width:5.175000px;}
._5_c00218{width:6.417000px;}
._11_c00218{width:8.211000px;}
._6_c00218{width:10.143000px;}
._9_c00218{width:12.282000px;}
._18_c00218{width:13.566000px;}
._8_c00218{width:14.835000px;}
._13_c00218{width:16.629000px;}
._12_c00218{width:18.147000px;}
._21_c00218{width:21.255000px;}
._d_c00218{width:23.598000px;}
._19_c00218{width:26.253000px;}
._b_c00218{width:29.394000px;}
._14_c00218{width:33.606000px;}
._1e_c00218{width:36.825000px;}
._1a_c00218{width:37.881000px;}
._24_c00218{width:41.883000px;}
._26_c00218{width:49.119000px;}
._1c_c00218{width:56.643000px;}
._25_c00218{width:65.943000px;}
._23_c00218{width:74.277000px;}
._15_c00218{width:81.075000px;}
._f_c00218{width:82.110000px;}
._e_c00218{width:83.835000px;}
._17_c00218{width:85.629000px;}
._16_c00218{width:99.636000px;}
._20_c00218{width:101.028000px;}
._27_c00218{width:126.264000px;}
._22_c00218{width:128.823000px;}
._2b_c00218{width:478.377000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(128,128,128);}
.fc0_c00218{color:rgb(0,0,0);}
.fs6_c00218{font-size:48.000000px;}
.fs5_c00218{font-size:64.800000px;}
.fs1_c00218{font-size:66.000000px;}
.fs0_c00218{font-size:69.000000px;}
.fs4_c00218{font-size:81.000000px;}
.fs3_c00218{font-size:207.000000px;}
.fs2_c00218{font-size:216.000000px;}
.y0_c00218{bottom:0.000000px;}
.y16_c00218{bottom:3.105000px;}
.y15_c00218{bottom:7.228355px;}
.y14_c00218{bottom:55.335000px;}
.y13_c00218{bottom:207.435000px;}
.y12_c00218{bottom:262.185000px;}
.y11_c00218{bottom:288.435000px;}
.y10_c00218{bottom:316.185000px;}
.yf_c00218{bottom:401.535000px;}
.ye_c00218{bottom:427.185000px;}
.yd_c00218{bottom:451.935000px;}
.yc_c00218{bottom:476.835000px;}
.yb_c00218{bottom:500.835000px;}
.ya_c00218{bottom:525.435000px;}
.y9_c00218{bottom:550.335000px;}
.y8_c00218{bottom:575.085000px;}
.y7_c00218{bottom:599.685000px;}
.y6_c00218{bottom:624.735000px;}
.y5_c00218{bottom:649.635000px;}
.y4_c00218{bottom:674.535000px;}
.y3_c00218{bottom:699.585000px;}
.y2_c00218{bottom:724.635000px;}
.y1_c00218{bottom:749.235000px;}
.h6_c00218{height:13.200074px;}
.h7_c00218{height:43.804688px;}
.h2_c00218{height:87.361816px;}
.h5_c00218{height:102.555176px;}
.h4_c00218{height:216.936000px;}
.h3_c00218{height:273.480469px;}
.h1_c00218{height:807.750000px;}
.h0_c00218{height:807.825000px;}
.w1_c00218{width:104.875500px;}
.w0_c00218{width:549.750000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:22.950000px;}
.x3_c00218{left:26.700000px;}
.x4_c00218{left:27.900000px;}
.x1_c00218{left:48.900000px;}
.x5_c00218{left:52.200000px;}
.x6_c00218{left:78.900000px;}
.x7_c00218{left:132.600000px;}
.xb_c00218{left:134.550000px;}
.xc_c00218{left:175.500000px;}
.x9_c00218{left:179.850000px;}
.x8_c00218{left:206.550000px;}
.xe_c00218{left:226.689240px;}
.xd_c00218{left:252.150000px;}
.xa_c00218{left:303.000000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls5_c00218{letter-spacing:-16.000000pt;}
.ls4_c00218{letter-spacing:-5.333333pt;}
.ls2_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:2.666667pt;}
.ls3_c00218{letter-spacing:13.333333pt;}
.ls0_c00218{letter-spacing:341.485333pt;}
.ws7_c00218{word-spacing:-55.576000pt;}
.ws2_c00218{word-spacing:-39.130667pt;}
.ws5_c00218{word-spacing:-30.272000pt;}
.ws1_c00218{word-spacing:-28.114667pt;}
.ws0_c00218{word-spacing:-14.781333pt;}
.ws9_c00218{word-spacing:0.000000pt;}
.ws6_c00218{word-spacing:0.858667pt;}
.ws3_c00218{word-spacing:10.301333pt;}
.ws8_c00218{word-spacing:14.525867pt;}
.ws4_c00218{word-spacing:39.866667pt;}
._29_c00218{margin-left:-37.168000pt;}
._28_c00218{margin-left:-34.040000pt;}
._1f_c00218{margin-left:-25.576000pt;}
._1b_c00218{margin-left:-17.866667pt;}
._2a_c00218{margin-left:-15.824000pt;}
._c_c00218{margin-left:-7.482667pt;}
._1d_c00218{margin-left:-6.440000pt;}
._a_c00218{margin-left:-4.936000pt;}
._7_c00218{margin-left:-3.925333pt;}
._4_c00218{margin-left:-2.576000pt;}
._0_c00218{margin-left:-1.472000pt;}
._1_c00218{width:1.165333pt;}
._2_c00218{width:2.208000pt;}
._3_c00218{width:3.557333pt;}
._10_c00218{width:4.600000pt;}
._5_c00218{width:5.704000pt;}
._11_c00218{width:7.298667pt;}
._6_c00218{width:9.016000pt;}
._9_c00218{width:10.917333pt;}
._18_c00218{width:12.058667pt;}
._8_c00218{width:13.186667pt;}
._13_c00218{width:14.781333pt;}
._12_c00218{width:16.130667pt;}
._21_c00218{width:18.893333pt;}
._d_c00218{width:20.976000pt;}
._19_c00218{width:23.336000pt;}
._b_c00218{width:26.128000pt;}
._14_c00218{width:29.872000pt;}
._1e_c00218{width:32.733333pt;}
._1a_c00218{width:33.672000pt;}
._24_c00218{width:37.229333pt;}
._26_c00218{width:43.661333pt;}
._1c_c00218{width:50.349333pt;}
._25_c00218{width:58.616000pt;}
._23_c00218{width:66.024000pt;}
._15_c00218{width:72.066667pt;}
._f_c00218{width:72.986667pt;}
._e_c00218{width:74.520000pt;}
._17_c00218{width:76.114667pt;}
._16_c00218{width:88.565333pt;}
._20_c00218{width:89.802667pt;}
._27_c00218{width:112.234667pt;}
._22_c00218{width:114.509333pt;}
._2b_c00218{width:425.224000pt;}
.fs6_c00218{font-size:42.666667pt;}
.fs5_c00218{font-size:57.600000pt;}
.fs1_c00218{font-size:58.666667pt;}
.fs0_c00218{font-size:61.333333pt;}
.fs4_c00218{font-size:72.000000pt;}
.fs3_c00218{font-size:184.000000pt;}
.fs2_c00218{font-size:192.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y16_c00218{bottom:2.760000pt;}
.y15_c00218{bottom:6.425204pt;}
.y14_c00218{bottom:49.186667pt;}
.y13_c00218{bottom:184.386667pt;}
.y12_c00218{bottom:233.053333pt;}
.y11_c00218{bottom:256.386667pt;}
.y10_c00218{bottom:281.053333pt;}
.yf_c00218{bottom:356.920000pt;}
.ye_c00218{bottom:379.720000pt;}
.yd_c00218{bottom:401.720000pt;}
.yc_c00218{bottom:423.853333pt;}
.yb_c00218{bottom:445.186667pt;}
.ya_c00218{bottom:467.053333pt;}
.y9_c00218{bottom:489.186667pt;}
.y8_c00218{bottom:511.186667pt;}
.y7_c00218{bottom:533.053333pt;}
.y6_c00218{bottom:555.320000pt;}
.y5_c00218{bottom:577.453333pt;}
.y4_c00218{bottom:599.586667pt;}
.y3_c00218{bottom:621.853333pt;}
.y2_c00218{bottom:644.120000pt;}
.y1_c00218{bottom:665.986667pt;}
.h6_c00218{height:11.733399pt;}
.h7_c00218{height:38.937500pt;}
.h2_c00218{height:77.654948pt;}
.h5_c00218{height:91.160156pt;}
.h4_c00218{height:192.832000pt;}
.h3_c00218{height:243.093750pt;}
.h1_c00218{height:718.000000pt;}
.h0_c00218{height:718.066667pt;}
.w1_c00218{width:93.222667pt;}
.w0_c00218{width:488.666667pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:20.400000pt;}
.x3_c00218{left:23.733333pt;}
.x4_c00218{left:24.800000pt;}
.x1_c00218{left:43.466667pt;}
.x5_c00218{left:46.400000pt;}
.x6_c00218{left:70.133333pt;}
.x7_c00218{left:117.866667pt;}
.xb_c00218{left:119.600000pt;}
.xc_c00218{left:156.000000pt;}
.x9_c00218{left:159.866667pt;}
.x8_c00218{left:183.600000pt;}
.xe_c00218{left:201.501546pt;}
.xd_c00218{left:224.133333pt;}
.xa_c00218{left:269.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_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_9c3f98e30c3bfdeb982d0f07.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;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_c00219;src:url('chunks/assets/font_7da6ff3a4ad48d6a2b5cb044.woff2')format("woff");}.ff2_c00219{font-family:ff2_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:ff3_c00219;src:url('chunks/assets/font_f86121e32d4f4fba99f0647f.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_7c7691bc827971f7eb512100.woff2')format("woff");}.ff4_c00219{font-family:ff4_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:ff5_c00219;src:url('chunks/assets/font_882edd1c83b670802354381f.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00219;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00219{font-family:ff6_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:ff7_c00219;src:url('chunks/assets/font_ad2274c0a8063a6d30456078.woff2')format("woff");}.ff7_c00219{font-family:ff7_c00219;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00219;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00219{font-family:ff8_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);}
.v0_c00219{vertical-align:0.000000px;}
.ls4_c00219{letter-spacing:-21.000000px;}
.ls3_c00219{letter-spacing:0.000000px;}
.ls2_c00219{letter-spacing:1.794000px;}
.ls5_c00219{letter-spacing:3.000000px;}
.ls7_c00219{letter-spacing:9.000000px;}
.ls0_c00219{letter-spacing:15.771000px;}
.ls1_c00219{letter-spacing:22.764000px;}
.ls6_c00219{letter-spacing:24.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;}
}
.ws2_c00219{word-spacing:-40.629000px;}
.ws5_c00219{word-spacing:-26.250000px;}
.ws3_c00219{word-spacing:-19.629000px;}
.ws6_c00219{word-spacing:-17.250000px;}
.ws4_c00219{word-spacing:-16.629000px;}
.ws0_c00219{word-spacing:-0.279000px;}
.ws7_c00219{word-spacing:0.000000px;}
.ws1_c00219{word-spacing:4.692000px;}
._d_c00219{margin-left:-54.120000px;}
._c_c00219{margin-left:-25.872000px;}
._8_c00219{margin-left:-21.912000px;}
._9_c00219{margin-left:-18.216000px;}
._2a_c00219{margin-left:-16.869000px;}
._2b_c00219{margin-left:-13.947000px;}
._4_c00219{margin-left:-12.672000px;}
._1a_c00219{margin-left:-11.316000px;}
._0_c00219{margin-left:-10.038000px;}
._20_c00219{margin-left:-8.886000px;}
._a_c00219{margin-left:-7.656000px;}
._2c_c00219{margin-left:-6.627000px;}
._22_c00219{margin-left:-4.785000px;}
._1e_c00219{margin-left:-3.381000px;}
._27_c00219{margin-left:-2.361000px;}
._e_c00219{margin-left:-1.311000px;}
._19_c00219{width:1.932000px;}
._17_c00219{width:3.588000px;}
._18_c00219{width:4.692000px;}
._12_c00219{width:6.747000px;}
._6_c00219{width:7.920000px;}
._b_c00219{width:8.976000px;}
._16_c00219{width:10.143000px;}
._15_c00219{width:11.322000px;}
._1f_c00219{width:13.008000px;}
._2_c00219{width:14.256000px;}
._14_c00219{width:15.372000px;}
._13_c00219{width:17.112000px;}
._26_c00219{width:19.665000px;}
._21_c00219{width:21.252000px;}
._10_c00219{width:23.436000px;}
._25_c00219{width:24.498000px;}
._1b_c00219{width:32.958000px;}
._f_c00219{width:34.002000px;}
._1d_c00219{width:36.570000px;}
._1_c00219{width:39.072000px;}
._11_c00219{width:42.780000px;}
._28_c00219{width:47.943000px;}
._5_c00219{width:52.008000px;}
._23_c00219{width:53.820000px;}
._3_c00219{width:65.208000px;}
._7_c00219{width:69.432000px;}
._1c_c00219{width:81.558000px;}
._29_c00219{width:116.244000px;}
._24_c00219{width:191.241000px;}
.fc2_c00219{color:transparent;}
.fc1_c00219{color:rgb(128,128,128);}
.fc0_c00219{color:rgb(0,0,0);}
.fs3_c00219{font-size:48.000000px;}
.fs2_c00219{font-size:69.000000px;}
.fs1_c00219{font-size:264.000000px;}
.fs0_c00219{font-size:279.000000px;}
.y0_c00219{bottom:0.000000px;}
.y17_c00219{bottom:3.105000px;}
.y16_c00219{bottom:7.228369px;}
.y15_c00219{bottom:124.470000px;}
.y14_c00219{bottom:149.820000px;}
.y13_c00219{bottom:176.070000px;}
.y12_c00219{bottom:201.120000px;}
.y11_c00219{bottom:226.770000px;}
.y10_c00219{bottom:251.670000px;}
.yf_c00219{bottom:277.020000px;}
.ye_c00219{bottom:302.370000px;}
.yd_c00219{bottom:327.420000px;}
.yc_c00219{bottom:350.970000px;}
.yb_c00219{bottom:375.570000px;}
.ya_c00219{bottom:401.220000px;}
.y9_c00219{bottom:425.970000px;}
.y8_c00219{bottom:451.470000px;}
.y7_c00219{bottom:476.220000px;}
.y6_c00219{bottom:501.120000px;}
.y5_c00219{bottom:550.170000px;}
.y4_c00219{bottom:574.770000px;}
.y3_c00219{bottom:643.620000px;}
.y2_c00219{bottom:680.070000px;}
.y1_c00219{bottom:715.470000px;}
.h8_c00219{height:13.200073px;}
.h9_c00219{height:43.804688px;}
.h7_c00219{height:67.686035px;}
.h4_c00219{height:67.719727px;}
.h5_c00219{height:69.539062px;}
.h6_c00219{height:80.758301px;}
.h3_c00219{height:87.361816px;}
.h2_c00219{height:334.253906px;}
.h1_c00219{height:844.500000px;}
.h0_c00219{height:844.800000px;}
.w2_c00219{width:104.875500px;}
.w0_c00219{width:572.100000px;}
.w1_c00219{width:572.250000px;}
.x0_c00219{left:0.000000px;}
.xf_c00219{left:97.950000px;}
.xd_c00219{left:100.350000px;}
.xc_c00219{left:101.850000px;}
.x2_c00219{left:103.350000px;}
.x1_c00219{left:106.350000px;}
.xe_c00219{left:126.600000px;}
.x4_c00219{left:133.650000px;}
.x3_c00219{left:180.150000px;}
.xa_c00219{left:234.900000px;}
.x6_c00219{left:236.550000px;}
.x10_c00219{left:237.864258px;}
.x9_c00219{left:257.850000px;}
.x8_c00219{left:270.000000px;}
.x7_c00219{left:272.700000px;}
.xb_c00219{left:273.750000px;}
.x5_c00219{left:291.300000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls4_c00219{letter-spacing:-18.666667pt;}
.ls3_c00219{letter-spacing:0.000000pt;}
.ls2_c00219{letter-spacing:1.594667pt;}
.ls5_c00219{letter-spacing:2.666667pt;}
.ls7_c00219{letter-spacing:8.000000pt;}
.ls0_c00219{letter-spacing:14.018667pt;}
.ls1_c00219{letter-spacing:20.234667pt;}
.ls6_c00219{letter-spacing:21.333333pt;}
.ws2_c00219{word-spacing:-36.114667pt;}
.ws5_c00219{word-spacing:-23.333333pt;}
.ws3_c00219{word-spacing:-17.448000pt;}
.ws6_c00219{word-spacing:-15.333333pt;}
.ws4_c00219{word-spacing:-14.781333pt;}
.ws0_c00219{word-spacing:-0.248000pt;}
.ws7_c00219{word-spacing:0.000000pt;}
.ws1_c00219{word-spacing:4.170667pt;}
._d_c00219{margin-left:-48.106667pt;}
._c_c00219{margin-left:-22.997333pt;}
._8_c00219{margin-left:-19.477333pt;}
._9_c00219{margin-left:-16.192000pt;}
._2a_c00219{margin-left:-14.994667pt;}
._2b_c00219{margin-left:-12.397333pt;}
._4_c00219{margin-left:-11.264000pt;}
._1a_c00219{margin-left:-10.058667pt;}
._0_c00219{margin-left:-8.922667pt;}
._20_c00219{margin-left:-7.898667pt;}
._a_c00219{margin-left:-6.805333pt;}
._2c_c00219{margin-left:-5.890667pt;}
._22_c00219{margin-left:-4.253333pt;}
._1e_c00219{margin-left:-3.005333pt;}
._27_c00219{margin-left:-2.098667pt;}
._e_c00219{margin-left:-1.165333pt;}
._19_c00219{width:1.717333pt;}
._17_c00219{width:3.189333pt;}
._18_c00219{width:4.170667pt;}
._12_c00219{width:5.997333pt;}
._6_c00219{width:7.040000pt;}
._b_c00219{width:7.978667pt;}
._16_c00219{width:9.016000pt;}
._15_c00219{width:10.064000pt;}
._1f_c00219{width:11.562667pt;}
._2_c00219{width:12.672000pt;}
._14_c00219{width:13.664000pt;}
._13_c00219{width:15.210667pt;}
._26_c00219{width:17.480000pt;}
._21_c00219{width:18.890667pt;}
._10_c00219{width:20.832000pt;}
._25_c00219{width:21.776000pt;}
._1b_c00219{width:29.296000pt;}
._f_c00219{width:30.224000pt;}
._1d_c00219{width:32.506667pt;}
._1_c00219{width:34.730667pt;}
._11_c00219{width:38.026667pt;}
._28_c00219{width:42.616000pt;}
._5_c00219{width:46.229333pt;}
._23_c00219{width:47.840000pt;}
._3_c00219{width:57.962667pt;}
._7_c00219{width:61.717333pt;}
._1c_c00219{width:72.496000pt;}
._29_c00219{width:103.328000pt;}
._24_c00219{width:169.992000pt;}
.fs3_c00219{font-size:42.666667pt;}
.fs2_c00219{font-size:61.333333pt;}
.fs1_c00219{font-size:234.666667pt;}
.fs0_c00219{font-size:248.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y17_c00219{bottom:2.760000pt;}
.y16_c00219{bottom:6.425217pt;}
.y15_c00219{bottom:110.640000pt;}
.y14_c00219{bottom:133.173333pt;}
.y13_c00219{bottom:156.506667pt;}
.y12_c00219{bottom:178.773333pt;}
.y11_c00219{bottom:201.573333pt;}
.y10_c00219{bottom:223.706667pt;}
.yf_c00219{bottom:246.240000pt;}
.ye_c00219{bottom:268.773333pt;}
.yd_c00219{bottom:291.040000pt;}
.yc_c00219{bottom:311.973333pt;}
.yb_c00219{bottom:333.840000pt;}
.ya_c00219{bottom:356.640000pt;}
.y9_c00219{bottom:378.640000pt;}
.y8_c00219{bottom:401.306667pt;}
.y7_c00219{bottom:423.306667pt;}
.y6_c00219{bottom:445.440000pt;}
.y5_c00219{bottom:489.040000pt;}
.y4_c00219{bottom:510.906667pt;}
.y3_c00219{bottom:572.106667pt;}
.y2_c00219{bottom:604.506667pt;}
.y1_c00219{bottom:635.973333pt;}
.h8_c00219{height:11.733399pt;}
.h9_c00219{height:38.937500pt;}
.h7_c00219{height:60.165365pt;}
.h4_c00219{height:60.195312pt;}
.h5_c00219{height:61.812500pt;}
.h6_c00219{height:71.785156pt;}
.h3_c00219{height:77.654948pt;}
.h2_c00219{height:297.114583pt;}
.h1_c00219{height:750.666667pt;}
.h0_c00219{height:750.933333pt;}
.w2_c00219{width:93.222667pt;}
.w0_c00219{width:508.533333pt;}
.w1_c00219{width:508.666667pt;}
.x0_c00219{left:0.000000pt;}
.xf_c00219{left:87.066667pt;}
.xd_c00219{left:89.200000pt;}
.xc_c00219{left:90.533333pt;}
.x2_c00219{left:91.866667pt;}
.x1_c00219{left:94.533333pt;}
.xe_c00219{left:112.533333pt;}
.x4_c00219{left:118.800000pt;}
.x3_c00219{left:160.133333pt;}
.xa_c00219{left:208.800000pt;}
.x6_c00219{left:210.266667pt;}
.x10_c00219{left:211.434896pt;}
.x9_c00219{left:229.200000pt;}
.x8_c00219{left:240.000000pt;}
.x7_c00219{left:242.400000pt;}
.xb_c00219{left:243.333333pt;}
.x5_c00219{left:258.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_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_e26445700d89a8165734e5dd.woff2')format("woff");}.ff1_c00220{font-family:ff1_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:ff2_c00220;src:url('chunks/assets/font_99e01b307acc1734c5312cd4.woff2')format("woff");}.ff2_c00220{font-family:ff2_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:ff3_c00220;src:url('chunks/assets/font_1ec9d1442d0b961b3f717d65.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_6767233cb23465ad82faabdd.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_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff5_c00220{font-family:ff5_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:ff6_c00220;src:url('chunks/assets/font_7167e6f29732ed953913a52c.woff2')format("woff");}.ff6_c00220{font-family:ff6_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:ff7_c00220;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00220{font-family:ff7_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;}
.ls7_c00220{letter-spacing:-9.000000px;}
.ls5_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:1.971000px;}
.ls6_c00220{letter-spacing:3.000000px;}
.ls3_c00220{letter-spacing:3.171000px;}
.ls2_c00220{letter-spacing:3.771000px;}
.ls4_c00220{letter-spacing:4.800000px;}
.ls8_c00220{letter-spacing:6.000000px;}
.ls1_c00220{letter-spacing:8.775000px;}
.ls9_c00220{letter-spacing:9.000000px;}
.lsa_c00220{letter-spacing:18.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;}
}
.ws7_c00220{word-spacing:-44.022000px;}
.ws6_c00220{word-spacing:-34.629000px;}
.ws3_c00220{word-spacing:-22.629000px;}
.ws0_c00220{word-spacing:-19.629000px;}
.ws5_c00220{word-spacing:-16.629000px;}
.ws2_c00220{word-spacing:-14.460000px;}
.ws4_c00220{word-spacing:-6.069000px;}
.ws8_c00220{word-spacing:0.000000px;}
.ws1_c00220{word-spacing:8.220000px;}
._a_c00220{margin-left:-68.655000px;}
._8_c00220{margin-left:-67.482000px;}
._21_c00220{margin-left:-35.604000px;}
._11_c00220{margin-left:-23.115000px;}
._1f_c00220{margin-left:-19.596000px;}
._24_c00220{margin-left:-17.787000px;}
._d_c00220{margin-left:-16.284000px;}
._17_c00220{margin-left:-15.117000px;}
._1e_c00220{margin-left:-13.785000px;}
._10_c00220{margin-left:-12.006000px;}
._16_c00220{margin-left:-10.074000px;}
._f_c00220{margin-left:-8.970000px;}
._19_c00220{margin-left:-7.722000px;}
._2_c00220{margin-left:-6.555000px;}
._5_c00220{margin-left:-5.451000px;}
._3_c00220{margin-left:-4.140000px;}
._1_c00220{margin-left:-3.105000px;}
._14_c00220{margin-left:-1.311000px;}
._0_c00220{width:1.518000px;}
._12_c00220{width:3.519000px;}
._7_c00220{width:4.623000px;}
._6_c00220{width:6.555000px;}
._2a_c00220{width:7.590000px;}
._1c_c00220{width:8.625000px;}
._23_c00220{width:10.929000px;}
._e_c00220{width:12.765000px;}
._9_c00220{width:14.835000px;}
._29_c00220{width:16.449000px;}
._28_c00220{width:17.802000px;}
._22_c00220{width:20.346000px;}
._27_c00220{width:21.984000px;}
._2b_c00220{width:24.837000px;}
._26_c00220{width:30.147000px;}
._18_c00220{width:31.932000px;}
._13_c00220{width:34.362000px;}
._2e_c00220{width:35.604000px;}
._1d_c00220{width:37.467000px;}
._1b_c00220{width:38.727000px;}
._15_c00220{width:40.641000px;}
._30_c00220{width:80.724000px;}
._32_c00220{width:82.179000px;}
._1a_c00220{width:86.514000px;}
._20_c00220{width:102.108000px;}
._25_c00220{width:104.193000px;}
._31_c00220{width:125.175000px;}
._2d_c00220{width:148.533000px;}
._2f_c00220{width:151.020000px;}
._b_c00220{width:171.465000px;}
._c_c00220{width:173.535000px;}
._33_c00220{width:176.040000px;}
._4_c00220{width:514.329000px;}
._34_c00220{width:580.587000px;}
._2c_c00220{width:1157.166000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(128,128,128);}
.fc0_c00220{color:rgb(0,0,0);}
.fs6_c00220{font-size:48.000000px;}
.fs4_c00220{font-size:51.000000px;}
.fs5_c00220{font-size:57.000000px;}
.fs2_c00220{font-size:60.000000px;}
.fs3_c00220{font-size:66.000000px;}
.fs0_c00220{font-size:69.000000px;}
.fs1_c00220{font-size:75.000000px;}
.y0_c00220{bottom:0.000000px;}
.y20_c00220{bottom:3.105000px;}
.y1f_c00220{bottom:7.228371px;}
.y1e_c00220{bottom:69.165000px;}
.y1d_c00220{bottom:94.515000px;}
.y1c_c00220{bottom:120.165000px;}
.y1b_c00220{bottom:145.815000px;}
.y1a_c00220{bottom:170.115000px;}
.y19_c00220{bottom:194.865000px;}
.y18_c00220{bottom:220.365000px;}
.y17_c00220{bottom:245.115000px;}
.y16_c00220{bottom:270.315000px;}
.y15_c00220{bottom:297.315000px;}
.y14_c00220{bottom:321.315000px;}
.y13_c00220{bottom:345.915000px;}
.y12_c00220{bottom:370.665000px;}
.y11_c00220{bottom:395.265000px;}
.y10_c00220{bottom:420.165000px;}
.yf_c00220{bottom:445.515000px;}
.ye_c00220{bottom:470.265000px;}
.yd_c00220{bottom:494.865000px;}
.yc_c00220{bottom:519.765000px;}
.yb_c00220{bottom:543.765000px;}
.ya_c00220{bottom:568.665000px;}
.y9_c00220{bottom:593.715000px;}
.y8_c00220{bottom:618.765000px;}
.y7_c00220{bottom:643.665000px;}
.y6_c00220{bottom:668.715000px;}
.y5_c00220{bottom:693.615000px;}
.y4_c00220{bottom:718.665000px;}
.y3_c00220{bottom:743.265000px;}
.y2_c00220{bottom:770.565000px;}
.y1_c00220{bottom:793.515000px;}
.h6_c00220{height:13.200074px;}
.h7_c00220{height:43.804688px;}
.h5_c00220{height:64.571777px;}
.h4_c00220{height:80.758301px;}
.h2_c00220{height:87.361816px;}
.h3_c00220{height:87.780762px;}
.h1_c00220{height:831.000000px;}
.h0_c00220{height:831.075000px;}
.w2_c00220{width:104.875500px;}
.w0_c00220{width:566.175000px;}
.w1_c00220{width:566.250000px;}
.x0_c00220{left:0.000000px;}
.x9_c00220{left:24.300000px;}
.x6_c00220{left:25.950000px;}
.x8_c00220{left:27.600000px;}
.x7_c00220{left:28.650000px;}
.x5_c00220{left:30.000000px;}
.xd_c00220{left:31.050000px;}
.xe_c00220{left:43.950000px;}
.x3_c00220{left:53.700000px;}
.xc_c00220{left:56.400000px;}
.xa_c00220{left:112.350000px;}
.xb_c00220{left:170.850000px;}
.x1_c00220{left:189.900000px;}
.x4_c00220{left:204.450000px;}
.x10_c00220{left:234.901749px;}
.xf_c00220{left:262.200000px;}
.x2_c00220{left:343.950000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls7_c00220{letter-spacing:-8.000000pt;}
.ls5_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:1.752000pt;}
.ls6_c00220{letter-spacing:2.666667pt;}
.ls3_c00220{letter-spacing:2.818667pt;}
.ls2_c00220{letter-spacing:3.352000pt;}
.ls4_c00220{letter-spacing:4.266667pt;}
.ls8_c00220{letter-spacing:5.333333pt;}
.ls1_c00220{letter-spacing:7.800000pt;}
.ls9_c00220{letter-spacing:8.000000pt;}
.lsa_c00220{letter-spacing:16.000000pt;}
.ws7_c00220{word-spacing:-39.130667pt;}
.ws6_c00220{word-spacing:-30.781333pt;}
.ws3_c00220{word-spacing:-20.114667pt;}
.ws0_c00220{word-spacing:-17.448000pt;}
.ws5_c00220{word-spacing:-14.781333pt;}
.ws2_c00220{word-spacing:-12.853333pt;}
.ws4_c00220{word-spacing:-5.394667pt;}
.ws8_c00220{word-spacing:0.000000pt;}
.ws1_c00220{word-spacing:7.306667pt;}
._a_c00220{margin-left:-61.026667pt;}
._8_c00220{margin-left:-59.984000pt;}
._21_c00220{margin-left:-31.648000pt;}
._11_c00220{margin-left:-20.546667pt;}
._1f_c00220{margin-left:-17.418667pt;}
._24_c00220{margin-left:-15.810667pt;}
._d_c00220{margin-left:-14.474667pt;}
._17_c00220{margin-left:-13.437333pt;}
._1e_c00220{margin-left:-12.253333pt;}
._10_c00220{margin-left:-10.672000pt;}
._16_c00220{margin-left:-8.954667pt;}
._f_c00220{margin-left:-7.973333pt;}
._19_c00220{margin-left:-6.864000pt;}
._2_c00220{margin-left:-5.826667pt;}
._5_c00220{margin-left:-4.845333pt;}
._3_c00220{margin-left:-3.680000pt;}
._1_c00220{margin-left:-2.760000pt;}
._14_c00220{margin-left:-1.165333pt;}
._0_c00220{width:1.349333pt;}
._12_c00220{width:3.128000pt;}
._7_c00220{width:4.109333pt;}
._6_c00220{width:5.826667pt;}
._2a_c00220{width:6.746667pt;}
._1c_c00220{width:7.666667pt;}
._23_c00220{width:9.714667pt;}
._e_c00220{width:11.346667pt;}
._9_c00220{width:13.186667pt;}
._29_c00220{width:14.621333pt;}
._28_c00220{width:15.824000pt;}
._22_c00220{width:18.085333pt;}
._27_c00220{width:19.541333pt;}
._2b_c00220{width:22.077333pt;}
._26_c00220{width:26.797333pt;}
._18_c00220{width:28.384000pt;}
._13_c00220{width:30.544000pt;}
._2e_c00220{width:31.648000pt;}
._1d_c00220{width:33.304000pt;}
._1b_c00220{width:34.424000pt;}
._15_c00220{width:36.125333pt;}
._30_c00220{width:71.754667pt;}
._32_c00220{width:73.048000pt;}
._1a_c00220{width:76.901333pt;}
._20_c00220{width:90.762667pt;}
._25_c00220{width:92.616000pt;}
._31_c00220{width:111.266667pt;}
._2d_c00220{width:132.029333pt;}
._2f_c00220{width:134.240000pt;}
._b_c00220{width:152.413333pt;}
._c_c00220{width:154.253333pt;}
._33_c00220{width:156.480000pt;}
._4_c00220{width:457.181333pt;}
._34_c00220{width:516.077333pt;}
._2c_c00220{width:1028.592000pt;}
.fs6_c00220{font-size:42.666667pt;}
.fs4_c00220{font-size:45.333333pt;}
.fs5_c00220{font-size:50.666667pt;}
.fs2_c00220{font-size:53.333333pt;}
.fs3_c00220{font-size:58.666667pt;}
.fs0_c00220{font-size:61.333333pt;}
.fs1_c00220{font-size:66.666667pt;}
.y0_c00220{bottom:0.000000pt;}
.y20_c00220{bottom:2.760000pt;}
.y1f_c00220{bottom:6.425219pt;}
.y1e_c00220{bottom:61.480000pt;}
.y1d_c00220{bottom:84.013333pt;}
.y1c_c00220{bottom:106.813333pt;}
.y1b_c00220{bottom:129.613333pt;}
.y1a_c00220{bottom:151.213333pt;}
.y19_c00220{bottom:173.213333pt;}
.y18_c00220{bottom:195.880000pt;}
.y17_c00220{bottom:217.880000pt;}
.y16_c00220{bottom:240.280000pt;}
.y15_c00220{bottom:264.280000pt;}
.y14_c00220{bottom:285.613333pt;}
.y13_c00220{bottom:307.480000pt;}
.y12_c00220{bottom:329.480000pt;}
.y11_c00220{bottom:351.346667pt;}
.y10_c00220{bottom:373.480000pt;}
.yf_c00220{bottom:396.013333pt;}
.ye_c00220{bottom:418.013333pt;}
.yd_c00220{bottom:439.880000pt;}
.yc_c00220{bottom:462.013333pt;}
.yb_c00220{bottom:483.346667pt;}
.ya_c00220{bottom:505.480000pt;}
.y9_c00220{bottom:527.746667pt;}
.y8_c00220{bottom:550.013333pt;}
.y7_c00220{bottom:572.146667pt;}
.y6_c00220{bottom:594.413333pt;}
.y5_c00220{bottom:616.546667pt;}
.y4_c00220{bottom:638.813333pt;}
.y3_c00220{bottom:660.680000pt;}
.y2_c00220{bottom:684.946667pt;}
.y1_c00220{bottom:705.346667pt;}
.h6_c00220{height:11.733399pt;}
.h7_c00220{height:38.937500pt;}
.h5_c00220{height:57.397135pt;}
.h4_c00220{height:71.785156pt;}
.h2_c00220{height:77.654948pt;}
.h3_c00220{height:78.027344pt;}
.h1_c00220{height:738.666667pt;}
.h0_c00220{height:738.733333pt;}
.w2_c00220{width:93.222667pt;}
.w0_c00220{width:503.266667pt;}
.w1_c00220{width:503.333333pt;}
.x0_c00220{left:0.000000pt;}
.x9_c00220{left:21.600000pt;}
.x6_c00220{left:23.066667pt;}
.x8_c00220{left:24.533333pt;}
.x7_c00220{left:25.466667pt;}
.x5_c00220{left:26.666667pt;}
.xd_c00220{left:27.600000pt;}
.xe_c00220{left:39.066667pt;}
.x3_c00220{left:47.733333pt;}
.xc_c00220{left:50.133333pt;}
.xa_c00220{left:99.866667pt;}
.xb_c00220{left:151.866667pt;}
.x1_c00220{left:168.800000pt;}
.x4_c00220{left:181.733333pt;}
.x10_c00220{left:208.801554pt;}
.xf_c00220{left:233.066667pt;}
.x2_c00220{left:305.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_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_197430a37343e6192554d395.woff2')format("woff");}.ff1_c00221{font-family:ff1_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:ff2_c00221;src:url('chunks/assets/font_a2e4bb3852cc3b64d4ff4c5d.woff2')format("woff");}.ff2_c00221{font-family:ff2_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:ff3_c00221;src:url('chunks/assets/font_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff3_c00221{font-family:ff3_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:ff4_c00221;src:url('chunks/assets/font_96377623a1af33e7a8383757.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;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_c00221;src:url('chunks/assets/font_86395267db2e6d294cf59633.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.437000;font-style:normal;font-weight:normal;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_78e8713932c6e45a2415cd39.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;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_c00221;src:url('chunks/assets/font_777ae6baa6d8b448ae50f567.woff2')format("woff");}.ff7_c00221{font-family:ff7_c00221;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_c00221;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00221{font-family:ff8_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);}
.v0_c00221{vertical-align:0.000000px;}
.ls8_c00221{letter-spacing:0.000000px;}
.ls9_c00221{letter-spacing:3.000000px;}
.ls0_c00221{letter-spacing:3.600000px;}
.ls2_c00221{letter-spacing:4.263000px;}
.ls4_c00221{letter-spacing:4.863000px;}
.lsa_c00221{letter-spacing:6.000000px;}
.ls1_c00221{letter-spacing:6.456000px;}
.lsb_c00221{letter-spacing:9.000000px;}
.ls5_c00221{letter-spacing:11.571000px;}
.ls6_c00221{letter-spacing:16.020000px;}
.ls3_c00221{letter-spacing:19.971000px;}
.ls7_c00221{letter-spacing:22.371000px;}
.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;}
}
.ws3_c00221{word-spacing:-24.450000px;}
.ws1_c00221{word-spacing:-22.629000px;}
.ws5_c00221{word-spacing:-19.629000px;}
.ws4_c00221{word-spacing:-16.629000px;}
.ws0_c00221{word-spacing:-11.568000px;}
.ws2_c00221{word-spacing:-10.500000px;}
.ws6_c00221{word-spacing:0.000000px;}
._29_c00221{margin-left:-47.880000px;}
._2d_c00221{margin-left:-30.153000px;}
._14_c00221{margin-left:-25.185000px;}
._23_c00221{margin-left:-21.363000px;}
._16_c00221{margin-left:-18.699000px;}
._1a_c00221{margin-left:-16.896000px;}
._32_c00221{margin-left:-15.714000px;}
._13_c00221{margin-left:-13.884000px;}
._b_c00221{margin-left:-12.159000px;}
._1_c00221{margin-left:-10.074000px;}
._33_c00221{margin-left:-8.970000px;}
._3_c00221{margin-left:-7.935000px;}
._8_c00221{margin-left:-6.279000px;}
._17_c00221{margin-left:-5.037000px;}
._2_c00221{margin-left:-4.002000px;}
._9_c00221{margin-left:-2.622000px;}
._5_c00221{margin-left:-1.587000px;}
._10_c00221{width:1.326000px;}
._7_c00221{width:2.346000px;}
._1c_c00221{width:3.435000px;}
._a_c00221{width:4.485000px;}
._6_c00221{width:6.486000px;}
._0_c00221{width:7.920000px;}
._11_c00221{width:9.108000px;}
._26_c00221{width:10.419000px;}
._12_c00221{width:11.592000px;}
._c_c00221{width:13.329000px;}
._25_c00221{width:14.574000px;}
._20_c00221{width:15.594000px;}
._1f_c00221{width:17.886000px;}
._e_c00221{width:19.059000px;}
._22_c00221{width:20.355000px;}
._f_c00221{width:21.942000px;}
._d_c00221{width:24.081000px;}
._27_c00221{width:25.923000px;}
._2f_c00221{width:27.240000px;}
._30_c00221{width:29.847000px;}
._19_c00221{width:31.134000px;}
._21_c00221{width:32.460000px;}
._15_c00221{width:33.711000px;}
._2c_c00221{width:36.882000px;}
._2b_c00221{width:43.911000px;}
._2e_c00221{width:76.038000px;}
._1d_c00221{width:78.453000px;}
._1b_c00221{width:84.714000px;}
._18_c00221{width:87.285000px;}
._28_c00221{width:90.597000px;}
._1e_c00221{width:136.620000px;}
._4_c00221{width:462.132000px;}
._24_c00221{width:550.215000px;}
._31_c00221{width:820.659000px;}
._34_c00221{width:1351.995000px;}
._2a_c00221{width:1353.666000px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(128,128,128);}
.fc0_c00221{color:rgb(0,0,0);}
.fs3_c00221{font-size:42.000000px;}
.fs6_c00221{font-size:45.000000px;}
.fs1_c00221{font-size:48.000000px;}
.fs4_c00221{font-size:54.000000px;}
.fs2_c00221{font-size:66.000000px;}
.fs0_c00221{font-size:69.000000px;}
.fs5_c00221{font-size:75.000000px;}
.y0_c00221{bottom:0.000000px;}
.y1f_c00221{bottom:3.105000px;}
.y1e_c00221{bottom:7.228369px;}
.y1d_c00221{bottom:96.870000px;}
.y1c_c00221{bottom:121.770000px;}
.y1b_c00221{bottom:148.170000px;}
.y1a_c00221{bottom:181.470000px;}
.y19_c00221{bottom:213.270000px;}
.y18_c00221{bottom:238.620000px;}
.y17_c00221{bottom:263.820000px;}
.y16_c00221{bottom:289.170000px;}
.y15_c00221{bottom:322.920000px;}
.y14_c00221{bottom:336.870000px;}
.y13_c00221{bottom:362.370000px;}
.y12_c00221{bottom:420.420000px;}
.y11_c00221{bottom:458.670000px;}
.y10_c00221{bottom:485.220000px;}
.yf_c00221{bottom:499.170000px;}
.ye_c00221{bottom:531.120000px;}
.y2_c00221{bottom:552.420000px;}
.yd_c00221{bottom:552.720000px;}
.yc_c00221{bottom:564.570000px;}
.y1_c00221{bottom:568.320000px;}
.yb_c00221{bottom:595.620000px;}
.ya_c00221{bottom:622.020000px;}
.y9_c00221{bottom:645.570000px;}
.y8_c00221{bottom:670.920000px;}
.y7_c00221{bottom:695.820000px;}
.y6_c00221{bottom:721.170000px;}
.y5_c00221{bottom:745.920000px;}
.y4_c00221{bottom:772.170000px;}
.y3_c00221{bottom:796.470000px;}
.h7_c00221{height:13.200073px;}
.h8_c00221{height:43.804688px;}
.h5_c00221{height:44.814000px;}
.h3_c00221{height:56.179688px;}
.h6_c00221{height:56.975098px;}
.h2_c00221{height:80.758301px;}
.h4_c00221{height:87.361816px;}
.h1_c00221{height:844.500000px;}
.h0_c00221{height:844.800000px;}
.w2_c00221{width:104.875500px;}
.w0_c00221{width:572.100000px;}
.w1_c00221{width:572.250000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:31.350000px;}
.xe_c00221{left:32.400000px;}
.xd_c00221{left:48.300000px;}
.x1_c00221{left:50.550000px;}
.xb_c00221{left:55.650000px;}
.xa_c00221{left:57.450000px;}
.xc_c00221{left:92.100000px;}
.x4_c00221{left:94.950000px;}
.x6_c00221{left:96.450000px;}
.x5_c00221{left:97.500000px;}
.xf_c00221{left:98.550000px;}
.x8_c00221{left:100.200000px;}
.x3_c00221{left:109.650000px;}
.x9_c00221{left:121.500000px;}
.x7_c00221{left:122.550000px;}
.x12_c00221{left:123.750000px;}
.x13_c00221{left:237.864258px;}
.x10_c00221{left:274.350000px;}
.x11_c00221{left:311.550000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls8_c00221{letter-spacing:0.000000pt;}
.ls9_c00221{letter-spacing:2.666667pt;}
.ls0_c00221{letter-spacing:3.200000pt;}
.ls2_c00221{letter-spacing:3.789333pt;}
.ls4_c00221{letter-spacing:4.322667pt;}
.lsa_c00221{letter-spacing:5.333333pt;}
.ls1_c00221{letter-spacing:5.738667pt;}
.lsb_c00221{letter-spacing:8.000000pt;}
.ls5_c00221{letter-spacing:10.285333pt;}
.ls6_c00221{letter-spacing:14.240000pt;}
.ls3_c00221{letter-spacing:17.752000pt;}
.ls7_c00221{letter-spacing:19.885333pt;}
.ws3_c00221{word-spacing:-21.733333pt;}
.ws1_c00221{word-spacing:-20.114667pt;}
.ws5_c00221{word-spacing:-17.448000pt;}
.ws4_c00221{word-spacing:-14.781333pt;}
.ws0_c00221{word-spacing:-10.282667pt;}
.ws2_c00221{word-spacing:-9.333333pt;}
.ws6_c00221{word-spacing:0.000000pt;}
._29_c00221{margin-left:-42.560000pt;}
._2d_c00221{margin-left:-26.802667pt;}
._14_c00221{margin-left:-22.386667pt;}
._23_c00221{margin-left:-18.989333pt;}
._16_c00221{margin-left:-16.621333pt;}
._1a_c00221{margin-left:-15.018667pt;}
._32_c00221{margin-left:-13.968000pt;}
._13_c00221{margin-left:-12.341333pt;}
._b_c00221{margin-left:-10.808000pt;}
._1_c00221{margin-left:-8.954667pt;}
._33_c00221{margin-left:-7.973333pt;}
._3_c00221{margin-left:-7.053333pt;}
._8_c00221{margin-left:-5.581333pt;}
._17_c00221{margin-left:-4.477333pt;}
._2_c00221{margin-left:-3.557333pt;}
._9_c00221{margin-left:-2.330667pt;}
._5_c00221{margin-left:-1.410667pt;}
._10_c00221{width:1.178667pt;}
._7_c00221{width:2.085333pt;}
._1c_c00221{width:3.053333pt;}
._a_c00221{width:3.986667pt;}
._6_c00221{width:5.765333pt;}
._0_c00221{width:7.040000pt;}
._11_c00221{width:8.096000pt;}
._26_c00221{width:9.261333pt;}
._12_c00221{width:10.304000pt;}
._c_c00221{width:11.848000pt;}
._25_c00221{width:12.954667pt;}
._20_c00221{width:13.861333pt;}
._1f_c00221{width:15.898667pt;}
._e_c00221{width:16.941333pt;}
._22_c00221{width:18.093333pt;}
._f_c00221{width:19.504000pt;}
._d_c00221{width:21.405333pt;}
._27_c00221{width:23.042667pt;}
._2f_c00221{width:24.213333pt;}
._30_c00221{width:26.530667pt;}
._19_c00221{width:27.674667pt;}
._21_c00221{width:28.853333pt;}
._15_c00221{width:29.965333pt;}
._2c_c00221{width:32.784000pt;}
._2b_c00221{width:39.032000pt;}
._2e_c00221{width:67.589333pt;}
._1d_c00221{width:69.736000pt;}
._1b_c00221{width:75.301333pt;}
._18_c00221{width:77.586667pt;}
._28_c00221{width:80.530667pt;}
._1e_c00221{width:121.440000pt;}
._4_c00221{width:410.784000pt;}
._24_c00221{width:489.080000pt;}
._31_c00221{width:729.474667pt;}
._34_c00221{width:1201.773333pt;}
._2a_c00221{width:1203.258667pt;}
.fs3_c00221{font-size:37.333333pt;}
.fs6_c00221{font-size:40.000000pt;}
.fs1_c00221{font-size:42.666667pt;}
.fs4_c00221{font-size:48.000000pt;}
.fs2_c00221{font-size:58.666667pt;}
.fs0_c00221{font-size:61.333333pt;}
.fs5_c00221{font-size:66.666667pt;}
.y0_c00221{bottom:0.000000pt;}
.y1f_c00221{bottom:2.760000pt;}
.y1e_c00221{bottom:6.425217pt;}
.y1d_c00221{bottom:86.106667pt;}
.y1c_c00221{bottom:108.240000pt;}
.y1b_c00221{bottom:131.706667pt;}
.y1a_c00221{bottom:161.306667pt;}
.y19_c00221{bottom:189.573333pt;}
.y18_c00221{bottom:212.106667pt;}
.y17_c00221{bottom:234.506667pt;}
.y16_c00221{bottom:257.040000pt;}
.y15_c00221{bottom:287.040000pt;}
.y14_c00221{bottom:299.440000pt;}
.y13_c00221{bottom:322.106667pt;}
.y12_c00221{bottom:373.706667pt;}
.y11_c00221{bottom:407.706667pt;}
.y10_c00221{bottom:431.306667pt;}
.yf_c00221{bottom:443.706667pt;}
.ye_c00221{bottom:472.106667pt;}
.y2_c00221{bottom:491.040000pt;}
.yd_c00221{bottom:491.306667pt;}
.yc_c00221{bottom:501.840000pt;}
.y1_c00221{bottom:505.173333pt;}
.yb_c00221{bottom:529.440000pt;}
.ya_c00221{bottom:552.906667pt;}
.y9_c00221{bottom:573.840000pt;}
.y8_c00221{bottom:596.373333pt;}
.y7_c00221{bottom:618.506667pt;}
.y6_c00221{bottom:641.040000pt;}
.y5_c00221{bottom:663.040000pt;}
.y4_c00221{bottom:686.373333pt;}
.y3_c00221{bottom:707.973333pt;}
.h7_c00221{height:11.733399pt;}
.h8_c00221{height:38.937500pt;}
.h5_c00221{height:39.834667pt;}
.h3_c00221{height:49.937500pt;}
.h6_c00221{height:50.644531pt;}
.h2_c00221{height:71.785156pt;}
.h4_c00221{height:77.654948pt;}
.h1_c00221{height:750.666667pt;}
.h0_c00221{height:750.933333pt;}
.w2_c00221{width:93.222667pt;}
.w0_c00221{width:508.533333pt;}
.w1_c00221{width:508.666667pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:27.866667pt;}
.xe_c00221{left:28.800000pt;}
.xd_c00221{left:42.933333pt;}
.x1_c00221{left:44.933333pt;}
.xb_c00221{left:49.466667pt;}
.xa_c00221{left:51.066667pt;}
.xc_c00221{left:81.866667pt;}
.x4_c00221{left:84.400000pt;}
.x6_c00221{left:85.733333pt;}
.x5_c00221{left:86.666667pt;}
.xf_c00221{left:87.600000pt;}
.x8_c00221{left:89.066667pt;}
.x3_c00221{left:97.466667pt;}
.x9_c00221{left:108.000000pt;}
.x7_c00221{left:108.933333pt;}
.x12_c00221{left:110.000000pt;}
.x13_c00221{left:211.434896pt;}
.x10_c00221{left:243.866667pt;}
.x11_c00221{left:276.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_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_412f184844b9cfb1d66e9db0.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_f987d40b699e77491afee8ee.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_eb0b9bb6010d7555fc6f7548.woff2')format("woff");}.ff3_c00222{font-family:ff3_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:ff4_c00222;src:url('chunks/assets/font_68ac13b390ae0f3ce38c9f35.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_d63156ddc025065e7fe536b2.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;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_c00222;src:url('chunks/assets/font_45af1d1295de9b0b76e46f31.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.437000;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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;}
.lsb_c00222{letter-spacing:-18.000000px;}
.lsa_c00222{letter-spacing:-3.000000px;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls6_c00222{letter-spacing:3.000000px;}
.ls1_c00222{letter-spacing:3.160800px;}
.ls7_c00222{letter-spacing:6.000000px;}
.ls2_c00222{letter-spacing:9.183000px;}
.ls3_c00222{letter-spacing:14.808000px;}
.ls5_c00222{letter-spacing:15.000000px;}
.ls8_c00222{letter-spacing:18.000000px;}
.ls9_c00222{letter-spacing:24.000000px;}
.ls0_c00222{letter-spacing:519.171000px;}
.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;}
}
.ws6_c00222{word-spacing:-44.988000px;}
.ws3_c00222{word-spacing:-34.629000px;}
.ws0_c00222{word-spacing:-31.629000px;}
.ws1_c00222{word-spacing:-22.629000px;}
.ws5_c00222{word-spacing:-18.075000px;}
.ws2_c00222{word-spacing:-16.629000px;}
.ws8_c00222{word-spacing:-9.399000px;}
.ws9_c00222{word-spacing:0.000000px;}
.ws4_c00222{word-spacing:6.831000px;}
.ws7_c00222{word-spacing:40.239000px;}
._1e_c00222{margin-left:-23.703000px;}
._18_c00222{margin-left:-21.573000px;}
._19_c00222{margin-left:-19.122000px;}
._1a_c00222{margin-left:-16.905000px;}
._8_c00222{margin-left:-14.904000px;}
._26_c00222{margin-left:-13.593000px;}
._c_c00222{margin-left:-12.006000px;}
._7_c00222{margin-left:-9.969000px;}
._4_c00222{margin-left:-8.022000px;}
._5_c00222{margin-left:-6.003000px;}
._1_c00222{margin-left:-4.485000px;}
._3_c00222{margin-left:-3.450000px;}
._6_c00222{margin-left:-2.208000px;}
._2_c00222{margin-left:-1.104000px;}
._12_c00222{width:1.104000px;}
._0_c00222{width:2.139000px;}
._9_c00222{width:3.657000px;}
._b_c00222{width:5.175000px;}
._13_c00222{width:6.210000px;}
._1c_c00222{width:7.500000px;}
._16_c00222{width:8.694000px;}
._17_c00222{width:10.557000px;}
._1b_c00222{width:12.282000px;}
._27_c00222{width:13.317000px;}
._e_c00222{width:14.352000px;}
._a_c00222{width:15.456000px;}
._24_c00222{width:16.926000px;}
._14_c00222{width:18.009000px;}
._11_c00222{width:20.769000px;}
._25_c00222{width:23.115000px;}
._d_c00222{width:24.219000px;}
._20_c00222{width:26.193000px;}
._1f_c00222{width:29.739000px;}
._29_c00222{width:34.776000px;}
._28_c00222{width:39.999000px;}
._10_c00222{width:94.875000px;}
._23_c00222{width:120.366000px;}
._22_c00222{width:122.596800px;}
._15_c00222{width:127.857000px;}
._21_c00222{width:147.522000px;}
._1d_c00222{width:170.418000px;}
._f_c00222{width:210.156000px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(128,128,128);}
.fc0_c00222{color:rgb(0,0,0);}
.fs4_c00222{font-size:39.000000px;}
.fs5_c00222{font-size:48.000000px;}
.fs2_c00222{font-size:55.200000px;}
.fs1_c00222{font-size:57.000000px;}
.fs0_c00222{font-size:69.000000px;}
.fs3_c00222{font-size:75.000000px;}
.fs6_c00222{font-size:93.000000px;}
.fs7_c00222{font-size:207.000000px;}
.y0_c00222{bottom:0.000000px;}
.y1c_c00222{bottom:3.105000px;}
.y1b_c00222{bottom:7.228371px;}
.y1a_c00222{bottom:61.065000px;}
.y19_c00222{bottom:91.215000px;}
.y18_c00222{bottom:116.115000px;}
.y17_c00222{bottom:142.215000px;}
.y16_c00222{bottom:192.765000px;}
.y15_c00222{bottom:217.665000px;}
.y14_c00222{bottom:243.015000px;}
.y13_c00222{bottom:268.065000px;}
.y12_c00222{bottom:293.265000px;}
.y11_c00222{bottom:319.365000px;}
.y10_c00222{bottom:343.215000px;}
.yf_c00222{bottom:367.965000px;}
.ye_c00222{bottom:392.865000px;}
.yd_c00222{bottom:417.615000px;}
.yc_c00222{bottom:442.815000px;}
.yb_c00222{bottom:491.715000px;}
.ya_c00222{bottom:516.015000px;}
.y9_c00222{bottom:541.815000px;}
.y8_c00222{bottom:573.765000px;}
.y7_c00222{bottom:614.715000px;}
.y6_c00222{bottom:655.815000px;}
.y5_c00222{bottom:688.815000px;}
.y4_c00222{bottom:715.215000px;}
.y3_c00222{bottom:738.915000px;}
.y2_c00222{bottom:764.115000px;}
.y1_c00222{bottom:788.865000px;}
.h9_c00222{height:13.200074px;}
.ha_c00222{height:43.804688px;}
.h6_c00222{height:56.179688px;}
.h3_c00222{height:66.713379px;}
.h4_c00222{height:80.758301px;}
.h2_c00222{height:87.361816px;}
.h5_c00222{height:94.958496px;}
.h7_c00222{height:100.812000px;}
.h8_c00222{height:216.936000px;}
.h1_c00222{height:831.000000px;}
.h0_c00222{height:831.075000px;}
.w2_c00222{width:104.875500px;}
.w0_c00222{width:566.175000px;}
.w1_c00222{width:566.250000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:30.150000px;}
.x4_c00222{left:32.100000px;}
.x9_c00222{left:33.150000px;}
.x8_c00222{left:35.100000px;}
.x5_c00222{left:45.000000px;}
.x3_c00222{left:55.650000px;}
.x7_c00222{left:56.700000px;}
.x1_c00222{left:189.450000px;}
.x6_c00222{left:202.950000px;}
.xa_c00222{left:208.650000px;}
.xc_c00222{left:234.901749px;}
.xb_c00222{left:455.250000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.lsb_c00222{letter-spacing:-16.000000pt;}
.lsa_c00222{letter-spacing:-2.666667pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls6_c00222{letter-spacing:2.666667pt;}
.ls1_c00222{letter-spacing:2.809600pt;}
.ls7_c00222{letter-spacing:5.333333pt;}
.ls2_c00222{letter-spacing:8.162667pt;}
.ls3_c00222{letter-spacing:13.162667pt;}
.ls5_c00222{letter-spacing:13.333333pt;}
.ls8_c00222{letter-spacing:16.000000pt;}
.ls9_c00222{letter-spacing:21.333333pt;}
.ls0_c00222{letter-spacing:461.485333pt;}
.ws6_c00222{word-spacing:-39.989333pt;}
.ws3_c00222{word-spacing:-30.781333pt;}
.ws0_c00222{word-spacing:-28.114667pt;}
.ws1_c00222{word-spacing:-20.114667pt;}
.ws5_c00222{word-spacing:-16.066667pt;}
.ws2_c00222{word-spacing:-14.781333pt;}
.ws8_c00222{word-spacing:-8.354667pt;}
.ws9_c00222{word-spacing:0.000000pt;}
.ws4_c00222{word-spacing:6.072000pt;}
.ws7_c00222{word-spacing:35.768000pt;}
._1e_c00222{margin-left:-21.069333pt;}
._18_c00222{margin-left:-19.176000pt;}
._19_c00222{margin-left:-16.997333pt;}
._1a_c00222{margin-left:-15.026667pt;}
._8_c00222{margin-left:-13.248000pt;}
._26_c00222{margin-left:-12.082667pt;}
._c_c00222{margin-left:-10.672000pt;}
._7_c00222{margin-left:-8.861333pt;}
._4_c00222{margin-left:-7.130667pt;}
._5_c00222{margin-left:-5.336000pt;}
._1_c00222{margin-left:-3.986667pt;}
._3_c00222{margin-left:-3.066667pt;}
._6_c00222{margin-left:-1.962667pt;}
._2_c00222{margin-left:-0.981333pt;}
._12_c00222{width:0.981333pt;}
._0_c00222{width:1.901333pt;}
._9_c00222{width:3.250667pt;}
._b_c00222{width:4.600000pt;}
._13_c00222{width:5.520000pt;}
._1c_c00222{width:6.666667pt;}
._16_c00222{width:7.728000pt;}
._17_c00222{width:9.384000pt;}
._1b_c00222{width:10.917333pt;}
._27_c00222{width:11.837333pt;}
._e_c00222{width:12.757333pt;}
._a_c00222{width:13.738667pt;}
._24_c00222{width:15.045333pt;}
._14_c00222{width:16.008000pt;}
._11_c00222{width:18.461333pt;}
._25_c00222{width:20.546667pt;}
._d_c00222{width:21.528000pt;}
._20_c00222{width:23.282667pt;}
._1f_c00222{width:26.434667pt;}
._29_c00222{width:30.912000pt;}
._28_c00222{width:35.554667pt;}
._10_c00222{width:84.333333pt;}
._23_c00222{width:106.992000pt;}
._22_c00222{width:108.974933pt;}
._15_c00222{width:113.650667pt;}
._21_c00222{width:131.130667pt;}
._1d_c00222{width:151.482667pt;}
._f_c00222{width:186.805333pt;}
.fs4_c00222{font-size:34.666667pt;}
.fs5_c00222{font-size:42.666667pt;}
.fs2_c00222{font-size:49.066667pt;}
.fs1_c00222{font-size:50.666667pt;}
.fs0_c00222{font-size:61.333333pt;}
.fs3_c00222{font-size:66.666667pt;}
.fs6_c00222{font-size:82.666667pt;}
.fs7_c00222{font-size:184.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y1c_c00222{bottom:2.760000pt;}
.y1b_c00222{bottom:6.425219pt;}
.y1a_c00222{bottom:54.280000pt;}
.y19_c00222{bottom:81.080000pt;}
.y18_c00222{bottom:103.213333pt;}
.y17_c00222{bottom:126.413333pt;}
.y16_c00222{bottom:171.346667pt;}
.y15_c00222{bottom:193.480000pt;}
.y14_c00222{bottom:216.013333pt;}
.y13_c00222{bottom:238.280000pt;}
.y12_c00222{bottom:260.680000pt;}
.y11_c00222{bottom:283.880000pt;}
.y10_c00222{bottom:305.080000pt;}
.yf_c00222{bottom:327.080000pt;}
.ye_c00222{bottom:349.213333pt;}
.yd_c00222{bottom:371.213333pt;}
.yc_c00222{bottom:393.613333pt;}
.yb_c00222{bottom:437.080000pt;}
.ya_c00222{bottom:458.680000pt;}
.y9_c00222{bottom:481.613333pt;}
.y8_c00222{bottom:510.013333pt;}
.y7_c00222{bottom:546.413333pt;}
.y6_c00222{bottom:582.946667pt;}
.y5_c00222{bottom:612.280000pt;}
.y4_c00222{bottom:635.746667pt;}
.y3_c00222{bottom:656.813333pt;}
.y2_c00222{bottom:679.213333pt;}
.y1_c00222{bottom:701.213333pt;}
.h9_c00222{height:11.733399pt;}
.ha_c00222{height:38.937500pt;}
.h6_c00222{height:49.937500pt;}
.h3_c00222{height:59.300781pt;}
.h4_c00222{height:71.785156pt;}
.h2_c00222{height:77.654948pt;}
.h5_c00222{height:84.407552pt;}
.h7_c00222{height:89.610667pt;}
.h8_c00222{height:192.832000pt;}
.h1_c00222{height:738.666667pt;}
.h0_c00222{height:738.733333pt;}
.w2_c00222{width:93.222667pt;}
.w0_c00222{width:503.266667pt;}
.w1_c00222{width:503.333333pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:26.800000pt;}
.x4_c00222{left:28.533333pt;}
.x9_c00222{left:29.466667pt;}
.x8_c00222{left:31.200000pt;}
.x5_c00222{left:40.000000pt;}
.x3_c00222{left:49.466667pt;}
.x7_c00222{left:50.400000pt;}
.x1_c00222{left:168.400000pt;}
.x6_c00222{left:180.400000pt;}
.xa_c00222{left:185.466667pt;}
.xc_c00222{left:208.801554pt;}
.xb_c00222{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_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_d069c6c287b7ff4c388879f7.woff2')format("woff");}.ff1_c00223{font-family:ff1_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:ff2_c00223;src:url('chunks/assets/font_6bd2daaf806101a9fc001a25.woff2')format("woff");}.ff2_c00223{font-family:ff2_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:ff3_c00223;src:url('chunks/assets/font_04255536555c81a5a4c55a5f.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_c9a30615f20d84c5ccdd0f46.woff2')format("woff");}.ff4_c00223{font-family:ff4_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:ff5_c00223;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00223{font-family:ff5_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;}
.m1_c00223{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_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;}
.ls6_c00223{letter-spacing:-6.000000px;}
.ls4_c00223{letter-spacing:0.000000px;}
.ls1_c00223{letter-spacing:1.971000px;}
.ls3_c00223{letter-spacing:3.000000px;}
.ls2_c00223{letter-spacing:4.263000px;}
.ls5_c00223{letter-spacing:6.000000px;}
.ls8_c00223{letter-spacing:9.000000px;}
.ls0_c00223{letter-spacing:10.371000px;}
.ls7_c00223{letter-spacing:15.000000px;}
.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:-25.989600px;}
.ws0_c00223{word-spacing:-22.629000px;}
.ws5_c00223{word-spacing:-19.629000px;}
.ws1_c00223{word-spacing:-16.629000px;}
.ws2_c00223{word-spacing:-10.629000px;}
.ws6_c00223{word-spacing:-0.966000px;}
.ws7_c00223{word-spacing:0.000000px;}
.ws4_c00223{word-spacing:4.005000px;}
._2d_c00223{margin-left:-63.273000px;}
._1e_c00223{margin-left:-20.424000px;}
._b_c00223{margin-left:-18.285000px;}
._7_c00223{margin-left:-16.974000px;}
._2a_c00223{margin-left:-15.936000px;}
._15_c00223{margin-left:-14.766000px;}
._a_c00223{margin-left:-13.317000px;}
._e_c00223{margin-left:-12.282000px;}
._f_c00223{margin-left:-10.971000px;}
._1_c00223{margin-left:-8.970000px;}
._10_c00223{margin-left:-7.038000px;}
._16_c00223{margin-left:-5.874000px;}
._13_c00223{margin-left:-4.830000px;}
._c_c00223{margin-left:-3.174000px;}
._3_c00223{margin-left:-1.656000px;}
._6_c00223{width:1.380000px;}
._5_c00223{width:2.898000px;}
._4_c00223{width:4.140000px;}
._d_c00223{width:5.727000px;}
._1b_c00223{width:7.383000px;}
._9_c00223{width:9.246000px;}
._8_c00223{width:10.281000px;}
._1a_c00223{width:11.454000px;}
._12_c00223{width:12.765000px;}
._28_c00223{width:14.208000px;}
._19_c00223{width:15.414000px;}
._1c_c00223{width:16.701000px;}
._18_c00223{width:17.802000px;}
._11_c00223{width:19.251000px;}
._17_c00223{width:20.424000px;}
._26_c00223{width:21.984000px;}
._0_c00223{width:23.460000px;}
._24_c00223{width:26.238000px;}
._1d_c00223{width:27.600000px;}
._1f_c00223{width:36.798000px;}
._25_c00223{width:39.606000px;}
._14_c00223{width:41.547000px;}
._23_c00223{width:64.599000px;}
._21_c00223{width:69.159000px;}
._27_c00223{width:86.319000px;}
._2b_c00223{width:96.471000px;}
._22_c00223{width:120.000000px;}
._20_c00223{width:154.500000px;}
._29_c00223{width:157.446000px;}
._2_c00223{width:439.341000px;}
._2e_c00223{width:603.474000px;}
._2c_c00223{width:1066.257000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(128,128,128);}
.fc0_c00223{color:rgb(0,0,0);}
.fs2_c00223{font-size:45.600000px;}
.fs3_c00223{font-size:48.000000px;}
.fs1_c00223{font-size:57.000000px;}
.fs0_c00223{font-size:69.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1e_c00223{bottom:3.105000px;}
.y1d_c00223{bottom:7.228369px;}
.y1c_c00223{bottom:69.120000px;}
.y1b_c00223{bottom:96.120000px;}
.y1a_c00223{bottom:122.220000px;}
.y19_c00223{bottom:147.870000px;}
.y18_c00223{bottom:172.470000px;}
.y17_c00223{bottom:198.120000px;}
.y16_c00223{bottom:223.470000px;}
.y15_c00223{bottom:273.420000px;}
.y14_c00223{bottom:297.720000px;}
.y13_c00223{bottom:347.520000px;}
.y12_c00223{bottom:372.570000px;}
.y11_c00223{bottom:397.470000px;}
.y10_c00223{bottom:421.920000px;}
.yf_c00223{bottom:447.120000px;}
.ye_c00223{bottom:472.470000px;}
.yd_c00223{bottom:497.370000px;}
.yc_c00223{bottom:522.420000px;}
.yb_c00223{bottom:547.020000px;}
.ya_c00223{bottom:572.070000px;}
.y9_c00223{bottom:596.670000px;}
.y8_c00223{bottom:622.020000px;}
.y7_c00223{bottom:647.220000px;}
.y6_c00223{bottom:672.270000px;}
.y5_c00223{bottom:697.320000px;}
.y4_c00223{bottom:722.520000px;}
.y3_c00223{bottom:747.570000px;}
.y2_c00223{bottom:772.470000px;}
.y1_c00223{bottom:797.520000px;}
.h5_c00223{height:13.200073px;}
.h6_c00223{height:43.804688px;}
.h4_c00223{height:66.713379px;}
.h3_c00223{height:80.758301px;}
.h2_c00223{height:87.361816px;}
.h1_c00223{height:844.500000px;}
.h0_c00223{height:844.800000px;}
.w2_c00223{width:104.875500px;}
.w0_c00223{width:572.100000px;}
.w1_c00223{width:572.250000px;}
.x0_c00223{left:0.000000px;}
.xf_c00223{left:71.250000px;}
.x10_c00223{left:78.600000px;}
.x2_c00223{left:98.550000px;}
.x3_c00223{left:102.000000px;}
.x8_c00223{left:103.500000px;}
.xb_c00223{left:104.700000px;}
.x9_c00223{left:106.050000px;}
.x7_c00223{left:113.400000px;}
.x1_c00223{left:117.450000px;}
.xa_c00223{left:128.250000px;}
.xe_c00223{left:130.650000px;}
.xc_c00223{left:143.400000px;}
.x6_c00223{left:224.400000px;}
.x11_c00223{left:237.864258px;}
.xd_c00223{left:273.750000px;}
.x4_c00223{left:493.650000px;}
.x5_c00223{left:539.550000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls6_c00223{letter-spacing:-5.333333pt;}
.ls4_c00223{letter-spacing:0.000000pt;}
.ls1_c00223{letter-spacing:1.752000pt;}
.ls3_c00223{letter-spacing:2.666667pt;}
.ls2_c00223{letter-spacing:3.789333pt;}
.ls5_c00223{letter-spacing:5.333333pt;}
.ls8_c00223{letter-spacing:8.000000pt;}
.ls0_c00223{letter-spacing:9.218667pt;}
.ls7_c00223{letter-spacing:13.333333pt;}
.ws3_c00223{word-spacing:-23.101867pt;}
.ws0_c00223{word-spacing:-20.114667pt;}
.ws5_c00223{word-spacing:-17.448000pt;}
.ws1_c00223{word-spacing:-14.781333pt;}
.ws2_c00223{word-spacing:-9.448000pt;}
.ws6_c00223{word-spacing:-0.858667pt;}
.ws7_c00223{word-spacing:0.000000pt;}
.ws4_c00223{word-spacing:3.560000pt;}
._2d_c00223{margin-left:-56.242667pt;}
._1e_c00223{margin-left:-18.154667pt;}
._b_c00223{margin-left:-16.253333pt;}
._7_c00223{margin-left:-15.088000pt;}
._2a_c00223{margin-left:-14.165333pt;}
._15_c00223{margin-left:-13.125333pt;}
._a_c00223{margin-left:-11.837333pt;}
._e_c00223{margin-left:-10.917333pt;}
._f_c00223{margin-left:-9.752000pt;}
._1_c00223{margin-left:-7.973333pt;}
._10_c00223{margin-left:-6.256000pt;}
._16_c00223{margin-left:-5.221333pt;}
._13_c00223{margin-left:-4.293333pt;}
._c_c00223{margin-left:-2.821333pt;}
._3_c00223{margin-left:-1.472000pt;}
._6_c00223{width:1.226667pt;}
._5_c00223{width:2.576000pt;}
._4_c00223{width:3.680000pt;}
._d_c00223{width:5.090667pt;}
._1b_c00223{width:6.562667pt;}
._9_c00223{width:8.218667pt;}
._8_c00223{width:9.138667pt;}
._1a_c00223{width:10.181333pt;}
._12_c00223{width:11.346667pt;}
._28_c00223{width:12.629333pt;}
._19_c00223{width:13.701333pt;}
._1c_c00223{width:14.845333pt;}
._18_c00223{width:15.824000pt;}
._11_c00223{width:17.112000pt;}
._17_c00223{width:18.154667pt;}
._26_c00223{width:19.541333pt;}
._0_c00223{width:20.853333pt;}
._24_c00223{width:23.322667pt;}
._1d_c00223{width:24.533333pt;}
._1f_c00223{width:32.709333pt;}
._25_c00223{width:35.205333pt;}
._14_c00223{width:36.930667pt;}
._23_c00223{width:57.421333pt;}
._21_c00223{width:61.474667pt;}
._27_c00223{width:76.728000pt;}
._2b_c00223{width:85.752000pt;}
._22_c00223{width:106.666667pt;}
._20_c00223{width:137.333333pt;}
._29_c00223{width:139.952000pt;}
._2_c00223{width:390.525333pt;}
._2e_c00223{width:536.421333pt;}
._2c_c00223{width:947.784000pt;}
.fs2_c00223{font-size:40.533333pt;}
.fs3_c00223{font-size:42.666667pt;}
.fs1_c00223{font-size:50.666667pt;}
.fs0_c00223{font-size:61.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y1e_c00223{bottom:2.760000pt;}
.y1d_c00223{bottom:6.425217pt;}
.y1c_c00223{bottom:61.440000pt;}
.y1b_c00223{bottom:85.440000pt;}
.y1a_c00223{bottom:108.640000pt;}
.y19_c00223{bottom:131.440000pt;}
.y18_c00223{bottom:153.306667pt;}
.y17_c00223{bottom:176.106667pt;}
.y16_c00223{bottom:198.640000pt;}
.y15_c00223{bottom:243.040000pt;}
.y14_c00223{bottom:264.640000pt;}
.y13_c00223{bottom:308.906667pt;}
.y12_c00223{bottom:331.173333pt;}
.y11_c00223{bottom:353.306667pt;}
.y10_c00223{bottom:375.040000pt;}
.yf_c00223{bottom:397.440000pt;}
.ye_c00223{bottom:419.973333pt;}
.yd_c00223{bottom:442.106667pt;}
.yc_c00223{bottom:464.373333pt;}
.yb_c00223{bottom:486.240000pt;}
.ya_c00223{bottom:508.506667pt;}
.y9_c00223{bottom:530.373333pt;}
.y8_c00223{bottom:552.906667pt;}
.y7_c00223{bottom:575.306667pt;}
.y6_c00223{bottom:597.573333pt;}
.y5_c00223{bottom:619.840000pt;}
.y4_c00223{bottom:642.240000pt;}
.y3_c00223{bottom:664.506667pt;}
.y2_c00223{bottom:686.640000pt;}
.y1_c00223{bottom:708.906667pt;}
.h5_c00223{height:11.733399pt;}
.h6_c00223{height:38.937500pt;}
.h4_c00223{height:59.300781pt;}
.h3_c00223{height:71.785156pt;}
.h2_c00223{height:77.654948pt;}
.h1_c00223{height:750.666667pt;}
.h0_c00223{height:750.933333pt;}
.w2_c00223{width:93.222667pt;}
.w0_c00223{width:508.533333pt;}
.w1_c00223{width:508.666667pt;}
.x0_c00223{left:0.000000pt;}
.xf_c00223{left:63.333333pt;}
.x10_c00223{left:69.866667pt;}
.x2_c00223{left:87.600000pt;}
.x3_c00223{left:90.666667pt;}
.x8_c00223{left:92.000000pt;}
.xb_c00223{left:93.066667pt;}
.x9_c00223{left:94.266667pt;}
.x7_c00223{left:100.800000pt;}
.x1_c00223{left:104.400000pt;}
.xa_c00223{left:114.000000pt;}
.xe_c00223{left:116.133333pt;}
.xc_c00223{left:127.466667pt;}
.x6_c00223{left:199.466667pt;}
.x11_c00223{left:211.434896pt;}
.xd_c00223{left:243.333333pt;}
.x4_c00223{left:438.800000pt;}
.x5_c00223{left:479.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_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_14d74aaee477718be4ade238.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_0d5b5a6fa0a1aed0faf0960e.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_2799a75503ff79b101c37b4f.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;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_c00224;src:url('chunks/assets/font_01c246f0fbdd3288dabd4a1d.woff2')format("woff");}.ff4_c00224{font-family:ff4_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:ff5_c00224;src:url('chunks/assets/font_8a3d5cb4a5ff0a3a066dc0c9.woff2')format("woff");}.ff5_c00224{font-family:ff5_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:ff6_c00224;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00224{font-family:ff6_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;}
.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;}
.ls5_c00224{letter-spacing:-12.000000px;}
.ls4_c00224{letter-spacing:-3.000000px;}
.ls2_c00224{letter-spacing:0.000000px;}
.ls3_c00224{letter-spacing:3.000000px;}
.ls0_c00224{letter-spacing:5.946000px;}
.ls1_c00224{letter-spacing:9.633000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00224{word-spacing:-44.988000px;}
.ws0_c00224{word-spacing:-19.629000px;}
.ws4_c00224{word-spacing:-19.050000px;}
.ws2_c00224{word-spacing:-16.629000px;}
.ws1_c00224{word-spacing:-13.003200px;}
.ws5_c00224{word-spacing:-3.906000px;}
.ws6_c00224{word-spacing:0.000000px;}
._24_c00224{margin-left:-45.333000px;}
._26_c00224{margin-left:-27.189000px;}
._1b_c00224{margin-left:-20.769000px;}
._16_c00224{margin-left:-19.113000px;}
._a_c00224{margin-left:-16.491000px;}
._9_c00224{margin-left:-14.835000px;}
._29_c00224{margin-left:-12.312000px;}
._15_c00224{margin-left:-10.557000px;}
._8_c00224{margin-left:-9.039000px;}
._14_c00224{margin-left:-7.728000px;}
._7_c00224{margin-left:-6.141000px;}
._1c_c00224{margin-left:-4.968000px;}
._5_c00224{margin-left:-3.864000px;}
._1_c00224{margin-left:-2.691000px;}
._11_c00224{margin-left:-1.311000px;}
._b_c00224{width:1.035000px;}
._0_c00224{width:2.139000px;}
._c_c00224{width:4.002000px;}
._4_c00224{width:5.451000px;}
._3_c00224{width:6.693000px;}
._17_c00224{width:8.004000px;}
._6_c00224{width:9.177000px;}
._d_c00224{width:11.109000px;}
._1e_c00224{width:12.330600px;}
._e_c00224{width:13.386000px;}
._1d_c00224{width:14.559000px;}
._12_c00224{width:15.594000px;}
._1f_c00224{width:17.664000px;}
._13_c00224{width:18.837000px;}
._f_c00224{width:20.148000px;}
._18_c00224{width:22.839000px;}
._27_c00224{width:24.132000px;}
._10_c00224{width:27.738000px;}
._2e_c00224{width:29.427000px;}
._2b_c00224{width:31.539000px;}
._19_c00224{width:35.571000px;}
._22_c00224{width:37.407000px;}
._2d_c00224{width:38.571000px;}
._1a_c00224{width:40.662000px;}
._21_c00224{width:43.539000px;}
._2c_c00224{width:45.008400px;}
._25_c00224{width:52.704000px;}
._2a_c00224{width:65.184000px;}
._28_c00224{width:66.855000px;}
._23_c00224{width:91.845000px;}
._20_c00224{width:146.589000px;}
._2_c00224{width:506.928000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(128,128,128);}
.fc0_c00224{color:rgb(0,0,0);}
.fs2_c00224{font-size:43.200000px;}
.fs6_c00224{font-size:48.000000px;}
.fs3_c00224{font-size:54.000000px;}
.fs4_c00224{font-size:55.200000px;}
.fs5_c00224{font-size:66.000000px;}
.fs0_c00224{font-size:69.000000px;}
.fs1_c00224{font-size:75.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1b_c00224{bottom:3.105000px;}
.y1a_c00224{bottom:7.228371px;}
.y19_c00224{bottom:86.865000px;}
.y18_c00224{bottom:119.865000px;}
.y17_c00224{bottom:152.865000px;}
.y16_c00224{bottom:186.315000px;}
.y15_c00224{bottom:210.615000px;}
.y14_c00224{bottom:236.565000px;}
.y13_c00224{bottom:261.615000px;}
.y12_c00224{bottom:311.565000px;}
.y11_c00224{bottom:360.765000px;}
.y10_c00224{bottom:386.115000px;}
.yf_c00224{bottom:411.165000px;}
.ye_c00224{bottom:436.065000px;}
.yd_c00224{bottom:460.815000px;}
.yc_c00224{bottom:486.015000px;}
.yb_c00224{bottom:510.315000px;}
.ya_c00224{bottom:534.915000px;}
.y9_c00224{bottom:559.665000px;}
.y8_c00224{bottom:588.615000px;}
.y7_c00224{bottom:609.615000px;}
.y6_c00224{bottom:664.665000px;}
.y5_c00224{bottom:690.165000px;}
.y4_c00224{bottom:715.215000px;}
.y3_c00224{bottom:740.115000px;}
.y2_c00224{bottom:764.865000px;}
.y1_c00224{bottom:790.515000px;}
.h6_c00224{height:13.200074px;}
.h7_c00224{height:43.804688px;}
.h5_c00224{height:77.247070px;}
.h3_c00224{height:80.758301px;}
.h2_c00224{height:87.361816px;}
.h4_c00224{height:94.958496px;}
.h1_c00224{height:831.000000px;}
.h0_c00224{height:831.075000px;}
.w2_c00224{width:104.875500px;}
.w0_c00224{width:566.175000px;}
.w1_c00224{width:566.250000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:32.400000px;}
.x3_c00224{left:33.450000px;}
.x7_c00224{left:34.800000px;}
.x8_c00224{left:36.750000px;}
.x9_c00224{left:37.800000px;}
.xc_c00224{left:39.600000px;}
.xd_c00224{left:41.550000px;}
.x4_c00224{left:50.250000px;}
.x6_c00224{left:58.800000px;}
.xb_c00224{left:63.450000px;}
.xa_c00224{left:89.400000px;}
.x1_c00224{left:192.000000px;}
.xe_c00224{left:234.901749px;}
.x5_c00224{left:407.700000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls5_c00224{letter-spacing:-10.666667pt;}
.ls4_c00224{letter-spacing:-2.666667pt;}
.ls2_c00224{letter-spacing:0.000000pt;}
.ls3_c00224{letter-spacing:2.666667pt;}
.ls0_c00224{letter-spacing:5.285333pt;}
.ls1_c00224{letter-spacing:8.562667pt;}
.ws3_c00224{word-spacing:-39.989333pt;}
.ws0_c00224{word-spacing:-17.448000pt;}
.ws4_c00224{word-spacing:-16.933333pt;}
.ws2_c00224{word-spacing:-14.781333pt;}
.ws1_c00224{word-spacing:-11.558400pt;}
.ws5_c00224{word-spacing:-3.472000pt;}
.ws6_c00224{word-spacing:0.000000pt;}
._24_c00224{margin-left:-40.296000pt;}
._26_c00224{margin-left:-24.168000pt;}
._1b_c00224{margin-left:-18.461333pt;}
._16_c00224{margin-left:-16.989333pt;}
._a_c00224{margin-left:-14.658667pt;}
._9_c00224{margin-left:-13.186667pt;}
._29_c00224{margin-left:-10.944000pt;}
._15_c00224{margin-left:-9.384000pt;}
._8_c00224{margin-left:-8.034667pt;}
._14_c00224{margin-left:-6.869333pt;}
._7_c00224{margin-left:-5.458667pt;}
._1c_c00224{margin-left:-4.416000pt;}
._5_c00224{margin-left:-3.434667pt;}
._1_c00224{margin-left:-2.392000pt;}
._11_c00224{margin-left:-1.165333pt;}
._b_c00224{width:0.920000pt;}
._0_c00224{width:1.901333pt;}
._c_c00224{width:3.557333pt;}
._4_c00224{width:4.845333pt;}
._3_c00224{width:5.949333pt;}
._17_c00224{width:7.114667pt;}
._6_c00224{width:8.157333pt;}
._d_c00224{width:9.874667pt;}
._1e_c00224{width:10.960533pt;}
._e_c00224{width:11.898667pt;}
._1d_c00224{width:12.941333pt;}
._12_c00224{width:13.861333pt;}
._1f_c00224{width:15.701333pt;}
._13_c00224{width:16.744000pt;}
._f_c00224{width:17.909333pt;}
._18_c00224{width:20.301333pt;}
._27_c00224{width:21.450667pt;}
._10_c00224{width:24.656000pt;}
._2e_c00224{width:26.157333pt;}
._2b_c00224{width:28.034667pt;}
._19_c00224{width:31.618667pt;}
._22_c00224{width:33.250667pt;}
._2d_c00224{width:34.285333pt;}
._1a_c00224{width:36.144000pt;}
._21_c00224{width:38.701333pt;}
._2c_c00224{width:40.007467pt;}
._25_c00224{width:46.848000pt;}
._2a_c00224{width:57.941333pt;}
._28_c00224{width:59.426667pt;}
._23_c00224{width:81.640000pt;}
._20_c00224{width:130.301333pt;}
._2_c00224{width:450.602667pt;}
.fs2_c00224{font-size:38.400000pt;}
.fs6_c00224{font-size:42.666667pt;}
.fs3_c00224{font-size:48.000000pt;}
.fs4_c00224{font-size:49.066667pt;}
.fs5_c00224{font-size:58.666667pt;}
.fs0_c00224{font-size:61.333333pt;}
.fs1_c00224{font-size:66.666667pt;}
.y0_c00224{bottom:0.000000pt;}
.y1b_c00224{bottom:2.760000pt;}
.y1a_c00224{bottom:6.425219pt;}
.y19_c00224{bottom:77.213333pt;}
.y18_c00224{bottom:106.546667pt;}
.y17_c00224{bottom:135.880000pt;}
.y16_c00224{bottom:165.613333pt;}
.y15_c00224{bottom:187.213333pt;}
.y14_c00224{bottom:210.280000pt;}
.y13_c00224{bottom:232.546667pt;}
.y12_c00224{bottom:276.946667pt;}
.y11_c00224{bottom:320.680000pt;}
.y10_c00224{bottom:343.213333pt;}
.yf_c00224{bottom:365.480000pt;}
.ye_c00224{bottom:387.613333pt;}
.yd_c00224{bottom:409.613333pt;}
.yc_c00224{bottom:432.013333pt;}
.yb_c00224{bottom:453.613333pt;}
.ya_c00224{bottom:475.480000pt;}
.y9_c00224{bottom:497.480000pt;}
.y8_c00224{bottom:523.213333pt;}
.y7_c00224{bottom:541.880000pt;}
.y6_c00224{bottom:590.813333pt;}
.y5_c00224{bottom:613.480000pt;}
.y4_c00224{bottom:635.746667pt;}
.y3_c00224{bottom:657.880000pt;}
.y2_c00224{bottom:679.880000pt;}
.y1_c00224{bottom:702.680000pt;}
.h6_c00224{height:11.733399pt;}
.h7_c00224{height:38.937500pt;}
.h5_c00224{height:68.664062pt;}
.h3_c00224{height:71.785156pt;}
.h2_c00224{height:77.654948pt;}
.h4_c00224{height:84.407552pt;}
.h1_c00224{height:738.666667pt;}
.h0_c00224{height:738.733333pt;}
.w2_c00224{width:93.222667pt;}
.w0_c00224{width:503.266667pt;}
.w1_c00224{width:503.333333pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:28.800000pt;}
.x3_c00224{left:29.733333pt;}
.x7_c00224{left:30.933333pt;}
.x8_c00224{left:32.666667pt;}
.x9_c00224{left:33.600000pt;}
.xc_c00224{left:35.200000pt;}
.xd_c00224{left:36.933333pt;}
.x4_c00224{left:44.666667pt;}
.x6_c00224{left:52.266667pt;}
.xb_c00224{left:56.400000pt;}
.xa_c00224{left:79.466667pt;}
.x1_c00224{left:170.666667pt;}
.xe_c00224{left:208.801554pt;}
.x5_c00224{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_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_73bdb88c28aed03d50a64a73.woff2')format("woff");}.ff1_c00225{font-family:ff1_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:ff2_c00225;src:url('chunks/assets/font_644ba9e789b9ace919830f5a.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_35ed512403023429e5c6f66b.woff2')format("woff");}.ff3_c00225{font-family:ff3_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:ff4_c00225;src:url('chunks/assets/font_6634be3f169ede0548dd52e8.woff2')format("woff");}.ff4_c00225{font-family:ff4_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:ff5_c00225;src:url('chunks/assets/font_0b8b4307af1c84363f1fc501.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;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_c00225;src:url('chunks/assets/font_58760dbb3ed68f785c7a20a4.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00225;src:url('chunks/assets/font_a7f21689c9c9afd5c7493482.woff2')format("woff");}.ff7_c00225{font-family:ff7_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:ff8_c00225;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00225{font-family:ff8_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;}
.ls3_c00225{letter-spacing:0.000000px;}
.ls2_c00225{letter-spacing:3.000000px;}
.ls5_c00225{letter-spacing:6.000000px;}
.ls1_c00225{letter-spacing:10.560000px;}
.ls0_c00225{letter-spacing:12.000000px;}
.ls4_c00225{letter-spacing:18.000000px;}
.ls6_c00225{letter-spacing:78.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00225{word-spacing:-86.169600px;}
.ws2_c00225{word-spacing:-19.050000px;}
.ws0_c00225{word-spacing:-16.629000px;}
.ws3_c00225{word-spacing:0.000000px;}
._2a_c00225{margin-left:-29.514000px;}
._1d_c00225{margin-left:-28.446000px;}
._1e_c00225{margin-left:-24.222000px;}
._27_c00225{margin-left:-22.644000px;}
._23_c00225{margin-left:-20.493000px;}
._28_c00225{margin-left:-18.615000px;}
._15_c00225{margin-left:-16.629000px;}
._11_c00225{margin-left:-15.600000px;}
._1a_c00225{margin-left:-14.145000px;}
._19_c00225{margin-left:-12.765000px;}
._1b_c00225{margin-left:-11.385000px;}
._25_c00225{margin-left:-9.600000px;}
._8_c00225{margin-left:-8.418000px;}
._26_c00225{margin-left:-7.350000px;}
._d_c00225{margin-left:-6.348000px;}
._e_c00225{margin-left:-4.761000px;}
._6_c00225{margin-left:-3.726000px;}
._7_c00225{margin-left:-2.691000px;}
._4_c00225{margin-left:-1.587000px;}
._2_c00225{width:1.449000px;}
._f_c00225{width:2.622000px;}
._5_c00225{width:3.933000px;}
._c_c00225{width:5.658000px;}
._9_c00225{width:6.969000px;}
._10_c00225{width:8.220000px;}
._1_c00225{width:9.660000px;}
._a_c00225{width:11.247000px;}
._12_c00225{width:12.765000px;}
._1c_c00225{width:13.962000px;}
._13_c00225{width:15.231000px;}
._16_c00225{width:17.196000px;}
._b_c00225{width:18.561000px;}
._22_c00225{width:21.069000px;}
._0_c00225{width:22.218000px;}
._21_c00225{width:23.298000px;}
._1f_c00225{width:24.564000px;}
._29_c00225{width:28.104000px;}
._24_c00225{width:29.366400px;}
._17_c00225{width:35.742000px;}
._20_c00225{width:37.398000px;}
._18_c00225{width:82.731000px;}
._14_c00225{width:93.789000px;}
._3_c00225{width:361.020000px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(128,128,128);}
.fc0_c00225{color:rgb(0,0,0);}
.fs5_c00225{font-size:48.000000px;}
.fs3_c00225{font-size:54.000000px;}
.fs4_c00225{font-size:55.200000px;}
.fs2_c00225{font-size:66.000000px;}
.fs0_c00225{font-size:69.000000px;}
.fs1_c00225{font-size:75.000000px;}
.y0_c00225{bottom:0.000000px;}
.y1d_c00225{bottom:3.105000px;}
.y1c_c00225{bottom:7.228369px;}
.y1b_c00225{bottom:64.170000px;}
.y1a_c00225{bottom:89.820000px;}
.y19_c00225{bottom:115.470000px;}
.y18_c00225{bottom:140.970000px;}
.y17_c00225{bottom:166.020000px;}
.y16_c00225{bottom:191.670000px;}
.y15_c00225{bottom:216.720000px;}
.y14_c00225{bottom:241.620000px;}
.y13_c00225{bottom:266.670000px;}
.y12_c00225{bottom:315.870000px;}
.y11_c00225{bottom:365.220000px;}
.y10_c00225{bottom:389.520000px;}
.yf_c00225{bottom:415.470000px;}
.ye_c00225{bottom:440.670000px;}
.yd_c00225{bottom:465.120000px;}
.yc_c00225{bottom:490.620000px;}
.yb_c00225{bottom:515.070000px;}
.ya_c00225{bottom:539.220000px;}
.y9_c00225{bottom:565.020000px;}
.y8_c00225{bottom:590.220000px;}
.y7_c00225{bottom:614.820000px;}
.y6_c00225{bottom:639.120000px;}
.y5_c00225{bottom:672.870000px;}
.y4_c00225{bottom:713.370000px;}
.y3_c00225{bottom:745.920000px;}
.y2_c00225{bottom:771.120000px;}
.y1_c00225{bottom:796.770000px;}
.h6_c00225{height:13.200073px;}
.h7_c00225{height:43.804688px;}
.h4_c00225{height:80.758301px;}
.h2_c00225{height:87.361816px;}
.h3_c00225{height:87.780762px;}
.h5_c00225{height:94.958496px;}
.h0_c00225{height:835.350000px;}
.h1_c00225{height:835.500000px;}
.w2_c00225{width:104.875500px;}
.w0_c00225{width:565.350000px;}
.w1_c00225{width:565.500000px;}
.x0_c00225{left:0.000000px;}
.x3_c00225{left:90.750000px;}
.x6_c00225{left:92.250000px;}
.x5_c00225{left:94.200000px;}
.x2_c00225{left:95.550000px;}
.x1_c00225{left:109.650000px;}
.x8_c00225{left:117.150000px;}
.x4_c00225{left:118.800000px;}
.xa_c00225{left:234.489258px;}
.x7_c00225{left:242.250000px;}
.x9_c00225{left:522.750000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls3_c00225{letter-spacing:0.000000pt;}
.ls2_c00225{letter-spacing:2.666667pt;}
.ls5_c00225{letter-spacing:5.333333pt;}
.ls1_c00225{letter-spacing:9.386667pt;}
.ls0_c00225{letter-spacing:10.666667pt;}
.ls4_c00225{letter-spacing:16.000000pt;}
.ls6_c00225{letter-spacing:69.333333pt;}
.ws1_c00225{word-spacing:-76.595200pt;}
.ws2_c00225{word-spacing:-16.933333pt;}
.ws0_c00225{word-spacing:-14.781333pt;}
.ws3_c00225{word-spacing:0.000000pt;}
._2a_c00225{margin-left:-26.234667pt;}
._1d_c00225{margin-left:-25.285333pt;}
._1e_c00225{margin-left:-21.530667pt;}
._27_c00225{margin-left:-20.128000pt;}
._23_c00225{margin-left:-18.216000pt;}
._28_c00225{margin-left:-16.546667pt;}
._15_c00225{margin-left:-14.781333pt;}
._11_c00225{margin-left:-13.866667pt;}
._1a_c00225{margin-left:-12.573333pt;}
._19_c00225{margin-left:-11.346667pt;}
._1b_c00225{margin-left:-10.120000pt;}
._25_c00225{margin-left:-8.533333pt;}
._8_c00225{margin-left:-7.482667pt;}
._26_c00225{margin-left:-6.533333pt;}
._d_c00225{margin-left:-5.642667pt;}
._e_c00225{margin-left:-4.232000pt;}
._6_c00225{margin-left:-3.312000pt;}
._7_c00225{margin-left:-2.392000pt;}
._4_c00225{margin-left:-1.410667pt;}
._2_c00225{width:1.288000pt;}
._f_c00225{width:2.330667pt;}
._5_c00225{width:3.496000pt;}
._c_c00225{width:5.029333pt;}
._9_c00225{width:6.194667pt;}
._10_c00225{width:7.306667pt;}
._1_c00225{width:8.586667pt;}
._a_c00225{width:9.997333pt;}
._12_c00225{width:11.346667pt;}
._1c_c00225{width:12.410667pt;}
._13_c00225{width:13.538667pt;}
._16_c00225{width:15.285333pt;}
._b_c00225{width:16.498667pt;}
._22_c00225{width:18.728000pt;}
._0_c00225{width:19.749333pt;}
._21_c00225{width:20.709333pt;}
._1f_c00225{width:21.834667pt;}
._29_c00225{width:24.981333pt;}
._24_c00225{width:26.103467pt;}
._17_c00225{width:31.770667pt;}
._20_c00225{width:33.242667pt;}
._18_c00225{width:73.538667pt;}
._14_c00225{width:83.368000pt;}
._3_c00225{width:320.906667pt;}
.fs5_c00225{font-size:42.666667pt;}
.fs3_c00225{font-size:48.000000pt;}
.fs4_c00225{font-size:49.066667pt;}
.fs2_c00225{font-size:58.666667pt;}
.fs0_c00225{font-size:61.333333pt;}
.fs1_c00225{font-size:66.666667pt;}
.y0_c00225{bottom:0.000000pt;}
.y1d_c00225{bottom:2.760000pt;}
.y1c_c00225{bottom:6.425217pt;}
.y1b_c00225{bottom:57.040000pt;}
.y1a_c00225{bottom:79.840000pt;}
.y19_c00225{bottom:102.640000pt;}
.y18_c00225{bottom:125.306667pt;}
.y17_c00225{bottom:147.573333pt;}
.y16_c00225{bottom:170.373333pt;}
.y15_c00225{bottom:192.640000pt;}
.y14_c00225{bottom:214.773333pt;}
.y13_c00225{bottom:237.040000pt;}
.y12_c00225{bottom:280.773333pt;}
.y11_c00225{bottom:324.640000pt;}
.y10_c00225{bottom:346.240000pt;}
.yf_c00225{bottom:369.306667pt;}
.ye_c00225{bottom:391.706667pt;}
.yd_c00225{bottom:413.440000pt;}
.yc_c00225{bottom:436.106667pt;}
.yb_c00225{bottom:457.840000pt;}
.ya_c00225{bottom:479.306667pt;}
.y9_c00225{bottom:502.240000pt;}
.y8_c00225{bottom:524.640000pt;}
.y7_c00225{bottom:546.506667pt;}
.y6_c00225{bottom:568.106667pt;}
.y5_c00225{bottom:598.106667pt;}
.y4_c00225{bottom:634.106667pt;}
.y3_c00225{bottom:663.040000pt;}
.y2_c00225{bottom:685.440000pt;}
.y1_c00225{bottom:708.240000pt;}
.h6_c00225{height:11.733399pt;}
.h7_c00225{height:38.937500pt;}
.h4_c00225{height:71.785156pt;}
.h2_c00225{height:77.654948pt;}
.h3_c00225{height:78.027344pt;}
.h5_c00225{height:84.407552pt;}
.h0_c00225{height:742.533333pt;}
.h1_c00225{height:742.666667pt;}
.w2_c00225{width:93.222667pt;}
.w0_c00225{width:502.533333pt;}
.w1_c00225{width:502.666667pt;}
.x0_c00225{left:0.000000pt;}
.x3_c00225{left:80.666667pt;}
.x6_c00225{left:82.000000pt;}
.x5_c00225{left:83.733333pt;}
.x2_c00225{left:84.933333pt;}
.x1_c00225{left:97.466667pt;}
.x8_c00225{left:104.133333pt;}
.x4_c00225{left:105.600000pt;}
.xa_c00225{left:208.434896pt;}
.x7_c00225{left:215.333333pt;}
.x9_c00225{left:464.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_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_759682fb236a5667ae7e48e3.woff2')format("woff");}.ff1_c00226{font-family:ff1_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:ff2_c00226;src:url('chunks/assets/font_b4abb62e7a9af1d10647201f.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;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_c00226;src:url('chunks/assets/font_fe641d37ea3bef1a0db60cd0.woff2')format("woff");}.ff3_c00226{font-family:ff3_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:ff4_c00226;src:url('chunks/assets/font_09bfe2ce8eca2c4cab609f0e.woff2')format("woff");}.ff4_c00226{font-family:ff4_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:ff5_c00226;src:url('chunks/assets/font_8d464bdc89ef414a94ccb66e.woff2')format("woff");}.ff5_c00226{font-family:ff5_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:ff6_c00226;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00226{font-family:ff6_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:ff7_c00226;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls6_c00226{letter-spacing:0.000000px;}
.ls2_c00226{letter-spacing:1.200000px;}
.ls7_c00226{letter-spacing:3.000000px;}
.ls1_c00226{letter-spacing:41.472000px;}
.ls3_c00226{letter-spacing:85.971000px;}
.ls5_c00226{letter-spacing:93.171000px;}
.ls4_c00226{letter-spacing:96.771000px;}
.ls0_c00226{letter-spacing:488.472000px;}
.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;}
}
.ws4_c00226{word-spacing:-39.000000px;}
.ws2_c00226{word-spacing:-32.472000px;}
.ws0_c00226{word-spacing:-24.582000px;}
.ws1_c00226{word-spacing:-19.629000px;}
.ws3_c00226{word-spacing:-16.629000px;}
.ws5_c00226{word-spacing:0.000000px;}
._37_c00226{margin-left:-44.301000px;}
._13_c00226{margin-left:-37.764000px;}
._18_c00226{margin-left:-35.496000px;}
._20_c00226{margin-left:-34.476000px;}
._1a_c00226{margin-left:-33.165000px;}
._b_c00226{margin-left:-31.416000px;}
._1e_c00226{margin-left:-29.088000px;}
._1f_c00226{margin-left:-27.987000px;}
._9_c00226{margin-left:-26.937000px;}
._8_c00226{margin-left:-25.194000px;}
._11_c00226{margin-left:-23.358000px;}
._2_c00226{margin-left:-22.338000px;}
._1_c00226{margin-left:-20.901000px;}
._12_c00226{margin-left:-18.870000px;}
._e_c00226{margin-left:-17.784000px;}
._c_c00226{margin-left:-16.413000px;}
._14_c00226{margin-left:-15.258000px;}
._4_c00226{margin-left:-13.770000px;}
._16_c00226{margin-left:-12.546000px;}
._3_c00226{margin-left:-11.424000px;}
._5_c00226{margin-left:-10.149000px;}
._7_c00226{margin-left:-8.424000px;}
._d_c00226{margin-left:-7.140000px;}
._a_c00226{margin-left:-5.406000px;}
._f_c00226{margin-left:-3.570000px;}
._15_c00226{margin-left:-2.118000px;}
._29_c00226{margin-left:-1.116000px;}
._0_c00226{width:1.518000px;}
._1c_c00226{width:2.760000px;}
._1b_c00226{width:3.897000px;}
._10_c00226{width:5.916000px;}
._6_c00226{width:7.314000px;}
._17_c00226{width:9.087000px;}
._2b_c00226{width:10.647000px;}
._24_c00226{width:11.934000px;}
._27_c00226{width:15.501000px;}
._3a_c00226{width:16.830000px;}
._23_c00226{width:18.798000px;}
._28_c00226{width:21.555000px;}
._26_c00226{width:23.262000px;}
._35_c00226{width:24.738000px;}
._39_c00226{width:28.443000px;}
._33_c00226{width:30.003000px;}
._19_c00226{width:31.824000px;}
._36_c00226{width:33.342000px;}
._2d_c00226{width:34.482000px;}
._2a_c00226{width:36.696000px;}
._38_c00226{width:38.148000px;}
._22_c00226{width:39.294000px;}
._25_c00226{width:44.478000px;}
._34_c00226{width:49.773000px;}
._3b_c00226{width:52.752000px;}
._31_c00226{width:61.866000px;}
._2f_c00226{width:78.750000px;}
._2c_c00226{width:85.869000px;}
._2e_c00226{width:100.119000px;}
._1d_c00226{width:185.682000px;}
._30_c00226{width:413.346000px;}
._3c_c00226{width:476.955000px;}
._32_c00226{width:483.318000px;}
._21_c00226{width:603.954000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(128,128,128);}
.fc0_c00226{color:rgb(0,0,0);}
.fs6_c00226{font-size:48.000000px;}
.fs4_c00226{font-size:66.000000px;}
.fs0_c00226{font-size:69.000000px;}
.fs3_c00226{font-size:72.000000px;}
.fs2_c00226{font-size:78.000000px;}
.fs5_c00226{font-size:81.000000px;}
.fs1_c00226{font-size:102.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1f_c00226{bottom:3.105000px;}
.y1e_c00226{bottom:7.228371px;}
.y1d_c00226{bottom:63.915000px;}
.y1c_c00226{bottom:89.565000px;}
.y1b_c00226{bottom:114.765000px;}
.y1a_c00226{bottom:138.915000px;}
.y19_c00226{bottom:164.115000px;}
.y18_c00226{bottom:189.315000px;}
.y17_c00226{bottom:214.965000px;}
.y16_c00226{bottom:239.715000px;}
.y15_c00226{bottom:264.915000px;}
.y14_c00226{bottom:289.965000px;}
.y13_c00226{bottom:314.565000px;}
.y12_c00226{bottom:339.315000px;}
.y11_c00226{bottom:364.815000px;}
.y10_c00226{bottom:388.515000px;}
.yf_c00226{bottom:413.565000px;}
.ye_c00226{bottom:461.415000px;}
.yd_c00226{bottom:487.065000px;}
.yc_c00226{bottom:511.965000px;}
.yb_c00226{bottom:537.765000px;}
.ya_c00226{bottom:561.615000px;}
.y9_c00226{bottom:587.265000px;}
.y8_c00226{bottom:612.615000px;}
.y7_c00226{bottom:637.515000px;}
.y6_c00226{bottom:662.565000px;}
.y5_c00226{bottom:687.615000px;}
.y4_c00226{bottom:713.115000px;}
.y3_c00226{bottom:737.415000px;}
.y2_c00226{bottom:762.765000px;}
.y1_c00226{bottom:788.415000px;}
.h9_c00226{height:13.200074px;}
.ha_c00226{height:43.804688px;}
.h6_c00226{height:80.758301px;}
.h5_c00226{height:83.226000px;}
.h4_c00226{height:87.361816px;}
.h8_c00226{height:102.555176px;}
.h2_c00226{height:119.381836px;}
.h3_c00226{height:129.143555px;}
.h7_c00226{height:129.743555px;}
.h1_c00226{height:831.000000px;}
.h0_c00226{height:831.075000px;}
.w2_c00226{width:104.875500px;}
.w0_c00226{width:566.175000px;}
.w1_c00226{width:566.250000px;}
.x0_c00226{left:0.000000px;}
.xc_c00226{left:26.700000px;}
.xb_c00226{left:30.000000px;}
.xa_c00226{left:31.050000px;}
.x5_c00226{left:32.100000px;}
.x2_c00226{left:33.150000px;}
.x4_c00226{left:34.500000px;}
.x7_c00226{left:37.050000px;}
.x3_c00226{left:52.650000px;}
.x6_c00226{left:54.000000px;}
.x9_c00226{left:55.650000px;}
.x8_c00226{left:113.700000px;}
.x1_c00226{left:201.450000px;}
.xe_c00226{left:234.901749px;}
.xd_c00226{left:289.650000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls6_c00226{letter-spacing:0.000000pt;}
.ls2_c00226{letter-spacing:1.066667pt;}
.ls7_c00226{letter-spacing:2.666667pt;}
.ls1_c00226{letter-spacing:36.864000pt;}
.ls3_c00226{letter-spacing:76.418667pt;}
.ls5_c00226{letter-spacing:82.818667pt;}
.ls4_c00226{letter-spacing:86.018667pt;}
.ls0_c00226{letter-spacing:434.197333pt;}
.ws4_c00226{word-spacing:-34.666667pt;}
.ws2_c00226{word-spacing:-28.864000pt;}
.ws0_c00226{word-spacing:-21.850667pt;}
.ws1_c00226{word-spacing:-17.448000pt;}
.ws3_c00226{word-spacing:-14.781333pt;}
.ws5_c00226{word-spacing:0.000000pt;}
._37_c00226{margin-left:-39.378667pt;}
._13_c00226{margin-left:-33.568000pt;}
._18_c00226{margin-left:-31.552000pt;}
._20_c00226{margin-left:-30.645333pt;}
._1a_c00226{margin-left:-29.480000pt;}
._b_c00226{margin-left:-27.925333pt;}
._1e_c00226{margin-left:-25.856000pt;}
._1f_c00226{margin-left:-24.877333pt;}
._9_c00226{margin-left:-23.944000pt;}
._8_c00226{margin-left:-22.394667pt;}
._11_c00226{margin-left:-20.762667pt;}
._2_c00226{margin-left:-19.856000pt;}
._1_c00226{margin-left:-18.578667pt;}
._12_c00226{margin-left:-16.773333pt;}
._e_c00226{margin-left:-15.808000pt;}
._c_c00226{margin-left:-14.589333pt;}
._14_c00226{margin-left:-13.562667pt;}
._4_c00226{margin-left:-12.240000pt;}
._16_c00226{margin-left:-11.152000pt;}
._3_c00226{margin-left:-10.154667pt;}
._5_c00226{margin-left:-9.021333pt;}
._7_c00226{margin-left:-7.488000pt;}
._d_c00226{margin-left:-6.346667pt;}
._a_c00226{margin-left:-4.805333pt;}
._f_c00226{margin-left:-3.173333pt;}
._15_c00226{margin-left:-1.882667pt;}
._29_c00226{margin-left:-0.992000pt;}
._0_c00226{width:1.349333pt;}
._1c_c00226{width:2.453333pt;}
._1b_c00226{width:3.464000pt;}
._10_c00226{width:5.258667pt;}
._6_c00226{width:6.501333pt;}
._17_c00226{width:8.077333pt;}
._2b_c00226{width:9.464000pt;}
._24_c00226{width:10.608000pt;}
._27_c00226{width:13.778667pt;}
._3a_c00226{width:14.960000pt;}
._23_c00226{width:16.709333pt;}
._28_c00226{width:19.160000pt;}
._26_c00226{width:20.677333pt;}
._35_c00226{width:21.989333pt;}
._39_c00226{width:25.282667pt;}
._33_c00226{width:26.669333pt;}
._19_c00226{width:28.288000pt;}
._36_c00226{width:29.637333pt;}
._2d_c00226{width:30.650667pt;}
._2a_c00226{width:32.618667pt;}
._38_c00226{width:33.909333pt;}
._22_c00226{width:34.928000pt;}
._25_c00226{width:39.536000pt;}
._34_c00226{width:44.242667pt;}
._3b_c00226{width:46.890667pt;}
._31_c00226{width:54.992000pt;}
._2f_c00226{width:70.000000pt;}
._2c_c00226{width:76.328000pt;}
._2e_c00226{width:88.994667pt;}
._1d_c00226{width:165.050667pt;}
._30_c00226{width:367.418667pt;}
._3c_c00226{width:423.960000pt;}
._32_c00226{width:429.616000pt;}
._21_c00226{width:536.848000pt;}
.fs6_c00226{font-size:42.666667pt;}
.fs4_c00226{font-size:58.666667pt;}
.fs0_c00226{font-size:61.333333pt;}
.fs3_c00226{font-size:64.000000pt;}
.fs2_c00226{font-size:69.333333pt;}
.fs5_c00226{font-size:72.000000pt;}
.fs1_c00226{font-size:90.666667pt;}
.y0_c00226{bottom:0.000000pt;}
.y1f_c00226{bottom:2.760000pt;}
.y1e_c00226{bottom:6.425219pt;}
.y1d_c00226{bottom:56.813333pt;}
.y1c_c00226{bottom:79.613333pt;}
.y1b_c00226{bottom:102.013333pt;}
.y1a_c00226{bottom:123.480000pt;}
.y19_c00226{bottom:145.880000pt;}
.y18_c00226{bottom:168.280000pt;}
.y17_c00226{bottom:191.080000pt;}
.y16_c00226{bottom:213.080000pt;}
.y15_c00226{bottom:235.480000pt;}
.y14_c00226{bottom:257.746667pt;}
.y13_c00226{bottom:279.613333pt;}
.y12_c00226{bottom:301.613333pt;}
.y11_c00226{bottom:324.280000pt;}
.y10_c00226{bottom:345.346667pt;}
.yf_c00226{bottom:367.613333pt;}
.ye_c00226{bottom:410.146667pt;}
.yd_c00226{bottom:432.946667pt;}
.yc_c00226{bottom:455.080000pt;}
.yb_c00226{bottom:478.013333pt;}
.ya_c00226{bottom:499.213333pt;}
.y9_c00226{bottom:522.013333pt;}
.y8_c00226{bottom:544.546667pt;}
.y7_c00226{bottom:566.680000pt;}
.y6_c00226{bottom:588.946667pt;}
.y5_c00226{bottom:611.213333pt;}
.y4_c00226{bottom:633.880000pt;}
.y3_c00226{bottom:655.480000pt;}
.y2_c00226{bottom:678.013333pt;}
.y1_c00226{bottom:700.813333pt;}
.h9_c00226{height:11.733399pt;}
.ha_c00226{height:38.937500pt;}
.h6_c00226{height:71.785156pt;}
.h5_c00226{height:73.978667pt;}
.h4_c00226{height:77.654948pt;}
.h8_c00226{height:91.160156pt;}
.h2_c00226{height:106.117188pt;}
.h3_c00226{height:114.794271pt;}
.h7_c00226{height:115.327604pt;}
.h1_c00226{height:738.666667pt;}
.h0_c00226{height:738.733333pt;}
.w2_c00226{width:93.222667pt;}
.w0_c00226{width:503.266667pt;}
.w1_c00226{width:503.333333pt;}
.x0_c00226{left:0.000000pt;}
.xc_c00226{left:23.733333pt;}
.xb_c00226{left:26.666667pt;}
.xa_c00226{left:27.600000pt;}
.x5_c00226{left:28.533333pt;}
.x2_c00226{left:29.466667pt;}
.x4_c00226{left:30.666667pt;}
.x7_c00226{left:32.933333pt;}
.x3_c00226{left:46.800000pt;}
.x6_c00226{left:48.000000pt;}
.x9_c00226{left:49.466667pt;}
.x8_c00226{left:101.066667pt;}
.x1_c00226{left:179.066667pt;}
.xe_c00226{left:208.801554pt;}
.xd_c00226{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_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_31dfc08ddfdaefeeb46c1fac.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.568848;font-style:normal;font-weight:normal;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_5ecac140b3a7f7bb2ef0ea68.woff2')format("woff");}.ff2_c00227{font-family:ff2_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:ff3_c00227;src:url('chunks/assets/font_d570837df0ace66f8d575559.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;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_c00227;src:url('chunks/assets/font_28899971b3068dc580d2b01b.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00227{font-family:ff5_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;}
.ls6_c00227{letter-spacing:-6.000000px;}
.ls5_c00227{letter-spacing:0.000000px;}
.ls7_c00227{letter-spacing:3.000000px;}
.ls1_c00227{letter-spacing:3.894000px;}
.ls2_c00227{letter-spacing:4.971000px;}
.ls3_c00227{letter-spacing:6.171000px;}
.ls8_c00227{letter-spacing:9.000000px;}
.ls0_c00227{letter-spacing:9.276000px;}
.ls4_c00227{letter-spacing:37.371000px;}
.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;}
}
.ws3_c00227{word-spacing:-33.000000px;}
.ws1_c00227{word-spacing:-24.906000px;}
.ws2_c00227{word-spacing:-16.629000px;}
.ws4_c00227{word-spacing:0.000000px;}
.ws0_c00227{word-spacing:5.868000px;}
._32_c00227{margin-left:-34.155000px;}
._2f_c00227{margin-left:-23.391000px;}
._12_c00227{margin-left:-19.644000px;}
._8_c00227{margin-left:-17.760000px;}
._19_c00227{margin-left:-15.894000px;}
._f_c00227{margin-left:-13.992000px;}
._20_c00227{margin-left:-12.618000px;}
._0_c00227{margin-left:-11.388000px;}
._1a_c00227{margin-left:-9.996000px;}
._1_c00227{margin-left:-8.502000px;}
._3_c00227{margin-left:-6.630000px;}
._2_c00227{margin-left:-4.758000px;}
._a_c00227{margin-left:-2.838000px;}
._9_c00227{margin-left:-1.572000px;}
._4_c00227{width:1.572000px;}
._7_c00227{width:2.772000px;}
._6_c00227{width:4.032000px;}
._11_c00227{width:5.574000px;}
._c_c00227{width:7.326000px;}
._1c_c00227{width:8.478000px;}
._b_c00227{width:9.672000px;}
._28_c00227{width:10.734000px;}
._18_c00227{width:12.174000px;}
._13_c00227{width:13.314000px;}
._15_c00227{width:14.322000px;}
._2b_c00227{width:15.915000px;}
._21_c00227{width:16.986000px;}
._d_c00227{width:17.988000px;}
._14_c00227{width:19.116000px;}
._26_c00227{width:20.427000px;}
._10_c00227{width:21.966000px;}
._1f_c00227{width:23.208000px;}
._34_c00227{width:24.534000px;}
._2a_c00227{width:25.878000px;}
._23_c00227{width:27.456000px;}
._16_c00227{width:29.370000px;}
._24_c00227{width:30.864000px;}
._1d_c00227{width:34.122000px;}
._2c_c00227{width:35.778000px;}
._17_c00227{width:38.196000px;}
._e_c00227{width:40.524000px;}
._1b_c00227{width:67.668000px;}
._2d_c00227{width:71.802000px;}
._2e_c00227{width:74.580000px;}
._33_c00227{width:94.644000px;}
._1e_c00227{width:107.280000px;}
._31_c00227{width:113.220000px;}
._30_c00227{width:114.600000px;}
._25_c00227{width:117.762000px;}
._22_c00227{width:119.388000px;}
._29_c00227{width:133.662000px;}
._27_c00227{width:142.794000px;}
._5_c00227{width:375.372000px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(128,128,128);}
.fc0_c00227{color:rgb(0,0,0);}
.fs5_c00227{font-size:48.000000px;}
.fs4_c00227{font-size:54.000000px;}
.fs2_c00227{font-size:66.000000px;}
.fs1_c00227{font-size:69.000000px;}
.fs0_c00227{font-size:78.000000px;}
.fs3_c00227{font-size:132.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1f_c00227{bottom:3.105000px;}
.y1e_c00227{bottom:7.228369px;}
.y1d_c00227{bottom:69.870000px;}
.y1c_c00227{bottom:95.820000px;}
.y1b_c00227{bottom:121.470000px;}
.y1a_c00227{bottom:170.820000px;}
.y19_c00227{bottom:197.670000px;}
.y18_c00227{bottom:222.420000px;}
.y17_c00227{bottom:247.620000px;}
.y16_c00227{bottom:272.670000px;}
.y15_c00227{bottom:297.720000px;}
.y14_c00227{bottom:322.620000px;}
.y13_c00227{bottom:347.220000px;}
.y12_c00227{bottom:371.520000px;}
.y11_c00227{bottom:396.270000px;}
.y10_c00227{bottom:420.870000px;}
.yf_c00227{bottom:446.070000px;}
.ye_c00227{bottom:470.820000px;}
.yd_c00227{bottom:496.170000px;}
.yc_c00227{bottom:521.370000px;}
.yb_c00227{bottom:546.120000px;}
.ya_c00227{bottom:571.020000px;}
.y9_c00227{bottom:596.070000px;}
.y8_c00227{bottom:621.270000px;}
.y7_c00227{bottom:646.020000px;}
.y6_c00227{bottom:671.220000px;}
.y5_c00227{bottom:695.970000px;}
.y4_c00227{bottom:721.620000px;}
.y3_c00227{bottom:747.120000px;}
.y2_c00227{bottom:772.770000px;}
.y1_c00227{bottom:797.520000px;}
.h7_c00227{height:13.200073px;}
.h8_c00227{height:43.804688px;}
.h6_c00227{height:80.758301px;}
.h4_c00227{height:83.563477px;}
.h5_c00227{height:87.361816px;}
.h2_c00227{height:98.756836px;}
.h3_c00227{height:143.088000px;}
.h1_c00227{height:844.500000px;}
.h0_c00227{height:844.800000px;}
.w2_c00227{width:104.875500px;}
.w0_c00227{width:572.100000px;}
.w1_c00227{width:572.250000px;}
.x0_c00227{left:0.000000px;}
.x3_c00227{left:43.650000px;}
.x6_c00227{left:69.600000px;}
.x5_c00227{left:93.150000px;}
.x8_c00227{left:104.700000px;}
.x7_c00227{left:107.100000px;}
.x2_c00227{left:108.750000px;}
.x4_c00227{left:110.100000px;}
.x1_c00227{left:122.850000px;}
.xb_c00227{left:131.400000px;}
.xa_c00227{left:201.450000px;}
.xd_c00227{left:237.864258px;}
.x9_c00227{left:388.500000px;}
.xc_c00227{left:515.100000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls6_c00227{letter-spacing:-5.333333pt;}
.ls5_c00227{letter-spacing:0.000000pt;}
.ls7_c00227{letter-spacing:2.666667pt;}
.ls1_c00227{letter-spacing:3.461333pt;}
.ls2_c00227{letter-spacing:4.418667pt;}
.ls3_c00227{letter-spacing:5.485333pt;}
.ls8_c00227{letter-spacing:8.000000pt;}
.ls0_c00227{letter-spacing:8.245333pt;}
.ls4_c00227{letter-spacing:33.218667pt;}
.ws3_c00227{word-spacing:-29.333333pt;}
.ws1_c00227{word-spacing:-22.138667pt;}
.ws2_c00227{word-spacing:-14.781333pt;}
.ws4_c00227{word-spacing:0.000000pt;}
.ws0_c00227{word-spacing:5.216000pt;}
._32_c00227{margin-left:-30.360000pt;}
._2f_c00227{margin-left:-20.792000pt;}
._12_c00227{margin-left:-17.461333pt;}
._8_c00227{margin-left:-15.786667pt;}
._19_c00227{margin-left:-14.128000pt;}
._f_c00227{margin-left:-12.437333pt;}
._20_c00227{margin-left:-11.216000pt;}
._0_c00227{margin-left:-10.122667pt;}
._1a_c00227{margin-left:-8.885333pt;}
._1_c00227{margin-left:-7.557333pt;}
._3_c00227{margin-left:-5.893333pt;}
._2_c00227{margin-left:-4.229333pt;}
._a_c00227{margin-left:-2.522667pt;}
._9_c00227{margin-left:-1.397333pt;}
._4_c00227{width:1.397333pt;}
._7_c00227{width:2.464000pt;}
._6_c00227{width:3.584000pt;}
._11_c00227{width:4.954667pt;}
._c_c00227{width:6.512000pt;}
._1c_c00227{width:7.536000pt;}
._b_c00227{width:8.597333pt;}
._28_c00227{width:9.541333pt;}
._18_c00227{width:10.821333pt;}
._13_c00227{width:11.834667pt;}
._15_c00227{width:12.730667pt;}
._2b_c00227{width:14.146667pt;}
._21_c00227{width:15.098667pt;}
._d_c00227{width:15.989333pt;}
._14_c00227{width:16.992000pt;}
._26_c00227{width:18.157333pt;}
._10_c00227{width:19.525333pt;}
._1f_c00227{width:20.629333pt;}
._34_c00227{width:21.808000pt;}
._2a_c00227{width:23.002667pt;}
._23_c00227{width:24.405333pt;}
._16_c00227{width:26.106667pt;}
._24_c00227{width:27.434667pt;}
._1d_c00227{width:30.330667pt;}
._2c_c00227{width:31.802667pt;}
._17_c00227{width:33.952000pt;}
._e_c00227{width:36.021333pt;}
._1b_c00227{width:60.149333pt;}
._2d_c00227{width:63.824000pt;}
._2e_c00227{width:66.293333pt;}
._33_c00227{width:84.128000pt;}
._1e_c00227{width:95.360000pt;}
._31_c00227{width:100.640000pt;}
._30_c00227{width:101.866667pt;}
._25_c00227{width:104.677333pt;}
._22_c00227{width:106.122667pt;}
._29_c00227{width:118.810667pt;}
._27_c00227{width:126.928000pt;}
._5_c00227{width:333.664000pt;}
.fs5_c00227{font-size:42.666667pt;}
.fs4_c00227{font-size:48.000000pt;}
.fs2_c00227{font-size:58.666667pt;}
.fs1_c00227{font-size:61.333333pt;}
.fs0_c00227{font-size:69.333333pt;}
.fs3_c00227{font-size:117.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y1f_c00227{bottom:2.760000pt;}
.y1e_c00227{bottom:6.425217pt;}
.y1d_c00227{bottom:62.106667pt;}
.y1c_c00227{bottom:85.173333pt;}
.y1b_c00227{bottom:107.973333pt;}
.y1a_c00227{bottom:151.840000pt;}
.y19_c00227{bottom:175.706667pt;}
.y18_c00227{bottom:197.706667pt;}
.y17_c00227{bottom:220.106667pt;}
.y16_c00227{bottom:242.373333pt;}
.y15_c00227{bottom:264.640000pt;}
.y14_c00227{bottom:286.773333pt;}
.y13_c00227{bottom:308.640000pt;}
.y12_c00227{bottom:330.240000pt;}
.y11_c00227{bottom:352.240000pt;}
.y10_c00227{bottom:374.106667pt;}
.yf_c00227{bottom:396.506667pt;}
.ye_c00227{bottom:418.506667pt;}
.yd_c00227{bottom:441.040000pt;}
.yc_c00227{bottom:463.440000pt;}
.yb_c00227{bottom:485.440000pt;}
.ya_c00227{bottom:507.573333pt;}
.y9_c00227{bottom:529.840000pt;}
.y8_c00227{bottom:552.240000pt;}
.y7_c00227{bottom:574.240000pt;}
.y6_c00227{bottom:596.640000pt;}
.y5_c00227{bottom:618.640000pt;}
.y4_c00227{bottom:641.440000pt;}
.y3_c00227{bottom:664.106667pt;}
.y2_c00227{bottom:686.906667pt;}
.y1_c00227{bottom:708.906667pt;}
.h7_c00227{height:11.733399pt;}
.h8_c00227{height:38.937500pt;}
.h6_c00227{height:71.785156pt;}
.h4_c00227{height:74.278646pt;}
.h5_c00227{height:77.654948pt;}
.h2_c00227{height:87.783854pt;}
.h3_c00227{height:127.189333pt;}
.h1_c00227{height:750.666667pt;}
.h0_c00227{height:750.933333pt;}
.w2_c00227{width:93.222667pt;}
.w0_c00227{width:508.533333pt;}
.w1_c00227{width:508.666667pt;}
.x0_c00227{left:0.000000pt;}
.x3_c00227{left:38.800000pt;}
.x6_c00227{left:61.866667pt;}
.x5_c00227{left:82.800000pt;}
.x8_c00227{left:93.066667pt;}
.x7_c00227{left:95.200000pt;}
.x2_c00227{left:96.666667pt;}
.x4_c00227{left:97.866667pt;}
.x1_c00227{left:109.200000pt;}
.xb_c00227{left:116.800000pt;}
.xa_c00227{left:179.066667pt;}
.xd_c00227{left:211.434896pt;}
.x9_c00227{left:345.333333pt;}
.xc_c00227{left:457.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_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_120f329d5ccb1944ddcfe212.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_898035cb6f0c225597ee3fae.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_42310099ead00509e637a937.woff2')format("woff");}.ff3_c00228{font-family:ff3_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:ff4_c00228;src:url('chunks/assets/font_75d502e2afbc1217f75b18f4.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_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls2_c00228{letter-spacing:3.000000px;}
.ls3_c00228{letter-spacing:9.000000px;}
.ls0_c00228{letter-spacing:24.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00228{word-spacing:-56.235000px;}
.ws2_c00228{word-spacing:-44.988000px;}
.ws3_c00228{word-spacing:-44.022000px;}
.ws5_c00228{word-spacing:-29.630400px;}
.ws1_c00228{word-spacing:-25.629000px;}
.ws6_c00228{word-spacing:-19.629000px;}
.ws0_c00228{word-spacing:-16.629000px;}
.ws7_c00228{word-spacing:0.000000px;}
._42_c00228{margin-left:-26.841000px;}
._25_c00228{margin-left:-25.392000px;}
._1a_c00228{margin-left:-24.126000px;}
._2a_c00228{margin-left:-22.287000px;}
._15_c00228{margin-left:-19.458000px;}
._16_c00228{margin-left:-17.526000px;}
._18_c00228{margin-left:-14.736000px;}
._2f_c00228{margin-left:-13.593000px;}
._2c_c00228{margin-left:-12.135000px;}
._17_c00228{margin-left:-10.764000px;}
._1_c00228{margin-left:-9.039000px;}
._3_c00228{margin-left:-7.107000px;}
._9_c00228{margin-left:-5.934000px;}
._0_c00228{margin-left:-4.347000px;}
._b_c00228{margin-left:-3.243000px;}
._5_c00228{margin-left:-2.001000px;}
._7_c00228{width:2.001000px;}
._c_c00228{width:3.933000px;}
._1c_c00228{width:5.106000px;}
._1b_c00228{width:6.279000px;}
._f_c00228{width:7.521000px;}
._12_c00228{width:8.556000px;}
._6_c00228{width:10.005000px;}
._41_c00228{width:11.016000px;}
._d_c00228{width:12.075000px;}
._8_c00228{width:13.662000px;}
._1f_c00228{width:14.973000px;}
._27_c00228{width:16.782000px;}
._1e_c00228{width:19.044000px;}
._33_c00228{width:20.148000px;}
._38_c00228{width:21.804000px;}
._11_c00228{width:23.250000px;}
._13_c00228{width:24.963000px;}
._21_c00228{width:26.565000px;}
._28_c00228{width:27.798000px;}
._10_c00228{width:31.194000px;}
._43_c00228{width:34.050000px;}
._32_c00228{width:35.253000px;}
._14_c00228{width:36.711000px;}
._3d_c00228{width:41.985000px;}
._3c_c00228{width:46.851000px;}
._35_c00228{width:56.673000px;}
._29_c00228{width:57.963000px;}
._37_c00228{width:66.309000px;}
._31_c00228{width:68.361000px;}
._e_c00228{width:71.346000px;}
._2_c00228{width:72.450000px;}
._22_c00228{width:82.380000px;}
._24_c00228{width:85.947000px;}
._23_c00228{width:87.960000px;}
._4_c00228{width:90.459000px;}
._a_c00228{width:94.668000px;}
._3b_c00228{width:98.881200px;}
._36_c00228{width:101.223000px;}
._39_c00228{width:107.433000px;}
._34_c00228{width:108.501000px;}
._3a_c00228{width:113.685000px;}
._3f_c00228{width:121.647000px;}
._2d_c00228{width:130.194000px;}
._2b_c00228{width:152.283000px;}
._1d_c00228{width:156.063000px;}
._20_c00228{width:211.950000px;}
._19_c00228{width:359.487000px;}
._40_c00228{width:368.322000px;}
._26_c00228{width:395.232000px;}
._3e_c00228{width:508.794000px;}
._2e_c00228{width:521.448000px;}
._44_c00228{width:561.435000px;}
._30_c00228{width:1068.810000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(128,128,128);}
.fc0_c00228{color:rgb(0,0,0);}
.fs4_c00228{font-size:48.000000px;}
.fs2_c00228{font-size:54.000000px;}
.fs1_c00228{font-size:55.200000px;}
.fs3_c00228{font-size:66.000000px;}
.fs0_c00228{font-size:69.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1c_c00228{bottom:3.105000px;}
.y1b_c00228{bottom:7.228355px;}
.y1a_c00228{bottom:60.435000px;}
.y19_c00228{bottom:92.085000px;}
.y18_c00228{bottom:123.735000px;}
.y17_c00228{bottom:154.485000px;}
.y16_c00228{bottom:173.385000px;}
.y15_c00228{bottom:186.885000px;}
.y14_c00228{bottom:227.685000px;}
.y13_c00228{bottom:267.885000px;}
.y12_c00228{bottom:299.985000px;}
.y11_c00228{bottom:311.535000px;}
.y10_c00228{bottom:332.385000px;}
.yf_c00228{bottom:363.735000px;}
.ye_c00228{bottom:375.285000px;}
.yd_c00228{bottom:394.785000px;}
.yc_c00228{bottom:413.085000px;}
.yb_c00228{bottom:427.485000px;}
.ya_c00228{bottom:460.035000px;}
.y9_c00228{bottom:491.685000px;}
.y8_c00228{bottom:523.785000px;}
.y7_c00228{bottom:554.835000px;}
.y6_c00228{bottom:588.585000px;}
.y5_c00228{bottom:619.335000px;}
.y4_c00228{bottom:652.035000px;}
.y3_c00228{bottom:683.985000px;}
.y2_c00228{bottom:716.835000px;}
.y1_c00228{bottom:750.135000px;}
.h4_c00228{height:13.200074px;}
.h5_c00228{height:43.804688px;}
.h3_c00228{height:80.758301px;}
.h2_c00228{height:87.361816px;}
.h0_c00228{height:815.925000px;}
.h1_c00228{height:816.000000px;}
.w2_c00228{width:104.875500px;}
.w1_c00228{width:555.000000px;}
.w0_c00228{width:555.150000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:34.050000px;}
.x2_c00228{left:35.400000px;}
.x3_c00228{left:36.450000px;}
.x5_c00228{left:37.800000px;}
.x6_c00228{left:39.600000px;}
.xa_c00228{left:40.800000px;}
.x8_c00228{left:41.850000px;}
.xb_c00228{left:42.900000px;}
.x9_c00228{left:66.900000px;}
.x4_c00228{left:93.600000px;}
.xd_c00228{left:229.389267px;}
.xc_c00228{left:288.900000px;}
.x7_c00228{left:375.600000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls2_c00228{letter-spacing:2.666667pt;}
.ls3_c00228{letter-spacing:8.000000pt;}
.ls0_c00228{letter-spacing:21.333333pt;}
.ws4_c00228{word-spacing:-49.986667pt;}
.ws2_c00228{word-spacing:-39.989333pt;}
.ws3_c00228{word-spacing:-39.130667pt;}
.ws5_c00228{word-spacing:-26.338133pt;}
.ws1_c00228{word-spacing:-22.781333pt;}
.ws6_c00228{word-spacing:-17.448000pt;}
.ws0_c00228{word-spacing:-14.781333pt;}
.ws7_c00228{word-spacing:0.000000pt;}
._42_c00228{margin-left:-23.858667pt;}
._25_c00228{margin-left:-22.570667pt;}
._1a_c00228{margin-left:-21.445333pt;}
._2a_c00228{margin-left:-19.810667pt;}
._15_c00228{margin-left:-17.296000pt;}
._16_c00228{margin-left:-15.578667pt;}
._18_c00228{margin-left:-13.098667pt;}
._2f_c00228{margin-left:-12.082667pt;}
._2c_c00228{margin-left:-10.786667pt;}
._17_c00228{margin-left:-9.568000pt;}
._1_c00228{margin-left:-8.034667pt;}
._3_c00228{margin-left:-6.317333pt;}
._9_c00228{margin-left:-5.274667pt;}
._0_c00228{margin-left:-3.864000pt;}
._b_c00228{margin-left:-2.882667pt;}
._5_c00228{margin-left:-1.778667pt;}
._7_c00228{width:1.778667pt;}
._c_c00228{width:3.496000pt;}
._1c_c00228{width:4.538667pt;}
._1b_c00228{width:5.581333pt;}
._f_c00228{width:6.685333pt;}
._12_c00228{width:7.605333pt;}
._6_c00228{width:8.893333pt;}
._41_c00228{width:9.792000pt;}
._d_c00228{width:10.733333pt;}
._8_c00228{width:12.144000pt;}
._1f_c00228{width:13.309333pt;}
._27_c00228{width:14.917333pt;}
._1e_c00228{width:16.928000pt;}
._33_c00228{width:17.909333pt;}
._38_c00228{width:19.381333pt;}
._11_c00228{width:20.666667pt;}
._13_c00228{width:22.189333pt;}
._21_c00228{width:23.613333pt;}
._28_c00228{width:24.709333pt;}
._10_c00228{width:27.728000pt;}
._43_c00228{width:30.266667pt;}
._32_c00228{width:31.336000pt;}
._14_c00228{width:32.632000pt;}
._3d_c00228{width:37.320000pt;}
._3c_c00228{width:41.645333pt;}
._35_c00228{width:50.376000pt;}
._29_c00228{width:51.522667pt;}
._37_c00228{width:58.941333pt;}
._31_c00228{width:60.765333pt;}
._e_c00228{width:63.418667pt;}
._2_c00228{width:64.400000pt;}
._22_c00228{width:73.226667pt;}
._24_c00228{width:76.397333pt;}
._23_c00228{width:78.186667pt;}
._4_c00228{width:80.408000pt;}
._a_c00228{width:84.149333pt;}
._3b_c00228{width:87.894400pt;}
._36_c00228{width:89.976000pt;}
._39_c00228{width:95.496000pt;}
._34_c00228{width:96.445333pt;}
._3a_c00228{width:101.053333pt;}
._3f_c00228{width:108.130667pt;}
._2d_c00228{width:115.728000pt;}
._2b_c00228{width:135.362667pt;}
._1d_c00228{width:138.722667pt;}
._20_c00228{width:188.400000pt;}
._19_c00228{width:319.544000pt;}
._40_c00228{width:327.397333pt;}
._26_c00228{width:351.317333pt;}
._3e_c00228{width:452.261333pt;}
._2e_c00228{width:463.509333pt;}
._44_c00228{width:499.053333pt;}
._30_c00228{width:950.053333pt;}
.fs4_c00228{font-size:42.666667pt;}
.fs2_c00228{font-size:48.000000pt;}
.fs1_c00228{font-size:49.066667pt;}
.fs3_c00228{font-size:58.666667pt;}
.fs0_c00228{font-size:61.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y1c_c00228{bottom:2.760000pt;}
.y1b_c00228{bottom:6.425204pt;}
.y1a_c00228{bottom:53.720000pt;}
.y19_c00228{bottom:81.853333pt;}
.y18_c00228{bottom:109.986667pt;}
.y17_c00228{bottom:137.320000pt;}
.y16_c00228{bottom:154.120000pt;}
.y15_c00228{bottom:166.120000pt;}
.y14_c00228{bottom:202.386667pt;}
.y13_c00228{bottom:238.120000pt;}
.y12_c00228{bottom:266.653333pt;}
.y11_c00228{bottom:276.920000pt;}
.y10_c00228{bottom:295.453333pt;}
.yf_c00228{bottom:323.320000pt;}
.ye_c00228{bottom:333.586667pt;}
.yd_c00228{bottom:350.920000pt;}
.yc_c00228{bottom:367.186667pt;}
.yb_c00228{bottom:379.986667pt;}
.ya_c00228{bottom:408.920000pt;}
.y9_c00228{bottom:437.053333pt;}
.y8_c00228{bottom:465.586667pt;}
.y7_c00228{bottom:493.186667pt;}
.y6_c00228{bottom:523.186667pt;}
.y5_c00228{bottom:550.520000pt;}
.y4_c00228{bottom:579.586667pt;}
.y3_c00228{bottom:607.986667pt;}
.y2_c00228{bottom:637.186667pt;}
.y1_c00228{bottom:666.786667pt;}
.h4_c00228{height:11.733399pt;}
.h5_c00228{height:38.937500pt;}
.h3_c00228{height:71.785156pt;}
.h2_c00228{height:77.654948pt;}
.h0_c00228{height:725.266667pt;}
.h1_c00228{height:725.333333pt;}
.w2_c00228{width:93.222667pt;}
.w1_c00228{width:493.333333pt;}
.w0_c00228{width:493.466667pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:30.266667pt;}
.x2_c00228{left:31.466667pt;}
.x3_c00228{left:32.400000pt;}
.x5_c00228{left:33.600000pt;}
.x6_c00228{left:35.200000pt;}
.xa_c00228{left:36.266667pt;}
.x8_c00228{left:37.200000pt;}
.xb_c00228{left:38.133333pt;}
.x9_c00228{left:59.466667pt;}
.x4_c00228{left:83.200000pt;}
.xd_c00228{left:203.901571pt;}
.xc_c00228{left:256.800000pt;}
.x7_c00228{left:333.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_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_2f85bde27579ac63cc6143cb.woff2')format("woff");}.ff1_c00229{font-family:ff1_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:ff2_c00229;src:url('chunks/assets/font_d289f0e36019e54a09ffad3c.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.480469;font-style:normal;font-weight:normal;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_5a405e4448dcb61ad5284398.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_a828150b219cf90aa367627d.woff2')format("woff");}.ff4_c00229{font-family:ff4_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:ff5_c00229;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00229{font-family:ff5_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);}
.m1_c00229{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls3_c00229{letter-spacing:-3.000000px;}
.ls2_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.771000px;}
.ls1_c00229{letter-spacing:3.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-33.000000px;}
.ws0_c00229{word-spacing:-16.629000px;}
.ws2_c00229{word-spacing:0.000000px;}
._3b_c00229{margin-left:-36.570000px;}
._42_c00229{margin-left:-26.358000px;}
._2f_c00229{margin-left:-22.701000px;}
._41_c00229{margin-left:-20.436000px;}
._40_c00229{margin-left:-18.660000px;}
._d_c00229{margin-left:-15.663000px;}
._1e_c00229{margin-left:-14.628000px;}
._18_c00229{margin-left:-13.026000px;}
._37_c00229{margin-left:-11.409000px;}
._e_c00229{margin-left:-10.005000px;}
._a_c00229{margin-left:-8.472000px;}
._19_c00229{margin-left:-7.434000px;}
._6_c00229{margin-left:-6.432000px;}
._9_c00229{margin-left:-5.244000px;}
._7_c00229{margin-left:-4.209000px;}
._8_c00229{margin-left:-2.829000px;}
._f_c00229{margin-left:-1.311000px;}
._1_c00229{width:2.001000px;}
._14_c00229{width:3.288000px;}
._c_c00229{width:4.347000px;}
._2_c00229{width:5.727000px;}
._5_c00229{width:6.900000px;}
._15_c00229{width:8.004000px;}
._12_c00229{width:9.231000px;}
._b_c00229{width:10.410000px;}
._4_c00229{width:11.730000px;}
._1c_c00229{width:12.837000px;}
._35_c00229{width:13.908000px;}
._16_c00229{width:15.138000px;}
._1b_c00229{width:16.785000px;}
._1d_c00229{width:18.693000px;}
._38_c00229{width:19.752000px;}
._13_c00229{width:21.600000px;}
._11_c00229{width:22.863000px;}
._0_c00229{width:25.737000px;}
._2d_c00229{width:27.798000px;}
._29_c00229{width:34.992000px;}
._1a_c00229{width:36.120000px;}
._27_c00229{width:37.557000px;}
._17_c00229{width:39.246000px;}
._34_c00229{width:40.452000px;}
._23_c00229{width:41.676000px;}
._1f_c00229{width:45.747000px;}
._3c_c00229{width:47.688000px;}
._3_c00229{width:49.335000px;}
._22_c00229{width:55.959000px;}
._3f_c00229{width:65.415000px;}
._43_c00229{width:69.312000px;}
._28_c00229{width:71.553000px;}
._30_c00229{width:78.522000px;}
._25_c00229{width:87.768000px;}
._3a_c00229{width:93.081000px;}
._2a_c00229{width:99.540000px;}
._21_c00229{width:107.871000px;}
._39_c00229{width:109.113000px;}
._2e_c00229{width:117.885000px;}
._10_c00229{width:120.930000px;}
._24_c00229{width:131.001000px;}
._26_c00229{width:141.657000px;}
._3e_c00229{width:144.948000px;}
._36_c00229{width:150.180000px;}
._3d_c00229{width:153.717000px;}
._2c_c00229{width:173.469000px;}
._2b_c00229{width:206.760000px;}
._31_c00229{width:218.301000px;}
._20_c00229{width:230.313000px;}
._33_c00229{width:284.817000px;}
._32_c00229{width:1029.435000px;}
.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:66.000000px;}
.fs0_c00229{font-size:69.000000px;}
.fs2_c00229{font-size:72.000000px;}
.fs3_c00229{font-size:78.000000px;}
.y0_c00229{bottom:0.000000px;}
.y19_c00229{bottom:3.105000px;}
.y18_c00229{bottom:7.228369px;}
.y17_c00229{bottom:107.370000px;}
.y16_c00229{bottom:131.970000px;}
.y15_c00229{bottom:157.320000px;}
.y14_c00229{bottom:182.520000px;}
.y13_c00229{bottom:207.120000px;}
.y12_c00229{bottom:232.920000px;}
.y11_c00229{bottom:257.820000px;}
.y10_c00229{bottom:307.470000px;}
.yf_c00229{bottom:332.370000px;}
.ye_c00229{bottom:380.670000px;}
.yd_c00229{bottom:406.020000px;}
.yc_c00229{bottom:430.920000px;}
.yb_c00229{bottom:455.220000px;}
.ya_c00229{bottom:479.970000px;}
.y9_c00229{bottom:504.870000px;}
.y8_c00229{bottom:530.520000px;}
.y7_c00229{bottom:579.870000px;}
.y6_c00229{bottom:605.070000px;}
.y5_c00229{bottom:630.420000px;}
.y4_c00229{bottom:680.670000px;}
.y3_c00229{bottom:704.970000px;}
.y2_c00229{bottom:730.020000px;}
.y1_c00229{bottom:762.420000px;}
.h6_c00229{height:13.200073px;}
.h7_c00229{height:43.804688px;}
.h3_c00229{height:80.758301px;}
.h2_c00229{height:87.361816px;}
.h4_c00229{height:91.160156px;}
.h5_c00229{height:98.756836px;}
.h0_c00229{height:829.950000px;}
.h1_c00229{height:830.250000px;}
.w2_c00229{width:104.875500px;}
.w0_c00229{width:572.100000px;}
.w1_c00229{width:572.250000px;}
.x0_c00229{left:0.000000px;}
.xf_c00229{left:31.350000px;}
.x7_c00229{left:34.500000px;}
.x3_c00229{left:37.200000px;}
.x6_c00229{left:39.600000px;}
.xe_c00229{left:48.300000px;}
.x9_c00229{left:96.750000px;}
.xd_c00229{left:97.800000px;}
.xb_c00229{left:99.150000px;}
.x1_c00229{left:100.350000px;}
.x5_c00229{left:102.600000px;}
.x2_c00229{left:103.950000px;}
.xc_c00229{left:122.100000px;}
.xa_c00229{left:124.200000px;}
.x4_c00229{left:126.300000px;}
.x8_c00229{left:132.000000px;}
.x10_c00229{left:237.864258px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls3_c00229{letter-spacing:-2.666667pt;}
.ls2_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.685333pt;}
.ls1_c00229{letter-spacing:2.666667pt;}
.ws1_c00229{word-spacing:-29.333333pt;}
.ws0_c00229{word-spacing:-14.781333pt;}
.ws2_c00229{word-spacing:0.000000pt;}
._3b_c00229{margin-left:-32.506667pt;}
._42_c00229{margin-left:-23.429333pt;}
._2f_c00229{margin-left:-20.178667pt;}
._41_c00229{margin-left:-18.165333pt;}
._40_c00229{margin-left:-16.586667pt;}
._d_c00229{margin-left:-13.922667pt;}
._1e_c00229{margin-left:-13.002667pt;}
._18_c00229{margin-left:-11.578667pt;}
._37_c00229{margin-left:-10.141333pt;}
._e_c00229{margin-left:-8.893333pt;}
._a_c00229{margin-left:-7.530667pt;}
._19_c00229{margin-left:-6.608000pt;}
._6_c00229{margin-left:-5.717333pt;}
._9_c00229{margin-left:-4.661333pt;}
._7_c00229{margin-left:-3.741333pt;}
._8_c00229{margin-left:-2.514667pt;}
._f_c00229{margin-left:-1.165333pt;}
._1_c00229{width:1.778667pt;}
._14_c00229{width:2.922667pt;}
._c_c00229{width:3.864000pt;}
._2_c00229{width:5.090667pt;}
._5_c00229{width:6.133333pt;}
._15_c00229{width:7.114667pt;}
._12_c00229{width:8.205333pt;}
._b_c00229{width:9.253333pt;}
._4_c00229{width:10.426667pt;}
._1c_c00229{width:11.410667pt;}
._35_c00229{width:12.362667pt;}
._16_c00229{width:13.456000pt;}
._1b_c00229{width:14.920000pt;}
._1d_c00229{width:16.616000pt;}
._38_c00229{width:17.557333pt;}
._13_c00229{width:19.200000pt;}
._11_c00229{width:20.322667pt;}
._0_c00229{width:22.877333pt;}
._2d_c00229{width:24.709333pt;}
._29_c00229{width:31.104000pt;}
._1a_c00229{width:32.106667pt;}
._27_c00229{width:33.384000pt;}
._17_c00229{width:34.885333pt;}
._34_c00229{width:35.957333pt;}
._23_c00229{width:37.045333pt;}
._1f_c00229{width:40.664000pt;}
._3c_c00229{width:42.389333pt;}
._3_c00229{width:43.853333pt;}
._22_c00229{width:49.741333pt;}
._3f_c00229{width:58.146667pt;}
._43_c00229{width:61.610667pt;}
._28_c00229{width:63.602667pt;}
._30_c00229{width:69.797333pt;}
._25_c00229{width:78.016000pt;}
._3a_c00229{width:82.738667pt;}
._2a_c00229{width:88.480000pt;}
._21_c00229{width:95.885333pt;}
._39_c00229{width:96.989333pt;}
._2e_c00229{width:104.786667pt;}
._10_c00229{width:107.493333pt;}
._24_c00229{width:116.445333pt;}
._26_c00229{width:125.917333pt;}
._3e_c00229{width:128.842667pt;}
._36_c00229{width:133.493333pt;}
._3d_c00229{width:136.637333pt;}
._2c_c00229{width:154.194667pt;}
._2b_c00229{width:183.786667pt;}
._31_c00229{width:194.045333pt;}
._20_c00229{width:204.722667pt;}
._33_c00229{width:253.170667pt;}
._32_c00229{width:915.053333pt;}
.fs4_c00229{font-size:42.666667pt;}
.fs1_c00229{font-size:58.666667pt;}
.fs0_c00229{font-size:61.333333pt;}
.fs2_c00229{font-size:64.000000pt;}
.fs3_c00229{font-size:69.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y19_c00229{bottom:2.760000pt;}
.y18_c00229{bottom:6.425217pt;}
.y17_c00229{bottom:95.440000pt;}
.y16_c00229{bottom:117.306667pt;}
.y15_c00229{bottom:139.840000pt;}
.y14_c00229{bottom:162.240000pt;}
.y13_c00229{bottom:184.106667pt;}
.y12_c00229{bottom:207.040000pt;}
.y11_c00229{bottom:229.173333pt;}
.y10_c00229{bottom:273.306667pt;}
.yf_c00229{bottom:295.440000pt;}
.ye_c00229{bottom:338.373333pt;}
.yd_c00229{bottom:360.906667pt;}
.yc_c00229{bottom:383.040000pt;}
.yb_c00229{bottom:404.640000pt;}
.ya_c00229{bottom:426.640000pt;}
.y9_c00229{bottom:448.773333pt;}
.y8_c00229{bottom:471.573333pt;}
.y7_c00229{bottom:515.440000pt;}
.y6_c00229{bottom:537.840000pt;}
.y5_c00229{bottom:560.373333pt;}
.y4_c00229{bottom:605.040000pt;}
.y3_c00229{bottom:626.640000pt;}
.y2_c00229{bottom:648.906667pt;}
.y1_c00229{bottom:677.706667pt;}
.h6_c00229{height:11.733399pt;}
.h7_c00229{height:38.937500pt;}
.h3_c00229{height:71.785156pt;}
.h2_c00229{height:77.654948pt;}
.h4_c00229{height:81.031250pt;}
.h5_c00229{height:87.783854pt;}
.h0_c00229{height:737.733333pt;}
.h1_c00229{height:738.000000pt;}
.w2_c00229{width:93.222667pt;}
.w0_c00229{width:508.533333pt;}
.w1_c00229{width:508.666667pt;}
.x0_c00229{left:0.000000pt;}
.xf_c00229{left:27.866667pt;}
.x7_c00229{left:30.666667pt;}
.x3_c00229{left:33.066667pt;}
.x6_c00229{left:35.200000pt;}
.xe_c00229{left:42.933333pt;}
.x9_c00229{left:86.000000pt;}
.xd_c00229{left:86.933333pt;}
.xb_c00229{left:88.133333pt;}
.x1_c00229{left:89.200000pt;}
.x5_c00229{left:91.200000pt;}
.x2_c00229{left:92.400000pt;}
.xc_c00229{left:108.533333pt;}
.xa_c00229{left:110.400000pt;}
.x4_c00229{left:112.266667pt;}
.x8_c00229{left:117.333333pt;}
.x10_c00229{left:211.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_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_3b0bb9faae0c641c5f4ea477.woff2')format("woff");}.ff1_c00230{font-family:ff1_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:ff2_c00230;src:url('chunks/assets/font_c99d2b863768c308882dcb07.woff2')format("woff");}.ff2_c00230{font-family:ff2_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:ff3_c00230;src:url('chunks/assets/font_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls1_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:1.800000px;}
.ls2_c00230{letter-spacing:3.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;}
}
.ws1_c00230{word-spacing:-19.629000px;}
.ws0_c00230{word-spacing:-16.629000px;}
.ws2_c00230{word-spacing:0.000000px;}
._1a_c00230{margin-left:-25.896000px;}
._16_c00230{margin-left:-16.698000px;}
._f_c00230{margin-left:-14.697000px;}
._18_c00230{margin-left:-9.777000px;}
._a_c00230{margin-left:-8.694000px;}
._c_c00230{margin-left:-7.590000px;}
._6_c00230{margin-left:-5.796000px;}
._17_c00230{margin-left:-4.740000px;}
._3_c00230{margin-left:-3.726000px;}
._2_c00230{margin-left:-2.553000px;}
._4_c00230{margin-left:-1.449000px;}
._7_c00230{width:2.001000px;}
._10_c00230{width:3.255000px;}
._1_c00230{width:4.347000px;}
._0_c00230{width:6.348000px;}
._8_c00230{width:8.211000px;}
._14_c00230{width:10.041000px;}
._d_c00230{width:11.247000px;}
._12_c00230{width:12.753000px;}
._9_c00230{width:14.490000px;}
._1b_c00230{width:17.304000px;}
._15_c00230{width:19.527000px;}
._13_c00230{width:21.528000px;}
._b_c00230{width:25.875000px;}
._1c_c00230{width:28.167000px;}
._11_c00230{width:31.029000px;}
._e_c00230{width:35.811000px;}
._1d_c00230{width:38.376000px;}
._19_c00230{width:154.104000px;}
._5_c00230{width:511.374000px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(128,128,128);}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:48.000000px;}
.fs1_c00230{font-size:66.000000px;}
.fs0_c00230{font-size:69.000000px;}
.y0_c00230{bottom:0.000000px;}
.ye_c00230{bottom:3.105000px;}
.yd_c00230{bottom:7.228371px;}
.yc_c00230{bottom:61.065000px;}
.yb_c00230{bottom:502.665000px;}
.ya_c00230{bottom:552.465000px;}
.y9_c00230{bottom:577.515000px;}
.y8_c00230{bottom:602.565000px;}
.y7_c00230{bottom:627.465000px;}
.y6_c00230{bottom:652.365000px;}
.y5_c00230{bottom:677.115000px;}
.y4_c00230{bottom:702.315000px;}
.y3_c00230{bottom:727.065000px;}
.y2_c00230{bottom:751.965000px;}
.y1_c00230{bottom:776.715000px;}
.h4_c00230{height:13.200074px;}
.h5_c00230{height:43.804688px;}
.h3_c00230{height:80.758301px;}
.h2_c00230{height:87.361816px;}
.h0_c00230{height:825.675000px;}
.h1_c00230{height:825.750000px;}
.w2_c00230{width:104.875500px;}
.w0_c00230{width:562.125000px;}
.w1_c00230{width:562.500000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:38.100000px;}
.x3_c00230{left:41.850000px;}
.x4_c00230{left:42.900000px;}
.x5_c00230{left:65.550000px;}
.x6_c00230{left:96.300000px;}
.x8_c00230{left:112.350000px;}
.x1_c00230{left:201.600000px;}
.xa_c00230{left:232.876740px;}
.x7_c00230{left:241.650000px;}
.x9_c00230{left:418.950000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:1.600000pt;}
.ls2_c00230{letter-spacing:2.666667pt;}
.ws1_c00230{word-spacing:-17.448000pt;}
.ws0_c00230{word-spacing:-14.781333pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._1a_c00230{margin-left:-23.018667pt;}
._16_c00230{margin-left:-14.842667pt;}
._f_c00230{margin-left:-13.064000pt;}
._18_c00230{margin-left:-8.690667pt;}
._a_c00230{margin-left:-7.728000pt;}
._c_c00230{margin-left:-6.746667pt;}
._6_c00230{margin-left:-5.152000pt;}
._17_c00230{margin-left:-4.213333pt;}
._3_c00230{margin-left:-3.312000pt;}
._2_c00230{margin-left:-2.269333pt;}
._4_c00230{margin-left:-1.288000pt;}
._7_c00230{width:1.778667pt;}
._10_c00230{width:2.893333pt;}
._1_c00230{width:3.864000pt;}
._0_c00230{width:5.642667pt;}
._8_c00230{width:7.298667pt;}
._14_c00230{width:8.925333pt;}
._d_c00230{width:9.997333pt;}
._12_c00230{width:11.336000pt;}
._9_c00230{width:12.880000pt;}
._1b_c00230{width:15.381333pt;}
._15_c00230{width:17.357333pt;}
._13_c00230{width:19.136000pt;}
._b_c00230{width:23.000000pt;}
._1c_c00230{width:25.037333pt;}
._11_c00230{width:27.581333pt;}
._e_c00230{width:31.832000pt;}
._1d_c00230{width:34.112000pt;}
._19_c00230{width:136.981333pt;}
._5_c00230{width:454.554667pt;}
.fs2_c00230{font-size:42.666667pt;}
.fs1_c00230{font-size:58.666667pt;}
.fs0_c00230{font-size:61.333333pt;}
.y0_c00230{bottom:0.000000pt;}
.ye_c00230{bottom:2.760000pt;}
.yd_c00230{bottom:6.425219pt;}
.yc_c00230{bottom:54.280000pt;}
.yb_c00230{bottom:446.813333pt;}
.ya_c00230{bottom:491.080000pt;}
.y9_c00230{bottom:513.346667pt;}
.y8_c00230{bottom:535.613333pt;}
.y7_c00230{bottom:557.746667pt;}
.y6_c00230{bottom:579.880000pt;}
.y5_c00230{bottom:601.880000pt;}
.y4_c00230{bottom:624.280000pt;}
.y3_c00230{bottom:646.280000pt;}
.y2_c00230{bottom:668.413333pt;}
.y1_c00230{bottom:690.413333pt;}
.h4_c00230{height:11.733399pt;}
.h5_c00230{height:38.937500pt;}
.h3_c00230{height:71.785156pt;}
.h2_c00230{height:77.654948pt;}
.h0_c00230{height:733.933333pt;}
.h1_c00230{height:734.000000pt;}
.w2_c00230{width:93.222667pt;}
.w0_c00230{width:499.666667pt;}
.w1_c00230{width:500.000000pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:33.866667pt;}
.x3_c00230{left:37.200000pt;}
.x4_c00230{left:38.133333pt;}
.x5_c00230{left:58.266667pt;}
.x6_c00230{left:85.600000pt;}
.x8_c00230{left:99.866667pt;}
.x1_c00230{left:179.200000pt;}
.xa_c00230{left:207.001546pt;}
.x7_c00230{left:214.800000pt;}
.x9_c00230{left:372.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9f9da26d8e6a9b547a37905.woff2')format("woff");}.ff1_c00231{font-family:ff1_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:ff2_c00231;src:url('chunks/assets/font_c4d0e3c0bc8506df949bf0c0.woff2')format("woff");}.ff2_c00231{font-family:ff2_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:ff3_c00231;src:url('chunks/assets/font_79ba8a74500892062df7bc7c.woff2')format("woff");}.ff3_c00231{font-family:ff3_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:ff4_c00231;src:url('chunks/assets/font_385657f7b0abe671626a794d.woff2')format("woff");}.ff4_c00231{font-family:ff4_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:ff5_c00231;src:url('chunks/assets/font_3c0086d28f07eccbf61a52d4.woff2')format("woff");}.ff5_c00231{font-family:ff5_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:ff6_c00231;src:url('chunks/assets/font_497a547055ec06879491e4e0.woff2')format("woff");}.ff6_c00231{font-family:ff6_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:ff7_c00231;src:url('chunks/assets/font_2bb40ec4f6767c77c32a6e96.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00231;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff8_c00231{font-family:ff8_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:ff9_c00231;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00231{font-family:ff9_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;}
.ls7_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:1.140000px;}
.ls5_c00231{letter-spacing:3.000000px;}
.ls3_c00231{letter-spacing:16.371000px;}
.ls2_c00231{letter-spacing:27.000000px;}
.ls6_c00231{letter-spacing:30.000000px;}
.ls0_c00231{letter-spacing:37.371000px;}
.ls4_c00231{letter-spacing:66.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:-146.523000px;}
.ws5_c00231{word-spacing:-44.022000px;}
.ws4_c00231{word-spacing:-40.014000px;}
.ws3_c00231{word-spacing:-37.411200px;}
.ws6_c00231{word-spacing:-16.629000px;}
.ws7_c00231{word-spacing:0.000000px;}
.ws2_c00231{word-spacing:1.953600px;}
.ws1_c00231{word-spacing:8.244000px;}
._1a_c00231{margin-left:-38.421000px;}
._15_c00231{margin-left:-30.628800px;}
._16_c00231{margin-left:-26.942400px;}
._22_c00231{margin-left:-20.733000px;}
._1c_c00231{margin-left:-16.386000px;}
._17_c00231{margin-left:-15.017400px;}
._1e_c00231{margin-left:-11.628000px;}
._1d_c00231{margin-left:-10.038000px;}
._0_c00231{margin-left:-8.487000px;}
._19_c00231{margin-left:-7.452000px;}
._c_c00231{margin-left:-5.472000px;}
._13_c00231{margin-left:-3.891000px;}
._11_c00231{margin-left:-2.385000px;}
._14_c00231{margin-left:-1.362000px;}
._f_c00231{width:1.710000px;}
._e_c00231{width:2.964000px;}
._10_c00231{width:4.140000px;}
._8_c00231{width:5.313000px;}
._18_c00231{width:6.717000px;}
._12_c00231{width:8.197800px;}
._b_c00231{width:10.231200px;}
._7_c00231{width:12.039000px;}
._5_c00231{width:13.110000px;}
._6_c00231{width:14.871000px;}
._a_c00231{width:16.353000px;}
._9_c00231{width:18.147000px;}
._2_c00231{width:19.485600px;}
._21_c00231{width:21.448200px;}
._3_c00231{width:23.680800px;}
._1b_c00231{width:26.979000px;}
._1_c00231{width:28.262400px;}
._d_c00231{width:29.298000px;}
._4_c00231{width:35.604000px;}
._1f_c00231{width:37.362600px;}
._20_c00231{width:38.746200px;}
.fc2_c00231{color:transparent;}
.fc1_c00231{color:rgb(128,128,128);}
.fc0_c00231{color:rgb(0,0,0);}
.fs5_c00231{font-size:43.200000px;}
.fs7_c00231{font-size:48.000000px;}
.fs4_c00231{font-size:54.000000px;}
.fs1_c00231{font-size:55.200000px;}
.fs3_c00231{font-size:57.000000px;}
.fs6_c00231{font-size:66.000000px;}
.fs2_c00231{font-size:69.000000px;}
.fs0_c00231{font-size:207.000000px;}
.y0_c00231{bottom:0.000000px;}
.y16_c00231{bottom:3.105000px;}
.y15_c00231{bottom:7.228369px;}
.y14_c00231{bottom:47.520000px;}
.y13_c00231{bottom:73.470000px;}
.y12_c00231{bottom:98.220000px;}
.y11_c00231{bottom:123.120000px;}
.y10_c00231{bottom:149.820000px;}
.yf_c00231{bottom:174.120000px;}
.ye_c00231{bottom:199.170000px;}
.yd_c00231{bottom:224.370000px;}
.yc_c00231{bottom:249.720000px;}
.yb_c00231{bottom:274.770000px;}
.ya_c00231{bottom:299.370000px;}
.y9_c00231{bottom:322.020000px;}
.y8_c00231{bottom:347.520000px;}
.y7_c00231{bottom:371.520000px;}
.y6_c00231{bottom:397.170000px;}
.y5_c00231{bottom:421.920000px;}
.y4_c00231{bottom:446.820000px;}
.y3_c00231{bottom:550.770000px;}
.y2_c00231{bottom:575.820000px;}
.y1_c00231{bottom:606.870000px;}
.h6_c00231{height:13.200073px;}
.h7_c00231{height:43.804688px;}
.h4_c00231{height:55.942383px;}
.h5_c00231{height:80.758301px;}
.h3_c00231{height:87.361816px;}
.h2_c00231{height:216.936000px;}
.h0_c00231{height:816.450000px;}
.h1_c00231{height:816.750000px;}
.w2_c00231{width:104.875500px;}
.w0_c00231{width:562.125000px;}
.w1_c00231{width:562.500000px;}
.x0_c00231{left:0.000000px;}
.x8_c00231{left:85.500000px;}
.x2_c00231{left:87.750000px;}
.x9_c00231{left:89.400000px;}
.xa_c00231{left:109.800000px;}
.x1_c00231{left:187.350000px;}
.x3_c00231{left:211.200000px;}
.xc_c00231{left:232.876740px;}
.x4_c00231{left:248.400000px;}
.x5_c00231{left:261.600000px;}
.x6_c00231{left:262.950000px;}
.x7_c00231{left:286.950000px;}
.xb_c00231{left:498.450000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls7_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:1.013333pt;}
.ls5_c00231{letter-spacing:2.666667pt;}
.ls3_c00231{letter-spacing:14.552000pt;}
.ls2_c00231{letter-spacing:24.000000pt;}
.ls6_c00231{letter-spacing:26.666667pt;}
.ls0_c00231{letter-spacing:33.218667pt;}
.ls4_c00231{letter-spacing:58.666667pt;}
.ws0_c00231{word-spacing:-130.242667pt;}
.ws5_c00231{word-spacing:-39.130667pt;}
.ws4_c00231{word-spacing:-35.568000pt;}
.ws3_c00231{word-spacing:-33.254400pt;}
.ws6_c00231{word-spacing:-14.781333pt;}
.ws7_c00231{word-spacing:0.000000pt;}
.ws2_c00231{word-spacing:1.736533pt;}
.ws1_c00231{word-spacing:7.328000pt;}
._1a_c00231{margin-left:-34.152000pt;}
._15_c00231{margin-left:-27.225600pt;}
._16_c00231{margin-left:-23.948800pt;}
._22_c00231{margin-left:-18.429333pt;}
._1c_c00231{margin-left:-14.565333pt;}
._17_c00231{margin-left:-13.348800pt;}
._1e_c00231{margin-left:-10.336000pt;}
._1d_c00231{margin-left:-8.922667pt;}
._0_c00231{margin-left:-7.544000pt;}
._19_c00231{margin-left:-6.624000pt;}
._c_c00231{margin-left:-4.864000pt;}
._13_c00231{margin-left:-3.458667pt;}
._11_c00231{margin-left:-2.120000pt;}
._14_c00231{margin-left:-1.210667pt;}
._f_c00231{width:1.520000pt;}
._e_c00231{width:2.634667pt;}
._10_c00231{width:3.680000pt;}
._8_c00231{width:4.722667pt;}
._18_c00231{width:5.970667pt;}
._12_c00231{width:7.286933pt;}
._b_c00231{width:9.094400pt;}
._7_c00231{width:10.701333pt;}
._5_c00231{width:11.653333pt;}
._6_c00231{width:13.218667pt;}
._a_c00231{width:14.536000pt;}
._9_c00231{width:16.130667pt;}
._2_c00231{width:17.320533pt;}
._21_c00231{width:19.065067pt;}
._3_c00231{width:21.049600pt;}
._1b_c00231{width:23.981333pt;}
._1_c00231{width:25.122133pt;}
._d_c00231{width:26.042667pt;}
._4_c00231{width:31.648000pt;}
._1f_c00231{width:33.211200pt;}
._20_c00231{width:34.441067pt;}
.fs5_c00231{font-size:38.400000pt;}
.fs7_c00231{font-size:42.666667pt;}
.fs4_c00231{font-size:48.000000pt;}
.fs1_c00231{font-size:49.066667pt;}
.fs3_c00231{font-size:50.666667pt;}
.fs6_c00231{font-size:58.666667pt;}
.fs2_c00231{font-size:61.333333pt;}
.fs0_c00231{font-size:184.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y16_c00231{bottom:2.760000pt;}
.y15_c00231{bottom:6.425217pt;}
.y14_c00231{bottom:42.240000pt;}
.y13_c00231{bottom:65.306667pt;}
.y12_c00231{bottom:87.306667pt;}
.y11_c00231{bottom:109.440000pt;}
.y10_c00231{bottom:133.173333pt;}
.yf_c00231{bottom:154.773333pt;}
.ye_c00231{bottom:177.040000pt;}
.yd_c00231{bottom:199.440000pt;}
.yc_c00231{bottom:221.973333pt;}
.yb_c00231{bottom:244.240000pt;}
.ya_c00231{bottom:266.106667pt;}
.y9_c00231{bottom:286.240000pt;}
.y8_c00231{bottom:308.906667pt;}
.y7_c00231{bottom:330.240000pt;}
.y6_c00231{bottom:353.040000pt;}
.y5_c00231{bottom:375.040000pt;}
.y4_c00231{bottom:397.173333pt;}
.y3_c00231{bottom:489.573333pt;}
.y2_c00231{bottom:511.840000pt;}
.y1_c00231{bottom:539.440000pt;}
.h6_c00231{height:11.733399pt;}
.h7_c00231{height:38.937500pt;}
.h4_c00231{height:49.726562pt;}
.h5_c00231{height:71.785156pt;}
.h3_c00231{height:77.654948pt;}
.h2_c00231{height:192.832000pt;}
.h0_c00231{height:725.733333pt;}
.h1_c00231{height:726.000000pt;}
.w2_c00231{width:93.222667pt;}
.w0_c00231{width:499.666667pt;}
.w1_c00231{width:500.000000pt;}
.x0_c00231{left:0.000000pt;}
.x8_c00231{left:76.000000pt;}
.x2_c00231{left:78.000000pt;}
.x9_c00231{left:79.466667pt;}
.xa_c00231{left:97.600000pt;}
.x1_c00231{left:166.533333pt;}
.x3_c00231{left:187.733333pt;}
.xc_c00231{left:207.001546pt;}
.x4_c00231{left:220.800000pt;}
.x5_c00231{left:232.533333pt;}
.x6_c00231{left:233.733333pt;}
.x7_c00231{left:255.066667pt;}
.xb_c00231{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_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_aec7dffcf8766d3cb88dc0ed.woff2')format("woff");}.ff1_c00232{font-family:ff1_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:ff2_c00232;src:url('chunks/assets/font_1fcb937d6d825fbf74357e6b.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;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_c00232;src:url('chunks/assets/font_bfb3975f276437ac5c6696d5.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_accc27e79ecd0161b192bd59.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;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_c00232;src:url('chunks/assets/font_36ccb2feccaa888ae5aca566.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00232{font-family:ff6_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;}
.ls2_c00232{letter-spacing:0.000000px;}
.ls3_c00232{letter-spacing:3.000000px;}
.ls0_c00232{letter-spacing:21.639000px;}
.ls1_c00232{letter-spacing:24.300000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00232{word-spacing:-19.629000px;}
.ws0_c00232{word-spacing:-18.798000px;}
.ws2_c00232{word-spacing:-16.629000px;}
.ws3_c00232{word-spacing:0.000000px;}
._1b_c00232{margin-left:-43.596000px;}
._19_c00232{margin-left:-27.300000px;}
._17_c00232{margin-left:-25.713000px;}
._27_c00232{margin-left:-24.180000px;}
._23_c00232{margin-left:-22.557000px;}
._15_c00232{margin-left:-21.450000px;}
._25_c00232{margin-left:-20.280000px;}
._26_c00232{margin-left:-18.930000px;}
._6_c00232{margin-left:-17.706000px;}
._e_c00232{margin-left:-16.068000px;}
._f_c00232{margin-left:-14.820000px;}
._4_c00232{margin-left:-13.182000px;}
._5_c00232{margin-left:-12.012000px;}
._8_c00232{margin-left:-10.218000px;}
._7_c00232{margin-left:-8.970000px;}
._c_c00232{margin-left:-7.176000px;}
._0_c00232{margin-left:-5.616000px;}
._2_c00232{margin-left:-4.524000px;}
._1_c00232{margin-left:-2.886000px;}
._3_c00232{margin-left:-1.404000px;}
._b_c00232{width:1.092000px;}
._9_c00232{width:2.496000px;}
._a_c00232{width:4.290000px;}
._13_c00232{width:5.850000px;}
._11_c00232{width:6.864000px;}
._14_c00232{width:8.580000px;}
._10_c00232{width:10.116000px;}
._18_c00232{width:11.178000px;}
._16_c00232{width:12.300000px;}
._21_c00232{width:13.938000px;}
._12_c00232{width:15.210000px;}
._1a_c00232{width:16.302000px;}
._20_c00232{width:19.788000px;}
._1d_c00232{width:22.287000px;}
._1f_c00232{width:33.120000px;}
._1e_c00232{width:35.310000px;}
._d_c00232{width:37.674000px;}
._29_c00232{width:43.128000px;}
._22_c00232{width:46.023000px;}
._28_c00232{width:64.473000px;}
._24_c00232{width:75.141000px;}
._2b_c00232{width:138.333000px;}
._1c_c00232{width:190.329000px;}
._2c_c00232{width:406.866000px;}
._2a_c00232{width:578.358000px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(128,128,128);}
.fc0_c00232{color:rgb(0,0,0);}
.fs4_c00232{font-size:48.000000px;}
.fs3_c00232{font-size:63.000000px;}
.fs1_c00232{font-size:69.000000px;}
.fs2_c00232{font-size:75.000000px;}
.fs0_c00232{font-size:78.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1f_c00232{bottom:3.105000px;}
.y1e_c00232{bottom:7.228371px;}
.y1d_c00232{bottom:74.715000px;}
.y1c_c00232{bottom:94.215000px;}
.y1b_c00232{bottom:120.915000px;}
.y1a_c00232{bottom:145.215000px;}
.y19_c00232{bottom:169.815000px;}
.y18_c00232{bottom:195.465000px;}
.y17_c00232{bottom:220.515000px;}
.y16_c00232{bottom:245.415000px;}
.y15_c00232{bottom:271.365000px;}
.y14_c00232{bottom:295.665000px;}
.y13_c00232{bottom:320.265000px;}
.y12_c00232{bottom:343.965000px;}
.y11_c00232{bottom:369.615000px;}
.y10_c00232{bottom:394.665000px;}
.yf_c00232{bottom:419.265000px;}
.ye_c00232{bottom:441.915000px;}
.yd_c00232{bottom:468.765000px;}
.yc_c00232{bottom:493.815000px;}
.yb_c00232{bottom:518.415000px;}
.ya_c00232{bottom:543.015000px;}
.y9_c00232{bottom:567.465000px;}
.y8_c00232{bottom:592.665000px;}
.y7_c00232{bottom:617.715000px;}
.y6_c00232{bottom:642.615000px;}
.y5_c00232{bottom:667.665000px;}
.y4_c00232{bottom:692.865000px;}
.y3_c00232{bottom:717.915000px;}
.y2_c00232{bottom:742.965000px;}
.y1_c00232{bottom:768.165000px;}
.h6_c00232{height:13.200074px;}
.h7_c00232{height:43.804688px;}
.h5_c00232{height:80.758301px;}
.h4_c00232{height:87.361816px;}
.h2_c00232{height:91.291992px;}
.h3_c00232{height:98.756836px;}
.h0_c00232{height:825.675000px;}
.h1_c00232{height:825.750000px;}
.w2_c00232{width:104.875500px;}
.w0_c00232{width:562.125000px;}
.w1_c00232{width:562.500000px;}
.x0_c00232{left:0.000000px;}
.x2_c00232{left:25.650000px;}
.x3_c00232{left:27.450000px;}
.x4_c00232{left:28.650000px;}
.x5_c00232{left:30.000000px;}
.x7_c00232{left:31.050000px;}
.x8_c00232{left:32.850000px;}
.xa_c00232{left:34.050000px;}
.xd_c00232{left:36.000000px;}
.xc_c00232{left:37.050000px;}
.x1_c00232{left:51.300000px;}
.x6_c00232{left:56.100000px;}
.x9_c00232{left:57.450000px;}
.xb_c00232{left:60.300000px;}
.xe_c00232{left:70.500000px;}
.xf_c00232{left:87.600000px;}
.x10_c00232{left:232.876740px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls2_c00232{letter-spacing:0.000000pt;}
.ls3_c00232{letter-spacing:2.666667pt;}
.ls0_c00232{letter-spacing:19.234667pt;}
.ls1_c00232{letter-spacing:21.600000pt;}
.ws1_c00232{word-spacing:-17.448000pt;}
.ws0_c00232{word-spacing:-16.709333pt;}
.ws2_c00232{word-spacing:-14.781333pt;}
.ws3_c00232{word-spacing:0.000000pt;}
._1b_c00232{margin-left:-38.752000pt;}
._19_c00232{margin-left:-24.266667pt;}
._17_c00232{margin-left:-22.856000pt;}
._27_c00232{margin-left:-21.493333pt;}
._23_c00232{margin-left:-20.050667pt;}
._15_c00232{margin-left:-19.066667pt;}
._25_c00232{margin-left:-18.026667pt;}
._26_c00232{margin-left:-16.826667pt;}
._6_c00232{margin-left:-15.738667pt;}
._e_c00232{margin-left:-14.282667pt;}
._f_c00232{margin-left:-13.173333pt;}
._4_c00232{margin-left:-11.717333pt;}
._5_c00232{margin-left:-10.677333pt;}
._8_c00232{margin-left:-9.082667pt;}
._7_c00232{margin-left:-7.973333pt;}
._c_c00232{margin-left:-6.378667pt;}
._0_c00232{margin-left:-4.992000pt;}
._2_c00232{margin-left:-4.021333pt;}
._1_c00232{margin-left:-2.565333pt;}
._3_c00232{margin-left:-1.248000pt;}
._b_c00232{width:0.970667pt;}
._9_c00232{width:2.218667pt;}
._a_c00232{width:3.813333pt;}
._13_c00232{width:5.200000pt;}
._11_c00232{width:6.101333pt;}
._14_c00232{width:7.626667pt;}
._10_c00232{width:8.992000pt;}
._18_c00232{width:9.936000pt;}
._16_c00232{width:10.933333pt;}
._21_c00232{width:12.389333pt;}
._12_c00232{width:13.520000pt;}
._1a_c00232{width:14.490667pt;}
._20_c00232{width:17.589333pt;}
._1d_c00232{width:19.810667pt;}
._1f_c00232{width:29.440000pt;}
._1e_c00232{width:31.386667pt;}
._d_c00232{width:33.488000pt;}
._29_c00232{width:38.336000pt;}
._22_c00232{width:40.909333pt;}
._28_c00232{width:57.309333pt;}
._24_c00232{width:66.792000pt;}
._2b_c00232{width:122.962667pt;}
._1c_c00232{width:169.181333pt;}
._2c_c00232{width:361.658667pt;}
._2a_c00232{width:514.096000pt;}
.fs4_c00232{font-size:42.666667pt;}
.fs3_c00232{font-size:56.000000pt;}
.fs1_c00232{font-size:61.333333pt;}
.fs2_c00232{font-size:66.666667pt;}
.fs0_c00232{font-size:69.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y1f_c00232{bottom:2.760000pt;}
.y1e_c00232{bottom:6.425219pt;}
.y1d_c00232{bottom:66.413333pt;}
.y1c_c00232{bottom:83.746667pt;}
.y1b_c00232{bottom:107.480000pt;}
.y1a_c00232{bottom:129.080000pt;}
.y19_c00232{bottom:150.946667pt;}
.y18_c00232{bottom:173.746667pt;}
.y17_c00232{bottom:196.013333pt;}
.y16_c00232{bottom:218.146667pt;}
.y15_c00232{bottom:241.213333pt;}
.y14_c00232{bottom:262.813333pt;}
.y13_c00232{bottom:284.680000pt;}
.y12_c00232{bottom:305.746667pt;}
.y11_c00232{bottom:328.546667pt;}
.y10_c00232{bottom:350.813333pt;}
.yf_c00232{bottom:372.680000pt;}
.ye_c00232{bottom:392.813333pt;}
.yd_c00232{bottom:416.680000pt;}
.yc_c00232{bottom:438.946667pt;}
.yb_c00232{bottom:460.813333pt;}
.ya_c00232{bottom:482.680000pt;}
.y9_c00232{bottom:504.413333pt;}
.y8_c00232{bottom:526.813333pt;}
.y7_c00232{bottom:549.080000pt;}
.y6_c00232{bottom:571.213333pt;}
.y5_c00232{bottom:593.480000pt;}
.y4_c00232{bottom:615.880000pt;}
.y3_c00232{bottom:638.146667pt;}
.y2_c00232{bottom:660.413333pt;}
.y1_c00232{bottom:682.813333pt;}
.h6_c00232{height:11.733399pt;}
.h7_c00232{height:38.937500pt;}
.h5_c00232{height:71.785156pt;}
.h4_c00232{height:77.654948pt;}
.h2_c00232{height:81.148438pt;}
.h3_c00232{height:87.783854pt;}
.h0_c00232{height:733.933333pt;}
.h1_c00232{height:734.000000pt;}
.w2_c00232{width:93.222667pt;}
.w0_c00232{width:499.666667pt;}
.w1_c00232{width:500.000000pt;}
.x0_c00232{left:0.000000pt;}
.x2_c00232{left:22.800000pt;}
.x3_c00232{left:24.400000pt;}
.x4_c00232{left:25.466667pt;}
.x5_c00232{left:26.666667pt;}
.x7_c00232{left:27.600000pt;}
.x8_c00232{left:29.200000pt;}
.xa_c00232{left:30.266667pt;}
.xd_c00232{left:32.000000pt;}
.xc_c00232{left:32.933333pt;}
.x1_c00232{left:45.600000pt;}
.x6_c00232{left:49.866667pt;}
.x9_c00232{left:51.066667pt;}
.xb_c00232{left:53.600000pt;}
.xe_c00232{left:62.666667pt;}
.xf_c00232{left:77.866667pt;}
.x10_c00232{left:207.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5cd9b6d837237684b8dd438.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_5cde4534382ce7273b71ff06.woff2')format("woff");}.ff2_c00233{font-family:ff2_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:ff3_c00233;src:url('chunks/assets/font_ee7f067c104684c2cc5027a6.woff2')format("woff");}.ff3_c00233{font-family:ff3_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:ff4_c00233;src:url('chunks/assets/font_c6c9ff8e7ff380ed35b260f0.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;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_c00233;src:url('chunks/assets/font_637e5dcbdfc7f216690c3a9d.woff2')format("woff");}.ff5_c00233{font-family:ff5_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:ff6_c00233;src:url('chunks/assets/font_5a94f9ac438080f407c8b065.woff2')format("woff");}.ff6_c00233{font-family:ff6_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:ff7_c00233;src:url('chunks/assets/font_38229fda4bd03fdce593c4ef.woff2')format("woff");}.ff7_c00233{font-family:ff7_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:ff8_c00233;src:url('chunks/assets/font_e9f5802e7563c0347a01f580.woff2')format("woff");}.ff8_c00233{font-family:ff8_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:ff9_c00233;src:url('chunks/assets/font_2f5f4e8724c737f60d9df92e.woff2')format("woff");}.ff9_c00233{font-family:ff9_c00233;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_c00233;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ffa_c00233{font-family:ffa_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:ffb_c00233;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00233{font-family:ffb_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;}
.ls7_c00233{letter-spacing:-3.000000px;}
.ls5_c00233{letter-spacing:0.000000px;}
.ls4_c00233{letter-spacing:3.000000px;}
.ls3_c00233{letter-spacing:6.771000px;}
.ls6_c00233{letter-spacing:15.000000px;}
.ls2_c00233{letter-spacing:19.200000px;}
.ls1_c00233{letter-spacing:24.546000px;}
.ls0_c00233{letter-spacing:35.571000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00233{word-spacing:-83.130000px;}
.ws4_c00233{word-spacing:-66.504000px;}
.ws6_c00233{word-spacing:-20.250000px;}
.ws1_c00233{word-spacing:-19.629000px;}
.ws2_c00233{word-spacing:-16.629000px;}
.ws0_c00233{word-spacing:-16.500000px;}
.ws7_c00233{word-spacing:0.000000px;}
.ws5_c00233{word-spacing:2.919000px;}
._29_c00233{margin-left:-38.235000px;}
._27_c00233{margin-left:-37.128000px;}
._2c_c00233{margin-left:-35.286000px;}
._28_c00233{margin-left:-31.602000px;}
._19_c00233{margin-left:-27.798000px;}
._1d_c00233{margin-left:-26.604000px;}
._15_c00233{margin-left:-25.395000px;}
._18_c00233{margin-left:-24.243000px;}
._14_c00233{margin-left:-22.866000px;}
._12_c00233{margin-left:-21.828000px;}
._13_c00233{margin-left:-20.706000px;}
._17_c00233{margin-left:-19.668000px;}
._10_c00233{margin-left:-18.111000px;}
._16_c00233{margin-left:-17.079000px;}
._5_c00233{margin-left:-15.672000px;}
._1a_c00233{margin-left:-14.595000px;}
._2_c00233{margin-left:-12.999000px;}
._11_c00233{margin-left:-11.424000px;}
._1_c00233{margin-left:-10.206000px;}
._1b_c00233{margin-left:-8.970000px;}
._e_c00233{margin-left:-7.800000px;}
._4_c00233{margin-left:-6.306000px;}
._a_c00233{margin-left:-4.905000px;}
._0_c00233{margin-left:-3.630000px;}
._6_c00233{margin-left:-2.493000px;}
._1f_c00233{margin-left:-1.236000px;}
._c_c00233{width:1.983000px;}
._7_c00233{width:3.312000px;}
._1e_c00233{width:4.998000px;}
._8_c00233{width:6.237000px;}
._3_c00233{width:7.383000px;}
._9_c00233{width:8.418000px;}
._32_c00233{width:9.600000px;}
._2b_c00233{width:10.626000px;}
._2a_c00233{width:12.378000px;}
._23_c00233{width:13.920000px;}
._24_c00233{width:15.456000px;}
._22_c00233{width:17.262000px;}
._2f_c00233{width:19.977000px;}
._25_c00233{width:21.258000px;}
._33_c00233{width:23.133000px;}
._30_c00233{width:26.979000px;}
._39_c00233{width:30.597000px;}
._20_c00233{width:32.982000px;}
._26_c00233{width:34.485000px;}
._2e_c00233{width:35.595000px;}
._1c_c00233{width:38.037000px;}
._d_c00233{width:39.147000px;}
._36_c00233{width:41.025000px;}
._34_c00233{width:42.369000px;}
._37_c00233{width:43.998000px;}
._35_c00233{width:46.185000px;}
._38_c00233{width:76.419000px;}
._31_c00233{width:99.219000px;}
._21_c00233{width:101.973000px;}
._f_c00233{width:132.642000px;}
._2d_c00233{width:184.938000px;}
._3a_c00233{width:265.395000px;}
._b_c00233{width:344.571000px;}
.fc2_c00233{color:transparent;}
.fc1_c00233{color:rgb(128,128,128);}
.fc0_c00233{color:rgb(0,0,0);}
.fs6_c00233{font-size:48.000000px;}
.fs5_c00233{font-size:51.000000px;}
.fs9_c00233{font-size:57.000000px;}
.fs8_c00233{font-size:60.000000px;}
.fs0_c00233{font-size:66.000000px;}
.fs1_c00233{font-size:69.000000px;}
.fs2_c00233{font-size:78.000000px;}
.fs7_c00233{font-size:81.000000px;}
.fs4_c00233{font-size:81.600000px;}
.fs3_c00233{font-size:102.000000px;}
.y0_c00233{bottom:0.000000px;}
.y25_c00233{bottom:3.105000px;}
.y24_c00233{bottom:7.228363px;}
.y21_c00233{bottom:53.550000px;}
.y23_c00233{bottom:78.300000px;}
.y20_c00233{bottom:79.350000px;}
.y22_c00233{bottom:99.600000px;}
.y1f_c00233{bottom:105.600000px;}
.y1e_c00233{bottom:130.650000px;}
.y1d_c00233{bottom:155.850000px;}
.y1c_c00233{bottom:181.200000px;}
.y1b_c00233{bottom:206.250000px;}
.y1a_c00233{bottom:231.450000px;}
.y19_c00233{bottom:264.600000px;}
.y18_c00233{bottom:297.000000px;}
.y17_c00233{bottom:321.000000px;}
.y16_c00233{bottom:340.500000px;}
.y15_c00233{bottom:353.400000px;}
.y14_c00233{bottom:386.100000px;}
.y13_c00233{bottom:410.400000px;}
.y12_c00233{bottom:436.050000px;}
.y11_c00233{bottom:460.350000px;}
.y10_c00233{bottom:485.700000px;}
.yf_c00233{bottom:510.750000px;}
.ye_c00233{bottom:535.950000px;}
.yd_c00233{bottom:561.150000px;}
.yc_c00233{bottom:585.300000px;}
.yb_c00233{bottom:609.900000px;}
.y3_c00233{bottom:630.900000px;}
.ya_c00233{bottom:635.550000px;}
.y2_c00233{bottom:645.300000px;}
.y9_c00233{bottom:660.450000px;}
.y1_c00233{bottom:664.500000px;}
.y8_c00233{bottom:685.800000px;}
.y7_c00233{bottom:710.550000px;}
.y6_c00233{bottom:735.750000px;}
.y5_c00233{bottom:761.100000px;}
.y4_c00233{bottom:786.000000px;}
.h8_c00233{height:13.200074px;}
.h9_c00233{height:43.804688px;}
.h7_c00233{height:69.539062px;}
.h5_c00233{height:80.758301px;}
.h6_c00233{height:84.888000px;}
.h2_c00233{height:87.361816px;}
.h4_c00233{height:119.381836px;}
.h3_c00233{height:129.143555px;}
.h1_c00233{height:827.250000px;}
.h0_c00233{height:827.550000px;}
.w2_c00233{width:104.875500px;}
.w0_c00233{width:572.100000px;}
.w1_c00233{width:572.250000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:34.350000px;}
.x11_c00233{left:37.800000px;}
.x4_c00233{left:42.300000px;}
.x2_c00233{left:49.200000px;}
.x6_c00233{left:52.350000px;}
.x10_c00233{left:55.350000px;}
.xc_c00233{left:95.250000px;}
.x9_c00233{left:96.750000px;}
.x8_c00233{left:97.800000px;}
.x5_c00233{left:98.850000px;}
.xa_c00233{left:100.650000px;}
.xe_c00233{left:103.050000px;}
.x3_c00233{left:112.050000px;}
.xd_c00233{left:120.600000px;}
.x7_c00233{left:122.850000px;}
.x12_c00233{left:237.864258px;}
.xb_c00233{left:378.600000px;}
.xf_c00233{left:522.450000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls7_c00233{letter-spacing:-2.666667pt;}
.ls5_c00233{letter-spacing:0.000000pt;}
.ls4_c00233{letter-spacing:2.666667pt;}
.ls3_c00233{letter-spacing:6.018667pt;}
.ls6_c00233{letter-spacing:13.333333pt;}
.ls2_c00233{letter-spacing:17.066667pt;}
.ls1_c00233{letter-spacing:21.818667pt;}
.ls0_c00233{letter-spacing:31.618667pt;}
.ws3_c00233{word-spacing:-73.893333pt;}
.ws4_c00233{word-spacing:-59.114667pt;}
.ws6_c00233{word-spacing:-18.000000pt;}
.ws1_c00233{word-spacing:-17.448000pt;}
.ws2_c00233{word-spacing:-14.781333pt;}
.ws0_c00233{word-spacing:-14.666667pt;}
.ws7_c00233{word-spacing:0.000000pt;}
.ws5_c00233{word-spacing:2.594667pt;}
._29_c00233{margin-left:-33.986667pt;}
._27_c00233{margin-left:-33.002667pt;}
._2c_c00233{margin-left:-31.365333pt;}
._28_c00233{margin-left:-28.090667pt;}
._19_c00233{margin-left:-24.709333pt;}
._1d_c00233{margin-left:-23.648000pt;}
._15_c00233{margin-left:-22.573333pt;}
._18_c00233{margin-left:-21.549333pt;}
._14_c00233{margin-left:-20.325333pt;}
._12_c00233{margin-left:-19.402667pt;}
._13_c00233{margin-left:-18.405333pt;}
._17_c00233{margin-left:-17.482667pt;}
._10_c00233{margin-left:-16.098667pt;}
._16_c00233{margin-left:-15.181333pt;}
._5_c00233{margin-left:-13.930667pt;}
._1a_c00233{margin-left:-12.973333pt;}
._2_c00233{margin-left:-11.554667pt;}
._11_c00233{margin-left:-10.154667pt;}
._1_c00233{margin-left:-9.072000pt;}
._1b_c00233{margin-left:-7.973333pt;}
._e_c00233{margin-left:-6.933333pt;}
._4_c00233{margin-left:-5.605333pt;}
._a_c00233{margin-left:-4.360000pt;}
._0_c00233{margin-left:-3.226667pt;}
._6_c00233{margin-left:-2.216000pt;}
._1f_c00233{margin-left:-1.098667pt;}
._c_c00233{width:1.762667pt;}
._7_c00233{width:2.944000pt;}
._1e_c00233{width:4.442667pt;}
._8_c00233{width:5.544000pt;}
._3_c00233{width:6.562667pt;}
._9_c00233{width:7.482667pt;}
._32_c00233{width:8.533333pt;}
._2b_c00233{width:9.445333pt;}
._2a_c00233{width:11.002667pt;}
._23_c00233{width:12.373333pt;}
._24_c00233{width:13.738667pt;}
._22_c00233{width:15.344000pt;}
._2f_c00233{width:17.757333pt;}
._25_c00233{width:18.896000pt;}
._33_c00233{width:20.562667pt;}
._30_c00233{width:23.981333pt;}
._39_c00233{width:27.197333pt;}
._20_c00233{width:29.317333pt;}
._26_c00233{width:30.653333pt;}
._2e_c00233{width:31.640000pt;}
._1c_c00233{width:33.810667pt;}
._d_c00233{width:34.797333pt;}
._36_c00233{width:36.466667pt;}
._34_c00233{width:37.661333pt;}
._37_c00233{width:39.109333pt;}
._35_c00233{width:41.053333pt;}
._38_c00233{width:67.928000pt;}
._31_c00233{width:88.194667pt;}
._21_c00233{width:90.642667pt;}
._f_c00233{width:117.904000pt;}
._2d_c00233{width:164.389333pt;}
._3a_c00233{width:235.906667pt;}
._b_c00233{width:306.285333pt;}
.fs6_c00233{font-size:42.666667pt;}
.fs5_c00233{font-size:45.333333pt;}
.fs9_c00233{font-size:50.666667pt;}
.fs8_c00233{font-size:53.333333pt;}
.fs0_c00233{font-size:58.666667pt;}
.fs1_c00233{font-size:61.333333pt;}
.fs2_c00233{font-size:69.333333pt;}
.fs7_c00233{font-size:72.000000pt;}
.fs4_c00233{font-size:72.533333pt;}
.fs3_c00233{font-size:90.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y25_c00233{bottom:2.760000pt;}
.y24_c00233{bottom:6.425212pt;}
.y21_c00233{bottom:47.600000pt;}
.y23_c00233{bottom:69.600000pt;}
.y20_c00233{bottom:70.533333pt;}
.y22_c00233{bottom:88.533333pt;}
.y1f_c00233{bottom:93.866667pt;}
.y1e_c00233{bottom:116.133333pt;}
.y1d_c00233{bottom:138.533333pt;}
.y1c_c00233{bottom:161.066667pt;}
.y1b_c00233{bottom:183.333333pt;}
.y1a_c00233{bottom:205.733333pt;}
.y19_c00233{bottom:235.200000pt;}
.y18_c00233{bottom:264.000000pt;}
.y17_c00233{bottom:285.333333pt;}
.y16_c00233{bottom:302.666667pt;}
.y15_c00233{bottom:314.133333pt;}
.y14_c00233{bottom:343.200000pt;}
.y13_c00233{bottom:364.800000pt;}
.y12_c00233{bottom:387.600000pt;}
.y11_c00233{bottom:409.200000pt;}
.y10_c00233{bottom:431.733333pt;}
.yf_c00233{bottom:454.000000pt;}
.ye_c00233{bottom:476.400000pt;}
.yd_c00233{bottom:498.800000pt;}
.yc_c00233{bottom:520.266667pt;}
.yb_c00233{bottom:542.133333pt;}
.y3_c00233{bottom:560.800000pt;}
.ya_c00233{bottom:564.933333pt;}
.y2_c00233{bottom:573.600000pt;}
.y9_c00233{bottom:587.066667pt;}
.y1_c00233{bottom:590.666667pt;}
.y8_c00233{bottom:609.600000pt;}
.y7_c00233{bottom:631.600000pt;}
.y6_c00233{bottom:654.000000pt;}
.y5_c00233{bottom:676.533333pt;}
.y4_c00233{bottom:698.666667pt;}
.h8_c00233{height:11.733399pt;}
.h9_c00233{height:38.937500pt;}
.h7_c00233{height:61.812500pt;}
.h5_c00233{height:71.785156pt;}
.h6_c00233{height:75.456000pt;}
.h2_c00233{height:77.654948pt;}
.h4_c00233{height:106.117188pt;}
.h3_c00233{height:114.794271pt;}
.h1_c00233{height:735.333333pt;}
.h0_c00233{height:735.600000pt;}
.w2_c00233{width:93.222667pt;}
.w0_c00233{width:508.533333pt;}
.w1_c00233{width:508.666667pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:30.533333pt;}
.x11_c00233{left:33.600000pt;}
.x4_c00233{left:37.600000pt;}
.x2_c00233{left:43.733333pt;}
.x6_c00233{left:46.533333pt;}
.x10_c00233{left:49.200000pt;}
.xc_c00233{left:84.666667pt;}
.x9_c00233{left:86.000000pt;}
.x8_c00233{left:86.933333pt;}
.x5_c00233{left:87.866667pt;}
.xa_c00233{left:89.466667pt;}
.xe_c00233{left:91.600000pt;}
.x3_c00233{left:99.600000pt;}
.xd_c00233{left:107.200000pt;}
.x7_c00233{left:109.200000pt;}
.x12_c00233{left:211.434896pt;}
.xb_c00233{left:336.533333pt;}
.xf_c00233{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_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_a0aa43c3e42e5bd91b497ecb.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_56c641221d26e0cd581168bb.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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00234{font-family:ff3_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:ff4_c00234;src:url('chunks/assets/font_4c0bab56035bfed350b231e8.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00234{font-family:ff5_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;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls2_c00234{letter-spacing:3.000000px;}
.ls0_c00234{letter-spacing:16.200000px;}
.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:-33.000000px;}
.ws0_c00234{word-spacing:-16.629000px;}
.ws3_c00234{word-spacing:0.000000px;}
.ws2_c00234{word-spacing:2.415000px;}
._43_c00234{margin-left:-65.412000px;}
._2b_c00234{margin-left:-61.986000px;}
._21_c00234{margin-left:-37.812000px;}
._29_c00234{margin-left:-34.500000px;}
._40_c00234{margin-left:-33.258000px;}
._16_c00234{margin-left:-31.188000px;}
._9_c00234{margin-left:-25.185000px;}
._14_c00234{margin-left:-20.562000px;}
._23_c00234{margin-left:-19.320000px;}
._39_c00234{margin-left:-18.147000px;}
._2c_c00234{margin-left:-16.854000px;}
._34_c00234{margin-left:-15.465000px;}
._3d_c00234{margin-left:-13.758000px;}
._2e_c00234{margin-left:-12.600000px;}
._4_c00234{margin-left:-11.385000px;}
._12_c00234{margin-left:-10.350000px;}
._5_c00234{margin-left:-9.246000px;}
._3_c00234{margin-left:-7.521000px;}
._2_c00234{margin-left:-5.520000px;}
._7_c00234{margin-left:-3.519000px;}
._6_c00234{margin-left:-2.415000px;}
._a_c00234{margin-left:-1.242000px;}
._1_c00234{width:1.242000px;}
._0_c00234{width:2.346000px;}
._8_c00234{width:3.381000px;}
._d_c00234{width:4.968000px;}
._f_c00234{width:6.072000px;}
._10_c00234{width:7.590000px;}
._35_c00234{width:8.763000px;}
._11_c00234{width:10.074000px;}
._b_c00234{width:11.454000px;}
._e_c00234{width:13.386000px;}
._1d_c00234{width:14.787000px;}
._3c_c00234{width:15.792000px;}
._1b_c00234{width:17.181000px;}
._1c_c00234{width:18.600000px;}
._c_c00234{width:20.079000px;}
._3e_c00234{width:21.429000px;}
._1a_c00234{width:22.791000px;}
._26_c00234{width:27.183000px;}
._25_c00234{width:29.652000px;}
._18_c00234{width:32.361000px;}
._24_c00234{width:35.259000px;}
._27_c00234{width:38.295000px;}
._32_c00234{width:39.468000px;}
._3a_c00234{width:44.919000px;}
._2a_c00234{width:55.425000px;}
._2d_c00234{width:57.072000px;}
._31_c00234{width:58.353000px;}
._22_c00234{width:60.513000px;}
._44_c00234{width:74.295000px;}
._1f_c00234{width:90.774000px;}
._19_c00234{width:92.586000px;}
._41_c00234{width:104.112000px;}
._38_c00234{width:105.975000px;}
._33_c00234{width:109.854000px;}
._30_c00234{width:111.156000px;}
._28_c00234{width:112.545000px;}
._37_c00234{width:159.501000px;}
._1e_c00234{width:174.225000px;}
._3b_c00234{width:185.478000px;}
._13_c00234{width:203.415000px;}
._36_c00234{width:220.869000px;}
._20_c00234{width:224.457000px;}
._2f_c00234{width:231.150000px;}
._15_c00234{width:264.201000px;}
._42_c00234{width:325.524000px;}
._3f_c00234{width:436.149000px;}
._17_c00234{width:734.298000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(128,128,128);}
.fc0_c00234{color:rgb(0,0,0);}
.fs3_c00234{font-size:48.000000px;}
.fs2_c00234{font-size:54.000000px;}
.fs1_c00234{font-size:66.000000px;}
.fs0_c00234{font-size:69.000000px;}
.y0_c00234{bottom:0.000000px;}
.y1f_c00234{bottom:3.105000px;}
.y1e_c00234{bottom:7.228369px;}
.y1d_c00234{bottom:53.970000px;}
.y1c_c00234{bottom:79.320000px;}
.y1b_c00234{bottom:103.920000px;}
.y1a_c00234{bottom:128.220000px;}
.y19_c00234{bottom:153.870000px;}
.y18_c00234{bottom:178.470000px;}
.y17_c00234{bottom:203.220000px;}
.y16_c00234{bottom:227.370000px;}
.y15_c00234{bottom:254.070000px;}
.y14_c00234{bottom:278.670000px;}
.y13_c00234{bottom:303.120000px;}
.y12_c00234{bottom:330.420000px;}
.y11_c00234{bottom:352.320000px;}
.y10_c00234{bottom:378.270000px;}
.yf_c00234{bottom:401.970000px;}
.ye_c00234{bottom:427.320000px;}
.yd_c00234{bottom:452.820000px;}
.yc_c00234{bottom:477.120000px;}
.yb_c00234{bottom:501.420000px;}
.ya_c00234{bottom:525.870000px;}
.y9_c00234{bottom:550.470000px;}
.y8_c00234{bottom:575.820000px;}
.y7_c00234{bottom:600.420000px;}
.y6_c00234{bottom:625.320000px;}
.y5_c00234{bottom:649.920000px;}
.y4_c00234{bottom:675.720000px;}
.y3_c00234{bottom:699.870000px;}
.y2_c00234{bottom:724.920000px;}
.y1_c00234{bottom:749.970000px;}
.h4_c00234{height:13.200073px;}
.h5_c00234{height:43.804688px;}
.h3_c00234{height:68.370117px;}
.h2_c00234{height:87.361816px;}
.h1_c00234{height:810.750000px;}
.h0_c00234{height:811.050000px;}
.w2_c00234{width:104.875500px;}
.w0_c00234{width:552.450000px;}
.w1_c00234{width:552.750000px;}
.x0_c00234{left:0.000000px;}
.x2_c00234{left:10.500000px;}
.x1_c00234{left:11.850000px;}
.x5_c00234{left:12.900000px;}
.x4_c00234{left:14.550000px;}
.x8_c00234{left:15.750000px;}
.xa_c00234{left:18.600000px;}
.x6_c00234{left:38.100000px;}
.x3_c00234{left:39.150000px;}
.xb_c00234{left:65.250000px;}
.x7_c00234{left:189.000000px;}
.xc_c00234{left:228.039230px;}
.x9_c00234{left:440.100000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls2_c00234{letter-spacing:2.666667pt;}
.ls0_c00234{letter-spacing:14.400000pt;}
.ws1_c00234{word-spacing:-29.333333pt;}
.ws0_c00234{word-spacing:-14.781333pt;}
.ws3_c00234{word-spacing:0.000000pt;}
.ws2_c00234{word-spacing:2.146667pt;}
._43_c00234{margin-left:-58.144000pt;}
._2b_c00234{margin-left:-55.098667pt;}
._21_c00234{margin-left:-33.610667pt;}
._29_c00234{margin-left:-30.666667pt;}
._40_c00234{margin-left:-29.562667pt;}
._16_c00234{margin-left:-27.722667pt;}
._9_c00234{margin-left:-22.386667pt;}
._14_c00234{margin-left:-18.277333pt;}
._23_c00234{margin-left:-17.173333pt;}
._39_c00234{margin-left:-16.130667pt;}
._2c_c00234{margin-left:-14.981333pt;}
._34_c00234{margin-left:-13.746667pt;}
._3d_c00234{margin-left:-12.229333pt;}
._2e_c00234{margin-left:-11.200000pt;}
._4_c00234{margin-left:-10.120000pt;}
._12_c00234{margin-left:-9.200000pt;}
._5_c00234{margin-left:-8.218667pt;}
._3_c00234{margin-left:-6.685333pt;}
._2_c00234{margin-left:-4.906667pt;}
._7_c00234{margin-left:-3.128000pt;}
._6_c00234{margin-left:-2.146667pt;}
._a_c00234{margin-left:-1.104000pt;}
._1_c00234{width:1.104000pt;}
._0_c00234{width:2.085333pt;}
._8_c00234{width:3.005333pt;}
._d_c00234{width:4.416000pt;}
._f_c00234{width:5.397333pt;}
._10_c00234{width:6.746667pt;}
._35_c00234{width:7.789333pt;}
._11_c00234{width:8.954667pt;}
._b_c00234{width:10.181333pt;}
._e_c00234{width:11.898667pt;}
._1d_c00234{width:13.144000pt;}
._3c_c00234{width:14.037333pt;}
._1b_c00234{width:15.272000pt;}
._1c_c00234{width:16.533333pt;}
._c_c00234{width:17.848000pt;}
._3e_c00234{width:19.048000pt;}
._1a_c00234{width:20.258667pt;}
._26_c00234{width:24.162667pt;}
._25_c00234{width:26.357333pt;}
._18_c00234{width:28.765333pt;}
._24_c00234{width:31.341333pt;}
._27_c00234{width:34.040000pt;}
._32_c00234{width:35.082667pt;}
._3a_c00234{width:39.928000pt;}
._2a_c00234{width:49.266667pt;}
._2d_c00234{width:50.730667pt;}
._31_c00234{width:51.869333pt;}
._22_c00234{width:53.789333pt;}
._44_c00234{width:66.040000pt;}
._1f_c00234{width:80.688000pt;}
._19_c00234{width:82.298667pt;}
._41_c00234{width:92.544000pt;}
._38_c00234{width:94.200000pt;}
._33_c00234{width:97.648000pt;}
._30_c00234{width:98.805333pt;}
._28_c00234{width:100.040000pt;}
._37_c00234{width:141.778667pt;}
._1e_c00234{width:154.866667pt;}
._3b_c00234{width:164.869333pt;}
._13_c00234{width:180.813333pt;}
._36_c00234{width:196.328000pt;}
._20_c00234{width:199.517333pt;}
._2f_c00234{width:205.466667pt;}
._15_c00234{width:234.845333pt;}
._42_c00234{width:289.354667pt;}
._3f_c00234{width:387.688000pt;}
._17_c00234{width:652.709333pt;}
.fs3_c00234{font-size:42.666667pt;}
.fs2_c00234{font-size:48.000000pt;}
.fs1_c00234{font-size:58.666667pt;}
.fs0_c00234{font-size:61.333333pt;}
.y0_c00234{bottom:0.000000pt;}
.y1f_c00234{bottom:2.760000pt;}
.y1e_c00234{bottom:6.425217pt;}
.y1d_c00234{bottom:47.973333pt;}
.y1c_c00234{bottom:70.506667pt;}
.y1b_c00234{bottom:92.373333pt;}
.y1a_c00234{bottom:113.973333pt;}
.y19_c00234{bottom:136.773333pt;}
.y18_c00234{bottom:158.640000pt;}
.y17_c00234{bottom:180.640000pt;}
.y16_c00234{bottom:202.106667pt;}
.y15_c00234{bottom:225.840000pt;}
.y14_c00234{bottom:247.706667pt;}
.y13_c00234{bottom:269.440000pt;}
.y12_c00234{bottom:293.706667pt;}
.y11_c00234{bottom:313.173333pt;}
.y10_c00234{bottom:336.240000pt;}
.yf_c00234{bottom:357.306667pt;}
.ye_c00234{bottom:379.840000pt;}
.yd_c00234{bottom:402.506667pt;}
.yc_c00234{bottom:424.106667pt;}
.yb_c00234{bottom:445.706667pt;}
.ya_c00234{bottom:467.440000pt;}
.y9_c00234{bottom:489.306667pt;}
.y8_c00234{bottom:511.840000pt;}
.y7_c00234{bottom:533.706667pt;}
.y6_c00234{bottom:555.840000pt;}
.y5_c00234{bottom:577.706667pt;}
.y4_c00234{bottom:600.640000pt;}
.y3_c00234{bottom:622.106667pt;}
.y2_c00234{bottom:644.373333pt;}
.y1_c00234{bottom:666.640000pt;}
.h4_c00234{height:11.733399pt;}
.h5_c00234{height:38.937500pt;}
.h3_c00234{height:60.773438pt;}
.h2_c00234{height:77.654948pt;}
.h1_c00234{height:720.666667pt;}
.h0_c00234{height:720.933333pt;}
.w2_c00234{width:93.222667pt;}
.w0_c00234{width:491.066667pt;}
.w1_c00234{width:491.333333pt;}
.x0_c00234{left:0.000000pt;}
.x2_c00234{left:9.333333pt;}
.x1_c00234{left:10.533333pt;}
.x5_c00234{left:11.466667pt;}
.x4_c00234{left:12.933333pt;}
.x8_c00234{left:14.000000pt;}
.xa_c00234{left:16.533333pt;}
.x6_c00234{left:33.866667pt;}
.x3_c00234{left:34.800000pt;}
.xb_c00234{left:58.000000pt;}
.x7_c00234{left:168.000000pt;}
.xc_c00234{left:202.701538pt;}
.x9_c00234{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_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_6cb476ea133ef5dec7d14396.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.568848;font-style:normal;font-weight:normal;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_f80e949aa4857cc874d82831.woff2')format("woff");}.ff2_c00235{font-family:ff2_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:ff3_c00235;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_8a386d7a28d601c1f41e078d.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;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_c00235;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00235{font-family:ff5_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;}
.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;}
.ls4_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:2.400000px;}
.ls3_c00235{letter-spacing:3.000000px;}
.ls1_c00235{letter-spacing:5.370000px;}
.ls6_c00235{letter-spacing:6.000000px;}
.ls7_c00235{letter-spacing:9.000000px;}
.ls2_c00235{letter-spacing:20.325000px;}
.ls5_c00235{letter-spacing:33.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;}
}
.ws3_c00235{word-spacing:-39.120000px;}
.ws5_c00235{word-spacing:-25.629000px;}
.ws2_c00235{word-spacing:-19.629000px;}
.ws1_c00235{word-spacing:-18.798000px;}
.ws4_c00235{word-spacing:-18.075000px;}
.ws0_c00235{word-spacing:-16.629000px;}
.ws6_c00235{word-spacing:0.000000px;}
._25_c00235{margin-left:-32.085000px;}
._28_c00235{margin-left:-18.234000px;}
._19_c00235{margin-left:-16.890000px;}
._20_c00235{margin-left:-14.421000px;}
._1b_c00235{margin-left:-12.906000px;}
._29_c00235{margin-left:-10.950000px;}
._12_c00235{margin-left:-8.979000px;}
._6_c00235{margin-left:-7.215000px;}
._2_c00235{margin-left:-5.244000px;}
._22_c00235{margin-left:-4.209000px;}
._1_c00235{margin-left:-3.135000px;}
._0_c00235{margin-left:-2.070000px;}
._10_c00235{margin-left:-1.056000px;}
._7_c00235{width:1.332000px;}
._f_c00235{width:3.036000px;}
._5_c00235{width:4.071000px;}
._e_c00235{width:5.430000px;}
._8_c00235{width:6.555000px;}
._c_c00235{width:7.797000px;}
._4_c00235{width:9.246000px;}
._b_c00235{width:10.419000px;}
._15_c00235{width:12.054000px;}
._1a_c00235{width:13.110000px;}
._a_c00235{width:14.421000px;}
._9_c00235{width:16.422000px;}
._14_c00235{width:18.066000px;}
._16_c00235{width:21.396000px;}
._1f_c00235{width:23.838000px;}
._1e_c00235{width:25.029000px;}
._24_c00235{width:26.841000px;}
._d_c00235{width:33.843000px;}
._1d_c00235{width:36.345000px;}
._1c_c00235{width:38.934000px;}
._26_c00235{width:42.771000px;}
._17_c00235{width:56.313000px;}
._21_c00235{width:60.168000px;}
._18_c00235{width:70.281000px;}
._23_c00235{width:101.154000px;}
._13_c00235{width:108.276000px;}
._11_c00235{width:134.550000px;}
._27_c00235{width:181.389000px;}
._3_c00235{width:380.358000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(128,128,128);}
.fc0_c00235{color:rgb(0,0,0);}
.fs6_c00235{font-size:48.000000px;}
.fs3_c00235{font-size:60.000000px;}
.fs4_c00235{font-size:63.000000px;}
.fs1_c00235{font-size:66.000000px;}
.fs0_c00235{font-size:69.000000px;}
.fs5_c00235{font-size:75.000000px;}
.fs2_c00235{font-size:78.000000px;}
.y0_c00235{bottom:0.000000px;}
.y24_c00235{bottom:3.105000px;}
.y23_c00235{bottom:7.228363px;}
.y1f_c00235{bottom:39.900000px;}
.y1e_c00235{bottom:63.150000px;}
.y22_c00235{bottom:74.700000px;}
.y1d_c00235{bottom:89.100000px;}
.y21_c00235{bottom:92.100000px;}
.y1c_c00235{bottom:114.150000px;}
.y20_c00235{bottom:125.250000px;}
.y1b_c00235{bottom:139.350000px;}
.y1a_c00235{bottom:164.700000px;}
.y19_c00235{bottom:189.300000px;}
.y18_c00235{bottom:215.100000px;}
.y17_c00235{bottom:239.400000px;}
.y16_c00235{bottom:264.600000px;}
.y15_c00235{bottom:289.950000px;}
.y14_c00235{bottom:315.300000px;}
.y13_c00235{bottom:339.150000px;}
.y12_c00235{bottom:363.150000px;}
.y11_c00235{bottom:388.200000px;}
.y10_c00235{bottom:412.800000px;}
.yf_c00235{bottom:438.150000px;}
.ye_c00235{bottom:463.350000px;}
.yd_c00235{bottom:487.800000px;}
.yc_c00235{bottom:513.300000px;}
.yb_c00235{bottom:537.300000px;}
.ya_c00235{bottom:562.350000px;}
.y9_c00235{bottom:587.550000px;}
.y8_c00235{bottom:612.300000px;}
.y7_c00235{bottom:637.650000px;}
.y6_c00235{bottom:661.800000px;}
.y5_c00235{bottom:686.850000px;}
.y4_c00235{bottom:711.450000px;}
.y3_c00235{bottom:736.800000px;}
.y2_c00235{bottom:761.400000px;}
.y1_c00235{bottom:786.300000px;}
.h6_c00235{height:13.200074px;}
.h7_c00235{height:43.804688px;}
.h5_c00235{height:80.758301px;}
.h2_c00235{height:87.361816px;}
.h4_c00235{height:87.780762px;}
.h3_c00235{height:98.756836px;}
.h1_c00235{height:827.250000px;}
.h0_c00235{height:827.550000px;}
.w2_c00235{width:104.875500px;}
.w0_c00235{width:572.100000px;}
.w1_c00235{width:572.250000px;}
.x0_c00235{left:0.000000px;}
.xf_c00235{left:34.050000px;}
.xe_c00235{left:35.100000px;}
.x4_c00235{left:48.600000px;}
.x3_c00235{left:51.750000px;}
.xa_c00235{left:77.700000px;}
.x9_c00235{left:78.750000px;}
.xc_c00235{left:97.200000px;}
.xb_c00235{left:99.300000px;}
.x8_c00235{left:100.800000px;}
.x7_c00235{left:102.150000px;}
.x5_c00235{left:103.200000px;}
.x2_c00235{left:104.250000px;}
.x6_c00235{left:106.950000px;}
.x1_c00235{left:117.150000px;}
.x10_c00235{left:237.864258px;}
.xd_c00235{left:513.300000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls4_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:2.133333pt;}
.ls3_c00235{letter-spacing:2.666667pt;}
.ls1_c00235{letter-spacing:4.773333pt;}
.ls6_c00235{letter-spacing:5.333333pt;}
.ls7_c00235{letter-spacing:8.000000pt;}
.ls2_c00235{letter-spacing:18.066667pt;}
.ls5_c00235{letter-spacing:29.333333pt;}
.ws3_c00235{word-spacing:-34.773333pt;}
.ws5_c00235{word-spacing:-22.781333pt;}
.ws2_c00235{word-spacing:-17.448000pt;}
.ws1_c00235{word-spacing:-16.709333pt;}
.ws4_c00235{word-spacing:-16.066667pt;}
.ws0_c00235{word-spacing:-14.781333pt;}
.ws6_c00235{word-spacing:0.000000pt;}
._25_c00235{margin-left:-28.520000pt;}
._28_c00235{margin-left:-16.208000pt;}
._19_c00235{margin-left:-15.013333pt;}
._20_c00235{margin-left:-12.818667pt;}
._1b_c00235{margin-left:-11.472000pt;}
._29_c00235{margin-left:-9.733333pt;}
._12_c00235{margin-left:-7.981333pt;}
._6_c00235{margin-left:-6.413333pt;}
._2_c00235{margin-left:-4.661333pt;}
._22_c00235{margin-left:-3.741333pt;}
._1_c00235{margin-left:-2.786667pt;}
._0_c00235{margin-left:-1.840000pt;}
._10_c00235{margin-left:-0.938667pt;}
._7_c00235{width:1.184000pt;}
._f_c00235{width:2.698667pt;}
._5_c00235{width:3.618667pt;}
._e_c00235{width:4.826667pt;}
._8_c00235{width:5.826667pt;}
._c_c00235{width:6.930667pt;}
._4_c00235{width:8.218667pt;}
._b_c00235{width:9.261333pt;}
._15_c00235{width:10.714667pt;}
._1a_c00235{width:11.653333pt;}
._a_c00235{width:12.818667pt;}
._9_c00235{width:14.597333pt;}
._14_c00235{width:16.058667pt;}
._16_c00235{width:19.018667pt;}
._1f_c00235{width:21.189333pt;}
._1e_c00235{width:22.248000pt;}
._24_c00235{width:23.858667pt;}
._d_c00235{width:30.082667pt;}
._1d_c00235{width:32.306667pt;}
._1c_c00235{width:34.608000pt;}
._26_c00235{width:38.018667pt;}
._17_c00235{width:50.056000pt;}
._21_c00235{width:53.482667pt;}
._18_c00235{width:62.472000pt;}
._23_c00235{width:89.914667pt;}
._13_c00235{width:96.245333pt;}
._11_c00235{width:119.600000pt;}
._27_c00235{width:161.234667pt;}
._3_c00235{width:338.096000pt;}
.fs6_c00235{font-size:42.666667pt;}
.fs3_c00235{font-size:53.333333pt;}
.fs4_c00235{font-size:56.000000pt;}
.fs1_c00235{font-size:58.666667pt;}
.fs0_c00235{font-size:61.333333pt;}
.fs5_c00235{font-size:66.666667pt;}
.fs2_c00235{font-size:69.333333pt;}
.y0_c00235{bottom:0.000000pt;}
.y24_c00235{bottom:2.760000pt;}
.y23_c00235{bottom:6.425212pt;}
.y1f_c00235{bottom:35.466667pt;}
.y1e_c00235{bottom:56.133333pt;}
.y22_c00235{bottom:66.400000pt;}
.y1d_c00235{bottom:79.200000pt;}
.y21_c00235{bottom:81.866667pt;}
.y1c_c00235{bottom:101.466667pt;}
.y20_c00235{bottom:111.333333pt;}
.y1b_c00235{bottom:123.866667pt;}
.y1a_c00235{bottom:146.400000pt;}
.y19_c00235{bottom:168.266667pt;}
.y18_c00235{bottom:191.200000pt;}
.y17_c00235{bottom:212.800000pt;}
.y16_c00235{bottom:235.200000pt;}
.y15_c00235{bottom:257.733333pt;}
.y14_c00235{bottom:280.266667pt;}
.y13_c00235{bottom:301.466667pt;}
.y12_c00235{bottom:322.800000pt;}
.y11_c00235{bottom:345.066667pt;}
.y10_c00235{bottom:366.933333pt;}
.yf_c00235{bottom:389.466667pt;}
.ye_c00235{bottom:411.866667pt;}
.yd_c00235{bottom:433.600000pt;}
.yc_c00235{bottom:456.266667pt;}
.yb_c00235{bottom:477.600000pt;}
.ya_c00235{bottom:499.866667pt;}
.y9_c00235{bottom:522.266667pt;}
.y8_c00235{bottom:544.266667pt;}
.y7_c00235{bottom:566.800000pt;}
.y6_c00235{bottom:588.266667pt;}
.y5_c00235{bottom:610.533333pt;}
.y4_c00235{bottom:632.400000pt;}
.y3_c00235{bottom:654.933333pt;}
.y2_c00235{bottom:676.800000pt;}
.y1_c00235{bottom:698.933333pt;}
.h6_c00235{height:11.733399pt;}
.h7_c00235{height:38.937500pt;}
.h5_c00235{height:71.785156pt;}
.h2_c00235{height:77.654948pt;}
.h4_c00235{height:78.027344pt;}
.h3_c00235{height:87.783854pt;}
.h1_c00235{height:735.333333pt;}
.h0_c00235{height:735.600000pt;}
.w2_c00235{width:93.222667pt;}
.w0_c00235{width:508.533333pt;}
.w1_c00235{width:508.666667pt;}
.x0_c00235{left:0.000000pt;}
.xf_c00235{left:30.266667pt;}
.xe_c00235{left:31.200000pt;}
.x4_c00235{left:43.200000pt;}
.x3_c00235{left:46.000000pt;}
.xa_c00235{left:69.066667pt;}
.x9_c00235{left:70.000000pt;}
.xc_c00235{left:86.400000pt;}
.xb_c00235{left:88.266667pt;}
.x8_c00235{left:89.600000pt;}
.x7_c00235{left:90.800000pt;}
.x5_c00235{left:91.733333pt;}
.x2_c00235{left:92.666667pt;}
.x6_c00235{left:95.066667pt;}
.x1_c00235{left:104.133333pt;}
.x10_c00235{left:211.434896pt;}
.xd_c00235{left:456.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_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_9b487d4b0b582e48d37ea2fc.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.480469;font-style:normal;font-weight:normal;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_1b097afb214c22dea0c61d0b.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_b6261757bf6b66490be19b82.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_09652445bc4c020c43bcaede.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_31d29832cec44308628e2a0a.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00236;src:url('chunks/assets/font_fb473b5a030a1428cae6b334.woff2')format("woff");}.ff6_c00236{font-family:ff6_c00236;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_c00236;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00236{font-family:ff7_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:ff8_c00236;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00236{font-family:ff8_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;}
.ls8_c00236{letter-spacing:0.000000px;}
.ls9_c00236{letter-spacing:3.000000px;}
.ls0_c00236{letter-spacing:6.171000px;}
.ls3_c00236{letter-spacing:6.633000px;}
.ls7_c00236{letter-spacing:9.000000px;}
.ls6_c00236{letter-spacing:14.400000px;}
.ls2_c00236{letter-spacing:14.472000px;}
.ls4_c00236{letter-spacing:18.600000px;}
.ls5_c00236{letter-spacing:23.400000px;}
.ls1_c00236{letter-spacing:25.872000px;}
.lsa_c00236{letter-spacing:45.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;}
}
.ws3_c00236{word-spacing:-40.032000px;}
.ws0_c00236{word-spacing:-39.100800px;}
.ws1_c00236{word-spacing:-25.629000px;}
.ws2_c00236{word-spacing:-16.629000px;}
.ws5_c00236{word-spacing:-2.586000px;}
.ws4_c00236{word-spacing:-0.759000px;}
.ws6_c00236{word-spacing:0.000000px;}
._2e_c00236{margin-left:-66.036000px;}
._23_c00236{margin-left:-64.515000px;}
._26_c00236{margin-left:-50.751000px;}
._25_c00236{margin-left:-29.202000px;}
._24_c00236{margin-left:-26.058000px;}
._2a_c00236{margin-left:-24.909000px;}
._28_c00236{margin-left:-21.528000px;}
._3a_c00236{margin-left:-20.355000px;}
._11_c00236{margin-left:-17.181000px;}
._1e_c00236{margin-left:-16.077000px;}
._1d_c00236{margin-left:-14.628000px;}
._10_c00236{margin-left:-12.528000px;}
._1f_c00236{margin-left:-11.109000px;}
._21_c00236{margin-left:-9.408000px;}
._14_c00236{margin-left:-7.866000px;}
._5_c00236{margin-left:-6.141000px;}
._1_c00236{margin-left:-5.037000px;}
._7_c00236{margin-left:-3.036000px;}
._13_c00236{margin-left:-1.932000px;}
._0_c00236{width:1.518000px;}
._8_c00236{width:2.553000px;}
._2_c00236{width:3.657000px;}
._3_c00236{width:4.968000px;}
._12_c00236{width:6.762000px;}
._9_c00236{width:7.935000px;}
._15_c00236{width:9.453000px;}
._c_c00236{width:11.454000px;}
._d_c00236{width:13.110000px;}
._17_c00236{width:14.388000px;}
._e_c00236{width:16.077000px;}
._a_c00236{width:17.388000px;}
._2d_c00236{width:18.447000px;}
._2f_c00236{width:19.494000px;}
._1b_c00236{width:21.045000px;}
._33_c00236{width:22.494000px;}
._30_c00236{width:24.471000px;}
._18_c00236{width:26.634000px;}
._b_c00236{width:27.705000px;}
._1a_c00236{width:28.911000px;}
._1c_c00236{width:31.947000px;}
._34_c00236{width:34.017000px;}
._3d_c00236{width:35.745000px;}
._19_c00236{width:37.398000px;}
._32_c00236{width:39.330000px;}
._38_c00236{width:45.540000px;}
._31_c00236{width:55.704000px;}
._35_c00236{width:58.776000px;}
._36_c00236{width:67.206000px;}
._29_c00236{width:74.589000px;}
._2b_c00236{width:78.882000px;}
._4_c00236{width:81.483000px;}
._2c_c00236{width:91.908000px;}
._3b_c00236{width:107.667000px;}
._16_c00236{width:114.747000px;}
._37_c00236{width:172.185000px;}
._39_c00236{width:182.745000px;}
._27_c00236{width:185.541000px;}
._22_c00236{width:193.119000px;}
._f_c00236{width:199.698000px;}
._3c_c00236{width:215.415000px;}
._20_c00236{width:217.833000px;}
._6_c00236{width:400.407000px;}
._3e_c00236{width:587.586000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(128,128,128);}
.fc0_c00236{color:rgb(0,0,0);}
.fs3_c00236{font-size:48.000000px;}
.fs1_c00236{font-size:55.200000px;}
.fs4_c00236{font-size:66.000000px;}
.fs0_c00236{font-size:69.000000px;}
.fs2_c00236{font-size:78.000000px;}
.y0_c00236{bottom:0.000000px;}
.y21_c00236{bottom:3.105000px;}
.y20_c00236{bottom:7.228371px;}
.y1f_c00236{bottom:36.165000px;}
.y1e_c00236{bottom:61.515000px;}
.y1d_c00236{bottom:86.865000px;}
.y1c_c00236{bottom:111.765000px;}
.y1b_c00236{bottom:136.815000px;}
.y1a_c00236{bottom:160.965000px;}
.y19_c00236{bottom:185.715000px;}
.y18_c00236{bottom:210.615000px;}
.y17_c00236{bottom:236.565000px;}
.y16_c00236{bottom:261.015000px;}
.y15_c00236{bottom:286.515000px;}
.y14_c00236{bottom:311.565000px;}
.y13_c00236{bottom:335.115000px;}
.y12_c00236{bottom:361.515000px;}
.y11_c00236{bottom:386.415000px;}
.y10_c00236{bottom:410.715000px;}
.yf_c00236{bottom:436.365000px;}
.ye_c00236{bottom:462.165000px;}
.yd_c00236{bottom:486.315000px;}
.yc_c00236{bottom:510.615000px;}
.yb_c00236{bottom:534.315000px;}
.ya_c00236{bottom:559.965000px;}
.y9_c00236{bottom:585.015000px;}
.y8_c00236{bottom:610.215000px;}
.y7_c00236{bottom:635.265000px;}
.y6_c00236{bottom:660.465000px;}
.y5_c00236{bottom:684.915000px;}
.y4_c00236{bottom:710.115000px;}
.y3_c00236{bottom:734.715000px;}
.y2_c00236{bottom:759.465000px;}
.y1_c00236{bottom:784.665000px;}
.h8_c00236{height:13.200074px;}
.h9_c00236{height:43.804688px;}
.h7_c00236{height:67.686035px;}
.h6_c00236{height:67.719727px;}
.h5_c00236{height:69.539062px;}
.h3_c00236{height:80.758301px;}
.h2_c00236{height:87.361816px;}
.h4_c00236{height:91.291992px;}
.h0_c00236{height:825.675000px;}
.h1_c00236{height:825.750000px;}
.w2_c00236{width:104.875500px;}
.w0_c00236{width:562.125000px;}
.w1_c00236{width:562.500000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:24.600000px;}
.x3_c00236{left:26.700000px;}
.x4_c00236{left:28.650000px;}
.xa_c00236{left:30.000000px;}
.x7_c00236{left:32.100000px;}
.xb_c00236{left:33.450000px;}
.xc_c00236{left:34.650000px;}
.x9_c00236{left:54.000000px;}
.x6_c00236{left:55.800000px;}
.x8_c00236{left:72.000000px;}
.x5_c00236{left:162.450000px;}
.x1_c00236{left:192.750000px;}
.xe_c00236{left:232.876740px;}
.xd_c00236{left:264.300000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls8_c00236{letter-spacing:0.000000pt;}
.ls9_c00236{letter-spacing:2.666667pt;}
.ls0_c00236{letter-spacing:5.485333pt;}
.ls3_c00236{letter-spacing:5.896000pt;}
.ls7_c00236{letter-spacing:8.000000pt;}
.ls6_c00236{letter-spacing:12.800000pt;}
.ls2_c00236{letter-spacing:12.864000pt;}
.ls4_c00236{letter-spacing:16.533333pt;}
.ls5_c00236{letter-spacing:20.800000pt;}
.ls1_c00236{letter-spacing:22.997333pt;}
.lsa_c00236{letter-spacing:40.000000pt;}
.ws3_c00236{word-spacing:-35.584000pt;}
.ws0_c00236{word-spacing:-34.756267pt;}
.ws1_c00236{word-spacing:-22.781333pt;}
.ws2_c00236{word-spacing:-14.781333pt;}
.ws5_c00236{word-spacing:-2.298667pt;}
.ws4_c00236{word-spacing:-0.674667pt;}
.ws6_c00236{word-spacing:0.000000pt;}
._2e_c00236{margin-left:-58.698667pt;}
._23_c00236{margin-left:-57.346667pt;}
._26_c00236{margin-left:-45.112000pt;}
._25_c00236{margin-left:-25.957333pt;}
._24_c00236{margin-left:-23.162667pt;}
._2a_c00236{margin-left:-22.141333pt;}
._28_c00236{margin-left:-19.136000pt;}
._3a_c00236{margin-left:-18.093333pt;}
._11_c00236{margin-left:-15.272000pt;}
._1e_c00236{margin-left:-14.290667pt;}
._1d_c00236{margin-left:-13.002667pt;}
._10_c00236{margin-left:-11.136000pt;}
._1f_c00236{margin-left:-9.874667pt;}
._21_c00236{margin-left:-8.362667pt;}
._14_c00236{margin-left:-6.992000pt;}
._5_c00236{margin-left:-5.458667pt;}
._1_c00236{margin-left:-4.477333pt;}
._7_c00236{margin-left:-2.698667pt;}
._13_c00236{margin-left:-1.717333pt;}
._0_c00236{width:1.349333pt;}
._8_c00236{width:2.269333pt;}
._2_c00236{width:3.250667pt;}
._3_c00236{width:4.416000pt;}
._12_c00236{width:6.010667pt;}
._9_c00236{width:7.053333pt;}
._15_c00236{width:8.402667pt;}
._c_c00236{width:10.181333pt;}
._d_c00236{width:11.653333pt;}
._17_c00236{width:12.789333pt;}
._e_c00236{width:14.290667pt;}
._a_c00236{width:15.456000pt;}
._2d_c00236{width:16.397333pt;}
._2f_c00236{width:17.328000pt;}
._1b_c00236{width:18.706667pt;}
._33_c00236{width:19.994667pt;}
._30_c00236{width:21.752000pt;}
._18_c00236{width:23.674667pt;}
._b_c00236{width:24.626667pt;}
._1a_c00236{width:25.698667pt;}
._1c_c00236{width:28.397333pt;}
._34_c00236{width:30.237333pt;}
._3d_c00236{width:31.773333pt;}
._19_c00236{width:33.242667pt;}
._32_c00236{width:34.960000pt;}
._38_c00236{width:40.480000pt;}
._31_c00236{width:49.514667pt;}
._35_c00236{width:52.245333pt;}
._36_c00236{width:59.738667pt;}
._29_c00236{width:66.301333pt;}
._2b_c00236{width:70.117333pt;}
._4_c00236{width:72.429333pt;}
._2c_c00236{width:81.696000pt;}
._3b_c00236{width:95.704000pt;}
._16_c00236{width:101.997333pt;}
._37_c00236{width:153.053333pt;}
._39_c00236{width:162.440000pt;}
._27_c00236{width:164.925333pt;}
._22_c00236{width:171.661333pt;}
._f_c00236{width:177.509333pt;}
._3c_c00236{width:191.480000pt;}
._20_c00236{width:193.629333pt;}
._6_c00236{width:355.917333pt;}
._3e_c00236{width:522.298667pt;}
.fs3_c00236{font-size:42.666667pt;}
.fs1_c00236{font-size:49.066667pt;}
.fs4_c00236{font-size:58.666667pt;}
.fs0_c00236{font-size:61.333333pt;}
.fs2_c00236{font-size:69.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y21_c00236{bottom:2.760000pt;}
.y20_c00236{bottom:6.425219pt;}
.y1f_c00236{bottom:32.146667pt;}
.y1e_c00236{bottom:54.680000pt;}
.y1d_c00236{bottom:77.213333pt;}
.y1c_c00236{bottom:99.346667pt;}
.y1b_c00236{bottom:121.613333pt;}
.y1a_c00236{bottom:143.080000pt;}
.y19_c00236{bottom:165.080000pt;}
.y18_c00236{bottom:187.213333pt;}
.y17_c00236{bottom:210.280000pt;}
.y16_c00236{bottom:232.013333pt;}
.y15_c00236{bottom:254.680000pt;}
.y14_c00236{bottom:276.946667pt;}
.y13_c00236{bottom:297.880000pt;}
.y12_c00236{bottom:321.346667pt;}
.y11_c00236{bottom:343.480000pt;}
.y10_c00236{bottom:365.080000pt;}
.yf_c00236{bottom:387.880000pt;}
.ye_c00236{bottom:410.813333pt;}
.yd_c00236{bottom:432.280000pt;}
.yc_c00236{bottom:453.880000pt;}
.yb_c00236{bottom:474.946667pt;}
.ya_c00236{bottom:497.746667pt;}
.y9_c00236{bottom:520.013333pt;}
.y8_c00236{bottom:542.413333pt;}
.y7_c00236{bottom:564.680000pt;}
.y6_c00236{bottom:587.080000pt;}
.y5_c00236{bottom:608.813333pt;}
.y4_c00236{bottom:631.213333pt;}
.y3_c00236{bottom:653.080000pt;}
.y2_c00236{bottom:675.080000pt;}
.y1_c00236{bottom:697.480000pt;}
.h8_c00236{height:11.733399pt;}
.h9_c00236{height:38.937500pt;}
.h7_c00236{height:60.165365pt;}
.h6_c00236{height:60.195312pt;}
.h5_c00236{height:61.812500pt;}
.h3_c00236{height:71.785156pt;}
.h2_c00236{height:77.654948pt;}
.h4_c00236{height:81.148438pt;}
.h0_c00236{height:733.933333pt;}
.h1_c00236{height:734.000000pt;}
.w2_c00236{width:93.222667pt;}
.w0_c00236{width:499.666667pt;}
.w1_c00236{width:500.000000pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:21.866667pt;}
.x3_c00236{left:23.733333pt;}
.x4_c00236{left:25.466667pt;}
.xa_c00236{left:26.666667pt;}
.x7_c00236{left:28.533333pt;}
.xb_c00236{left:29.733333pt;}
.xc_c00236{left:30.800000pt;}
.x9_c00236{left:48.000000pt;}
.x6_c00236{left:49.600000pt;}
.x8_c00236{left:64.000000pt;}
.x5_c00236{left:144.400000pt;}
.x1_c00236{left:171.333333pt;}
.xe_c00236{left:207.001546pt;}
.xd_c00236{left:234.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_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_66d63124c8c219a79ca09d2f.woff2')format("woff");}.ff1_c00237{font-family:ff1_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:ff2_c00237;src:url('chunks/assets/font_ee86ad8a82f7f8eaf49d1ca6.woff2')format("woff");}.ff2_c00237{font-family:ff2_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:ff3_c00237;src:url('chunks/assets/font_3acb62070d3214ae3b5fb75d.woff2')format("woff");}.ff3_c00237{font-family:ff3_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:ff4_c00237;src:url('chunks/assets/font_ad3c62204863a830df5b86e2.woff2')format("woff");}.ff4_c00237{font-family:ff4_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:ff5_c00237;src:url('chunks/assets/font_acc857029cbf23929d7fb996.woff2')format("woff");}.ff5_c00237{font-family:ff5_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:ff6_c00237;src:url('chunks/assets/font_7347cef4745f55bd4c71557c.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;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_c00237;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00237{font-family:ff7_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;}
.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;}
.ls6_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:1.194000px;}
.ls5_c00237{letter-spacing:3.000000px;}
.ls4_c00237{letter-spacing:3.570000px;}
.ls2_c00237{letter-spacing:7.701000px;}
.ls3_c00237{letter-spacing:22.200000px;}
.ls1_c00237{letter-spacing:42.600000px;}
.ls7_c00237{letter-spacing:96.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00237{word-spacing:-112.629000px;}
.ws4_c00237{word-spacing:-44.022000px;}
.ws2_c00237{word-spacing:-33.000000px;}
.ws0_c00237{word-spacing:-19.629000px;}
.ws1_c00237{word-spacing:-16.629000px;}
.ws5_c00237{word-spacing:0.000000px;}
._2f_c00237{margin-left:-67.827000px;}
._38_c00237{margin-left:-61.227000px;}
._32_c00237{margin-left:-37.122000px;}
._2c_c00237{margin-left:-31.464000px;}
._39_c00237{margin-left:-28.419000px;}
._5_c00237{margin-left:-22.494000px;}
._2b_c00237{margin-left:-19.734000px;}
._20_c00237{margin-left:-18.663000px;}
._11_c00237{margin-left:-17.457000px;}
._4_c00237{margin-left:-14.973000px;}
._7_c00237{margin-left:-12.903000px;}
._13_c00237{margin-left:-11.400000px;}
._8_c00237{margin-left:-9.729000px;}
._6_c00237{margin-left:-7.866000px;}
._3_c00237{margin-left:-6.348000px;}
._2_c00237{margin-left:-4.554000px;}
._b_c00237{margin-left:-3.312000px;}
._f_c00237{margin-left:-1.863000px;}
._1_c00237{width:1.449000px;}
._0_c00237{width:2.484000px;}
._d_c00237{width:3.795000px;}
._12_c00237{width:5.112000px;}
._e_c00237{width:6.486000px;}
._16_c00237{width:8.004000px;}
._c_c00237{width:10.005000px;}
._9_c00237{width:11.109000px;}
._18_c00237{width:12.627000px;}
._17_c00237{width:14.139000px;}
._15_c00237{width:16.134000px;}
._1b_c00237{width:18.492000px;}
._3c_c00237{width:19.680000px;}
._2e_c00237{width:21.735000px;}
._1f_c00237{width:22.836000px;}
._25_c00237{width:24.426000px;}
._2d_c00237{width:27.117000px;}
._24_c00237{width:28.359000px;}
._28_c00237{width:31.074000px;}
._22_c00237{width:32.385000px;}
._37_c00237{width:33.828000px;}
._23_c00237{width:36.312000px;}
._33_c00237{width:42.111000px;}
._40_c00237{width:43.524000px;}
._42_c00237{width:44.781000px;}
._29_c00237{width:46.335000px;}
._1e_c00237{width:54.048000px;}
._31_c00237{width:62.046000px;}
._34_c00237{width:66.309000px;}
._1a_c00237{width:68.310000px;}
._21_c00237{width:81.144000px;}
._1d_c00237{width:83.628000px;}
._3b_c00237{width:88.209000px;}
._3e_c00237{width:90.453000px;}
._3d_c00237{width:100.776000px;}
._3f_c00237{width:109.761000px;}
._30_c00237{width:184.890000px;}
._19_c00237{width:205.941000px;}
._27_c00237{width:228.453000px;}
._14_c00237{width:232.683000px;}
._2a_c00237{width:243.672000px;}
._26_c00237{width:252.300000px;}
._36_c00237{width:289.446000px;}
._a_c00237{width:367.155000px;}
._10_c00237{width:548.301000px;}
._3a_c00237{width:591.633000px;}
._1c_c00237{width:646.629000px;}
._41_c00237{width:919.971000px;}
._35_c00237{width:1562.091000px;}
.fc2_c00237{color:transparent;}
.fc1_c00237{color:rgb(128,128,128);}
.fc0_c00237{color:rgb(0,0,0);}
.fs3_c00237{font-size:45.000000px;}
.fs5_c00237{font-size:48.000000px;}
.fs1_c00237{font-size:66.000000px;}
.fs0_c00237{font-size:69.000000px;}
.fs2_c00237{font-size:72.000000px;}
.fs4_c00237{font-size:78.000000px;}
.y0_c00237{bottom:0.000000px;}
.y1e_c00237{bottom:3.105000px;}
.y1d_c00237{bottom:7.228357px;}
.y1c_c00237{bottom:61.830000px;}
.y1b_c00237{bottom:89.430000px;}
.y1a_c00237{bottom:114.180000px;}
.y19_c00237{bottom:139.830000px;}
.y18_c00237{bottom:164.430000px;}
.y17_c00237{bottom:189.780000px;}
.y16_c00237{bottom:213.330000px;}
.y15_c00237{bottom:242.280000px;}
.y14_c00237{bottom:263.880000px;}
.y13_c00237{bottom:289.980000px;}
.y12_c00237{bottom:389.430000px;}
.y11_c00237{bottom:412.530000px;}
.y10_c00237{bottom:439.380000px;}
.yf_c00237{bottom:464.430000px;}
.ye_c00237{bottom:487.980000px;}
.yd_c00237{bottom:514.080000px;}
.y2_c00237{bottom:516.780000px;}
.yc_c00237{bottom:539.430000px;}
.yb_c00237{bottom:563.730000px;}
.y1_c00237{bottom:570.330000px;}
.ya_c00237{bottom:588.630000px;}
.y9_c00237{bottom:613.680000px;}
.y8_c00237{bottom:638.580000px;}
.y7_c00237{bottom:663.630000px;}
.y6_c00237{bottom:689.130000px;}
.y5_c00237{bottom:738.180000px;}
.y4_c00237{bottom:762.180000px;}
.y3_c00237{bottom:788.730000px;}
.h4_c00237{height:13.200074px;}
.h5_c00237{height:43.804688px;}
.h3_c00237{height:80.758301px;}
.h1_c00237{height:87.361816px;}
.h2_c00237{height:91.160156px;}
.h0_c00237{height:819.750000px;}
.w2_c00237{width:104.875500px;}
.w1_c00237{width:566.250000px;}
.w0_c00237{width:566.475000px;}
.x0_c00237{left:0.000000px;}
.x10_c00237{left:22.500000px;}
.xb_c00237{left:30.750000px;}
.x1_c00237{left:31.950000px;}
.x5_c00237{left:35.400000px;}
.x13_c00237{left:37.500000px;}
.x14_c00237{left:45.600000px;}
.x2_c00237{left:48.300000px;}
.x9_c00237{left:50.250000px;}
.x4_c00237{left:51.300000px;}
.x15_c00237{left:84.750000px;}
.x12_c00237{left:88.650000px;}
.x11_c00237{left:89.700000px;}
.xf_c00237{left:91.050000px;}
.xe_c00237{left:92.400000px;}
.xd_c00237{left:94.500000px;}
.x8_c00237{left:95.850000px;}
.xc_c00237{left:97.200000px;}
.xa_c00237{left:98.850000px;}
.x7_c00237{left:100.200000px;}
.x3_c00237{left:113.850000px;}
.x6_c00237{left:124.650000px;}
.x16_c00237{left:235.051758px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls6_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:1.061333pt;}
.ls5_c00237{letter-spacing:2.666667pt;}
.ls4_c00237{letter-spacing:3.173333pt;}
.ls2_c00237{letter-spacing:6.845333pt;}
.ls3_c00237{letter-spacing:19.733333pt;}
.ls1_c00237{letter-spacing:37.866667pt;}
.ls7_c00237{letter-spacing:85.333333pt;}
.ws3_c00237{word-spacing:-100.114667pt;}
.ws4_c00237{word-spacing:-39.130667pt;}
.ws2_c00237{word-spacing:-29.333333pt;}
.ws0_c00237{word-spacing:-17.448000pt;}
.ws1_c00237{word-spacing:-14.781333pt;}
.ws5_c00237{word-spacing:0.000000pt;}
._2f_c00237{margin-left:-60.290667pt;}
._38_c00237{margin-left:-54.424000pt;}
._32_c00237{margin-left:-32.997333pt;}
._2c_c00237{margin-left:-27.968000pt;}
._39_c00237{margin-left:-25.261333pt;}
._5_c00237{margin-left:-19.994667pt;}
._2b_c00237{margin-left:-17.541333pt;}
._20_c00237{margin-left:-16.589333pt;}
._11_c00237{margin-left:-15.517333pt;}
._4_c00237{margin-left:-13.309333pt;}
._7_c00237{margin-left:-11.469333pt;}
._13_c00237{margin-left:-10.133333pt;}
._8_c00237{margin-left:-8.648000pt;}
._6_c00237{margin-left:-6.992000pt;}
._3_c00237{margin-left:-5.642667pt;}
._2_c00237{margin-left:-4.048000pt;}
._b_c00237{margin-left:-2.944000pt;}
._f_c00237{margin-left:-1.656000pt;}
._1_c00237{width:1.288000pt;}
._0_c00237{width:2.208000pt;}
._d_c00237{width:3.373333pt;}
._12_c00237{width:4.544000pt;}
._e_c00237{width:5.765333pt;}
._16_c00237{width:7.114667pt;}
._c_c00237{width:8.893333pt;}
._9_c00237{width:9.874667pt;}
._18_c00237{width:11.224000pt;}
._17_c00237{width:12.568000pt;}
._15_c00237{width:14.341333pt;}
._1b_c00237{width:16.437333pt;}
._3c_c00237{width:17.493333pt;}
._2e_c00237{width:19.320000pt;}
._1f_c00237{width:20.298667pt;}
._25_c00237{width:21.712000pt;}
._2d_c00237{width:24.104000pt;}
._24_c00237{width:25.208000pt;}
._28_c00237{width:27.621333pt;}
._22_c00237{width:28.786667pt;}
._37_c00237{width:30.069333pt;}
._23_c00237{width:32.277333pt;}
._33_c00237{width:37.432000pt;}
._40_c00237{width:38.688000pt;}
._42_c00237{width:39.805333pt;}
._29_c00237{width:41.186667pt;}
._1e_c00237{width:48.042667pt;}
._31_c00237{width:55.152000pt;}
._34_c00237{width:58.941333pt;}
._1a_c00237{width:60.720000pt;}
._21_c00237{width:72.128000pt;}
._1d_c00237{width:74.336000pt;}
._3b_c00237{width:78.408000pt;}
._3e_c00237{width:80.402667pt;}
._3d_c00237{width:89.578667pt;}
._3f_c00237{width:97.565333pt;}
._30_c00237{width:164.346667pt;}
._19_c00237{width:183.058667pt;}
._27_c00237{width:203.069333pt;}
._14_c00237{width:206.829333pt;}
._2a_c00237{width:216.597333pt;}
._26_c00237{width:224.266667pt;}
._36_c00237{width:257.285333pt;}
._a_c00237{width:326.360000pt;}
._10_c00237{width:487.378667pt;}
._3a_c00237{width:525.896000pt;}
._1c_c00237{width:574.781333pt;}
._41_c00237{width:817.752000pt;}
._35_c00237{width:1388.525333pt;}
.fs3_c00237{font-size:40.000000pt;}
.fs5_c00237{font-size:42.666667pt;}
.fs1_c00237{font-size:58.666667pt;}
.fs0_c00237{font-size:61.333333pt;}
.fs2_c00237{font-size:64.000000pt;}
.fs4_c00237{font-size:69.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y1e_c00237{bottom:2.760000pt;}
.y1d_c00237{bottom:6.425206pt;}
.y1c_c00237{bottom:54.960000pt;}
.y1b_c00237{bottom:79.493333pt;}
.y1a_c00237{bottom:101.493333pt;}
.y19_c00237{bottom:124.293333pt;}
.y18_c00237{bottom:146.160000pt;}
.y17_c00237{bottom:168.693333pt;}
.y16_c00237{bottom:189.626667pt;}
.y15_c00237{bottom:215.360000pt;}
.y14_c00237{bottom:234.560000pt;}
.y13_c00237{bottom:257.760000pt;}
.y12_c00237{bottom:346.160000pt;}
.y11_c00237{bottom:366.693333pt;}
.y10_c00237{bottom:390.560000pt;}
.yf_c00237{bottom:412.826667pt;}
.ye_c00237{bottom:433.760000pt;}
.yd_c00237{bottom:456.960000pt;}
.y2_c00237{bottom:459.360000pt;}
.yc_c00237{bottom:479.493333pt;}
.yb_c00237{bottom:501.093333pt;}
.y1_c00237{bottom:506.960000pt;}
.ya_c00237{bottom:523.226667pt;}
.y9_c00237{bottom:545.493333pt;}
.y8_c00237{bottom:567.626667pt;}
.y7_c00237{bottom:589.893333pt;}
.y6_c00237{bottom:612.560000pt;}
.y5_c00237{bottom:656.160000pt;}
.y4_c00237{bottom:677.493333pt;}
.y3_c00237{bottom:701.093333pt;}
.h4_c00237{height:11.733399pt;}
.h5_c00237{height:38.937500pt;}
.h3_c00237{height:71.785156pt;}
.h1_c00237{height:77.654948pt;}
.h2_c00237{height:81.031250pt;}
.h0_c00237{height:728.666667pt;}
.w2_c00237{width:93.222667pt;}
.w1_c00237{width:503.333333pt;}
.w0_c00237{width:503.533333pt;}
.x0_c00237{left:0.000000pt;}
.x10_c00237{left:20.000000pt;}
.xb_c00237{left:27.333333pt;}
.x1_c00237{left:28.400000pt;}
.x5_c00237{left:31.466667pt;}
.x13_c00237{left:33.333333pt;}
.x14_c00237{left:40.533333pt;}
.x2_c00237{left:42.933333pt;}
.x9_c00237{left:44.666667pt;}
.x4_c00237{left:45.600000pt;}
.x15_c00237{left:75.333333pt;}
.x12_c00237{left:78.800000pt;}
.x11_c00237{left:79.733333pt;}
.xf_c00237{left:80.933333pt;}
.xe_c00237{left:82.133333pt;}
.xd_c00237{left:84.000000pt;}
.x8_c00237{left:85.200000pt;}
.xc_c00237{left:86.400000pt;}
.xa_c00237{left:87.866667pt;}
.x7_c00237{left:89.066667pt;}
.x3_c00237{left:101.200000pt;}
.x6_c00237{left:110.800000pt;}
.x16_c00237{left:208.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31d3ee8c16fec9e1e46c3bf8.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_0ff9f60d4a4277b6dd89f4e5.woff2')format("woff");}.ff2_c00238{font-family:ff2_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:ff3_c00238;src:url('chunks/assets/font_f389b5d05d432055b97a145b.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_7bd9b7d62619411f69821323.woff2')format("woff");}.ff4_c00238{font-family:ff4_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:ff5_c00238;src:url('chunks/assets/font_af3db2c040d3436e8c79ec65.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_01a0c086a8906d3e9ed1b5ed.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;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_c00238;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00238{font-family:ff7_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;}
.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;}
.ls4_c00238{letter-spacing:0.000000px;}
.ls5_c00238{letter-spacing:3.000000px;}
.ls2_c00238{letter-spacing:6.000000px;}
.ls6_c00238{letter-spacing:12.000000px;}
.ls1_c00238{letter-spacing:13.200000px;}
.ls3_c00238{letter-spacing:17.400000px;}
.ls0_c00238{letter-spacing:27.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00238{word-spacing:-44.022000px;}
.ws0_c00238{word-spacing:-40.014000px;}
.ws5_c00238{word-spacing:-26.460000px;}
.wsb_c00238{word-spacing:-19.629000px;}
.ws7_c00238{word-spacing:-17.250000px;}
.ws2_c00238{word-spacing:-16.629000px;}
.ws4_c00238{word-spacing:-15.000000px;}
.ws8_c00238{word-spacing:-5.145000px;}
.wsa_c00238{word-spacing:-1.050000px;}
.wsc_c00238{word-spacing:0.000000px;}
.ws1_c00238{word-spacing:0.276000px;}
.ws9_c00238{word-spacing:1.425000px;}
.ws6_c00238{word-spacing:4.350000px;}
._4_c00238{margin-left:-35.238000px;}
._1d_c00238{margin-left:-28.473000px;}
._37_c00238{margin-left:-21.654000px;}
._2_c00238{margin-left:-19.251000px;}
._23_c00238{margin-left:-16.767000px;}
._1f_c00238{margin-left:-14.457000px;}
._20_c00238{margin-left:-13.218000px;}
._1e_c00238{margin-left:-11.247000px;}
._1c_c00238{margin-left:-9.114000px;}
._19_c00238{margin-left:-7.347000px;}
._12_c00238{margin-left:-6.000000px;}
._17_c00238{margin-left:-4.986000px;}
._16_c00238{margin-left:-3.957000px;}
._8_c00238{margin-left:-2.460000px;}
._15_c00238{margin-left:-1.149000px;}
._0_c00238{width:1.449000px;}
._14_c00238{width:2.817000px;}
._b_c00238{width:4.320000px;}
._9_c00238{width:5.700000px;}
._e_c00238{width:7.011000px;}
._5_c00238{width:8.160000px;}
._6_c00238{width:9.360000px;}
._7_c00238{width:10.380000px;}
._a_c00238{width:11.760000px;}
._f_c00238{width:13.458000px;}
._3a_c00238{width:14.517000px;}
._d_c00238{width:15.660000px;}
._13_c00238{width:16.698000px;}
._1b_c00238{width:18.627000px;}
._24_c00238{width:19.758000px;}
._1a_c00238{width:20.997000px;}
._2d_c00238{width:22.857000px;}
._c_c00238{width:23.940000px;}
._25_c00238{width:25.341000px;}
._3_c00238{width:27.201000px;}
._2a_c00238{width:28.320000px;}
._29_c00238{width:31.260000px;}
._26_c00238{width:32.400000px;}
._1_c00238{width:33.879000px;}
._3c_c00238{width:36.945000px;}
._28_c00238{width:38.838000px;}
._32_c00238{width:40.374000px;}
._30_c00238{width:45.405000px;}
._38_c00238{width:48.537000px;}
._3b_c00238{width:63.135000px;}
._35_c00238{width:65.007000px;}
._22_c00238{width:73.911000px;}
._34_c00238{width:86.718000px;}
._27_c00238{width:88.491000px;}
._21_c00238{width:97.770000px;}
._2f_c00238{width:104.331000px;}
._11_c00238{width:107.649000px;}
._31_c00238{width:121.317000px;}
._2e_c00238{width:130.617000px;}
._36_c00238{width:132.627000px;}
._10_c00238{width:145.389000px;}
._18_c00238{width:157.548000px;}
._3d_c00238{width:175.032000px;}
._2c_c00238{width:178.065000px;}
._2b_c00238{width:200.595000px;}
._33_c00238{width:205.263000px;}
._39_c00238{width:239.034000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(128,128,128);}
.fc0_c00238{color:rgb(0,0,0);}
.fs4_c00238{font-size:45.000000px;}
.fs6_c00238{font-size:48.000000px;}
.fs1_c00238{font-size:54.000000px;}
.fs2_c00238{font-size:60.000000px;}
.fs5_c00238{font-size:63.000000px;}
.fs3_c00238{font-size:66.000000px;}
.fs0_c00238{font-size:69.000000px;}
.y0_c00238{bottom:0.000000px;}
.y1f_c00238{bottom:3.105000px;}
.y1e_c00238{bottom:7.228371px;}
.y1d_c00238{bottom:72.915000px;}
.y1c_c00238{bottom:93.915000px;}
.y1b_c00238{bottom:121.815000px;}
.y1a_c00238{bottom:169.815000px;}
.y19_c00238{bottom:194.115000px;}
.y18_c00238{bottom:219.465000px;}
.y17_c00238{bottom:244.665000px;}
.y16_c00238{bottom:271.665000px;}
.y15_c00238{bottom:294.615000px;}
.y14_c00238{bottom:320.415000px;}
.y13_c00238{bottom:345.315000px;}
.y12_c00238{bottom:370.215000px;}
.y11_c00238{bottom:395.265000px;}
.y10_c00238{bottom:419.565000px;}
.yf_c00238{bottom:444.465000px;}
.ye_c00238{bottom:469.215000px;}
.yd_c00238{bottom:494.415000px;}
.yc_c00238{bottom:518.865000px;}
.yb_c00238{bottom:542.715000px;}
.ya_c00238{bottom:568.065000px;}
.y9_c00238{bottom:593.115000px;}
.y8_c00238{bottom:618.015000px;}
.y7_c00238{bottom:643.065000px;}
.y6_c00238{bottom:668.265000px;}
.y5_c00238{bottom:692.265000px;}
.y4_c00238{bottom:718.515000px;}
.y3_c00238{bottom:742.965000px;}
.y2_c00238{bottom:767.865000px;}
.y1_c00238{bottom:792.915000px;}
.h6_c00238{height:13.200074px;}
.h7_c00238{height:43.804688px;}
.h5_c00238{height:68.292000px;}
.h3_c00238{height:75.966797px;}
.h2_c00238{height:80.758301px;}
.h4_c00238{height:87.361816px;}
.h1_c00238{height:831.000000px;}
.h0_c00238{height:831.075000px;}
.w2_c00238{width:104.875500px;}
.w0_c00238{width:566.175000px;}
.w1_c00238{width:566.250000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:26.100000px;}
.x5_c00238{left:27.600000px;}
.x3_c00238{left:28.650000px;}
.x4_c00238{left:30.000000px;}
.x8_c00238{left:63.000000px;}
.x6_c00238{left:64.500000px;}
.x1_c00238{left:199.500000px;}
.xa_c00238{left:234.901749px;}
.x7_c00238{left:237.900000px;}
.x9_c00238{left:463.650000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls4_c00238{letter-spacing:0.000000pt;}
.ls5_c00238{letter-spacing:2.666667pt;}
.ls2_c00238{letter-spacing:5.333333pt;}
.ls6_c00238{letter-spacing:10.666667pt;}
.ls1_c00238{letter-spacing:11.733333pt;}
.ls3_c00238{letter-spacing:15.466667pt;}
.ls0_c00238{letter-spacing:24.000000pt;}
.ws3_c00238{word-spacing:-39.130667pt;}
.ws0_c00238{word-spacing:-35.568000pt;}
.ws5_c00238{word-spacing:-23.520000pt;}
.wsb_c00238{word-spacing:-17.448000pt;}
.ws7_c00238{word-spacing:-15.333333pt;}
.ws2_c00238{word-spacing:-14.781333pt;}
.ws4_c00238{word-spacing:-13.333333pt;}
.ws8_c00238{word-spacing:-4.573333pt;}
.wsa_c00238{word-spacing:-0.933333pt;}
.wsc_c00238{word-spacing:0.000000pt;}
.ws1_c00238{word-spacing:0.245333pt;}
.ws9_c00238{word-spacing:1.266667pt;}
.ws6_c00238{word-spacing:3.866667pt;}
._4_c00238{margin-left:-31.322667pt;}
._1d_c00238{margin-left:-25.309333pt;}
._37_c00238{margin-left:-19.248000pt;}
._2_c00238{margin-left:-17.112000pt;}
._23_c00238{margin-left:-14.904000pt;}
._1f_c00238{margin-left:-12.850667pt;}
._20_c00238{margin-left:-11.749333pt;}
._1e_c00238{margin-left:-9.997333pt;}
._1c_c00238{margin-left:-8.101333pt;}
._19_c00238{margin-left:-6.530667pt;}
._12_c00238{margin-left:-5.333333pt;}
._17_c00238{margin-left:-4.432000pt;}
._16_c00238{margin-left:-3.517333pt;}
._8_c00238{margin-left:-2.186667pt;}
._15_c00238{margin-left:-1.021333pt;}
._0_c00238{width:1.288000pt;}
._14_c00238{width:2.504000pt;}
._b_c00238{width:3.840000pt;}
._9_c00238{width:5.066667pt;}
._e_c00238{width:6.232000pt;}
._5_c00238{width:7.253333pt;}
._6_c00238{width:8.320000pt;}
._7_c00238{width:9.226667pt;}
._a_c00238{width:10.453333pt;}
._f_c00238{width:11.962667pt;}
._3a_c00238{width:12.904000pt;}
._d_c00238{width:13.920000pt;}
._13_c00238{width:14.842667pt;}
._1b_c00238{width:16.557333pt;}
._24_c00238{width:17.562667pt;}
._1a_c00238{width:18.664000pt;}
._2d_c00238{width:20.317333pt;}
._c_c00238{width:21.280000pt;}
._25_c00238{width:22.525333pt;}
._3_c00238{width:24.178667pt;}
._2a_c00238{width:25.173333pt;}
._29_c00238{width:27.786667pt;}
._26_c00238{width:28.800000pt;}
._1_c00238{width:30.114667pt;}
._3c_c00238{width:32.840000pt;}
._28_c00238{width:34.522667pt;}
._32_c00238{width:35.888000pt;}
._30_c00238{width:40.360000pt;}
._38_c00238{width:43.144000pt;}
._3b_c00238{width:56.120000pt;}
._35_c00238{width:57.784000pt;}
._22_c00238{width:65.698667pt;}
._34_c00238{width:77.082667pt;}
._27_c00238{width:78.658667pt;}
._21_c00238{width:86.906667pt;}
._2f_c00238{width:92.738667pt;}
._11_c00238{width:95.688000pt;}
._31_c00238{width:107.837333pt;}
._2e_c00238{width:116.104000pt;}
._36_c00238{width:117.890667pt;}
._10_c00238{width:129.234667pt;}
._18_c00238{width:140.042667pt;}
._3d_c00238{width:155.584000pt;}
._2c_c00238{width:158.280000pt;}
._2b_c00238{width:178.306667pt;}
._33_c00238{width:182.456000pt;}
._39_c00238{width:212.474667pt;}
.fs4_c00238{font-size:40.000000pt;}
.fs6_c00238{font-size:42.666667pt;}
.fs1_c00238{font-size:48.000000pt;}
.fs2_c00238{font-size:53.333333pt;}
.fs5_c00238{font-size:56.000000pt;}
.fs3_c00238{font-size:58.666667pt;}
.fs0_c00238{font-size:61.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y1f_c00238{bottom:2.760000pt;}
.y1e_c00238{bottom:6.425219pt;}
.y1d_c00238{bottom:64.813333pt;}
.y1c_c00238{bottom:83.480000pt;}
.y1b_c00238{bottom:108.280000pt;}
.y1a_c00238{bottom:150.946667pt;}
.y19_c00238{bottom:172.546667pt;}
.y18_c00238{bottom:195.080000pt;}
.y17_c00238{bottom:217.480000pt;}
.y16_c00238{bottom:241.480000pt;}
.y15_c00238{bottom:261.880000pt;}
.y14_c00238{bottom:284.813333pt;}
.y13_c00238{bottom:306.946667pt;}
.y12_c00238{bottom:329.080000pt;}
.y11_c00238{bottom:351.346667pt;}
.y10_c00238{bottom:372.946667pt;}
.yf_c00238{bottom:395.080000pt;}
.ye_c00238{bottom:417.080000pt;}
.yd_c00238{bottom:439.480000pt;}
.yc_c00238{bottom:461.213333pt;}
.yb_c00238{bottom:482.413333pt;}
.ya_c00238{bottom:504.946667pt;}
.y9_c00238{bottom:527.213333pt;}
.y8_c00238{bottom:549.346667pt;}
.y7_c00238{bottom:571.613333pt;}
.y6_c00238{bottom:594.013333pt;}
.y5_c00238{bottom:615.346667pt;}
.y4_c00238{bottom:638.680000pt;}
.y3_c00238{bottom:660.413333pt;}
.y2_c00238{bottom:682.546667pt;}
.y1_c00238{bottom:704.813333pt;}
.h6_c00238{height:11.733399pt;}
.h7_c00238{height:38.937500pt;}
.h5_c00238{height:60.704000pt;}
.h3_c00238{height:67.526042pt;}
.h2_c00238{height:71.785156pt;}
.h4_c00238{height:77.654948pt;}
.h1_c00238{height:738.666667pt;}
.h0_c00238{height:738.733333pt;}
.w2_c00238{width:93.222667pt;}
.w0_c00238{width:503.266667pt;}
.w1_c00238{width:503.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:23.200000pt;}
.x5_c00238{left:24.533333pt;}
.x3_c00238{left:25.466667pt;}
.x4_c00238{left:26.666667pt;}
.x8_c00238{left:56.000000pt;}
.x6_c00238{left:57.333333pt;}
.x1_c00238{left:177.333333pt;}
.xa_c00238{left:208.801554pt;}
.x7_c00238{left:211.466667pt;}
.x9_c00238{left:412.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_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_342e35608d69d0c4877bfff1.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.568848;font-style:normal;font-weight:normal;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_95691d9bbe2bed141c9a1e32.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_f3587b699aa493f409c42785.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.568848;font-style:normal;font-weight:normal;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_00058a28bc5c27e1b910ab16.woff2')format("woff");}.ff4_c00239{font-family:ff4_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:ff5_c00239;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00239{font-family:ff5_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:ff6_c00239;src:url('chunks/assets/font_7654ea4f9437a6f9ebbb5844.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00239;src:url('chunks/assets/font_b54d2eec3635ec1f242264aa.woff2')format("woff");}.ff7_c00239{font-family:ff7_c00239;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00239;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00239{font-family:ff8_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;}
.m1_c00239{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_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;}
.lsb_c00239{letter-spacing:-9.000000px;}
.lsc_c00239{letter-spacing:0.000000px;}
.lsd_c00239{letter-spacing:3.000000px;}
.ls2_c00239{letter-spacing:3.600000px;}
.ls1_c00239{letter-spacing:4.800000px;}
.lse_c00239{letter-spacing:6.000000px;}
.ls3_c00239{letter-spacing:8.100000px;}
.lsa_c00239{letter-spacing:8.694000px;}
.ls7_c00239{letter-spacing:9.894000px;}
.ls4_c00239{letter-spacing:13.500000px;}
.ls9_c00239{letter-spacing:14.208000px;}
.ls5_c00239{letter-spacing:14.325000px;}
.ls8_c00239{letter-spacing:15.408000px;}
.ls0_c00239{letter-spacing:15.600000px;}
.ls6_c00239{letter-spacing:15.981600px;}
.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;}
}
.ws2_c00239{word-spacing:-19.629000px;}
.ws0_c00239{word-spacing:-16.629000px;}
.ws3_c00239{word-spacing:-1.104000px;}
.ws7_c00239{word-spacing:0.000000px;}
.ws1_c00239{word-spacing:0.483000px;}
.ws6_c00239{word-spacing:1.080000px;}
.ws4_c00239{word-spacing:4.576800px;}
.ws5_c00239{word-spacing:5.169600px;}
._18_c00239{margin-left:-37.743000px;}
._3_c00239{margin-left:-24.336000px;}
._30_c00239{margin-left:-22.584000px;}
._2_c00239{margin-left:-20.007000px;}
._0_c00239{margin-left:-18.720000px;}
._25_c00239{margin-left:-16.905000px;}
._d_c00239{margin-left:-14.598000px;}
._e_c00239{margin-left:-13.248000px;}
._a_c00239{margin-left:-11.562000px;}
._1_c00239{margin-left:-9.945000px;}
._2d_c00239{margin-left:-7.917000px;}
._c_c00239{margin-left:-6.348000px;}
._8_c00239{margin-left:-5.313000px;}
._9_c00239{margin-left:-3.381000px;}
._5_c00239{margin-left:-1.863000px;}
._b_c00239{width:1.104000px;}
._7_c00239{width:2.139000px;}
._6_c00239{width:3.726000px;}
._16_c00239{width:4.899000px;}
._1b_c00239{width:6.453000px;}
._14_c00239{width:7.590000px;}
._15_c00239{width:8.625000px;}
._1e_c00239{width:10.143000px;}
._22_c00239{width:11.472000px;}
._17_c00239{width:12.558000px;}
._1a_c00239{width:13.938000px;}
._11_c00239{width:15.042000px;}
._13_c00239{width:16.146000px;}
._10_c00239{width:18.147000px;}
._12_c00239{width:20.631000px;}
._24_c00239{width:22.149000px;}
._28_c00239{width:23.253000px;}
._1c_c00239{width:24.909000px;}
._23_c00239{width:26.100000px;}
._2a_c00239{width:28.410000px;}
._1d_c00239{width:29.877000px;}
._26_c00239{width:33.189000px;}
._27_c00239{width:40.641000px;}
._31_c00239{width:44.631000px;}
._2b_c00239{width:75.840000px;}
._19_c00239{width:85.077000px;}
._2e_c00239{width:103.590000px;}
._21_c00239{width:115.998000px;}
._2f_c00239{width:146.277000px;}
._1f_c00239{width:148.485000px;}
._20_c00239{width:149.694000px;}
._f_c00239{width:171.504000px;}
._29_c00239{width:226.446000px;}
._2c_c00239{width:255.300000px;}
._4_c00239{width:358.509000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(128,128,128);}
.fc0_c00239{color:rgb(0,0,0);}
.fs6_c00239{font-size:31.200000px;}
.fs5_c00239{font-size:39.000000px;}
.fs7_c00239{font-size:48.000000px;}
.fs4_c00239{font-size:54.000000px;}
.fs3_c00239{font-size:57.000000px;}
.fs2_c00239{font-size:66.000000px;}
.fs1_c00239{font-size:69.000000px;}
.fs0_c00239{font-size:117.000000px;}
.y0_c00239{bottom:0.000000px;}
.y1f_c00239{bottom:3.105000px;}
.y1e_c00239{bottom:7.228363px;}
.y1d_c00239{bottom:82.350000px;}
.y1c_c00239{bottom:108.600000px;}
.y1b_c00239{bottom:134.250000px;}
.y1a_c00239{bottom:159.300000px;}
.y19_c00239{bottom:184.500000px;}
.y18_c00239{bottom:208.800000px;}
.y17_c00239{bottom:234.450000px;}
.y16_c00239{bottom:260.100000px;}
.y15_c00239{bottom:285.150000px;}
.y14_c00239{bottom:310.050000px;}
.y13_c00239{bottom:334.350000px;}
.y12_c00239{bottom:357.750000px;}
.y11_c00239{bottom:382.950000px;}
.y10_c00239{bottom:408.600000px;}
.yf_c00239{bottom:433.050000px;}
.ye_c00239{bottom:458.700000px;}
.yd_c00239{bottom:482.550000px;}
.yc_c00239{bottom:508.650000px;}
.yb_c00239{bottom:533.550000px;}
.ya_c00239{bottom:558.600000px;}
.y9_c00239{bottom:583.500000px;}
.y8_c00239{bottom:608.250000px;}
.y7_c00239{bottom:632.850000px;}
.y6_c00239{bottom:657.900000px;}
.y5_c00239{bottom:683.400000px;}
.y4_c00239{bottom:708.150000px;}
.y3_c00239{bottom:733.500000px;}
.y2_c00239{bottom:757.350000px;}
.y1_c00239{bottom:783.450000px;}
.h6_c00239{height:13.200074px;}
.h7_c00239{height:43.804688px;}
.h5_c00239{height:66.713379px;}
.h3_c00239{height:80.758301px;}
.h4_c00239{height:87.361816px;}
.h2_c00239{height:148.135254px;}
.h0_c00239{height:818.100000px;}
.h1_c00239{height:818.250000px;}
.w2_c00239{width:104.875500px;}
.w0_c00239{width:565.350000px;}
.w1_c00239{width:565.500000px;}
.x0_c00239{left:0.000000px;}
.xa_c00239{left:21.150000px;}
.x5_c00239{left:33.300000px;}
.x14_c00239{left:36.450000px;}
.x8_c00239{left:37.500000px;}
.x6_c00239{left:45.600000px;}
.x4_c00239{left:54.300000px;}
.x3_c00239{left:57.600000px;}
.x7_c00239{left:63.150000px;}
.x9_c00239{left:69.900000px;}
.x2_c00239{left:82.950000px;}
.xc_c00239{left:84.600000px;}
.xb_c00239{left:85.650000px;}
.xe_c00239{left:87.300000px;}
.xf_c00239{left:88.350000px;}
.x15_c00239{left:91.050000px;}
.x16_c00239{left:92.100000px;}
.x1_c00239{left:96.150000px;}
.xd_c00239{left:115.050000px;}
.x17_c00239{left:234.489258px;}
.x10_c00239{left:294.900000px;}
.x11_c00239{left:304.350000px;}
.x12_c00239{left:485.550000px;}
.x13_c00239{left:496.500000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.lsb_c00239{letter-spacing:-8.000000pt;}
.lsc_c00239{letter-spacing:0.000000pt;}
.lsd_c00239{letter-spacing:2.666667pt;}
.ls2_c00239{letter-spacing:3.200000pt;}
.ls1_c00239{letter-spacing:4.266667pt;}
.lse_c00239{letter-spacing:5.333333pt;}
.ls3_c00239{letter-spacing:7.200000pt;}
.lsa_c00239{letter-spacing:7.728000pt;}
.ls7_c00239{letter-spacing:8.794667pt;}
.ls4_c00239{letter-spacing:12.000000pt;}
.ls9_c00239{letter-spacing:12.629333pt;}
.ls5_c00239{letter-spacing:12.733333pt;}
.ls8_c00239{letter-spacing:13.696000pt;}
.ls0_c00239{letter-spacing:13.866667pt;}
.ls6_c00239{letter-spacing:14.205867pt;}
.ws2_c00239{word-spacing:-17.448000pt;}
.ws0_c00239{word-spacing:-14.781333pt;}
.ws3_c00239{word-spacing:-0.981333pt;}
.ws7_c00239{word-spacing:0.000000pt;}
.ws1_c00239{word-spacing:0.429333pt;}
.ws6_c00239{word-spacing:0.960000pt;}
.ws4_c00239{word-spacing:4.068267pt;}
.ws5_c00239{word-spacing:4.595200pt;}
._18_c00239{margin-left:-33.549333pt;}
._3_c00239{margin-left:-21.632000pt;}
._30_c00239{margin-left:-20.074667pt;}
._2_c00239{margin-left:-17.784000pt;}
._0_c00239{margin-left:-16.640000pt;}
._25_c00239{margin-left:-15.026667pt;}
._d_c00239{margin-left:-12.976000pt;}
._e_c00239{margin-left:-11.776000pt;}
._a_c00239{margin-left:-10.277333pt;}
._1_c00239{margin-left:-8.840000pt;}
._2d_c00239{margin-left:-7.037333pt;}
._c_c00239{margin-left:-5.642667pt;}
._8_c00239{margin-left:-4.722667pt;}
._9_c00239{margin-left:-3.005333pt;}
._5_c00239{margin-left:-1.656000pt;}
._b_c00239{width:0.981333pt;}
._7_c00239{width:1.901333pt;}
._6_c00239{width:3.312000pt;}
._16_c00239{width:4.354667pt;}
._1b_c00239{width:5.736000pt;}
._14_c00239{width:6.746667pt;}
._15_c00239{width:7.666667pt;}
._1e_c00239{width:9.016000pt;}
._22_c00239{width:10.197333pt;}
._17_c00239{width:11.162667pt;}
._1a_c00239{width:12.389333pt;}
._11_c00239{width:13.370667pt;}
._13_c00239{width:14.352000pt;}
._10_c00239{width:16.130667pt;}
._12_c00239{width:18.338667pt;}
._24_c00239{width:19.688000pt;}
._28_c00239{width:20.669333pt;}
._1c_c00239{width:22.141333pt;}
._23_c00239{width:23.200000pt;}
._2a_c00239{width:25.253333pt;}
._1d_c00239{width:26.557333pt;}
._26_c00239{width:29.501333pt;}
._27_c00239{width:36.125333pt;}
._31_c00239{width:39.672000pt;}
._2b_c00239{width:67.413333pt;}
._19_c00239{width:75.624000pt;}
._2e_c00239{width:92.080000pt;}
._21_c00239{width:103.109333pt;}
._2f_c00239{width:130.024000pt;}
._1f_c00239{width:131.986667pt;}
._20_c00239{width:133.061333pt;}
._f_c00239{width:152.448000pt;}
._29_c00239{width:201.285333pt;}
._2c_c00239{width:226.933333pt;}
._4_c00239{width:318.674667pt;}
.fs6_c00239{font-size:27.733333pt;}
.fs5_c00239{font-size:34.666667pt;}
.fs7_c00239{font-size:42.666667pt;}
.fs4_c00239{font-size:48.000000pt;}
.fs3_c00239{font-size:50.666667pt;}
.fs2_c00239{font-size:58.666667pt;}
.fs1_c00239{font-size:61.333333pt;}
.fs0_c00239{font-size:104.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y1f_c00239{bottom:2.760000pt;}
.y1e_c00239{bottom:6.425212pt;}
.y1d_c00239{bottom:73.200000pt;}
.y1c_c00239{bottom:96.533333pt;}
.y1b_c00239{bottom:119.333333pt;}
.y1a_c00239{bottom:141.600000pt;}
.y19_c00239{bottom:164.000000pt;}
.y18_c00239{bottom:185.600000pt;}
.y17_c00239{bottom:208.400000pt;}
.y16_c00239{bottom:231.200000pt;}
.y15_c00239{bottom:253.466667pt;}
.y14_c00239{bottom:275.600000pt;}
.y13_c00239{bottom:297.200000pt;}
.y12_c00239{bottom:318.000000pt;}
.y11_c00239{bottom:340.400000pt;}
.y10_c00239{bottom:363.200000pt;}
.yf_c00239{bottom:384.933333pt;}
.ye_c00239{bottom:407.733333pt;}
.yd_c00239{bottom:428.933333pt;}
.yc_c00239{bottom:452.133333pt;}
.yb_c00239{bottom:474.266667pt;}
.ya_c00239{bottom:496.533333pt;}
.y9_c00239{bottom:518.666667pt;}
.y8_c00239{bottom:540.666667pt;}
.y7_c00239{bottom:562.533333pt;}
.y6_c00239{bottom:584.800000pt;}
.y5_c00239{bottom:607.466667pt;}
.y4_c00239{bottom:629.466667pt;}
.y3_c00239{bottom:652.000000pt;}
.y2_c00239{bottom:673.200000pt;}
.y1_c00239{bottom:696.400000pt;}
.h6_c00239{height:11.733399pt;}
.h7_c00239{height:38.937500pt;}
.h5_c00239{height:59.300781pt;}
.h3_c00239{height:71.785156pt;}
.h4_c00239{height:77.654948pt;}
.h2_c00239{height:131.675781pt;}
.h0_c00239{height:727.200000pt;}
.h1_c00239{height:727.333333pt;}
.w2_c00239{width:93.222667pt;}
.w0_c00239{width:502.533333pt;}
.w1_c00239{width:502.666667pt;}
.x0_c00239{left:0.000000pt;}
.xa_c00239{left:18.800000pt;}
.x5_c00239{left:29.600000pt;}
.x14_c00239{left:32.400000pt;}
.x8_c00239{left:33.333333pt;}
.x6_c00239{left:40.533333pt;}
.x4_c00239{left:48.266667pt;}
.x3_c00239{left:51.200000pt;}
.x7_c00239{left:56.133333pt;}
.x9_c00239{left:62.133333pt;}
.x2_c00239{left:73.733333pt;}
.xc_c00239{left:75.200000pt;}
.xb_c00239{left:76.133333pt;}
.xe_c00239{left:77.600000pt;}
.xf_c00239{left:78.533333pt;}
.x15_c00239{left:80.933333pt;}
.x16_c00239{left:81.866667pt;}
.x1_c00239{left:85.466667pt;}
.xd_c00239{left:102.266667pt;}
.x17_c00239{left:208.434896pt;}
.x10_c00239{left:262.133333pt;}
.x11_c00239{left:270.533333pt;}
.x12_c00239{left:431.600000pt;}
.x13_c00239{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_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_58c03ff301da3560df7747b6.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_ff642b5e99249b1eeb675d3a.woff2')format("woff");}.ff2_c00240{font-family:ff2_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:ff3_c00240;src:url('chunks/assets/font_c0eabc25011bdebbebbefbe3.woff2')format("woff");}.ff3_c00240{font-family:ff3_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:ff4_c00240;src:url('chunks/assets/font_750b50137637042cdf53fd79.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_05df8ec1f885ba0e9eb44dba.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_6048bacdd78d4f09b47a204e.woff2')format("woff");}.ff6_c00240{font-family:ff6_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:ff7_c00240;src:url('chunks/assets/font_c660e8d0d3fb8d95e13ce37b.woff2')format("woff");}.ff7_c00240{font-family:ff7_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:ff8_c00240;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00240{font-family:ff8_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);}
.m1_c00240{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_c00240{vertical-align:0.000000px;}
.ls8_c00240{letter-spacing:-3.000000px;}
.ls3_c00240{letter-spacing:0.000000px;}
.ls1_c00240{letter-spacing:0.900000px;}
.ls4_c00240{letter-spacing:3.000000px;}
.ls5_c00240{letter-spacing:9.000000px;}
.ls2_c00240{letter-spacing:9.750000px;}
.ls7_c00240{letter-spacing:12.000000px;}
.ls0_c00240{letter-spacing:12.318000px;}
.ls6_c00240{letter-spacing:27.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00240{word-spacing:-27.906000px;}
.ws6_c00240{word-spacing:-24.288000px;}
.ws4_c00240{word-spacing:-19.521000px;}
.ws1_c00240{word-spacing:-18.798000px;}
.ws2_c00240{word-spacing:-15.906000px;}
.ws7_c00240{word-spacing:0.000000px;}
.ws5_c00240{word-spacing:2.919000px;}
.ws0_c00240{word-spacing:73.110000px;}
._2f_c00240{margin-left:-21.252000px;}
._2a_c00240{margin-left:-17.526000px;}
._22_c00240{margin-left:-15.576000px;}
._29_c00240{margin-left:-14.490000px;}
._4_c00240{margin-left:-13.317000px;}
._f_c00240{margin-left:-12.096000px;}
._23_c00240{margin-left:-10.836000px;}
._d_c00240{margin-left:-9.588000px;}
._13_c00240{margin-left:-8.283000px;}
._11_c00240{margin-left:-6.693000px;}
._8_c00240{margin-left:-5.175000px;}
._c_c00240{margin-left:-3.450000px;}
._1_c00240{margin-left:-2.346000px;}
._b_c00240{margin-left:-1.104000px;}
._6_c00240{width:1.104000px;}
._0_c00240{width:2.415000px;}
._5_c00240{width:3.933000px;}
._7_c00240{width:5.244000px;}
._2_c00240{width:6.417000px;}
._27_c00240{width:7.434000px;}
._3_c00240{width:8.487000px;}
._e_c00240{width:10.578000px;}
._10_c00240{width:11.937000px;}
._12_c00240{width:13.593000px;}
._a_c00240{width:15.663000px;}
._1e_c00240{width:17.163000px;}
._2d_c00240{width:18.189000px;}
._9_c00240{width:19.665000px;}
._2c_c00240{width:22.932000px;}
._25_c00240{width:28.098000px;}
._28_c00240{width:30.048000px;}
._1f_c00240{width:35.424000px;}
._2b_c00240{width:37.380000px;}
._2e_c00240{width:44.088000px;}
._17_c00240{width:46.626000px;}
._26_c00240{width:51.621000px;}
._15_c00240{width:58.908000px;}
._1a_c00240{width:60.696000px;}
._1d_c00240{width:65.148000px;}
._24_c00240{width:76.926000px;}
._1b_c00240{width:87.579000px;}
._1c_c00240{width:89.064000px;}
._19_c00240{width:99.555000px;}
._16_c00240{width:103.173000px;}
._21_c00240{width:113.142000px;}
._20_c00240{width:169.203000px;}
._14_c00240{width:475.923000px;}
._18_c00240{width:616.455000px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(128,128,128);}
.fc0_c00240{color:rgb(0,0,0);}
.fs3_c00240{font-size:45.000000px;}
.fs4_c00240{font-size:48.000000px;}
.fs5_c00240{font-size:63.000000px;}
.fs1_c00240{font-size:66.000000px;}
.fs0_c00240{font-size:69.000000px;}
.fs2_c00240{font-size:78.000000px;}
.fs6_c00240{font-size:81.000000px;}
.y0_c00240{bottom:0.000000px;}
.y22_c00240{bottom:3.105000px;}
.y21_c00240{bottom:7.228363px;}
.y20_c00240{bottom:60.300000px;}
.y1f_c00240{bottom:85.350000px;}
.y1e_c00240{bottom:109.950000px;}
.y1d_c00240{bottom:133.950000px;}
.y1c_c00240{bottom:159.000000px;}
.y1b_c00240{bottom:183.600000px;}
.y1a_c00240{bottom:208.650000px;}
.y19_c00240{bottom:233.550000px;}
.y18_c00240{bottom:259.200000px;}
.y17_c00240{bottom:283.500000px;}
.y16_c00240{bottom:310.200000px;}
.y15_c00240{bottom:333.750000px;}
.y14_c00240{bottom:358.800000px;}
.y13_c00240{bottom:383.100000px;}
.y12_c00240{bottom:430.350000px;}
.y11_c00240{bottom:448.800000px;}
.y10_c00240{bottom:466.650000px;}
.yf_c00240{bottom:484.350000px;}
.ye_c00240{bottom:501.150000px;}
.yd_c00240{bottom:518.700000px;}
.yc_c00240{bottom:535.950000px;}
.yb_c00240{bottom:553.050000px;}
.ya_c00240{bottom:571.050000px;}
.y9_c00240{bottom:588.600000px;}
.y8_c00240{bottom:606.450000px;}
.y7_c00240{bottom:632.700000px;}
.y6_c00240{bottom:658.800000px;}
.y5_c00240{bottom:683.100000px;}
.y4_c00240{bottom:708.750000px;}
.y3_c00240{bottom:733.800000px;}
.y2_c00240{bottom:758.400000px;}
.y1_c00240{bottom:784.050000px;}
.h8_c00240{height:13.200074px;}
.h9_c00240{height:43.804688px;}
.h5_c00240{height:52.668457px;}
.h2_c00240{height:73.623000px;}
.h1_c00240{height:80.758301px;}
.h3_c00240{height:83.563477px;}
.h6_c00240{height:87.361816px;}
.h4_c00240{height:91.291992px;}
.h7_c00240{height:102.555176px;}
.h0_c00240{height:823.500000px;}
.w2_c00240{width:104.875500px;}
.w1_c00240{width:560.250000px;}
.w0_c00240{width:560.550000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:21.150000px;}
.x6_c00240{left:22.650000px;}
.x3_c00240{left:23.850000px;}
.xa_c00240{left:24.900000px;}
.x5_c00240{left:42.150000px;}
.x8_c00240{left:49.500000px;}
.x9_c00240{left:52.950000px;}
.x7_c00240{left:73.200000px;}
.x4_c00240{left:166.650000px;}
.x1_c00240{left:193.350000px;}
.xc_c00240{left:232.089249px;}
.xb_c00240{left:434.400000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls8_c00240{letter-spacing:-2.666667pt;}
.ls3_c00240{letter-spacing:0.000000pt;}
.ls1_c00240{letter-spacing:0.800000pt;}
.ls4_c00240{letter-spacing:2.666667pt;}
.ls5_c00240{letter-spacing:8.000000pt;}
.ls2_c00240{letter-spacing:8.666667pt;}
.ls7_c00240{letter-spacing:10.666667pt;}
.ls0_c00240{letter-spacing:10.949333pt;}
.ls6_c00240{letter-spacing:24.000000pt;}
.ws3_c00240{word-spacing:-24.805333pt;}
.ws6_c00240{word-spacing:-21.589333pt;}
.ws4_c00240{word-spacing:-17.352000pt;}
.ws1_c00240{word-spacing:-16.709333pt;}
.ws2_c00240{word-spacing:-14.138667pt;}
.ws7_c00240{word-spacing:0.000000pt;}
.ws5_c00240{word-spacing:2.594667pt;}
.ws0_c00240{word-spacing:64.986667pt;}
._2f_c00240{margin-left:-18.890667pt;}
._2a_c00240{margin-left:-15.578667pt;}
._22_c00240{margin-left:-13.845333pt;}
._29_c00240{margin-left:-12.880000pt;}
._4_c00240{margin-left:-11.837333pt;}
._f_c00240{margin-left:-10.752000pt;}
._23_c00240{margin-left:-9.632000pt;}
._d_c00240{margin-left:-8.522667pt;}
._13_c00240{margin-left:-7.362667pt;}
._11_c00240{margin-left:-5.949333pt;}
._8_c00240{margin-left:-4.600000pt;}
._c_c00240{margin-left:-3.066667pt;}
._1_c00240{margin-left:-2.085333pt;}
._b_c00240{margin-left:-0.981333pt;}
._6_c00240{width:0.981333pt;}
._0_c00240{width:2.146667pt;}
._5_c00240{width:3.496000pt;}
._7_c00240{width:4.661333pt;}
._2_c00240{width:5.704000pt;}
._27_c00240{width:6.608000pt;}
._3_c00240{width:7.544000pt;}
._e_c00240{width:9.402667pt;}
._10_c00240{width:10.610667pt;}
._12_c00240{width:12.082667pt;}
._a_c00240{width:13.922667pt;}
._1e_c00240{width:15.256000pt;}
._2d_c00240{width:16.168000pt;}
._9_c00240{width:17.480000pt;}
._2c_c00240{width:20.384000pt;}
._25_c00240{width:24.976000pt;}
._28_c00240{width:26.709333pt;}
._1f_c00240{width:31.488000pt;}
._2b_c00240{width:33.226667pt;}
._2e_c00240{width:39.189333pt;}
._17_c00240{width:41.445333pt;}
._26_c00240{width:45.885333pt;}
._15_c00240{width:52.362667pt;}
._1a_c00240{width:53.952000pt;}
._1d_c00240{width:57.909333pt;}
._24_c00240{width:68.378667pt;}
._1b_c00240{width:77.848000pt;}
._1c_c00240{width:79.168000pt;}
._19_c00240{width:88.493333pt;}
._16_c00240{width:91.709333pt;}
._21_c00240{width:100.570667pt;}
._20_c00240{width:150.402667pt;}
._14_c00240{width:423.042667pt;}
._18_c00240{width:547.960000pt;}
.fs3_c00240{font-size:40.000000pt;}
.fs4_c00240{font-size:42.666667pt;}
.fs5_c00240{font-size:56.000000pt;}
.fs1_c00240{font-size:58.666667pt;}
.fs0_c00240{font-size:61.333333pt;}
.fs2_c00240{font-size:69.333333pt;}
.fs6_c00240{font-size:72.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y22_c00240{bottom:2.760000pt;}
.y21_c00240{bottom:6.425212pt;}
.y20_c00240{bottom:53.600000pt;}
.y1f_c00240{bottom:75.866667pt;}
.y1e_c00240{bottom:97.733333pt;}
.y1d_c00240{bottom:119.066667pt;}
.y1c_c00240{bottom:141.333333pt;}
.y1b_c00240{bottom:163.200000pt;}
.y1a_c00240{bottom:185.466667pt;}
.y19_c00240{bottom:207.600000pt;}
.y18_c00240{bottom:230.400000pt;}
.y17_c00240{bottom:252.000000pt;}
.y16_c00240{bottom:275.733333pt;}
.y15_c00240{bottom:296.666667pt;}
.y14_c00240{bottom:318.933333pt;}
.y13_c00240{bottom:340.533333pt;}
.y12_c00240{bottom:382.533333pt;}
.y11_c00240{bottom:398.933333pt;}
.y10_c00240{bottom:414.800000pt;}
.yf_c00240{bottom:430.533333pt;}
.ye_c00240{bottom:445.466667pt;}
.yd_c00240{bottom:461.066667pt;}
.yc_c00240{bottom:476.400000pt;}
.yb_c00240{bottom:491.600000pt;}
.ya_c00240{bottom:507.600000pt;}
.y9_c00240{bottom:523.200000pt;}
.y8_c00240{bottom:539.066667pt;}
.y7_c00240{bottom:562.400000pt;}
.y6_c00240{bottom:585.600000pt;}
.y5_c00240{bottom:607.200000pt;}
.y4_c00240{bottom:630.000000pt;}
.y3_c00240{bottom:652.266667pt;}
.y2_c00240{bottom:674.133333pt;}
.y1_c00240{bottom:696.933333pt;}
.h8_c00240{height:11.733399pt;}
.h9_c00240{height:38.937500pt;}
.h5_c00240{height:46.816406pt;}
.h2_c00240{height:65.442667pt;}
.h1_c00240{height:71.785156pt;}
.h3_c00240{height:74.278646pt;}
.h6_c00240{height:77.654948pt;}
.h4_c00240{height:81.148438pt;}
.h7_c00240{height:91.160156pt;}
.h0_c00240{height:732.000000pt;}
.w2_c00240{width:93.222667pt;}
.w1_c00240{width:498.000000pt;}
.w0_c00240{width:498.266667pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:18.800000pt;}
.x6_c00240{left:20.133333pt;}
.x3_c00240{left:21.200000pt;}
.xa_c00240{left:22.133333pt;}
.x5_c00240{left:37.466667pt;}
.x8_c00240{left:44.000000pt;}
.x9_c00240{left:47.066667pt;}
.x7_c00240{left:65.066667pt;}
.x4_c00240{left:148.133333pt;}
.x1_c00240{left:171.866667pt;}
.xc_c00240{left:206.301554pt;}
.xb_c00240{left:386.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_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_fad2e4735a10ffdfe1c17ade.woff2')format("woff");}.ff1_c00241{font-family:ff1_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:ff2_c00241;src:url('chunks/assets/font_e785c9926d3475cf6cd51781.woff2')format("woff");}.ff2_c00241{font-family:ff2_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:ff3_c00241;src:url('chunks/assets/font_e6f6b34ebae6e1dd4ac47484.woff2')format("woff");}.ff3_c00241{font-family:ff3_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:ff4_c00241;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00241{font-family:ff4_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:ff5_c00241;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff5_c00241{font-family:ff5_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:ff6_c00241;src:url('chunks/assets/font_a3a100fbcfe58c732ba3dda1.woff2')format("woff");}.ff6_c00241{font-family:ff6_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:ff7_c00241;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00241{font-family:ff7_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;}
.lsb_c00241{letter-spacing:0.000000px;}
.ls8_c00241{letter-spacing:2.502000px;}
.ls7_c00241{letter-spacing:3.000000px;}
.ls0_c00241{letter-spacing:6.000000px;}
.ls9_c00241{letter-spacing:7.701000px;}
.ls5_c00241{letter-spacing:8.400000px;}
.ls4_c00241{letter-spacing:11.091000px;}
.ls2_c00241{letter-spacing:12.489000px;}
.ls6_c00241{letter-spacing:16.890000px;}
.ls3_c00241{letter-spacing:19.800000px;}
.ls1_c00241{letter-spacing:22.200000px;}
.lsc_c00241{letter-spacing:27.000000px;}
.lsa_c00241{letter-spacing:35.919000px;}
.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:-48.021000px;}
.ws5_c00241{word-spacing:-44.022000px;}
.ws3_c00241{word-spacing:-18.018000px;}
.ws0_c00241{word-spacing:-16.629000px;}
.ws4_c00241{word-spacing:-15.552000px;}
.ws6_c00241{word-spacing:0.000000px;}
.ws1_c00241{word-spacing:2.823000px;}
._2e_c00241{margin-left:-29.007000px;}
._2c_c00241{margin-left:-20.583000px;}
._10_c00241{margin-left:-17.181000px;}
._2f_c00241{margin-left:-15.939000px;}
._1e_c00241{margin-left:-14.628000px;}
._12_c00241{margin-left:-13.548000px;}
._1b_c00241{margin-left:-12.006000px;}
._2a_c00241{margin-left:-10.971000px;}
._c_c00241{margin-left:-9.867000px;}
._1d_c00241{margin-left:-7.935000px;}
._d_c00241{margin-left:-6.900000px;}
._1c_c00241{margin-left:-5.382000px;}
._8_c00241{margin-left:-4.278000px;}
._6_c00241{margin-left:-2.277000px;}
._5_c00241{margin-left:-1.242000px;}
._a_c00241{width:1.242000px;}
._b_c00241{width:2.691000px;}
._1f_c00241{width:3.726000px;}
._3_c00241{width:4.761000px;}
._7_c00241{width:5.865000px;}
._2_c00241{width:7.866000px;}
._0_c00241{width:9.729000px;}
._1_c00241{width:11.730000px;}
._1a_c00241{width:12.972000px;}
._27_c00241{width:14.661000px;}
._16_c00241{width:15.765000px;}
._f_c00241{width:17.355000px;}
._28_c00241{width:19.803000px;}
._13_c00241{width:21.201000px;}
._19_c00241{width:22.287000px;}
._11_c00241{width:24.771000px;}
._15_c00241{width:26.703000px;}
._18_c00241{width:28.083000px;}
._25_c00241{width:31.395000px;}
._20_c00241{width:33.948000px;}
._24_c00241{width:36.360000px;}
._29_c00241{width:38.781000px;}
._2d_c00241{width:47.265000px;}
._30_c00241{width:50.991000px;}
._23_c00241{width:62.238000px;}
._21_c00241{width:80.661000px;}
._9_c00241{width:83.973000px;}
._14_c00241{width:89.352000px;}
._26_c00241{width:108.813000px;}
._2b_c00241{width:118.611000px;}
._e_c00241{width:129.582000px;}
._17_c00241{width:168.879000px;}
._22_c00241{width:184.782000px;}
._31_c00241{width:235.290000px;}
._4_c00241{width:372.117000px;}
.fc2_c00241{color:transparent;}
.fc1_c00241{color:rgb(128,128,128);}
.fc0_c00241{color:rgb(0,0,0);}
.fs4_c00241{font-size:48.000000px;}
.fs3_c00241{font-size:54.000000px;}
.fs1_c00241{font-size:63.000000px;}
.fs2_c00241{font-size:66.000000px;}
.fs0_c00241{font-size:69.000000px;}
.y0_c00241{bottom:0.000000px;}
.y1d_c00241{bottom:3.105000px;}
.y1c_c00241{bottom:7.228363px;}
.y1b_c00241{bottom:89.100000px;}
.y1a_c00241{bottom:114.750000px;}
.y19_c00241{bottom:141.150000px;}
.y18_c00241{bottom:166.350000px;}
.y17_c00241{bottom:189.750000px;}
.y16_c00241{bottom:216.450000px;}
.y15_c00241{bottom:266.400000px;}
.y14_c00241{bottom:289.650000px;}
.y13_c00241{bottom:316.350000px;}
.y12_c00241{bottom:345.900000px;}
.y11_c00241{bottom:364.200000px;}
.y10_c00241{bottom:415.800000px;}
.yf_c00241{bottom:438.750000px;}
.ye_c00241{bottom:464.700000px;}
.yd_c00241{bottom:489.000000px;}
.yc_c00241{bottom:513.000000px;}
.yb_c00241{bottom:537.300000px;}
.ya_c00241{bottom:561.600000px;}
.y9_c00241{bottom:589.050000px;}
.y8_c00241{bottom:613.650000px;}
.y7_c00241{bottom:638.850000px;}
.y6_c00241{bottom:661.950000px;}
.y5_c00241{bottom:688.800000px;}
.y4_c00241{bottom:713.550000px;}
.y3_c00241{bottom:738.000000px;}
.y2_c00241{bottom:763.500000px;}
.y1_c00241{bottom:789.000000px;}
.h7_c00241{height:13.200074px;}
.h8_c00241{height:43.804688px;}
.h4_c00241{height:63.202148px;}
.h6_c00241{height:67.686035px;}
.h5_c00241{height:67.719727px;}
.h2_c00241{height:80.758301px;}
.h3_c00241{height:87.361816px;}
.h1_c00241{height:827.250000px;}
.h0_c00241{height:827.550000px;}
.w2_c00241{width:104.875500px;}
.w0_c00241{width:572.100000px;}
.w1_c00241{width:572.250000px;}
.x0_c00241{left:0.000000px;}
.x3_c00241{left:20.250000px;}
.xc_c00241{left:22.350000px;}
.x5_c00241{left:35.550000px;}
.x2_c00241{left:39.150000px;}
.x6_c00241{left:42.900000px;}
.xb_c00241{left:83.400000px;}
.x4_c00241{left:84.750000px;}
.xa_c00241{left:86.100000px;}
.x1_c00241{left:98.250000px;}
.x9_c00241{left:109.800000px;}
.x7_c00241{left:133.350000px;}
.x8_c00241{left:192.750000px;}
.xd_c00241{left:204.450000px;}
.xe_c00241{left:237.864258px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.lsb_c00241{letter-spacing:0.000000pt;}
.ls8_c00241{letter-spacing:2.224000pt;}
.ls7_c00241{letter-spacing:2.666667pt;}
.ls0_c00241{letter-spacing:5.333333pt;}
.ls9_c00241{letter-spacing:6.845333pt;}
.ls5_c00241{letter-spacing:7.466667pt;}
.ls4_c00241{letter-spacing:9.858667pt;}
.ls2_c00241{letter-spacing:11.101333pt;}
.ls6_c00241{letter-spacing:15.013333pt;}
.ls3_c00241{letter-spacing:17.600000pt;}
.ls1_c00241{letter-spacing:19.733333pt;}
.lsc_c00241{letter-spacing:24.000000pt;}
.lsa_c00241{letter-spacing:31.928000pt;}
.ws2_c00241{word-spacing:-42.685333pt;}
.ws5_c00241{word-spacing:-39.130667pt;}
.ws3_c00241{word-spacing:-16.016000pt;}
.ws0_c00241{word-spacing:-14.781333pt;}
.ws4_c00241{word-spacing:-13.824000pt;}
.ws6_c00241{word-spacing:0.000000pt;}
.ws1_c00241{word-spacing:2.509333pt;}
._2e_c00241{margin-left:-25.784000pt;}
._2c_c00241{margin-left:-18.296000pt;}
._10_c00241{margin-left:-15.272000pt;}
._2f_c00241{margin-left:-14.168000pt;}
._1e_c00241{margin-left:-13.002667pt;}
._12_c00241{margin-left:-12.042667pt;}
._1b_c00241{margin-left:-10.672000pt;}
._2a_c00241{margin-left:-9.752000pt;}
._c_c00241{margin-left:-8.770667pt;}
._1d_c00241{margin-left:-7.053333pt;}
._d_c00241{margin-left:-6.133333pt;}
._1c_c00241{margin-left:-4.784000pt;}
._8_c00241{margin-left:-3.802667pt;}
._6_c00241{margin-left:-2.024000pt;}
._5_c00241{margin-left:-1.104000pt;}
._a_c00241{width:1.104000pt;}
._b_c00241{width:2.392000pt;}
._1f_c00241{width:3.312000pt;}
._3_c00241{width:4.232000pt;}
._7_c00241{width:5.213333pt;}
._2_c00241{width:6.992000pt;}
._0_c00241{width:8.648000pt;}
._1_c00241{width:10.426667pt;}
._1a_c00241{width:11.530667pt;}
._27_c00241{width:13.032000pt;}
._16_c00241{width:14.013333pt;}
._f_c00241{width:15.426667pt;}
._28_c00241{width:17.602667pt;}
._13_c00241{width:18.845333pt;}
._19_c00241{width:19.810667pt;}
._11_c00241{width:22.018667pt;}
._15_c00241{width:23.736000pt;}
._18_c00241{width:24.962667pt;}
._25_c00241{width:27.906667pt;}
._20_c00241{width:30.176000pt;}
._24_c00241{width:32.320000pt;}
._29_c00241{width:34.472000pt;}
._2d_c00241{width:42.013333pt;}
._30_c00241{width:45.325333pt;}
._23_c00241{width:55.322667pt;}
._21_c00241{width:71.698667pt;}
._9_c00241{width:74.642667pt;}
._14_c00241{width:79.424000pt;}
._26_c00241{width:96.722667pt;}
._2b_c00241{width:105.432000pt;}
._e_c00241{width:115.184000pt;}
._17_c00241{width:150.114667pt;}
._22_c00241{width:164.250667pt;}
._31_c00241{width:209.146667pt;}
._4_c00241{width:330.770667pt;}
.fs4_c00241{font-size:42.666667pt;}
.fs3_c00241{font-size:48.000000pt;}
.fs1_c00241{font-size:56.000000pt;}
.fs2_c00241{font-size:58.666667pt;}
.fs0_c00241{font-size:61.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y1d_c00241{bottom:2.760000pt;}
.y1c_c00241{bottom:6.425212pt;}
.y1b_c00241{bottom:79.200000pt;}
.y1a_c00241{bottom:102.000000pt;}
.y19_c00241{bottom:125.466667pt;}
.y18_c00241{bottom:147.866667pt;}
.y17_c00241{bottom:168.666667pt;}
.y16_c00241{bottom:192.400000pt;}
.y15_c00241{bottom:236.800000pt;}
.y14_c00241{bottom:257.466667pt;}
.y13_c00241{bottom:281.200000pt;}
.y12_c00241{bottom:307.466667pt;}
.y11_c00241{bottom:323.733333pt;}
.y10_c00241{bottom:369.600000pt;}
.yf_c00241{bottom:390.000000pt;}
.ye_c00241{bottom:413.066667pt;}
.yd_c00241{bottom:434.666667pt;}
.yc_c00241{bottom:456.000000pt;}
.yb_c00241{bottom:477.600000pt;}
.ya_c00241{bottom:499.200000pt;}
.y9_c00241{bottom:523.600000pt;}
.y8_c00241{bottom:545.466667pt;}
.y7_c00241{bottom:567.866667pt;}
.y6_c00241{bottom:588.400000pt;}
.y5_c00241{bottom:612.266667pt;}
.y4_c00241{bottom:634.266667pt;}
.y3_c00241{bottom:656.000000pt;}
.y2_c00241{bottom:678.666667pt;}
.y1_c00241{bottom:701.333333pt;}
.h7_c00241{height:11.733399pt;}
.h8_c00241{height:38.937500pt;}
.h4_c00241{height:56.179688pt;}
.h6_c00241{height:60.165365pt;}
.h5_c00241{height:60.195312pt;}
.h2_c00241{height:71.785156pt;}
.h3_c00241{height:77.654948pt;}
.h1_c00241{height:735.333333pt;}
.h0_c00241{height:735.600000pt;}
.w2_c00241{width:93.222667pt;}
.w0_c00241{width:508.533333pt;}
.w1_c00241{width:508.666667pt;}
.x0_c00241{left:0.000000pt;}
.x3_c00241{left:18.000000pt;}
.xc_c00241{left:19.866667pt;}
.x5_c00241{left:31.600000pt;}
.x2_c00241{left:34.800000pt;}
.x6_c00241{left:38.133333pt;}
.xb_c00241{left:74.133333pt;}
.x4_c00241{left:75.333333pt;}
.xa_c00241{left:76.533333pt;}
.x1_c00241{left:87.333333pt;}
.x9_c00241{left:97.600000pt;}
.x7_c00241{left:118.533333pt;}
.x8_c00241{left:171.333333pt;}
.xd_c00241{left:181.733333pt;}
.xe_c00241{left:211.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_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_1ce02d7a14c6478f80ac2ac4.woff2')format("woff");}.ff1_c00242{font-family:ff1_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:ff2_c00242;src:url('chunks/assets/font_45cb0fd6ba55c6f31b8cf72d.woff2')format("woff");}.ff2_c00242{font-family:ff2_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:ff3_c00242;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.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_9268461a2a14046e9750194c.woff2')format("woff");}.ff4_c00242{font-family:ff4_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:ff5_c00242;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00242{font-family:ff5_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;}
.ls2_c00242{letter-spacing:0.000000px;}
.ls3_c00242{letter-spacing:3.000000px;}
.ls4_c00242{letter-spacing:9.000000px;}
.ls0_c00242{letter-spacing:14.325000px;}
.ls1_c00242{letter-spacing:15.600000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:-44.022000px;}
.ws3_c00242{word-spacing:-25.629000px;}
.ws2_c00242{word-spacing:-0.828000px;}
.ws4_c00242{word-spacing:0.000000px;}
.ws1_c00242{word-spacing:14.145000px;}
._29_c00242{margin-left:-37.680000px;}
._28_c00242{margin-left:-19.713000px;}
._2d_c00242{margin-left:-18.615000px;}
._25_c00242{margin-left:-17.046000px;}
._23_c00242{margin-left:-15.729000px;}
._10_c00242{margin-left:-14.271000px;}
._16_c00242{margin-left:-12.972000px;}
._17_c00242{margin-left:-11.937000px;}
._26_c00242{margin-left:-10.419000px;}
._d_c00242{margin-left:-8.418000px;}
._c_c00242{margin-left:-6.348000px;}
._14_c00242{margin-left:-5.007000px;}
._e_c00242{margin-left:-3.825000px;}
._1_c00242{margin-left:-2.346000px;}
._0_c00242{margin-left:-1.173000px;}
._4_c00242{width:1.794000px;}
._2_c00242{width:3.381000px;}
._3_c00242{width:5.106000px;}
._7_c00242{width:6.831000px;}
._19_c00242{width:8.172000px;}
._6_c00242{width:9.522000px;}
._13_c00242{width:11.055000px;}
._a_c00242{width:12.696000px;}
._8_c00242{width:14.628000px;}
._9_c00242{width:16.008000px;}
._12_c00242{width:17.376000px;}
._24_c00242{width:19.290000px;}
._27_c00242{width:21.195000px;}
._1f_c00242{width:23.115000px;}
._2a_c00242{width:24.564000px;}
._1d_c00242{width:26.589000px;}
._2b_c00242{width:28.704000px;}
._11_c00242{width:30.495000px;}
._1a_c00242{width:33.258000px;}
._1b_c00242{width:35.880000px;}
._1e_c00242{width:37.398000px;}
._1c_c00242{width:38.709000px;}
._20_c00242{width:40.641000px;}
._22_c00242{width:42.366000px;}
._21_c00242{width:46.698000px;}
._b_c00242{width:98.946000px;}
._15_c00242{width:106.728000px;}
._2c_c00242{width:117.903000px;}
._f_c00242{width:134.544000px;}
._18_c00242{width:170.637000px;}
._5_c00242{width:489.141000px;}
._2e_c00242{width:514.344000px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(128,128,128);}
.fc0_c00242{color:rgb(0,0,0);}
.fs4_c00242{font-size:48.000000px;}
.fs2_c00242{font-size:66.000000px;}
.fs0_c00242{font-size:69.000000px;}
.fs3_c00242{font-size:78.000000px;}
.fs1_c00242{font-size:84.000000px;}
.y0_c00242{bottom:0.000000px;}
.y1f_c00242{bottom:3.105000px;}
.y1e_c00242{bottom:7.228371px;}
.y1d_c00242{bottom:74.715000px;}
.y1c_c00242{bottom:99.615000px;}
.y1b_c00242{bottom:125.265000px;}
.y1a_c00242{bottom:150.615000px;}
.y19_c00242{bottom:174.465000px;}
.y18_c00242{bottom:199.515000px;}
.y17_c00242{bottom:224.415000px;}
.y16_c00242{bottom:249.165000px;}
.y15_c00242{bottom:274.065000px;}
.y14_c00242{bottom:298.815000px;}
.y13_c00242{bottom:324.015000px;}
.y12_c00242{bottom:348.765000px;}
.y11_c00242{bottom:373.965000px;}
.y10_c00242{bottom:397.215000px;}
.yf_c00242{bottom:422.565000px;}
.ye_c00242{bottom:446.565000px;}
.yd_c00242{bottom:471.915000px;}
.yc_c00242{bottom:520.515000px;}
.yb_c00242{bottom:544.365000px;}
.ya_c00242{bottom:569.415000px;}
.y9_c00242{bottom:594.015000px;}
.y8_c00242{bottom:618.765000px;}
.y7_c00242{bottom:643.365000px;}
.y6_c00242{bottom:668.265000px;}
.y5_c00242{bottom:692.865000px;}
.y4_c00242{bottom:717.615000px;}
.y3_c00242{bottom:742.215000px;}
.y2_c00242{bottom:766.815000px;}
.y1_c00242{bottom:790.515000px;}
.h6_c00242{height:13.200074px;}
.h7_c00242{height:43.804688px;}
.h4_c00242{height:80.758301px;}
.h2_c00242{height:87.361816px;}
.h5_c00242{height:98.756836px;}
.h3_c00242{height:106.353516px;}
.h1_c00242{height:831.000000px;}
.h0_c00242{height:831.075000px;}
.w2_c00242{width:104.875500px;}
.w0_c00242{width:566.175000px;}
.w1_c00242{width:566.250000px;}
.x0_c00242{left:0.000000px;}
.x9_c00242{left:19.200000px;}
.x8_c00242{left:20.250000px;}
.x2_c00242{left:21.600000px;}
.x7_c00242{left:22.650000px;}
.x4_c00242{left:23.700000px;}
.x3_c00242{left:25.650000px;}
.x6_c00242{left:45.900000px;}
.xa_c00242{left:49.650000px;}
.x5_c00242{left:138.000000px;}
.x1_c00242{left:192.750000px;}
.xc_c00242{left:234.901749px;}
.xb_c00242{left:277.200000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls2_c00242{letter-spacing:0.000000pt;}
.ls3_c00242{letter-spacing:2.666667pt;}
.ls4_c00242{letter-spacing:8.000000pt;}
.ls0_c00242{letter-spacing:12.733333pt;}
.ls1_c00242{letter-spacing:13.866667pt;}
.ws0_c00242{word-spacing:-39.130667pt;}
.ws3_c00242{word-spacing:-22.781333pt;}
.ws2_c00242{word-spacing:-0.736000pt;}
.ws4_c00242{word-spacing:0.000000pt;}
.ws1_c00242{word-spacing:12.573333pt;}
._29_c00242{margin-left:-33.493333pt;}
._28_c00242{margin-left:-17.522667pt;}
._2d_c00242{margin-left:-16.546667pt;}
._25_c00242{margin-left:-15.152000pt;}
._23_c00242{margin-left:-13.981333pt;}
._10_c00242{margin-left:-12.685333pt;}
._16_c00242{margin-left:-11.530667pt;}
._17_c00242{margin-left:-10.610667pt;}
._26_c00242{margin-left:-9.261333pt;}
._d_c00242{margin-left:-7.482667pt;}
._c_c00242{margin-left:-5.642667pt;}
._14_c00242{margin-left:-4.450667pt;}
._e_c00242{margin-left:-3.400000pt;}
._1_c00242{margin-left:-2.085333pt;}
._0_c00242{margin-left:-1.042667pt;}
._4_c00242{width:1.594667pt;}
._2_c00242{width:3.005333pt;}
._3_c00242{width:4.538667pt;}
._7_c00242{width:6.072000pt;}
._19_c00242{width:7.264000pt;}
._6_c00242{width:8.464000pt;}
._13_c00242{width:9.826667pt;}
._a_c00242{width:11.285333pt;}
._8_c00242{width:13.002667pt;}
._9_c00242{width:14.229333pt;}
._12_c00242{width:15.445333pt;}
._24_c00242{width:17.146667pt;}
._27_c00242{width:18.840000pt;}
._1f_c00242{width:20.546667pt;}
._2a_c00242{width:21.834667pt;}
._1d_c00242{width:23.634667pt;}
._2b_c00242{width:25.514667pt;}
._11_c00242{width:27.106667pt;}
._1a_c00242{width:29.562667pt;}
._1b_c00242{width:31.893333pt;}
._1e_c00242{width:33.242667pt;}
._1c_c00242{width:34.408000pt;}
._20_c00242{width:36.125333pt;}
._22_c00242{width:37.658667pt;}
._21_c00242{width:41.509333pt;}
._b_c00242{width:87.952000pt;}
._15_c00242{width:94.869333pt;}
._2c_c00242{width:104.802667pt;}
._f_c00242{width:119.594667pt;}
._18_c00242{width:151.677333pt;}
._5_c00242{width:434.792000pt;}
._2e_c00242{width:457.194667pt;}
.fs4_c00242{font-size:42.666667pt;}
.fs2_c00242{font-size:58.666667pt;}
.fs0_c00242{font-size:61.333333pt;}
.fs3_c00242{font-size:69.333333pt;}
.fs1_c00242{font-size:74.666667pt;}
.y0_c00242{bottom:0.000000pt;}
.y1f_c00242{bottom:2.760000pt;}
.y1e_c00242{bottom:6.425219pt;}
.y1d_c00242{bottom:66.413333pt;}
.y1c_c00242{bottom:88.546667pt;}
.y1b_c00242{bottom:111.346667pt;}
.y1a_c00242{bottom:133.880000pt;}
.y19_c00242{bottom:155.080000pt;}
.y18_c00242{bottom:177.346667pt;}
.y17_c00242{bottom:199.480000pt;}
.y16_c00242{bottom:221.480000pt;}
.y15_c00242{bottom:243.613333pt;}
.y14_c00242{bottom:265.613333pt;}
.y13_c00242{bottom:288.013333pt;}
.y12_c00242{bottom:310.013333pt;}
.y11_c00242{bottom:332.413333pt;}
.y10_c00242{bottom:353.080000pt;}
.yf_c00242{bottom:375.613333pt;}
.ye_c00242{bottom:396.946667pt;}
.yd_c00242{bottom:419.480000pt;}
.yc_c00242{bottom:462.680000pt;}
.yb_c00242{bottom:483.880000pt;}
.ya_c00242{bottom:506.146667pt;}
.y9_c00242{bottom:528.013333pt;}
.y8_c00242{bottom:550.013333pt;}
.y7_c00242{bottom:571.880000pt;}
.y6_c00242{bottom:594.013333pt;}
.y5_c00242{bottom:615.880000pt;}
.y4_c00242{bottom:637.880000pt;}
.y3_c00242{bottom:659.746667pt;}
.y2_c00242{bottom:681.613333pt;}
.y1_c00242{bottom:702.680000pt;}
.h6_c00242{height:11.733399pt;}
.h7_c00242{height:38.937500pt;}
.h4_c00242{height:71.785156pt;}
.h2_c00242{height:77.654948pt;}
.h5_c00242{height:87.783854pt;}
.h3_c00242{height:94.536458pt;}
.h1_c00242{height:738.666667pt;}
.h0_c00242{height:738.733333pt;}
.w2_c00242{width:93.222667pt;}
.w0_c00242{width:503.266667pt;}
.w1_c00242{width:503.333333pt;}
.x0_c00242{left:0.000000pt;}
.x9_c00242{left:17.066667pt;}
.x8_c00242{left:18.000000pt;}
.x2_c00242{left:19.200000pt;}
.x7_c00242{left:20.133333pt;}
.x4_c00242{left:21.066667pt;}
.x3_c00242{left:22.800000pt;}
.x6_c00242{left:40.800000pt;}
.xa_c00242{left:44.133333pt;}
.x5_c00242{left:122.666667pt;}
.x1_c00242{left:171.333333pt;}
.xc_c00242{left:208.801554pt;}
.xb_c00242{left:246.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ac07f694ca9a35a56dff886.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.311035;font-style:normal;font-weight:normal;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_38fcfb5f5831be4f09d89170.woff2')format("woff");}.ff2_c00243{font-family:ff2_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:ff3_c00243;src:url('chunks/assets/font_56576a54a9eed4d2c33524ce.woff2')format("woff");}.ff3_c00243{font-family:ff3_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:ff4_c00243;src:url('chunks/assets/font_55b3dcc05ce286101d913efd.woff2')format("woff");}.ff4_c00243{font-family:ff4_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:ff5_c00243;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_92406149d8b60bad225fc380.woff2')format("woff");}.ff6_c00243{font-family:ff6_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:ff7_c00243;src:url('chunks/assets/font_b43b3455fa80304581495b86.woff2')format("woff");}.ff7_c00243{font-family:ff7_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:ff8_c00243;src:url('chunks/assets/font_bf9842bacf9c210f6ed074f6.woff2')format("woff");}.ff8_c00243{font-family:ff8_c00243;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_c00243;src:url('chunks/assets/font_21316906b5f0f68f4ed2574a.woff2')format("woff");}.ff9_c00243{font-family:ff9_c00243;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_c00243;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffa_c00243{font-family:ffa_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;}
.lsd_c00243{letter-spacing:0.000000px;}
.ls7_c00243{letter-spacing:0.402000px;}
.ls0_c00243{letter-spacing:1.800000px;}
.lsb_c00243{letter-spacing:2.802000px;}
.ls4_c00243{letter-spacing:2.946000px;}
.lsc_c00243{letter-spacing:3.000000px;}
.ls9_c00243{letter-spacing:6.048000px;}
.ls2_c00243{letter-spacing:7.200000px;}
.lsa_c00243{letter-spacing:8.670000px;}
.ls1_c00243{letter-spacing:9.000000px;}
.lse_c00243{letter-spacing:12.000000px;}
.ls5_c00243{letter-spacing:17.874000px;}
.ls8_c00243{letter-spacing:19.002000px;}
.ls3_c00243{letter-spacing:21.000000px;}
.ls6_c00243{letter-spacing:22.602000px;}
.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:-19.629000px;}
.ws2_c00243{word-spacing:-19.050000px;}
.ws5_c00243{word-spacing:-17.712000px;}
.ws6_c00243{word-spacing:-17.304000px;}
.ws0_c00243{word-spacing:-16.629000px;}
.ws3_c00243{word-spacing:-15.240000px;}
.ws7_c00243{word-spacing:0.000000px;}
.ws4_c00243{word-spacing:0.264000px;}
._30_c00243{margin-left:-70.488000px;}
._2e_c00243{margin-left:-34.716000px;}
._2c_c00243{margin-left:-25.275000px;}
._25_c00243{margin-left:-23.667000px;}
._2a_c00243{margin-left:-22.524000px;}
._29_c00243{margin-left:-20.781000px;}
._1d_c00243{margin-left:-19.458000px;}
._27_c00243{margin-left:-18.375000px;}
._2b_c00243{margin-left:-17.061000px;}
._1c_c00243{margin-left:-15.843000px;}
._3_c00243{margin-left:-14.835000px;}
._5_c00243{margin-left:-13.455000px;}
._2_c00243{margin-left:-11.943000px;}
._28_c00243{margin-left:-10.875000px;}
._b_c00243{margin-left:-9.861000px;}
._d_c00243{margin-left:-8.694000px;}
._7_c00243{margin-left:-7.479000px;}
._1_c00243{margin-left:-5.727000px;}
._6_c00243{margin-left:-3.933000px;}
._c_c00243{margin-left:-2.892000px;}
._0_c00243{margin-left:-1.656000px;}
._10_c00243{width:1.236000px;}
._e_c00243{width:2.691000px;}
._8_c00243{width:4.059000px;}
._f_c00243{width:5.175000px;}
._16_c00243{width:7.194000px;}
._9_c00243{width:9.024000px;}
._a_c00243{width:10.143000px;}
._15_c00243{width:11.856000px;}
._1a_c00243{width:13.602000px;}
._11_c00243{width:14.628000px;}
._34_c00243{width:16.149000px;}
._12_c00243{width:18.699000px;}
._13_c00243{width:19.734000px;}
._17_c00243{width:20.883000px;}
._35_c00243{width:22.044000px;}
._22_c00243{width:23.250000px;}
._19_c00243{width:25.542000px;}
._18_c00243{width:27.600000px;}
._23_c00243{width:29.463000px;}
._21_c00243{width:34.431000px;}
._20_c00243{width:42.825000px;}
._32_c00243{width:47.796000px;}
._26_c00243{width:55.692000px;}
._1b_c00243{width:61.335000px;}
._2f_c00243{width:67.821000px;}
._1e_c00243{width:73.275000px;}
._36_c00243{width:97.512000px;}
._31_c00243{width:105.072000px;}
._1f_c00243{width:141.420000px;}
._33_c00243{width:149.589000px;}
._14_c00243{width:180.387000px;}
._24_c00243{width:287.247000px;}
._37_c00243{width:311.454000px;}
._4_c00243{width:459.204000px;}
._2d_c00243{width:631.563000px;}
.fc2_c00243{color:transparent;}
.fc1_c00243{color:rgb(128,128,128);}
.fc0_c00243{color:rgb(0,0,0);}
.fs7_c00243{font-size:48.000000px;}
.fs6_c00243{font-size:51.000000px;}
.fs2_c00243{font-size:60.000000px;}
.fs0_c00243{font-size:66.000000px;}
.fs1_c00243{font-size:69.000000px;}
.fs3_c00243{font-size:75.000000px;}
.fs4_c00243{font-size:78.000000px;}
.fs5_c00243{font-size:84.000000px;}
.y0_c00243{bottom:0.000000px;}
.y20_c00243{bottom:3.105000px;}
.y1f_c00243{bottom:7.228363px;}
.y1e_c00243{bottom:66.900000px;}
.y1d_c00243{bottom:90.750000px;}
.y1c_c00243{bottom:115.050000px;}
.y1b_c00243{bottom:140.850000px;}
.y1a_c00243{bottom:165.750000px;}
.y19_c00243{bottom:190.350000px;}
.y18_c00243{bottom:215.700000px;}
.y17_c00243{bottom:240.000000px;}
.y16_c00243{bottom:265.350000px;}
.y15_c00243{bottom:290.250000px;}
.y14_c00243{bottom:314.550000px;}
.y13_c00243{bottom:339.150000px;}
.y12_c00243{bottom:363.150000px;}
.y11_c00243{bottom:389.550000px;}
.y10_c00243{bottom:412.800000px;}
.yf_c00243{bottom:437.850000px;}
.ye_c00243{bottom:462.750000px;}
.yd_c00243{bottom:487.650000px;}
.yc_c00243{bottom:515.100000px;}
.yb_c00243{bottom:536.700000px;}
.ya_c00243{bottom:561.900000px;}
.y9_c00243{bottom:586.650000px;}
.y8_c00243{bottom:611.550000px;}
.y7_c00243{bottom:636.150000px;}
.y6_c00243{bottom:660.450000px;}
.y5_c00243{bottom:685.800000px;}
.y4_c00243{bottom:710.550000px;}
.y3_c00243{bottom:735.450000px;}
.y2_c00243{bottom:760.350000px;}
.y1_c00243{bottom:784.350000px;}
.h8_c00243{height:13.200074px;}
.h9_c00243{height:43.804688px;}
.h4_c00243{height:80.758301px;}
.h2_c00243{height:87.361816px;}
.h3_c00243{height:87.780762px;}
.h7_c00243{height:91.056000px;}
.h5_c00243{height:94.958496px;}
.h6_c00243{height:98.756836px;}
.h0_c00243{height:818.100000px;}
.h1_c00243{height:818.250000px;}
.w2_c00243{width:104.875500px;}
.w0_c00243{width:565.350000px;}
.w1_c00243{width:565.500000px;}
.x0_c00243{left:0.000000px;}
.xe_c00243{left:27.000000px;}
.x4_c00243{left:28.800000px;}
.xc_c00243{left:44.850000px;}
.xd_c00243{left:46.350000px;}
.x5_c00243{left:91.350000px;}
.x9_c00243{left:92.850000px;}
.x2_c00243{left:94.200000px;}
.xb_c00243{left:95.250000px;}
.x3_c00243{left:96.450000px;}
.x1_c00243{left:109.650000px;}
.x6_c00243{left:115.800000px;}
.x8_c00243{left:118.200000px;}
.xa_c00243{left:119.550000px;}
.x7_c00243{left:234.600000px;}
.xf_c00243{left:484.050000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.lsd_c00243{letter-spacing:0.000000pt;}
.ls7_c00243{letter-spacing:0.357333pt;}
.ls0_c00243{letter-spacing:1.600000pt;}
.lsb_c00243{letter-spacing:2.490667pt;}
.ls4_c00243{letter-spacing:2.618667pt;}
.lsc_c00243{letter-spacing:2.666667pt;}
.ls9_c00243{letter-spacing:5.376000pt;}
.ls2_c00243{letter-spacing:6.400000pt;}
.lsa_c00243{letter-spacing:7.706667pt;}
.ls1_c00243{letter-spacing:8.000000pt;}
.lse_c00243{letter-spacing:10.666667pt;}
.ls5_c00243{letter-spacing:15.888000pt;}
.ls8_c00243{letter-spacing:16.890667pt;}
.ls3_c00243{letter-spacing:18.666667pt;}
.ls6_c00243{letter-spacing:20.090667pt;}
.ws1_c00243{word-spacing:-17.448000pt;}
.ws2_c00243{word-spacing:-16.933333pt;}
.ws5_c00243{word-spacing:-15.744000pt;}
.ws6_c00243{word-spacing:-15.381333pt;}
.ws0_c00243{word-spacing:-14.781333pt;}
.ws3_c00243{word-spacing:-13.546667pt;}
.ws7_c00243{word-spacing:0.000000pt;}
.ws4_c00243{word-spacing:0.234667pt;}
._30_c00243{margin-left:-62.656000pt;}
._2e_c00243{margin-left:-30.858667pt;}
._2c_c00243{margin-left:-22.466667pt;}
._25_c00243{margin-left:-21.037333pt;}
._2a_c00243{margin-left:-20.021333pt;}
._29_c00243{margin-left:-18.472000pt;}
._1d_c00243{margin-left:-17.296000pt;}
._27_c00243{margin-left:-16.333333pt;}
._2b_c00243{margin-left:-15.165333pt;}
._1c_c00243{margin-left:-14.082667pt;}
._3_c00243{margin-left:-13.186667pt;}
._5_c00243{margin-left:-11.960000pt;}
._2_c00243{margin-left:-10.616000pt;}
._28_c00243{margin-left:-9.666667pt;}
._b_c00243{margin-left:-8.765333pt;}
._d_c00243{margin-left:-7.728000pt;}
._7_c00243{margin-left:-6.648000pt;}
._1_c00243{margin-left:-5.090667pt;}
._6_c00243{margin-left:-3.496000pt;}
._c_c00243{margin-left:-2.570667pt;}
._0_c00243{margin-left:-1.472000pt;}
._10_c00243{width:1.098667pt;}
._e_c00243{width:2.392000pt;}
._8_c00243{width:3.608000pt;}
._f_c00243{width:4.600000pt;}
._16_c00243{width:6.394667pt;}
._9_c00243{width:8.021333pt;}
._a_c00243{width:9.016000pt;}
._15_c00243{width:10.538667pt;}
._1a_c00243{width:12.090667pt;}
._11_c00243{width:13.002667pt;}
._34_c00243{width:14.354667pt;}
._12_c00243{width:16.621333pt;}
._13_c00243{width:17.541333pt;}
._17_c00243{width:18.562667pt;}
._35_c00243{width:19.594667pt;}
._22_c00243{width:20.666667pt;}
._19_c00243{width:22.704000pt;}
._18_c00243{width:24.533333pt;}
._23_c00243{width:26.189333pt;}
._21_c00243{width:30.605333pt;}
._20_c00243{width:38.066667pt;}
._32_c00243{width:42.485333pt;}
._26_c00243{width:49.504000pt;}
._1b_c00243{width:54.520000pt;}
._2f_c00243{width:60.285333pt;}
._1e_c00243{width:65.133333pt;}
._36_c00243{width:86.677333pt;}
._31_c00243{width:93.397333pt;}
._1f_c00243{width:125.706667pt;}
._33_c00243{width:132.968000pt;}
._14_c00243{width:160.344000pt;}
._24_c00243{width:255.330667pt;}
._37_c00243{width:276.848000pt;}
._4_c00243{width:408.181333pt;}
._2d_c00243{width:561.389333pt;}
.fs7_c00243{font-size:42.666667pt;}
.fs6_c00243{font-size:45.333333pt;}
.fs2_c00243{font-size:53.333333pt;}
.fs0_c00243{font-size:58.666667pt;}
.fs1_c00243{font-size:61.333333pt;}
.fs3_c00243{font-size:66.666667pt;}
.fs4_c00243{font-size:69.333333pt;}
.fs5_c00243{font-size:74.666667pt;}
.y0_c00243{bottom:0.000000pt;}
.y20_c00243{bottom:2.760000pt;}
.y1f_c00243{bottom:6.425212pt;}
.y1e_c00243{bottom:59.466667pt;}
.y1d_c00243{bottom:80.666667pt;}
.y1c_c00243{bottom:102.266667pt;}
.y1b_c00243{bottom:125.200000pt;}
.y1a_c00243{bottom:147.333333pt;}
.y19_c00243{bottom:169.200000pt;}
.y18_c00243{bottom:191.733333pt;}
.y17_c00243{bottom:213.333333pt;}
.y16_c00243{bottom:235.866667pt;}
.y15_c00243{bottom:258.000000pt;}
.y14_c00243{bottom:279.600000pt;}
.y13_c00243{bottom:301.466667pt;}
.y12_c00243{bottom:322.800000pt;}
.y11_c00243{bottom:346.266667pt;}
.y10_c00243{bottom:366.933333pt;}
.yf_c00243{bottom:389.200000pt;}
.ye_c00243{bottom:411.333333pt;}
.yd_c00243{bottom:433.466667pt;}
.yc_c00243{bottom:457.866667pt;}
.yb_c00243{bottom:477.066667pt;}
.ya_c00243{bottom:499.466667pt;}
.y9_c00243{bottom:521.466667pt;}
.y8_c00243{bottom:543.600000pt;}
.y7_c00243{bottom:565.466667pt;}
.y6_c00243{bottom:587.066667pt;}
.y5_c00243{bottom:609.600000pt;}
.y4_c00243{bottom:631.600000pt;}
.y3_c00243{bottom:653.733333pt;}
.y2_c00243{bottom:675.866667pt;}
.y1_c00243{bottom:697.200000pt;}
.h8_c00243{height:11.733399pt;}
.h9_c00243{height:38.937500pt;}
.h4_c00243{height:71.785156pt;}
.h2_c00243{height:77.654948pt;}
.h3_c00243{height:78.027344pt;}
.h7_c00243{height:80.938667pt;}
.h5_c00243{height:84.407552pt;}
.h6_c00243{height:87.783854pt;}
.h0_c00243{height:727.200000pt;}
.h1_c00243{height:727.333333pt;}
.w2_c00243{width:93.222667pt;}
.w0_c00243{width:502.533333pt;}
.w1_c00243{width:502.666667pt;}
.x0_c00243{left:0.000000pt;}
.xe_c00243{left:24.000000pt;}
.x4_c00243{left:25.600000pt;}
.xc_c00243{left:39.866667pt;}
.xd_c00243{left:41.200000pt;}
.x5_c00243{left:81.200000pt;}
.x9_c00243{left:82.533333pt;}
.x2_c00243{left:83.733333pt;}
.xb_c00243{left:84.666667pt;}
.x3_c00243{left:85.733333pt;}
.x1_c00243{left:97.466667pt;}
.x6_c00243{left:102.933333pt;}
.x8_c00243{left:105.066667pt;}
.xa_c00243{left:106.266667pt;}
.x7_c00243{left:208.533333pt;}
.xf_c00243{left:430.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_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_e35cd6d731e8e35c77e86c16.woff2')format("woff");}.ff1_c00244{font-family:ff1_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:ff2_c00244;src:url('chunks/assets/font_c52af6b6acb65ffc452bee26.woff2')format("woff");}.ff2_c00244{font-family:ff2_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:ff3_c00244;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.311035;font-style:normal;font-weight:normal;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_9268461a2a14046e9750194c.woff2')format("woff");}.ff4_c00244{font-family:ff4_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:ff5_c00244;src:url('chunks/assets/font_104041f38fbca66996fc8ef3.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;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_c00244;src:url('chunks/assets/font_617bbae542475f9776082e1a.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;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_c00244;src:url('chunks/assets/font_1e4333e0546c3e0129f37c23.woff2')format("woff");}.ff7_c00244{font-family:ff7_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:ff8_c00244;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00244{font-family:ff8_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;}
.lsb_c00244{letter-spacing:0.000000px;}
.lsc_c00244{letter-spacing:3.000000px;}
.ls2_c00244{letter-spacing:4.800000px;}
.ls8_c00244{letter-spacing:6.660000px;}
.lsa_c00244{letter-spacing:8.100000px;}
.lsd_c00244{letter-spacing:9.000000px;}
.ls9_c00244{letter-spacing:9.660000px;}
.ls5_c00244{letter-spacing:10.743000px;}
.ls0_c00244{letter-spacing:11.925000px;}
.ls4_c00244{letter-spacing:18.525000px;}
.ls6_c00244{letter-spacing:20.400000px;}
.ls3_c00244{letter-spacing:20.553000px;}
.ls1_c00244{letter-spacing:34.371000px;}
.ls7_c00244{letter-spacing:35.571000px;}
.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;}
}
.ws3_c00244{word-spacing:-25.629000px;}
.ws5_c00244{word-spacing:-19.629000px;}
.ws0_c00244{word-spacing:-16.629000px;}
.ws1_c00244{word-spacing:-0.690000px;}
.ws6_c00244{word-spacing:0.000000px;}
.ws4_c00244{word-spacing:2.277000px;}
.ws2_c00244{word-spacing:4.278000px;}
._1c_c00244{margin-left:-31.794000px;}
._18_c00244{margin-left:-20.355000px;}
._1e_c00244{margin-left:-18.285000px;}
._12_c00244{margin-left:-15.912000px;}
._d_c00244{margin-left:-13.455000px;}
._2e_c00244{margin-left:-11.661000px;}
._e_c00244{margin-left:-10.074000px;}
._f_c00244{margin-left:-8.142000px;}
._5_c00244{margin-left:-6.210000px;}
._6_c00244{margin-left:-4.899000px;}
._19_c00244{margin-left:-3.726000px;}
._0_c00244{margin-left:-2.691000px;}
._b_c00244{margin-left:-1.548000px;}
._7_c00244{width:1.518000px;}
._1_c00244{width:2.622000px;}
._2_c00244{width:4.071000px;}
._3_c00244{width:5.451000px;}
._11_c00244{width:6.669000px;}
._10_c00244{width:7.872000px;}
._9_c00244{width:9.384000px;}
._8_c00244{width:11.040000px;}
._13_c00244{width:12.153000px;}
._14_c00244{width:13.248000px;}
._a_c00244{width:14.622000px;}
._1a_c00244{width:16.068000px;}
._15_c00244{width:17.142000px;}
._20_c00244{width:18.147000px;}
._16_c00244{width:20.805000px;}
._26_c00244{width:22.398000px;}
._21_c00244{width:25.122000px;}
._29_c00244{width:26.487000px;}
._27_c00244{width:27.738000px;}
._2a_c00244{width:31.428000px;}
._24_c00244{width:33.723000px;}
._17_c00244{width:35.121000px;}
._25_c00244{width:36.363000px;}
._22_c00244{width:37.959000px;}
._28_c00244{width:40.215000px;}
._23_c00244{width:41.469000px;}
._c_c00244{width:106.863000px;}
._1b_c00244{width:112.851000px;}
._2c_c00244{width:177.717000px;}
._1f_c00244{width:191.634000px;}
._2d_c00244{width:204.309000px;}
._1d_c00244{width:237.789000px;}
._2b_c00244{width:285.783000px;}
._4_c00244{width:482.877000px;}
.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:66.000000px;}
.fs0_c00244{font-size:69.000000px;}
.fs1_c00244{font-size:75.000000px;}
.fs5_c00244{font-size:81.000000px;}
.fs3_c00244{font-size:84.000000px;}
.y0_c00244{bottom:0.000000px;}
.y1e_c00244{bottom:3.105000px;}
.y1d_c00244{bottom:7.228371px;}
.y1b_c00244{bottom:71.265000px;}
.y1a_c00244{bottom:97.515000px;}
.y19_c00244{bottom:150.165000px;}
.y18_c00244{bottom:171.765000px;}
.y17_c00244{bottom:196.815000px;}
.y16_c00244{bottom:246.015000px;}
.y15_c00244{bottom:295.965000px;}
.y14_c00244{bottom:317.565000px;}
.y1c_c00244{bottom:326.715000px;}
.y13_c00244{bottom:345.615000px;}
.y12_c00244{bottom:368.865000px;}
.y11_c00244{bottom:394.515000px;}
.y10_c00244{bottom:418.965000px;}
.yf_c00244{bottom:440.415000px;}
.ye_c00244{bottom:467.565000px;}
.yd_c00244{bottom:492.765000px;}
.yc_c00244{bottom:516.465000px;}
.yb_c00244{bottom:541.365000px;}
.ya_c00244{bottom:565.965000px;}
.y9_c00244{bottom:588.615000px;}
.y8_c00244{bottom:615.015000px;}
.y7_c00244{bottom:639.915000px;}
.y6_c00244{bottom:664.665000px;}
.y5_c00244{bottom:689.565000px;}
.y4_c00244{bottom:714.165000px;}
.y3_c00244{bottom:738.915000px;}
.y2_c00244{bottom:763.815000px;}
.y1_c00244{bottom:787.365000px;}
.h6_c00244{height:13.200074px;}
.h7_c00244{height:43.804688px;}
.h5_c00244{height:80.758301px;}
.h2_c00244{height:87.361816px;}
.h4_c00244{height:89.628000px;}
.h3_c00244{height:94.958496px;}
.h1_c00244{height:831.000000px;}
.h0_c00244{height:831.075000px;}
.w2_c00244{width:104.875500px;}
.w0_c00244{width:566.175000px;}
.w1_c00244{width:566.250000px;}
.x0_c00244{left:0.000000px;}
.x7_c00244{left:25.950000px;}
.x4_c00244{left:28.950000px;}
.x3_c00244{left:30.300000px;}
.x2_c00244{left:32.400000px;}
.x6_c00244{left:54.000000px;}
.x8_c00244{left:70.200000px;}
.x5_c00244{left:71.550000px;}
.x1_c00244{left:204.150000px;}
.xb_c00244{left:234.901749px;}
.x9_c00244{left:269.700000px;}
.xa_c00244{left:491.850000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.lsb_c00244{letter-spacing:0.000000pt;}
.lsc_c00244{letter-spacing:2.666667pt;}
.ls2_c00244{letter-spacing:4.266667pt;}
.ls8_c00244{letter-spacing:5.920000pt;}
.lsa_c00244{letter-spacing:7.200000pt;}
.lsd_c00244{letter-spacing:8.000000pt;}
.ls9_c00244{letter-spacing:8.586667pt;}
.ls5_c00244{letter-spacing:9.549333pt;}
.ls0_c00244{letter-spacing:10.600000pt;}
.ls4_c00244{letter-spacing:16.466667pt;}
.ls6_c00244{letter-spacing:18.133333pt;}
.ls3_c00244{letter-spacing:18.269333pt;}
.ls1_c00244{letter-spacing:30.552000pt;}
.ls7_c00244{letter-spacing:31.618667pt;}
.ws3_c00244{word-spacing:-22.781333pt;}
.ws5_c00244{word-spacing:-17.448000pt;}
.ws0_c00244{word-spacing:-14.781333pt;}
.ws1_c00244{word-spacing:-0.613333pt;}
.ws6_c00244{word-spacing:0.000000pt;}
.ws4_c00244{word-spacing:2.024000pt;}
.ws2_c00244{word-spacing:3.802667pt;}
._1c_c00244{margin-left:-28.261333pt;}
._18_c00244{margin-left:-18.093333pt;}
._1e_c00244{margin-left:-16.253333pt;}
._12_c00244{margin-left:-14.144000pt;}
._d_c00244{margin-left:-11.960000pt;}
._2e_c00244{margin-left:-10.365333pt;}
._e_c00244{margin-left:-8.954667pt;}
._f_c00244{margin-left:-7.237333pt;}
._5_c00244{margin-left:-5.520000pt;}
._6_c00244{margin-left:-4.354667pt;}
._19_c00244{margin-left:-3.312000pt;}
._0_c00244{margin-left:-2.392000pt;}
._b_c00244{margin-left:-1.376000pt;}
._7_c00244{width:1.349333pt;}
._1_c00244{width:2.330667pt;}
._2_c00244{width:3.618667pt;}
._3_c00244{width:4.845333pt;}
._11_c00244{width:5.928000pt;}
._10_c00244{width:6.997333pt;}
._9_c00244{width:8.341333pt;}
._8_c00244{width:9.813333pt;}
._13_c00244{width:10.802667pt;}
._14_c00244{width:11.776000pt;}
._a_c00244{width:12.997333pt;}
._1a_c00244{width:14.282667pt;}
._15_c00244{width:15.237333pt;}
._20_c00244{width:16.130667pt;}
._16_c00244{width:18.493333pt;}
._26_c00244{width:19.909333pt;}
._21_c00244{width:22.330667pt;}
._29_c00244{width:23.544000pt;}
._27_c00244{width:24.656000pt;}
._2a_c00244{width:27.936000pt;}
._24_c00244{width:29.976000pt;}
._17_c00244{width:31.218667pt;}
._25_c00244{width:32.322667pt;}
._22_c00244{width:33.741333pt;}
._28_c00244{width:35.746667pt;}
._23_c00244{width:36.861333pt;}
._c_c00244{width:94.989333pt;}
._1b_c00244{width:100.312000pt;}
._2c_c00244{width:157.970667pt;}
._1f_c00244{width:170.341333pt;}
._2d_c00244{width:181.608000pt;}
._1d_c00244{width:211.368000pt;}
._2b_c00244{width:254.029333pt;}
._4_c00244{width:429.224000pt;}
.fs6_c00244{font-size:42.666667pt;}
.fs4_c00244{font-size:50.666667pt;}
.fs2_c00244{font-size:58.666667pt;}
.fs0_c00244{font-size:61.333333pt;}
.fs1_c00244{font-size:66.666667pt;}
.fs5_c00244{font-size:72.000000pt;}
.fs3_c00244{font-size:74.666667pt;}
.y0_c00244{bottom:0.000000pt;}
.y1e_c00244{bottom:2.760000pt;}
.y1d_c00244{bottom:6.425219pt;}
.y1b_c00244{bottom:63.346667pt;}
.y1a_c00244{bottom:86.680000pt;}
.y19_c00244{bottom:133.480000pt;}
.y18_c00244{bottom:152.680000pt;}
.y17_c00244{bottom:174.946667pt;}
.y16_c00244{bottom:218.680000pt;}
.y15_c00244{bottom:263.080000pt;}
.y14_c00244{bottom:282.280000pt;}
.y1c_c00244{bottom:290.413333pt;}
.y13_c00244{bottom:307.213333pt;}
.y12_c00244{bottom:327.880000pt;}
.y11_c00244{bottom:350.680000pt;}
.y10_c00244{bottom:372.413333pt;}
.yf_c00244{bottom:391.480000pt;}
.ye_c00244{bottom:415.613333pt;}
.yd_c00244{bottom:438.013333pt;}
.yc_c00244{bottom:459.080000pt;}
.yb_c00244{bottom:481.213333pt;}
.ya_c00244{bottom:503.080000pt;}
.y9_c00244{bottom:523.213333pt;}
.y8_c00244{bottom:546.680000pt;}
.y7_c00244{bottom:568.813333pt;}
.y6_c00244{bottom:590.813333pt;}
.y5_c00244{bottom:612.946667pt;}
.y4_c00244{bottom:634.813333pt;}
.y3_c00244{bottom:656.813333pt;}
.y2_c00244{bottom:678.946667pt;}
.y1_c00244{bottom:699.880000pt;}
.h6_c00244{height:11.733399pt;}
.h7_c00244{height:38.937500pt;}
.h5_c00244{height:71.785156pt;}
.h2_c00244{height:77.654948pt;}
.h4_c00244{height:79.669333pt;}
.h3_c00244{height:84.407552pt;}
.h1_c00244{height:738.666667pt;}
.h0_c00244{height:738.733333pt;}
.w2_c00244{width:93.222667pt;}
.w0_c00244{width:503.266667pt;}
.w1_c00244{width:503.333333pt;}
.x0_c00244{left:0.000000pt;}
.x7_c00244{left:23.066667pt;}
.x4_c00244{left:25.733333pt;}
.x3_c00244{left:26.933333pt;}
.x2_c00244{left:28.800000pt;}
.x6_c00244{left:48.000000pt;}
.x8_c00244{left:62.400000pt;}
.x5_c00244{left:63.600000pt;}
.x1_c00244{left:181.466667pt;}
.xb_c00244{left:208.801554pt;}
.x9_c00244{left:239.733333pt;}
.xa_c00244{left:437.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_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_2b43fbeebdb3a63a2b887a5d.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_980bb66f937dbf1d85eba89d.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_4fdca01c15f86ab2e18cb233.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00245{font-family:ff4_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;}
.ls4_c00245{letter-spacing:0.000000px;}
.ls3_c00245{letter-spacing:0.225000px;}
.ls5_c00245{letter-spacing:3.000000px;}
.ls7_c00245{letter-spacing:15.000000px;}
.ls1_c00245{letter-spacing:15.525000px;}
.ls0_c00245{letter-spacing:17.325000px;}
.ls2_c00245{letter-spacing:22.680000px;}
.ls6_c00245{letter-spacing:24.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:-39.906000px;}
.ws1_c00245{word-spacing:-14.460000px;}
.ws2_c00245{word-spacing:-13.737000px;}
.ws3_c00245{word-spacing:0.000000px;}
._21_c00245{margin-left:-20.475000px;}
._20_c00245{margin-left:-17.769000px;}
._19_c00245{margin-left:-13.179000px;}
._1a_c00245{margin-left:-11.625000px;}
._1d_c00245{margin-left:-10.350000px;}
._1c_c00245{margin-left:-9.216000px;}
._14_c00245{margin-left:-8.073000px;}
._b_c00245{margin-left:-5.484000px;}
._11_c00245{margin-left:-3.762000px;}
._3_c00245{margin-left:-1.863000px;}
._0_c00245{width:1.311000px;}
._1_c00245{width:2.346000px;}
._5_c00245{width:3.657000px;}
._6_c00245{width:4.692000px;}
._4_c00245{width:5.727000px;}
._8_c00245{width:7.176000px;}
._7_c00245{width:9.039000px;}
._f_c00245{width:10.248000px;}
._9_c00245{width:11.730000px;}
._12_c00245{width:13.629000px;}
._c_c00245{width:14.904000px;}
._10_c00245{width:16.251000px;}
._a_c00245{width:18.078000px;}
._1f_c00245{width:19.407000px;}
._18_c00245{width:20.670000px;}
._d_c00245{width:21.735000px;}
._e_c00245{width:23.598000px;}
._17_c00245{width:26.289000px;}
._1b_c00245{width:34.014000px;}
._1e_c00245{width:59.514000px;}
._13_c00245{width:111.918000px;}
._16_c00245{width:161.490000px;}
._15_c00245{width:207.240000px;}
._2_c00245{width:375.843000px;}
.fc2_c00245{color:transparent;}
.fc1_c00245{color:rgb(128,128,128);}
.fc0_c00245{color:rgb(0,0,0);}
.fs4_c00245{font-size:48.000000px;}
.fs3_c00245{font-size:57.000000px;}
.fs2_c00245{font-size:60.000000px;}
.fs1_c00245{font-size:66.000000px;}
.fs0_c00245{font-size:69.000000px;}
.y0_c00245{bottom:0.000000px;}
.y23_c00245{bottom:3.105000px;}
.y22_c00245{bottom:7.228363px;}
.y21_c00245{bottom:63.150000px;}
.y20_c00245{bottom:81.900000px;}
.y1f_c00245{bottom:100.200000px;}
.y1e_c00245{bottom:118.050000px;}
.y1d_c00245{bottom:135.600000px;}
.y1c_c00245{bottom:153.300000px;}
.y1b_c00245{bottom:171.000000px;}
.y1a_c00245{bottom:188.550000px;}
.y19_c00245{bottom:206.100000px;}
.y18_c00245{bottom:222.450000px;}
.y17_c00245{bottom:240.600000px;}
.y16_c00245{bottom:258.450000px;}
.y15_c00245{bottom:276.300000px;}
.y14_c00245{bottom:293.550000px;}
.y13_c00245{bottom:328.650000px;}
.y12_c00245{bottom:365.550000px;}
.y11_c00245{bottom:389.850000px;}
.y10_c00245{bottom:414.750000px;}
.yf_c00245{bottom:439.650000px;}
.ye_c00245{bottom:463.050000px;}
.yd_c00245{bottom:488.700000px;}
.yc_c00245{bottom:513.900000px;}
.yb_c00245{bottom:538.650000px;}
.ya_c00245{bottom:562.950000px;}
.y9_c00245{bottom:587.850000px;}
.y8_c00245{bottom:612.600000px;}
.y7_c00245{bottom:637.500000px;}
.y6_c00245{bottom:662.250000px;}
.y5_c00245{bottom:687.150000px;}
.y4_c00245{bottom:711.900000px;}
.y3_c00245{bottom:736.500000px;}
.y2_c00245{bottom:761.700000px;}
.y1_c00245{bottom:786.450000px;}
.h7_c00245{height:13.200074px;}
.h8_c00245{height:43.804688px;}
.h6_c00245{height:72.168457px;}
.h5_c00245{height:75.966797px;}
.h4_c00245{height:77.247070px;}
.h2_c00245{height:80.758301px;}
.h3_c00245{height:87.361816px;}
.h1_c00245{height:827.250000px;}
.h0_c00245{height:827.550000px;}
.w2_c00245{width:104.875500px;}
.w0_c00245{width:572.100000px;}
.w1_c00245{width:572.250000px;}
.x0_c00245{left:0.000000px;}
.x6_c00245{left:30.150000px;}
.x4_c00245{left:48.000000px;}
.xb_c00245{left:94.500000px;}
.x9_c00245{left:96.150000px;}
.x8_c00245{left:97.200000px;}
.x3_c00245{left:98.550000px;}
.x7_c00245{left:99.600000px;}
.x2_c00245{left:100.950000px;}
.xc_c00245{left:112.950000px;}
.x1_c00245{left:114.450000px;}
.x5_c00245{left:146.850000px;}
.xa_c00245{left:237.600000px;}
.xd_c00245{left:510.900000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls4_c00245{letter-spacing:0.000000pt;}
.ls3_c00245{letter-spacing:0.200000pt;}
.ls5_c00245{letter-spacing:2.666667pt;}
.ls7_c00245{letter-spacing:13.333333pt;}
.ls1_c00245{letter-spacing:13.800000pt;}
.ls0_c00245{letter-spacing:15.400000pt;}
.ls2_c00245{letter-spacing:20.160000pt;}
.ls6_c00245{letter-spacing:21.333333pt;}
.ws0_c00245{word-spacing:-35.472000pt;}
.ws1_c00245{word-spacing:-12.853333pt;}
.ws2_c00245{word-spacing:-12.210667pt;}
.ws3_c00245{word-spacing:0.000000pt;}
._21_c00245{margin-left:-18.200000pt;}
._20_c00245{margin-left:-15.794667pt;}
._19_c00245{margin-left:-11.714667pt;}
._1a_c00245{margin-left:-10.333333pt;}
._1d_c00245{margin-left:-9.200000pt;}
._1c_c00245{margin-left:-8.192000pt;}
._14_c00245{margin-left:-7.176000pt;}
._b_c00245{margin-left:-4.874667pt;}
._11_c00245{margin-left:-3.344000pt;}
._3_c00245{margin-left:-1.656000pt;}
._0_c00245{width:1.165333pt;}
._1_c00245{width:2.085333pt;}
._5_c00245{width:3.250667pt;}
._6_c00245{width:4.170667pt;}
._4_c00245{width:5.090667pt;}
._8_c00245{width:6.378667pt;}
._7_c00245{width:8.034667pt;}
._f_c00245{width:9.109333pt;}
._9_c00245{width:10.426667pt;}
._12_c00245{width:12.114667pt;}
._c_c00245{width:13.248000pt;}
._10_c00245{width:14.445333pt;}
._a_c00245{width:16.069333pt;}
._1f_c00245{width:17.250667pt;}
._18_c00245{width:18.373333pt;}
._d_c00245{width:19.320000pt;}
._e_c00245{width:20.976000pt;}
._17_c00245{width:23.368000pt;}
._1b_c00245{width:30.234667pt;}
._1e_c00245{width:52.901333pt;}
._13_c00245{width:99.482667pt;}
._16_c00245{width:143.546667pt;}
._15_c00245{width:184.213333pt;}
._2_c00245{width:334.082667pt;}
.fs4_c00245{font-size:42.666667pt;}
.fs3_c00245{font-size:50.666667pt;}
.fs2_c00245{font-size:53.333333pt;}
.fs1_c00245{font-size:58.666667pt;}
.fs0_c00245{font-size:61.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y23_c00245{bottom:2.760000pt;}
.y22_c00245{bottom:6.425212pt;}
.y21_c00245{bottom:56.133333pt;}
.y20_c00245{bottom:72.800000pt;}
.y1f_c00245{bottom:89.066667pt;}
.y1e_c00245{bottom:104.933333pt;}
.y1d_c00245{bottom:120.533333pt;}
.y1c_c00245{bottom:136.266667pt;}
.y1b_c00245{bottom:152.000000pt;}
.y1a_c00245{bottom:167.600000pt;}
.y19_c00245{bottom:183.200000pt;}
.y18_c00245{bottom:197.733333pt;}
.y17_c00245{bottom:213.866667pt;}
.y16_c00245{bottom:229.733333pt;}
.y15_c00245{bottom:245.600000pt;}
.y14_c00245{bottom:260.933333pt;}
.y13_c00245{bottom:292.133333pt;}
.y12_c00245{bottom:324.933333pt;}
.y11_c00245{bottom:346.533333pt;}
.y10_c00245{bottom:368.666667pt;}
.yf_c00245{bottom:390.800000pt;}
.ye_c00245{bottom:411.600000pt;}
.yd_c00245{bottom:434.400000pt;}
.yc_c00245{bottom:456.800000pt;}
.yb_c00245{bottom:478.800000pt;}
.ya_c00245{bottom:500.400000pt;}
.y9_c00245{bottom:522.533333pt;}
.y8_c00245{bottom:544.533333pt;}
.y7_c00245{bottom:566.666667pt;}
.y6_c00245{bottom:588.666667pt;}
.y5_c00245{bottom:610.800000pt;}
.y4_c00245{bottom:632.800000pt;}
.y3_c00245{bottom:654.666667pt;}
.y2_c00245{bottom:677.066667pt;}
.y1_c00245{bottom:699.066667pt;}
.h7_c00245{height:11.733399pt;}
.h8_c00245{height:38.937500pt;}
.h6_c00245{height:64.149740pt;}
.h5_c00245{height:67.526042pt;}
.h4_c00245{height:68.664062pt;}
.h2_c00245{height:71.785156pt;}
.h3_c00245{height:77.654948pt;}
.h1_c00245{height:735.333333pt;}
.h0_c00245{height:735.600000pt;}
.w2_c00245{width:93.222667pt;}
.w0_c00245{width:508.533333pt;}
.w1_c00245{width:508.666667pt;}
.x0_c00245{left:0.000000pt;}
.x6_c00245{left:26.800000pt;}
.x4_c00245{left:42.666667pt;}
.xb_c00245{left:84.000000pt;}
.x9_c00245{left:85.466667pt;}
.x8_c00245{left:86.400000pt;}
.x3_c00245{left:87.600000pt;}
.x7_c00245{left:88.533333pt;}
.x2_c00245{left:89.733333pt;}
.xc_c00245{left:100.400000pt;}
.x1_c00245{left:101.733333pt;}
.x5_c00245{left:130.533333pt;}
.xa_c00245{left:211.200000pt;}
.xd_c00245{left:454.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_ef2a6beb5ec3766ad88c1585.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_52dc51ade476d48dce2728de.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_68cc7199ffd42d8934b8922a.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_188d001c6ade0db07af587fd.woff2')format("woff");}.ff4_c00246{font-family:ff4_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:ff5_c00246;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls4_c00246{letter-spacing:0.000000px;}
.ls2_c00246{letter-spacing:1.770000px;}
.ls5_c00246{letter-spacing:3.000000px;}
.ls6_c00246{letter-spacing:9.000000px;}
.ls3_c00246{letter-spacing:17.325000px;}
.ls0_c00246{letter-spacing:38.571000px;}
.ls1_c00246{letter-spacing:46.971000px;}
.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:-29.898000px;}
.ws3_c00246{word-spacing:-23.478000px;}
.ws7_c00246{word-spacing:-19.629000px;}
.ws5_c00246{word-spacing:-16.629000px;}
.ws1_c00246{word-spacing:-0.897000px;}
.ws6_c00246{word-spacing:-0.225000px;}
.ws8_c00246{word-spacing:0.000000px;}
.ws4_c00246{word-spacing:2.952000px;}
.ws2_c00246{word-spacing:4.692000px;}
._28_c00246{margin-left:-36.945000px;}
._23_c00246{margin-left:-18.423000px;}
._25_c00246{margin-left:-17.187000px;}
._18_c00246{margin-left:-15.216000px;}
._17_c00246{margin-left:-12.447000px;}
._15_c00246{margin-left:-10.281000px;}
._16_c00246{margin-left:-9.246000px;}
._1_c00246{margin-left:-8.004000px;}
._14_c00246{margin-left:-6.042000px;}
._8_c00246{margin-left:-3.561000px;}
._6_c00246{margin-left:-1.767000px;}
._0_c00246{width:1.794000px;}
._2_c00246{width:3.243000px;}
._3_c00246{width:4.416000px;}
._1c_c00246{width:5.601000px;}
._9_c00246{width:6.621000px;}
._7_c00246{width:7.638000px;}
._1a_c00246{width:9.210000px;}
._12_c00246{width:10.695000px;}
._19_c00246{width:12.834000px;}
._20_c00246{width:14.262000px;}
._1d_c00246{width:15.801000px;}
._10_c00246{width:17.595000px;}
._11_c00246{width:18.630000px;}
._1f_c00246{width:21.180000px;}
._13_c00246{width:22.644000px;}
._1e_c00246{width:25.167000px;}
._b_c00246{width:26.979000px;}
._c_c00246{width:28.221000px;}
._a_c00246{width:30.015000px;}
._d_c00246{width:31.464000px;}
._e_c00246{width:43.746000px;}
._f_c00246{width:47.178000px;}
._22_c00246{width:66.762000px;}
._21_c00246{width:80.910000px;}
._27_c00246{width:97.167000px;}
._5_c00246{width:98.664000px;}
._24_c00246{width:117.261000px;}
._1b_c00246{width:155.127000px;}
._29_c00246{width:164.664000px;}
._26_c00246{width:171.933000px;}
._4_c00246{width:516.162000px;}
.fc2_c00246{color:transparent;}
.fc1_c00246{color:rgb(128,128,128);}
.fc0_c00246{color:rgb(0,0,0);}
.fs3_c00246{font-size:48.000000px;}
.fs2_c00246{font-size:57.000000px;}
.fs1_c00246{font-size:66.000000px;}
.fs0_c00246{font-size:69.000000px;}
.y0_c00246{bottom:0.000000px;}
.y1d_c00246{bottom:3.105000px;}
.y1c_c00246{bottom:7.228357px;}
.y1b_c00246{bottom:73.680000px;}
.y1a_c00246{bottom:96.930000px;}
.y19_c00246{bottom:122.280000px;}
.y18_c00246{bottom:147.480000px;}
.y17_c00246{bottom:172.080000px;}
.y16_c00246{bottom:196.380000px;}
.y15_c00246{bottom:222.030000px;}
.y14_c00246{bottom:246.030000px;}
.y13_c00246{bottom:271.080000px;}
.y12_c00246{bottom:295.680000px;}
.y11_c00246{bottom:320.280000px;}
.y10_c00246{bottom:345.330000px;}
.yf_c00246{bottom:369.630000px;}
.ye_c00246{bottom:394.830000px;}
.yd_c00246{bottom:419.130000px;}
.yc_c00246{bottom:444.180000px;}
.yb_c00246{bottom:468.780000px;}
.ya_c00246{bottom:493.380000px;}
.y9_c00246{bottom:517.830000px;}
.y8_c00246{bottom:541.980000px;}
.y7_c00246{bottom:567.330000px;}
.y6_c00246{bottom:591.930000px;}
.y5_c00246{bottom:616.680000px;}
.y4_c00246{bottom:666.330000px;}
.y3_c00246{bottom:715.530000px;}
.y2_c00246{bottom:771.630000px;}
.y1_c00246{bottom:790.830000px;}
.h4_c00246{height:13.200074px;}
.h5_c00246{height:43.804688px;}
.h2_c00246{height:72.168457px;}
.h3_c00246{height:80.758301px;}
.h1_c00246{height:87.361816px;}
.h0_c00246{height:819.750000px;}
.w2_c00246{width:104.875500px;}
.w0_c00246{width:557.850000px;}
.w1_c00246{width:558.000000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:24.300000px;}
.x6_c00246{left:26.100000px;}
.x5_c00246{left:49.650000px;}
.x4_c00246{left:59.700000px;}
.x3_c00246{left:78.600000px;}
.x1_c00246{left:191.700000px;}
.x8_c00246{left:230.739258px;}
.x7_c00246{left:441.000000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls4_c00246{letter-spacing:0.000000pt;}
.ls2_c00246{letter-spacing:1.573333pt;}
.ls5_c00246{letter-spacing:2.666667pt;}
.ls6_c00246{letter-spacing:8.000000pt;}
.ls3_c00246{letter-spacing:15.400000pt;}
.ls0_c00246{letter-spacing:34.285333pt;}
.ls1_c00246{letter-spacing:41.752000pt;}
.ws0_c00246{word-spacing:-26.576000pt;}
.ws3_c00246{word-spacing:-20.869333pt;}
.ws7_c00246{word-spacing:-17.448000pt;}
.ws5_c00246{word-spacing:-14.781333pt;}
.ws1_c00246{word-spacing:-0.797333pt;}
.ws6_c00246{word-spacing:-0.200000pt;}
.ws8_c00246{word-spacing:0.000000pt;}
.ws4_c00246{word-spacing:2.624000pt;}
.ws2_c00246{word-spacing:4.170667pt;}
._28_c00246{margin-left:-32.840000pt;}
._23_c00246{margin-left:-16.376000pt;}
._25_c00246{margin-left:-15.277333pt;}
._18_c00246{margin-left:-13.525333pt;}
._17_c00246{margin-left:-11.064000pt;}
._15_c00246{margin-left:-9.138667pt;}
._16_c00246{margin-left:-8.218667pt;}
._1_c00246{margin-left:-7.114667pt;}
._14_c00246{margin-left:-5.370667pt;}
._8_c00246{margin-left:-3.165333pt;}
._6_c00246{margin-left:-1.570667pt;}
._0_c00246{width:1.594667pt;}
._2_c00246{width:2.882667pt;}
._3_c00246{width:3.925333pt;}
._1c_c00246{width:4.978667pt;}
._9_c00246{width:5.885333pt;}
._7_c00246{width:6.789333pt;}
._1a_c00246{width:8.186667pt;}
._12_c00246{width:9.506667pt;}
._19_c00246{width:11.408000pt;}
._20_c00246{width:12.677333pt;}
._1d_c00246{width:14.045333pt;}
._10_c00246{width:15.640000pt;}
._11_c00246{width:16.560000pt;}
._1f_c00246{width:18.826667pt;}
._13_c00246{width:20.128000pt;}
._1e_c00246{width:22.370667pt;}
._b_c00246{width:23.981333pt;}
._c_c00246{width:25.085333pt;}
._a_c00246{width:26.680000pt;}
._d_c00246{width:27.968000pt;}
._e_c00246{width:38.885333pt;}
._f_c00246{width:41.936000pt;}
._22_c00246{width:59.344000pt;}
._21_c00246{width:71.920000pt;}
._27_c00246{width:86.370667pt;}
._5_c00246{width:87.701333pt;}
._24_c00246{width:104.232000pt;}
._1b_c00246{width:137.890667pt;}
._29_c00246{width:146.368000pt;}
._26_c00246{width:152.829333pt;}
._4_c00246{width:458.810667pt;}
.fs3_c00246{font-size:42.666667pt;}
.fs2_c00246{font-size:50.666667pt;}
.fs1_c00246{font-size:58.666667pt;}
.fs0_c00246{font-size:61.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y1d_c00246{bottom:2.760000pt;}
.y1c_c00246{bottom:6.425206pt;}
.y1b_c00246{bottom:65.493333pt;}
.y1a_c00246{bottom:86.160000pt;}
.y19_c00246{bottom:108.693333pt;}
.y18_c00246{bottom:131.093333pt;}
.y17_c00246{bottom:152.960000pt;}
.y16_c00246{bottom:174.560000pt;}
.y15_c00246{bottom:197.360000pt;}
.y14_c00246{bottom:218.693333pt;}
.y13_c00246{bottom:240.960000pt;}
.y12_c00246{bottom:262.826667pt;}
.y11_c00246{bottom:284.693333pt;}
.y10_c00246{bottom:306.960000pt;}
.yf_c00246{bottom:328.560000pt;}
.ye_c00246{bottom:350.960000pt;}
.yd_c00246{bottom:372.560000pt;}
.yc_c00246{bottom:394.826667pt;}
.yb_c00246{bottom:416.693333pt;}
.ya_c00246{bottom:438.560000pt;}
.y9_c00246{bottom:460.293333pt;}
.y8_c00246{bottom:481.760000pt;}
.y7_c00246{bottom:504.293333pt;}
.y6_c00246{bottom:526.160000pt;}
.y5_c00246{bottom:548.160000pt;}
.y4_c00246{bottom:592.293333pt;}
.y3_c00246{bottom:636.026667pt;}
.y2_c00246{bottom:685.893333pt;}
.y1_c00246{bottom:702.960000pt;}
.h4_c00246{height:11.733399pt;}
.h5_c00246{height:38.937500pt;}
.h2_c00246{height:64.149740pt;}
.h3_c00246{height:71.785156pt;}
.h1_c00246{height:77.654948pt;}
.h0_c00246{height:728.666667pt;}
.w2_c00246{width:93.222667pt;}
.w0_c00246{width:495.866667pt;}
.w1_c00246{width:496.000000pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:21.600000pt;}
.x6_c00246{left:23.200000pt;}
.x5_c00246{left:44.133333pt;}
.x4_c00246{left:53.066667pt;}
.x3_c00246{left:69.866667pt;}
.x1_c00246{left:170.400000pt;}
.x8_c00246{left:205.101563pt;}
.x7_c00246{left:392.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_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_3304f89db78e5ab48b6c6d12.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.568848;font-style:normal;font-weight:normal;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_9c056f883c24ea1f8f6396c1.woff2')format("woff");}.ff2_c00247{font-family:ff2_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:ff3_c00247;src:url('chunks/assets/font_d14990f889f862891344d674.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_33810bed7329c0f77ca0dc70.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00247{font-family:ff5_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:ff6_c00247;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00247{font-family:ff6_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;}
.ls4_c00247{letter-spacing:0.000000px;}
.ls1_c00247{letter-spacing:2.172000px;}
.ls3_c00247{letter-spacing:3.000000px;}
.ls2_c00247{letter-spacing:5.160000px;}
.ls5_c00247{letter-spacing:6.000000px;}
.ls0_c00247{letter-spacing:32.325000px;}
.ls6_c00247{letter-spacing:39.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;}
}
.ws2_c00247{word-spacing:-57.750000px;}
.ws1_c00247{word-spacing:-9.075000px;}
.ws0_c00247{word-spacing:-7.350000px;}
.ws3_c00247{word-spacing:-0.360000px;}
.ws4_c00247{word-spacing:0.000000px;}
._16_c00247{margin-left:-16.077000px;}
._15_c00247{margin-left:-11.937000px;}
._23_c00247{margin-left:-10.764000px;}
._25_c00247{margin-left:-8.721000px;}
._1_c00247{margin-left:-6.693000px;}
._13_c00247{margin-left:-5.451000px;}
._14_c00247{margin-left:-4.002000px;}
._8_c00247{margin-left:-2.622000px;}
._4_c00247{margin-left:-1.587000px;}
._0_c00247{width:1.794000px;}
._2_c00247{width:3.243000px;}
._5_c00247{width:4.692000px;}
._17_c00247{width:6.210000px;}
._26_c00247{width:7.245000px;}
._12_c00247{width:8.265000px;}
._7_c00247{width:9.936000px;}
._6_c00247{width:11.040000px;}
._1d_c00247{width:12.432000px;}
._10_c00247{width:13.650000px;}
._1b_c00247{width:15.387000px;}
._11_c00247{width:17.178000px;}
._c_c00247{width:19.104000px;}
._d_c00247{width:20.175000px;}
._b_c00247{width:21.321000px;}
._20_c00247{width:22.860000px;}
._1c_c00247{width:24.096000px;}
._1a_c00247{width:25.278000px;}
._18_c00247{width:27.669000px;}
._e_c00247{width:28.779000px;}
._a_c00247{width:30.567000px;}
._9_c00247{width:32.982000px;}
._1e_c00247{width:34.158000px;}
._24_c00247{width:38.571000px;}
._22_c00247{width:45.141000px;}
._f_c00247{width:53.568000px;}
._1f_c00247{width:93.357000px;}
._19_c00247{width:124.242000px;}
._21_c00247{width:151.398000px;}
._3_c00247{width:362.310000px;}
._27_c00247{width:509.490000px;}
.fc2_c00247{color:transparent;}
.fc1_c00247{color:rgb(128,128,128);}
.fc0_c00247{color:rgb(0,0,0);}
.fs3_c00247{font-size:45.000000px;}
.fs4_c00247{font-size:48.000000px;}
.fs0_c00247{font-size:69.000000px;}
.fs1_c00247{font-size:75.000000px;}
.fs2_c00247{font-size:78.000000px;}
.y0_c00247{bottom:0.000000px;}
.y1c_c00247{bottom:3.105000px;}
.y1b_c00247{bottom:7.228363px;}
.y1a_c00247{bottom:84.300000px;}
.y19_c00247{bottom:102.150000px;}
.y18_c00247{bottom:119.850000px;}
.y17_c00247{bottom:164.400000px;}
.y16_c00247{bottom:214.950000px;}
.y15_c00247{bottom:239.850000px;}
.y14_c00247{bottom:265.200000px;}
.y13_c00247{bottom:289.650000px;}
.y12_c00247{bottom:314.550000px;}
.y11_c00247{bottom:338.100000px;}
.y10_c00247{bottom:362.700000px;}
.yf_c00247{bottom:387.450000px;}
.ye_c00247{bottom:412.800000px;}
.yd_c00247{bottom:437.400000px;}
.yc_c00247{bottom:462.000000px;}
.yb_c00247{bottom:487.050000px;}
.ya_c00247{bottom:511.950000px;}
.y9_c00247{bottom:537.000000px;}
.y8_c00247{bottom:561.900000px;}
.y7_c00247{bottom:585.000000px;}
.y6_c00247{bottom:612.900000px;}
.y5_c00247{bottom:636.900000px;}
.y4_c00247{bottom:686.550000px;}
.y3_c00247{bottom:737.850000px;}
.y2_c00247{bottom:760.500000px;}
.y1_c00247{bottom:787.350000px;}
.ha_c00247{height:13.200074px;}
.hb_c00247{height:43.804688px;}
.h9_c00247{height:44.143066px;}
.h8_c00247{height:44.165039px;}
.h7_c00247{height:56.975098px;}
.h6_c00247{height:73.571777px;}
.h4_c00247{height:80.758301px;}
.h2_c00247{height:87.361816px;}
.h5_c00247{height:94.958496px;}
.h3_c00247{height:98.756836px;}
.h0_c00247{height:818.100000px;}
.h1_c00247{height:818.250000px;}
.w2_c00247{width:104.875500px;}
.w0_c00247{width:565.350000px;}
.w1_c00247{width:565.500000px;}
.x0_c00247{left:0.000000px;}
.xa_c00247{left:21.900000px;}
.x6_c00247{left:22.950000px;}
.x8_c00247{left:34.050000px;}
.x5_c00247{left:86.400000px;}
.x7_c00247{left:88.050000px;}
.x2_c00247{left:89.100000px;}
.x1_c00247{left:100.800000px;}
.x4_c00247{left:113.700000px;}
.x3_c00247{left:127.950000px;}
.xb_c00247{left:158.250000px;}
.x9_c00247{left:220.650000px;}
.xc_c00247{left:234.489258px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls4_c00247{letter-spacing:0.000000pt;}
.ls1_c00247{letter-spacing:1.930667pt;}
.ls3_c00247{letter-spacing:2.666667pt;}
.ls2_c00247{letter-spacing:4.586667pt;}
.ls5_c00247{letter-spacing:5.333333pt;}
.ls0_c00247{letter-spacing:28.733333pt;}
.ls6_c00247{letter-spacing:34.666667pt;}
.ws2_c00247{word-spacing:-51.333333pt;}
.ws1_c00247{word-spacing:-8.066667pt;}
.ws0_c00247{word-spacing:-6.533333pt;}
.ws3_c00247{word-spacing:-0.320000pt;}
.ws4_c00247{word-spacing:0.000000pt;}
._16_c00247{margin-left:-14.290667pt;}
._15_c00247{margin-left:-10.610667pt;}
._23_c00247{margin-left:-9.568000pt;}
._25_c00247{margin-left:-7.752000pt;}
._1_c00247{margin-left:-5.949333pt;}
._13_c00247{margin-left:-4.845333pt;}
._14_c00247{margin-left:-3.557333pt;}
._8_c00247{margin-left:-2.330667pt;}
._4_c00247{margin-left:-1.410667pt;}
._0_c00247{width:1.594667pt;}
._2_c00247{width:2.882667pt;}
._5_c00247{width:4.170667pt;}
._17_c00247{width:5.520000pt;}
._26_c00247{width:6.440000pt;}
._12_c00247{width:7.346667pt;}
._7_c00247{width:8.832000pt;}
._6_c00247{width:9.813333pt;}
._1d_c00247{width:11.050667pt;}
._10_c00247{width:12.133333pt;}
._1b_c00247{width:13.677333pt;}
._11_c00247{width:15.269333pt;}
._c_c00247{width:16.981333pt;}
._d_c00247{width:17.933333pt;}
._b_c00247{width:18.952000pt;}
._20_c00247{width:20.320000pt;}
._1c_c00247{width:21.418667pt;}
._1a_c00247{width:22.469333pt;}
._18_c00247{width:24.594667pt;}
._e_c00247{width:25.581333pt;}
._a_c00247{width:27.170667pt;}
._9_c00247{width:29.317333pt;}
._1e_c00247{width:30.362667pt;}
._24_c00247{width:34.285333pt;}
._22_c00247{width:40.125333pt;}
._f_c00247{width:47.616000pt;}
._1f_c00247{width:82.984000pt;}
._19_c00247{width:110.437333pt;}
._21_c00247{width:134.576000pt;}
._3_c00247{width:322.053333pt;}
._27_c00247{width:452.880000pt;}
.fs3_c00247{font-size:40.000000pt;}
.fs4_c00247{font-size:42.666667pt;}
.fs0_c00247{font-size:61.333333pt;}
.fs1_c00247{font-size:66.666667pt;}
.fs2_c00247{font-size:69.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y1c_c00247{bottom:2.760000pt;}
.y1b_c00247{bottom:6.425212pt;}
.y1a_c00247{bottom:74.933333pt;}
.y19_c00247{bottom:90.800000pt;}
.y18_c00247{bottom:106.533333pt;}
.y17_c00247{bottom:146.133333pt;}
.y16_c00247{bottom:191.066667pt;}
.y15_c00247{bottom:213.200000pt;}
.y14_c00247{bottom:235.733333pt;}
.y13_c00247{bottom:257.466667pt;}
.y12_c00247{bottom:279.600000pt;}
.y11_c00247{bottom:300.533333pt;}
.y10_c00247{bottom:322.400000pt;}
.yf_c00247{bottom:344.400000pt;}
.ye_c00247{bottom:366.933333pt;}
.yd_c00247{bottom:388.800000pt;}
.yc_c00247{bottom:410.666667pt;}
.yb_c00247{bottom:432.933333pt;}
.ya_c00247{bottom:455.066667pt;}
.y9_c00247{bottom:477.333333pt;}
.y8_c00247{bottom:499.466667pt;}
.y7_c00247{bottom:520.000000pt;}
.y6_c00247{bottom:544.800000pt;}
.y5_c00247{bottom:566.133333pt;}
.y4_c00247{bottom:610.266667pt;}
.y3_c00247{bottom:655.866667pt;}
.y2_c00247{bottom:676.000000pt;}
.y1_c00247{bottom:699.866667pt;}
.ha_c00247{height:11.733399pt;}
.hb_c00247{height:38.937500pt;}
.h9_c00247{height:39.238281pt;}
.h8_c00247{height:39.257812pt;}
.h7_c00247{height:50.644531pt;}
.h6_c00247{height:65.397135pt;}
.h4_c00247{height:71.785156pt;}
.h2_c00247{height:77.654948pt;}
.h5_c00247{height:84.407552pt;}
.h3_c00247{height:87.783854pt;}
.h0_c00247{height:727.200000pt;}
.h1_c00247{height:727.333333pt;}
.w2_c00247{width:93.222667pt;}
.w0_c00247{width:502.533333pt;}
.w1_c00247{width:502.666667pt;}
.x0_c00247{left:0.000000pt;}
.xa_c00247{left:19.466667pt;}
.x6_c00247{left:20.400000pt;}
.x8_c00247{left:30.266667pt;}
.x5_c00247{left:76.800000pt;}
.x7_c00247{left:78.266667pt;}
.x2_c00247{left:79.200000pt;}
.x1_c00247{left:89.600000pt;}
.x4_c00247{left:101.066667pt;}
.x3_c00247{left:113.733333pt;}
.xb_c00247{left:140.666667pt;}
.x9_c00247{left:196.133333pt;}
.xc_c00247{left:208.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_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_d3857301f8aab6e2d897de03.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.480469;font-style:normal;font-weight:normal;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_105a63440fbd2542a11e737d.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_06228dcf7bafc431e2c6edb5.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_cba01f0060d167a81badd802.woff2')format("woff");}.ff4_c00248{font-family:ff4_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:ff5_c00248;src:url('chunks/assets/font_f6e8f7ba4c08ca87a9c16b0f.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00248{font-family:ff6_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;}
.m1_c00248{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_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls7_c00248{letter-spacing:0.000000px;}
.ls4_c00248{letter-spacing:3.000000px;}
.ls0_c00248{letter-spacing:5.370000px;}
.ls2_c00248{letter-spacing:9.600000px;}
.ls8_c00248{letter-spacing:12.000000px;}
.ls3_c00248{letter-spacing:15.900000px;}
.ls1_c00248{letter-spacing:18.000000px;}
.ls6_c00248{letter-spacing:25.200000px;}
.ls9_c00248{letter-spacing:27.000000px;}
.ls5_c00248{letter-spacing:30.594000px;}
.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:-33.000000px;}
.ws6_c00248{word-spacing:-19.629000px;}
.ws4_c00248{word-spacing:-19.500000px;}
.ws3_c00248{word-spacing:-13.845000px;}
.ws2_c00248{word-spacing:-12.954000px;}
.ws1_c00248{word-spacing:-11.568000px;}
.ws7_c00248{word-spacing:0.000000px;}
.ws5_c00248{word-spacing:0.207000px;}
._21_c00248{margin-left:-30.045000px;}
._10_c00248{margin-left:-26.241000px;}
._1f_c00248{margin-left:-19.215000px;}
._20_c00248{margin-left:-17.595000px;}
._19_c00248{margin-left:-14.862000px;}
._24_c00248{margin-left:-13.803000px;}
._1_c00248{margin-left:-11.454000px;}
._12_c00248{margin-left:-9.303000px;}
._4_c00248{margin-left:-7.800000px;}
._1e_c00248{margin-left:-6.753000px;}
._a_c00248{margin-left:-5.712000px;}
._c_c00248{margin-left:-3.999000px;}
._11_c00248{margin-left:-2.688000px;}
._9_c00248{margin-left:-1.584000px;}
._b_c00248{width:1.008000px;}
._0_c00248{width:2.139000px;}
._5_c00248{width:3.744000px;}
._6_c00248{width:5.253000px;}
._8_c00248{width:6.768000px;}
._13_c00248{width:8.709000px;}
._7_c00248{width:10.479000px;}
._22_c00248{width:11.553000px;}
._3_c00248{width:13.227000px;}
._17_c00248{width:14.532000px;}
._35_c00248{width:15.615000px;}
._d_c00248{width:16.713000px;}
._16_c00248{width:18.273000px;}
._27_c00248{width:21.042000px;}
._e_c00248{width:22.941000px;}
._2e_c00248{width:23.943000px;}
._30_c00248{width:25.263000px;}
._1b_c00248{width:26.727000px;}
._32_c00248{width:32.526000px;}
._31_c00248{width:35.226000px;}
._2f_c00248{width:37.068000px;}
._34_c00248{width:47.013000px;}
._25_c00248{width:48.633000px;}
._26_c00248{width:52.632000px;}
._2c_c00248{width:58.203000px;}
._28_c00248{width:69.327000px;}
._1d_c00248{width:79.125000px;}
._2d_c00248{width:101.439000px;}
._33_c00248{width:104.934000px;}
._14_c00248{width:107.301000px;}
._f_c00248{width:108.555000px;}
._23_c00248{width:110.514000px;}
._29_c00248{width:128.406000px;}
._2a_c00248{width:143.286000px;}
._18_c00248{width:167.970000px;}
._1a_c00248{width:178.077000px;}
._1c_c00248{width:241.425000px;}
._2_c00248{width:501.147000px;}
._2b_c00248{width:551.814000px;}
._15_c00248{width:882.372000px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(128,128,128);}
.fc0_c00248{color:rgb(0,0,0);}
.fs6_c00248{font-size:39.000000px;}
.fs7_c00248{font-size:45.000000px;}
.fs2_c00248{font-size:48.000000px;}
.fs3_c00248{font-size:51.000000px;}
.fs4_c00248{font-size:60.000000px;}
.fs1_c00248{font-size:66.000000px;}
.fs0_c00248{font-size:69.000000px;}
.fs5_c00248{font-size:87.000000px;}
.y0_c00248{bottom:0.000000px;}
.y21_c00248{bottom:3.105000px;}
.y20_c00248{bottom:7.228371px;}
.y1f_c00248{bottom:71.265000px;}
.y1e_c00248{bottom:94.815000px;}
.y1d_c00248{bottom:120.165000px;}
.y1c_c00248{bottom:144.165000px;}
.y1b_c00248{bottom:168.465000px;}
.y1a_c00248{bottom:193.065000px;}
.y19_c00248{bottom:218.115000px;}
.y18_c00248{bottom:242.715000px;}
.y17_c00248{bottom:267.765000px;}
.y16_c00248{bottom:292.365000px;}
.y15_c00248{bottom:341.865000px;}
.y14_c00248{bottom:390.915000px;}
.y13_c00248{bottom:438.765000px;}
.y12_c00248{bottom:455.715000px;}
.y11_c00248{bottom:473.265000px;}
.y10_c00248{bottom:490.515000px;}
.yf_c00248{bottom:507.615000px;}
.ye_c00248{bottom:524.565000px;}
.yd_c00248{bottom:541.665000px;}
.yc_c00248{bottom:559.215000px;}
.yb_c00248{bottom:576.465000px;}
.ya_c00248{bottom:594.015000px;}
.y9_c00248{bottom:611.565000px;}
.y8_c00248{bottom:629.115000px;}
.y7_c00248{bottom:646.365000px;}
.y6_c00248{bottom:663.915000px;}
.y5_c00248{bottom:697.965000px;}
.y4_c00248{bottom:733.815000px;}
.y3_c00248{bottom:751.065000px;}
.y2_c00248{bottom:768.615000px;}
.y1_c00248{bottom:787.815000px;}
.ha_c00248{height:13.200074px;}
.hb_c00248{height:43.804688px;}
.h5_c00248{height:56.179688px;}
.h8_c00248{height:56.975098px;}
.h7_c00248{height:60.773438px;}
.h3_c00248{height:64.571777px;}
.h4_c00248{height:75.966797px;}
.h2_c00248{height:80.758301px;}
.h9_c00248{height:87.361816px;}
.h6_c00248{height:91.176000px;}
.h0_c00248{height:825.675000px;}
.h1_c00248{height:825.750000px;}
.w2_c00248{width:104.875500px;}
.w0_c00248{width:562.125000px;}
.w1_c00248{width:562.500000px;}
.x0_c00248{left:0.000000px;}
.xd_c00248{left:24.600000px;}
.x2_c00248{left:26.100000px;}
.x3_c00248{left:27.300000px;}
.x6_c00248{left:28.650000px;}
.x9_c00248{left:29.700000px;}
.xa_c00248{left:30.750000px;}
.x5_c00248{left:45.600000px;}
.xc_c00248{left:51.600000px;}
.xb_c00248{left:70.800000px;}
.x4_c00248{left:178.500000px;}
.x1_c00248{left:194.400000px;}
.xf_c00248{left:232.876740px;}
.xe_c00248{left:435.300000px;}
.x7_c00248{left:526.200000px;}
.x8_c00248{left:534.600000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls7_c00248{letter-spacing:0.000000pt;}
.ls4_c00248{letter-spacing:2.666667pt;}
.ls0_c00248{letter-spacing:4.773333pt;}
.ls2_c00248{letter-spacing:8.533333pt;}
.ls8_c00248{letter-spacing:10.666667pt;}
.ls3_c00248{letter-spacing:14.133333pt;}
.ls1_c00248{letter-spacing:16.000000pt;}
.ls6_c00248{letter-spacing:22.400000pt;}
.ls9_c00248{letter-spacing:24.000000pt;}
.ls5_c00248{letter-spacing:27.194667pt;}
.ws0_c00248{word-spacing:-29.333333pt;}
.ws6_c00248{word-spacing:-17.448000pt;}
.ws4_c00248{word-spacing:-17.333333pt;}
.ws3_c00248{word-spacing:-12.306667pt;}
.ws2_c00248{word-spacing:-11.514667pt;}
.ws1_c00248{word-spacing:-10.282667pt;}
.ws7_c00248{word-spacing:0.000000pt;}
.ws5_c00248{word-spacing:0.184000pt;}
._21_c00248{margin-left:-26.706667pt;}
._10_c00248{margin-left:-23.325333pt;}
._1f_c00248{margin-left:-17.080000pt;}
._20_c00248{margin-left:-15.640000pt;}
._19_c00248{margin-left:-13.210667pt;}
._24_c00248{margin-left:-12.269333pt;}
._1_c00248{margin-left:-10.181333pt;}
._12_c00248{margin-left:-8.269333pt;}
._4_c00248{margin-left:-6.933333pt;}
._1e_c00248{margin-left:-6.002667pt;}
._a_c00248{margin-left:-5.077333pt;}
._c_c00248{margin-left:-3.554667pt;}
._11_c00248{margin-left:-2.389333pt;}
._9_c00248{margin-left:-1.408000pt;}
._b_c00248{width:0.896000pt;}
._0_c00248{width:1.901333pt;}
._5_c00248{width:3.328000pt;}
._6_c00248{width:4.669333pt;}
._8_c00248{width:6.016000pt;}
._13_c00248{width:7.741333pt;}
._7_c00248{width:9.314667pt;}
._22_c00248{width:10.269333pt;}
._3_c00248{width:11.757333pt;}
._17_c00248{width:12.917333pt;}
._35_c00248{width:13.880000pt;}
._d_c00248{width:14.856000pt;}
._16_c00248{width:16.242667pt;}
._27_c00248{width:18.704000pt;}
._e_c00248{width:20.392000pt;}
._2e_c00248{width:21.282667pt;}
._30_c00248{width:22.456000pt;}
._1b_c00248{width:23.757333pt;}
._32_c00248{width:28.912000pt;}
._31_c00248{width:31.312000pt;}
._2f_c00248{width:32.949333pt;}
._34_c00248{width:41.789333pt;}
._25_c00248{width:43.229333pt;}
._26_c00248{width:46.784000pt;}
._2c_c00248{width:51.736000pt;}
._28_c00248{width:61.624000pt;}
._1d_c00248{width:70.333333pt;}
._2d_c00248{width:90.168000pt;}
._33_c00248{width:93.274667pt;}
._14_c00248{width:95.378667pt;}
._f_c00248{width:96.493333pt;}
._23_c00248{width:98.234667pt;}
._29_c00248{width:114.138667pt;}
._2a_c00248{width:127.365333pt;}
._18_c00248{width:149.306667pt;}
._1a_c00248{width:158.290667pt;}
._1c_c00248{width:214.600000pt;}
._2_c00248{width:445.464000pt;}
._2b_c00248{width:490.501333pt;}
._15_c00248{width:784.330667pt;}
.fs6_c00248{font-size:34.666667pt;}
.fs7_c00248{font-size:40.000000pt;}
.fs2_c00248{font-size:42.666667pt;}
.fs3_c00248{font-size:45.333333pt;}
.fs4_c00248{font-size:53.333333pt;}
.fs1_c00248{font-size:58.666667pt;}
.fs0_c00248{font-size:61.333333pt;}
.fs5_c00248{font-size:77.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y21_c00248{bottom:2.760000pt;}
.y20_c00248{bottom:6.425219pt;}
.y1f_c00248{bottom:63.346667pt;}
.y1e_c00248{bottom:84.280000pt;}
.y1d_c00248{bottom:106.813333pt;}
.y1c_c00248{bottom:128.146667pt;}
.y1b_c00248{bottom:149.746667pt;}
.y1a_c00248{bottom:171.613333pt;}
.y19_c00248{bottom:193.880000pt;}
.y18_c00248{bottom:215.746667pt;}
.y17_c00248{bottom:238.013333pt;}
.y16_c00248{bottom:259.880000pt;}
.y15_c00248{bottom:303.880000pt;}
.y14_c00248{bottom:347.480000pt;}
.y13_c00248{bottom:390.013333pt;}
.y12_c00248{bottom:405.080000pt;}
.y11_c00248{bottom:420.680000pt;}
.y10_c00248{bottom:436.013333pt;}
.yf_c00248{bottom:451.213333pt;}
.ye_c00248{bottom:466.280000pt;}
.yd_c00248{bottom:481.480000pt;}
.yc_c00248{bottom:497.080000pt;}
.yb_c00248{bottom:512.413333pt;}
.ya_c00248{bottom:528.013333pt;}
.y9_c00248{bottom:543.613333pt;}
.y8_c00248{bottom:559.213333pt;}
.y7_c00248{bottom:574.546667pt;}
.y6_c00248{bottom:590.146667pt;}
.y5_c00248{bottom:620.413333pt;}
.y4_c00248{bottom:652.280000pt;}
.y3_c00248{bottom:667.613333pt;}
.y2_c00248{bottom:683.213333pt;}
.y1_c00248{bottom:700.280000pt;}
.ha_c00248{height:11.733399pt;}
.hb_c00248{height:38.937500pt;}
.h5_c00248{height:49.937500pt;}
.h8_c00248{height:50.644531pt;}
.h7_c00248{height:54.020833pt;}
.h3_c00248{height:57.397135pt;}
.h4_c00248{height:67.526042pt;}
.h2_c00248{height:71.785156pt;}
.h9_c00248{height:77.654948pt;}
.h6_c00248{height:81.045333pt;}
.h0_c00248{height:733.933333pt;}
.h1_c00248{height:734.000000pt;}
.w2_c00248{width:93.222667pt;}
.w0_c00248{width:499.666667pt;}
.w1_c00248{width:500.000000pt;}
.x0_c00248{left:0.000000pt;}
.xd_c00248{left:21.866667pt;}
.x2_c00248{left:23.200000pt;}
.x3_c00248{left:24.266667pt;}
.x6_c00248{left:25.466667pt;}
.x9_c00248{left:26.400000pt;}
.xa_c00248{left:27.333333pt;}
.x5_c00248{left:40.533333pt;}
.xc_c00248{left:45.866667pt;}
.xb_c00248{left:62.933333pt;}
.x4_c00248{left:158.666667pt;}
.x1_c00248{left:172.800000pt;}
.xf_c00248{left:207.001546pt;}
.xe_c00248{left:386.933333pt;}
.x7_c00248{left:467.733333pt;}
.x8_c00248{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_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_66cf9ba41955ceaeaf16442e.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.568848;font-style:normal;font-weight:normal;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_2713bb25802d11519fe01ed9.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_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_d6330448a11a2c4cebb0a1b0.woff2')format("woff");}.ff4_c00249{font-family:ff4_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:ff5_c00249;src:url('chunks/assets/font_7bd0dac52a8c3e69b916cdc1.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.568848;font-style:normal;font-weight:normal;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_0d80915994359be85426e9c6.woff2')format("woff");}.ff6_c00249{font-family:ff6_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:ff7_c00249;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00249{font-family:ff7_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;}
.ls4_c00249{letter-spacing:0.000000px;}
.ls2_c00249{letter-spacing:1.800000px;}
.ls0_c00249{letter-spacing:3.000000px;}
.ls1_c00249{letter-spacing:4.257000px;}
.ls5_c00249{letter-spacing:9.000000px;}
.ls3_c00249{letter-spacing:9.501000px;}
.ls8_c00249{letter-spacing:15.000000px;}
.ls6_c00249{letter-spacing:48.000000px;}
.ls7_c00249{letter-spacing:57.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00249{word-spacing:-64.629000px;}
.ws5_c00249{word-spacing:-59.340000px;}
.ws7_c00249{word-spacing:-44.988000px;}
.ws1_c00249{word-spacing:-44.022000px;}
.ws6_c00249{word-spacing:-36.708000px;}
.ws2_c00249{word-spacing:-25.629000px;}
.ws0_c00249{word-spacing:-16.629000px;}
.ws8_c00249{word-spacing:0.000000px;}
.ws3_c00249{word-spacing:0.069000px;}
._25_c00249{margin-left:-17.439000px;}
._14_c00249{margin-left:-15.801000px;}
._1f_c00249{margin-left:-13.800000px;}
._15_c00249{margin-left:-12.696000px;}
._1d_c00249{margin-left:-10.368000px;}
._1c_c00249{margin-left:-9.021000px;}
._16_c00249{margin-left:-7.521000px;}
._9_c00249{margin-left:-5.451000px;}
._a_c00249{margin-left:-3.795000px;}
._2_c00249{margin-left:-2.484000px;}
._3_c00249{margin-left:-1.242000px;}
._0_c00249{width:1.242000px;}
._4_c00249{width:2.760000px;}
._5_c00249{width:4.140000px;}
._e_c00249{width:5.175000px;}
._6_c00249{width:6.969000px;}
._b_c00249{width:8.289000px;}
._13_c00249{width:10.005000px;}
._d_c00249{width:11.868000px;}
._8_c00249{width:13.368000px;}
._7_c00249{width:14.796000px;}
._1b_c00249{width:16.026000px;}
._26_c00249{width:17.544000px;}
._24_c00249{width:18.561000px;}
._10_c00249{width:20.286000px;}
._11_c00249{width:21.321000px;}
._f_c00249{width:24.012000px;}
._17_c00249{width:26.895000px;}
._19_c00249{width:32.577000px;}
._12_c00249{width:35.322000px;}
._1a_c00249{width:36.501000px;}
._22_c00249{width:43.677000px;}
._27_c00249{width:51.528000px;}
._23_c00249{width:59.025000px;}
._20_c00249{width:93.444000px;}
._21_c00249{width:100.602000px;}
._18_c00249{width:124.383000px;}
._29_c00249{width:142.641000px;}
._1e_c00249{width:157.320000px;}
._28_c00249{width:183.420000px;}
._2a_c00249{width:184.542000px;}
._c_c00249{width:221.559000px;}
._1_c00249{width:363.855000px;}
.fc2_c00249{color:transparent;}
.fc1_c00249{color:rgb(128,128,128);}
.fc0_c00249{color:rgb(0,0,0);}
.fs5_c00249{font-size:48.000000px;}
.fs4_c00249{font-size:55.200000px;}
.fs3_c00249{font-size:57.000000px;}
.fs2_c00249{font-size:60.000000px;}
.fs1_c00249{font-size:66.000000px;}
.fs0_c00249{font-size:69.000000px;}
.y0_c00249{bottom:0.000000px;}
.y19_c00249{bottom:3.105000px;}
.y18_c00249{bottom:7.228363px;}
.y17_c00249{bottom:92.550000px;}
.y16_c00249{bottom:118.500000px;}
.y15_c00249{bottom:143.850000px;}
.y14_c00249{bottom:169.050000px;}
.y13_c00249{bottom:193.050000px;}
.y12_c00249{bottom:217.650000px;}
.y11_c00249{bottom:267.750000px;}
.y10_c00249{bottom:317.550000px;}
.yf_c00249{bottom:341.550000px;}
.ye_c00249{bottom:366.150000px;}
.yd_c00249{bottom:390.900000px;}
.yc_c00249{bottom:440.100000px;}
.yb_c00249{bottom:490.050000px;}
.ya_c00249{bottom:513.450000px;}
.y9_c00249{bottom:539.400000px;}
.y8_c00249{bottom:564.000000px;}
.y7_c00249{bottom:588.300000px;}
.y6_c00249{bottom:613.650000px;}
.y5_c00249{bottom:663.750000px;}
.y4_c00249{bottom:711.750000px;}
.y3_c00249{bottom:736.800000px;}
.y2_c00249{bottom:763.050000px;}
.y1_c00249{bottom:788.100000px;}
.h5_c00249{height:13.200074px;}
.h6_c00249{height:43.804688px;}
.h4_c00249{height:72.168457px;}
.h3_c00249{height:80.758301px;}
.h2_c00249{height:87.361816px;}
.h1_c00249{height:827.250000px;}
.h0_c00249{height:827.550000px;}
.w2_c00249{width:104.875500px;}
.w0_c00249{width:572.100000px;}
.w1_c00249{width:572.250000px;}
.x0_c00249{left:0.000000px;}
.x3_c00249{left:39.600000px;}
.x6_c00249{left:41.550000px;}
.x7_c00249{left:43.200000px;}
.xe_c00249{left:47.250000px;}
.xd_c00249{left:58.350000px;}
.x2_c00249{left:105.750000px;}
.x5_c00249{left:107.100000px;}
.xa_c00249{left:108.450000px;}
.xf_c00249{left:109.800000px;}
.x10_c00249{left:114.750000px;}
.x1_c00249{left:119.700000px;}
.x9_c00249{left:131.250000px;}
.xc_c00249{left:134.700000px;}
.x11_c00249{left:237.864258px;}
.x8_c00249{left:241.950000px;}
.xb_c00249{left:244.650000px;}
.x4_c00249{left:248.700000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls4_c00249{letter-spacing:0.000000pt;}
.ls2_c00249{letter-spacing:1.600000pt;}
.ls0_c00249{letter-spacing:2.666667pt;}
.ls1_c00249{letter-spacing:3.784000pt;}
.ls5_c00249{letter-spacing:8.000000pt;}
.ls3_c00249{letter-spacing:8.445333pt;}
.ls8_c00249{letter-spacing:13.333333pt;}
.ls6_c00249{letter-spacing:42.666667pt;}
.ls7_c00249{letter-spacing:50.666667pt;}
.ws4_c00249{word-spacing:-57.448000pt;}
.ws5_c00249{word-spacing:-52.746667pt;}
.ws7_c00249{word-spacing:-39.989333pt;}
.ws1_c00249{word-spacing:-39.130667pt;}
.ws6_c00249{word-spacing:-32.629333pt;}
.ws2_c00249{word-spacing:-22.781333pt;}
.ws0_c00249{word-spacing:-14.781333pt;}
.ws8_c00249{word-spacing:0.000000pt;}
.ws3_c00249{word-spacing:0.061333pt;}
._25_c00249{margin-left:-15.501333pt;}
._14_c00249{margin-left:-14.045333pt;}
._1f_c00249{margin-left:-12.266667pt;}
._15_c00249{margin-left:-11.285333pt;}
._1d_c00249{margin-left:-9.216000pt;}
._1c_c00249{margin-left:-8.018667pt;}
._16_c00249{margin-left:-6.685333pt;}
._9_c00249{margin-left:-4.845333pt;}
._a_c00249{margin-left:-3.373333pt;}
._2_c00249{margin-left:-2.208000pt;}
._3_c00249{margin-left:-1.104000pt;}
._0_c00249{width:1.104000pt;}
._4_c00249{width:2.453333pt;}
._5_c00249{width:3.680000pt;}
._e_c00249{width:4.600000pt;}
._6_c00249{width:6.194667pt;}
._b_c00249{width:7.368000pt;}
._13_c00249{width:8.893333pt;}
._d_c00249{width:10.549333pt;}
._8_c00249{width:11.882667pt;}
._7_c00249{width:13.152000pt;}
._1b_c00249{width:14.245333pt;}
._26_c00249{width:15.594667pt;}
._24_c00249{width:16.498667pt;}
._10_c00249{width:18.032000pt;}
._11_c00249{width:18.952000pt;}
._f_c00249{width:21.344000pt;}
._17_c00249{width:23.906667pt;}
._19_c00249{width:28.957333pt;}
._12_c00249{width:31.397333pt;}
._1a_c00249{width:32.445333pt;}
._22_c00249{width:38.824000pt;}
._27_c00249{width:45.802667pt;}
._23_c00249{width:52.466667pt;}
._20_c00249{width:83.061333pt;}
._21_c00249{width:89.424000pt;}
._18_c00249{width:110.562667pt;}
._29_c00249{width:126.792000pt;}
._1e_c00249{width:139.840000pt;}
._28_c00249{width:163.040000pt;}
._2a_c00249{width:164.037333pt;}
._c_c00249{width:196.941333pt;}
._1_c00249{width:323.426667pt;}
.fs5_c00249{font-size:42.666667pt;}
.fs4_c00249{font-size:49.066667pt;}
.fs3_c00249{font-size:50.666667pt;}
.fs2_c00249{font-size:53.333333pt;}
.fs1_c00249{font-size:58.666667pt;}
.fs0_c00249{font-size:61.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y19_c00249{bottom:2.760000pt;}
.y18_c00249{bottom:6.425212pt;}
.y17_c00249{bottom:82.266667pt;}
.y16_c00249{bottom:105.333333pt;}
.y15_c00249{bottom:127.866667pt;}
.y14_c00249{bottom:150.266667pt;}
.y13_c00249{bottom:171.600000pt;}
.y12_c00249{bottom:193.466667pt;}
.y11_c00249{bottom:238.000000pt;}
.y10_c00249{bottom:282.266667pt;}
.yf_c00249{bottom:303.600000pt;}
.ye_c00249{bottom:325.466667pt;}
.yd_c00249{bottom:347.466667pt;}
.yc_c00249{bottom:391.200000pt;}
.yb_c00249{bottom:435.600000pt;}
.ya_c00249{bottom:456.400000pt;}
.y9_c00249{bottom:479.466667pt;}
.y8_c00249{bottom:501.333333pt;}
.y7_c00249{bottom:522.933333pt;}
.y6_c00249{bottom:545.466667pt;}
.y5_c00249{bottom:590.000000pt;}
.y4_c00249{bottom:632.666667pt;}
.y3_c00249{bottom:654.933333pt;}
.y2_c00249{bottom:678.266667pt;}
.y1_c00249{bottom:700.533333pt;}
.h5_c00249{height:11.733399pt;}
.h6_c00249{height:38.937500pt;}
.h4_c00249{height:64.149740pt;}
.h3_c00249{height:71.785156pt;}
.h2_c00249{height:77.654948pt;}
.h1_c00249{height:735.333333pt;}
.h0_c00249{height:735.600000pt;}
.w2_c00249{width:93.222667pt;}
.w0_c00249{width:508.533333pt;}
.w1_c00249{width:508.666667pt;}
.x0_c00249{left:0.000000pt;}
.x3_c00249{left:35.200000pt;}
.x6_c00249{left:36.933333pt;}
.x7_c00249{left:38.400000pt;}
.xe_c00249{left:42.000000pt;}
.xd_c00249{left:51.866667pt;}
.x2_c00249{left:94.000000pt;}
.x5_c00249{left:95.200000pt;}
.xa_c00249{left:96.400000pt;}
.xf_c00249{left:97.600000pt;}
.x10_c00249{left:102.000000pt;}
.x1_c00249{left:106.400000pt;}
.x9_c00249{left:116.666667pt;}
.xc_c00249{left:119.733333pt;}
.x11_c00249{left:211.434896pt;}
.x8_c00249{left:215.066667pt;}
.xb_c00249{left:217.466667pt;}
.x4_c00249{left:221.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_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_2f61b5d770b95b545f3b78ba.woff2')format("woff");}.ff1_c00250{font-family:ff1_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:ff2_c00250;src:url('chunks/assets/font_008156fea9ebce840d7e9264.woff2')format("woff");}.ff2_c00250{font-family:ff2_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:ff3_c00250;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff3_c00250{font-family:ff3_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:ff4_c00250;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_ac7122c2bd2b30f625f5ae21.woff2')format("woff");}.ff5_c00250{font-family:ff5_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:ff6_c00250;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00250{font-family:ff6_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;}
.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;}
.ls6_c00250{letter-spacing:0.000000px;}
.ls1_c00250{letter-spacing:1.800000px;}
.ls3_c00250{letter-spacing:2.925000px;}
.ls0_c00250{letter-spacing:3.000000px;}
.ls7_c00250{letter-spacing:9.000000px;}
.ls5_c00250{letter-spacing:11.606400px;}
.ls2_c00250{letter-spacing:19.800000px;}
.ls4_c00250{letter-spacing:23.400000px;}
.ls8_c00250{letter-spacing:24.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00250{word-spacing:-40.629000px;}
.ws4_c00250{word-spacing:-34.293000px;}
.ws1_c00250{word-spacing:-33.000000px;}
.ws0_c00250{word-spacing:-25.629000px;}
.ws3_c00250{word-spacing:-19.629000px;}
.ws2_c00250{word-spacing:-16.629000px;}
.ws6_c00250{word-spacing:0.000000px;}
._17_c00250{margin-left:-38.952000px;}
._14_c00250{margin-left:-29.172000px;}
._1d_c00250{margin-left:-17.229000px;}
._1_c00250{margin-left:-14.628000px;}
._4_c00250{margin-left:-13.386000px;}
._16_c00250{margin-left:-12.144000px;}
._d_c00250{margin-left:-9.867000px;}
._1a_c00250{margin-left:-8.625000px;}
._11_c00250{margin-left:-7.314000px;}
._5_c00250{margin-left:-6.072000px;}
._6_c00250{margin-left:-4.140000px;}
._7_c00250{margin-left:-2.481000px;}
._b_c00250{margin-left:-1.380000px;}
._0_c00250{width:1.518000px;}
._a_c00250{width:2.829000px;}
._9_c00250{width:3.864000px;}
._2_c00250{width:5.796000px;}
._24_c00250{width:6.933000px;}
._3_c00250{width:7.935000px;}
._1c_c00250{width:9.177000px;}
._18_c00250{width:10.452000px;}
._c_c00250{width:11.523000px;}
._1b_c00250{width:12.780000px;}
._2d_c00250{width:13.932000px;}
._f_c00250{width:15.252000px;}
._2b_c00250{width:17.454000px;}
._1e_c00250{width:18.762000px;}
._21_c00250{width:20.355000px;}
._12_c00250{width:22.026000px;}
._23_c00250{width:23.736000px;}
._2c_c00250{width:26.808000px;}
._27_c00250{width:28.929000px;}
._25_c00250{width:30.066000px;}
._19_c00250{width:32.085000px;}
._20_c00250{width:33.540000px;}
._1f_c00250{width:35.058000px;}
._30_c00250{width:36.891000px;}
._13_c00250{width:39.999000px;}
._2a_c00250{width:46.779000px;}
._22_c00250{width:57.810000px;}
._15_c00250{width:60.444000px;}
._10_c00250{width:102.228000px;}
._26_c00250{width:108.042000px;}
._2e_c00250{width:121.512000px;}
._28_c00250{width:148.557000px;}
._e_c00250{width:182.781000px;}
._29_c00250{width:236.286000px;}
._2f_c00250{width:257.340000px;}
._8_c00250{width:512.601000px;}
._31_c00250{width:554.850000px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(128,128,128);}
.fc0_c00250{color:rgb(0,0,0);}
.fs3_c00250{font-size:48.000000px;}
.fs2_c00250{font-size:55.200000px;}
.fs1_c00250{font-size:66.000000px;}
.fs0_c00250{font-size:69.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1e_c00250{bottom:3.105000px;}
.y1d_c00250{bottom:7.228357px;}
.y1c_c00250{bottom:59.130000px;}
.y1b_c00250{bottom:83.130000px;}
.y1a_c00250{bottom:107.730000px;}
.y19_c00250{bottom:132.930000px;}
.y18_c00250{bottom:157.380000px;}
.y17_c00250{bottom:182.580000px;}
.y16_c00250{bottom:207.330000px;}
.y15_c00250{bottom:232.530000px;}
.y14_c00250{bottom:257.580000px;}
.y13_c00250{bottom:282.180000px;}
.y12_c00250{bottom:307.230000px;}
.y11_c00250{bottom:332.430000px;}
.y10_c00250{bottom:357.030000px;}
.yf_c00250{bottom:381.780000px;}
.ye_c00250{bottom:406.980000px;}
.yd_c00250{bottom:430.980000px;}
.yc_c00250{bottom:456.030000px;}
.yb_c00250{bottom:505.230000px;}
.ya_c00250{bottom:553.830000px;}
.y9_c00250{bottom:579.180000px;}
.y8_c00250{bottom:604.230000px;}
.y7_c00250{bottom:629.130000px;}
.y6_c00250{bottom:654.030000px;}
.y5_c00250{bottom:678.480000px;}
.y4_c00250{bottom:703.980000px;}
.y3_c00250{bottom:729.030000px;}
.y2_c00250{bottom:753.630000px;}
.y1_c00250{bottom:778.680000px;}
.h4_c00250{height:13.200074px;}
.h5_c00250{height:43.804688px;}
.h3_c00250{height:80.758301px;}
.h2_c00250{height:87.361816px;}
.h0_c00250{height:808.950000px;}
.h1_c00250{height:809.250000px;}
.w2_c00250{width:104.875500px;}
.w1_c00250{width:550.500000px;}
.w0_c00250{width:550.800000px;}
.x0_c00250{left:0.000000px;}
.x9_c00250{left:15.150000px;}
.xa_c00250{left:16.200000px;}
.x7_c00250{left:17.550000px;}
.x4_c00250{left:18.600000px;}
.x2_c00250{left:19.950000px;}
.x3_c00250{left:21.150000px;}
.x8_c00250{left:41.550000px;}
.x6_c00250{left:42.900000px;}
.x5_c00250{left:153.450000px;}
.x1_c00250{left:185.700000px;}
.xc_c00250{left:227.214249px;}
.xb_c00250{left:267.000000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls6_c00250{letter-spacing:0.000000pt;}
.ls1_c00250{letter-spacing:1.600000pt;}
.ls3_c00250{letter-spacing:2.600000pt;}
.ls0_c00250{letter-spacing:2.666667pt;}
.ls7_c00250{letter-spacing:8.000000pt;}
.ls5_c00250{letter-spacing:10.316800pt;}
.ls2_c00250{letter-spacing:17.600000pt;}
.ls4_c00250{letter-spacing:20.800000pt;}
.ls8_c00250{letter-spacing:21.333333pt;}
.ws5_c00250{word-spacing:-36.114667pt;}
.ws4_c00250{word-spacing:-30.482667pt;}
.ws1_c00250{word-spacing:-29.333333pt;}
.ws0_c00250{word-spacing:-22.781333pt;}
.ws3_c00250{word-spacing:-17.448000pt;}
.ws2_c00250{word-spacing:-14.781333pt;}
.ws6_c00250{word-spacing:0.000000pt;}
._17_c00250{margin-left:-34.624000pt;}
._14_c00250{margin-left:-25.930667pt;}
._1d_c00250{margin-left:-15.314667pt;}
._1_c00250{margin-left:-13.002667pt;}
._4_c00250{margin-left:-11.898667pt;}
._16_c00250{margin-left:-10.794667pt;}
._d_c00250{margin-left:-8.770667pt;}
._1a_c00250{margin-left:-7.666667pt;}
._11_c00250{margin-left:-6.501333pt;}
._5_c00250{margin-left:-5.397333pt;}
._6_c00250{margin-left:-3.680000pt;}
._7_c00250{margin-left:-2.205333pt;}
._b_c00250{margin-left:-1.226667pt;}
._0_c00250{width:1.349333pt;}
._a_c00250{width:2.514667pt;}
._9_c00250{width:3.434667pt;}
._2_c00250{width:5.152000pt;}
._24_c00250{width:6.162667pt;}
._3_c00250{width:7.053333pt;}
._1c_c00250{width:8.157333pt;}
._18_c00250{width:9.290667pt;}
._c_c00250{width:10.242667pt;}
._1b_c00250{width:11.360000pt;}
._2d_c00250{width:12.384000pt;}
._f_c00250{width:13.557333pt;}
._2b_c00250{width:15.514667pt;}
._1e_c00250{width:16.677333pt;}
._21_c00250{width:18.093333pt;}
._12_c00250{width:19.578667pt;}
._23_c00250{width:21.098667pt;}
._2c_c00250{width:23.829333pt;}
._27_c00250{width:25.714667pt;}
._25_c00250{width:26.725333pt;}
._19_c00250{width:28.520000pt;}
._20_c00250{width:29.813333pt;}
._1f_c00250{width:31.162667pt;}
._30_c00250{width:32.792000pt;}
._13_c00250{width:35.554667pt;}
._2a_c00250{width:41.581333pt;}
._22_c00250{width:51.386667pt;}
._15_c00250{width:53.728000pt;}
._10_c00250{width:90.869333pt;}
._26_c00250{width:96.037333pt;}
._2e_c00250{width:108.010667pt;}
._28_c00250{width:132.050667pt;}
._e_c00250{width:162.472000pt;}
._29_c00250{width:210.032000pt;}
._2f_c00250{width:228.746667pt;}
._8_c00250{width:455.645333pt;}
._31_c00250{width:493.200000pt;}
.fs3_c00250{font-size:42.666667pt;}
.fs2_c00250{font-size:49.066667pt;}
.fs1_c00250{font-size:58.666667pt;}
.fs0_c00250{font-size:61.333333pt;}
.y0_c00250{bottom:0.000000pt;}
.y1e_c00250{bottom:2.760000pt;}
.y1d_c00250{bottom:6.425206pt;}
.y1c_c00250{bottom:52.560000pt;}
.y1b_c00250{bottom:73.893333pt;}
.y1a_c00250{bottom:95.760000pt;}
.y19_c00250{bottom:118.160000pt;}
.y18_c00250{bottom:139.893333pt;}
.y17_c00250{bottom:162.293333pt;}
.y16_c00250{bottom:184.293333pt;}
.y15_c00250{bottom:206.693333pt;}
.y14_c00250{bottom:228.960000pt;}
.y13_c00250{bottom:250.826667pt;}
.y12_c00250{bottom:273.093333pt;}
.y11_c00250{bottom:295.493333pt;}
.y10_c00250{bottom:317.360000pt;}
.yf_c00250{bottom:339.360000pt;}
.ye_c00250{bottom:361.760000pt;}
.yd_c00250{bottom:383.093333pt;}
.yc_c00250{bottom:405.360000pt;}
.yb_c00250{bottom:449.093333pt;}
.ya_c00250{bottom:492.293333pt;}
.y9_c00250{bottom:514.826667pt;}
.y8_c00250{bottom:537.093333pt;}
.y7_c00250{bottom:559.226667pt;}
.y6_c00250{bottom:581.360000pt;}
.y5_c00250{bottom:603.093333pt;}
.y4_c00250{bottom:625.760000pt;}
.y3_c00250{bottom:648.026667pt;}
.y2_c00250{bottom:669.893333pt;}
.y1_c00250{bottom:692.160000pt;}
.h4_c00250{height:11.733399pt;}
.h5_c00250{height:38.937500pt;}
.h3_c00250{height:71.785156pt;}
.h2_c00250{height:77.654948pt;}
.h0_c00250{height:719.066667pt;}
.h1_c00250{height:719.333333pt;}
.w2_c00250{width:93.222667pt;}
.w1_c00250{width:489.333333pt;}
.w0_c00250{width:489.600000pt;}
.x0_c00250{left:0.000000pt;}
.x9_c00250{left:13.466667pt;}
.xa_c00250{left:14.400000pt;}
.x7_c00250{left:15.600000pt;}
.x4_c00250{left:16.533333pt;}
.x2_c00250{left:17.733333pt;}
.x3_c00250{left:18.800000pt;}
.x8_c00250{left:36.933333pt;}
.x6_c00250{left:38.133333pt;}
.x5_c00250{left:136.400000pt;}
.x1_c00250{left:165.066667pt;}
.xc_c00250{left:201.968221pt;}
.xb_c00250{left:237.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_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_9fbdabcc2174b7e25c67c914.woff2')format("woff");}.ff1_c00251{font-family:ff1_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:ff2_c00251;src:url('chunks/assets/font_0a038e4b7c4826f63930a312.woff2')format("woff");}.ff2_c00251{font-family:ff2_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:ff3_c00251;src:url('chunks/assets/font_5dc6cb81c6f7c08118e32481.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00251{font-family:ff4_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;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:3.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00251{word-spacing:-46.332000px;}
.ws0_c00251{word-spacing:-16.629000px;}
.ws2_c00251{word-spacing:0.000000px;}
._1a_c00251{margin-left:-17.319000px;}
._26_c00251{margin-left:-12.921000px;}
._20_c00251{margin-left:-11.055000px;}
._4_c00251{margin-left:-9.453000px;}
._1_c00251{margin-left:-7.935000px;}
._0_c00251{margin-left:-6.762000px;}
._3_c00251{margin-left:-4.968000px;}
._c_c00251{margin-left:-3.378000px;}
._6_c00251{margin-left:-1.863000px;}
._2_c00251{width:1.242000px;}
._8_c00251{width:3.036000px;}
._7_c00251{width:4.209000px;}
._11_c00251{width:5.433000px;}
._b_c00251{width:7.383000px;}
._15_c00251{width:8.469000px;}
._17_c00251{width:9.522000px;}
._a_c00251{width:10.557000px;}
._10_c00251{width:11.937000px;}
._9_c00251{width:13.179000px;}
._d_c00251{width:14.334000px;}
._14_c00251{width:16.233000px;}
._1d_c00251{width:17.496000px;}
._16_c00251{width:18.564000px;}
._23_c00251{width:20.178000px;}
._e_c00251{width:21.321000px;}
._1c_c00251{width:22.851000px;}
._12_c00251{width:24.927000px;}
._1e_c00251{width:26.550000px;}
._f_c00251{width:29.451000px;}
._18_c00251{width:36.366000px;}
._19_c00251{width:39.882000px;}
._13_c00251{width:42.435000px;}
._24_c00251{width:56.769000px;}
._21_c00251{width:67.410000px;}
._1b_c00251{width:99.153000px;}
._25_c00251{width:146.517000px;}
._22_c00251{width:156.525000px;}
._1f_c00251{width:178.572000px;}
._5_c00251{width:377.100000px;}
.fc2_c00251{color:transparent;}
.fc1_c00251{color:rgb(128,128,128);}
.fc0_c00251{color:rgb(0,0,0);}
.fs3_c00251{font-size:48.000000px;}
.fs0_c00251{font-size:69.000000px;}
.fs1_c00251{font-size:75.000000px;}
.fs2_c00251{font-size:81.000000px;}
.y0_c00251{bottom:0.000000px;}
.y19_c00251{bottom:3.105000px;}
.y18_c00251{bottom:7.228357px;}
.y17_c00251{bottom:77.580000px;}
.y16_c00251{bottom:102.330000px;}
.y15_c00251{bottom:154.230000px;}
.y14_c00251{bottom:204.480000px;}
.y13_c00251{bottom:255.480000px;}
.y12_c00251{bottom:280.830000px;}
.y11_c00251{bottom:305.430000px;}
.y10_c00251{bottom:329.730000px;}
.yf_c00251{bottom:354.780000px;}
.ye_c00251{bottom:379.380000px;}
.yd_c00251{bottom:404.430000px;}
.yc_c00251{bottom:429.330000px;}
.yb_c00251{bottom:454.680000px;}
.ya_c00251{bottom:479.880000px;}
.y9_c00251{bottom:504.630000px;}
.y8_c00251{bottom:529.230000px;}
.y7_c00251{bottom:554.130000px;}
.y6_c00251{bottom:604.230000px;}
.y5_c00251{bottom:654.480000px;}
.y4_c00251{bottom:704.130000px;}
.y3_c00251{bottom:730.080000px;}
.y2_c00251{bottom:754.980000px;}
.y1_c00251{bottom:779.730000px;}
.h5_c00251{height:13.200074px;}
.h6_c00251{height:43.804688px;}
.h2_c00251{height:80.758301px;}
.h1_c00251{height:87.361816px;}
.h3_c00251{height:94.958496px;}
.h4_c00251{height:102.555176px;}
.h0_c00251{height:819.750000px;}
.w2_c00251{width:104.875500px;}
.w1_c00251{width:566.250000px;}
.w0_c00251{width:566.475000px;}
.x0_c00251{left:0.000000px;}
.xa_c00251{left:30.750000px;}
.x9_c00251{left:49.950000px;}
.xe_c00251{left:65.400000px;}
.x8_c00251{left:67.050000px;}
.x3_c00251{left:96.900000px;}
.xb_c00251{left:97.950000px;}
.x7_c00251{left:99.150000px;}
.x2_c00251{left:101.250000px;}
.x1_c00251{left:115.200000px;}
.xd_c00251{left:121.800000px;}
.x6_c00251{left:137.100000px;}
.xc_c00251{left:139.350000px;}
.x5_c00251{left:141.450000px;}
.x4_c00251{left:151.200000px;}
.x10_c00251{left:235.051758px;}
.xf_c00251{left:519.450000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:2.666667pt;}
.ws1_c00251{word-spacing:-41.184000pt;}
.ws0_c00251{word-spacing:-14.781333pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._1a_c00251{margin-left:-15.394667pt;}
._26_c00251{margin-left:-11.485333pt;}
._20_c00251{margin-left:-9.826667pt;}
._4_c00251{margin-left:-8.402667pt;}
._1_c00251{margin-left:-7.053333pt;}
._0_c00251{margin-left:-6.010667pt;}
._3_c00251{margin-left:-4.416000pt;}
._c_c00251{margin-left:-3.002667pt;}
._6_c00251{margin-left:-1.656000pt;}
._2_c00251{width:1.104000pt;}
._8_c00251{width:2.698667pt;}
._7_c00251{width:3.741333pt;}
._11_c00251{width:4.829333pt;}
._b_c00251{width:6.562667pt;}
._15_c00251{width:7.528000pt;}
._17_c00251{width:8.464000pt;}
._a_c00251{width:9.384000pt;}
._10_c00251{width:10.610667pt;}
._9_c00251{width:11.714667pt;}
._d_c00251{width:12.741333pt;}
._14_c00251{width:14.429333pt;}
._1d_c00251{width:15.552000pt;}
._16_c00251{width:16.501333pt;}
._23_c00251{width:17.936000pt;}
._e_c00251{width:18.952000pt;}
._1c_c00251{width:20.312000pt;}
._12_c00251{width:22.157333pt;}
._1e_c00251{width:23.600000pt;}
._f_c00251{width:26.178667pt;}
._18_c00251{width:32.325333pt;}
._19_c00251{width:35.450667pt;}
._13_c00251{width:37.720000pt;}
._24_c00251{width:50.461333pt;}
._21_c00251{width:59.920000pt;}
._1b_c00251{width:88.136000pt;}
._25_c00251{width:130.237333pt;}
._22_c00251{width:139.133333pt;}
._1f_c00251{width:158.730667pt;}
._5_c00251{width:335.200000pt;}
.fs3_c00251{font-size:42.666667pt;}
.fs0_c00251{font-size:61.333333pt;}
.fs1_c00251{font-size:66.666667pt;}
.fs2_c00251{font-size:72.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y19_c00251{bottom:2.760000pt;}
.y18_c00251{bottom:6.425206pt;}
.y17_c00251{bottom:68.960000pt;}
.y16_c00251{bottom:90.960000pt;}
.y15_c00251{bottom:137.093333pt;}
.y14_c00251{bottom:181.760000pt;}
.y13_c00251{bottom:227.093333pt;}
.y12_c00251{bottom:249.626667pt;}
.y11_c00251{bottom:271.493333pt;}
.y10_c00251{bottom:293.093333pt;}
.yf_c00251{bottom:315.360000pt;}
.ye_c00251{bottom:337.226667pt;}
.yd_c00251{bottom:359.493333pt;}
.yc_c00251{bottom:381.626667pt;}
.yb_c00251{bottom:404.160000pt;}
.ya_c00251{bottom:426.560000pt;}
.y9_c00251{bottom:448.560000pt;}
.y8_c00251{bottom:470.426667pt;}
.y7_c00251{bottom:492.560000pt;}
.y6_c00251{bottom:537.093333pt;}
.y5_c00251{bottom:581.760000pt;}
.y4_c00251{bottom:625.893333pt;}
.y3_c00251{bottom:648.960000pt;}
.y2_c00251{bottom:671.093333pt;}
.y1_c00251{bottom:693.093333pt;}
.h5_c00251{height:11.733399pt;}
.h6_c00251{height:38.937500pt;}
.h2_c00251{height:71.785156pt;}
.h1_c00251{height:77.654948pt;}
.h3_c00251{height:84.407552pt;}
.h4_c00251{height:91.160156pt;}
.h0_c00251{height:728.666667pt;}
.w2_c00251{width:93.222667pt;}
.w1_c00251{width:503.333333pt;}
.w0_c00251{width:503.533333pt;}
.x0_c00251{left:0.000000pt;}
.xa_c00251{left:27.333333pt;}
.x9_c00251{left:44.400000pt;}
.xe_c00251{left:58.133333pt;}
.x8_c00251{left:59.600000pt;}
.x3_c00251{left:86.133333pt;}
.xb_c00251{left:87.066667pt;}
.x7_c00251{left:88.133333pt;}
.x2_c00251{left:90.000000pt;}
.x1_c00251{left:102.400000pt;}
.xd_c00251{left:108.266667pt;}
.x6_c00251{left:121.866667pt;}
.xc_c00251{left:123.866667pt;}
.x5_c00251{left:125.733333pt;}
.x4_c00251{left:134.400000pt;}
.x10_c00251{left:208.934896pt;}
.xf_c00251{left:461.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_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_6e10d3cb14a45eba29535d0d.woff2')format("woff");}.ff1_c00252{font-family:ff1_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:ff2_c00252;src:url('chunks/assets/font_789d28bda584bdd3a82d2645.woff2')format("woff");}.ff2_c00252{font-family:ff2_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:ff3_c00252;src:url('chunks/assets/font_d202f073fcc55cb4c60048db.woff2')format("woff");}.ff3_c00252{font-family:ff3_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:ff4_c00252;src:url('chunks/assets/font_07806d1d70802cec7f810fe7.woff2')format("woff");}.ff4_c00252{font-family:ff4_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:ff5_c00252;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00252{font-family:ff5_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;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls2_c00252{letter-spacing:3.000000px;}
.ls0_c00252{letter-spacing:13.125000px;}
.ls3_c00252{letter-spacing:27.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00252{word-spacing:-40.014000px;}
.ws2_c00252{word-spacing:-35.316000px;}
.ws1_c00252{word-spacing:-33.000000px;}
.ws3_c00252{word-spacing:-28.252800px;}
.ws0_c00252{word-spacing:-19.629000px;}
.ws5_c00252{word-spacing:-16.629000px;}
.ws6_c00252{word-spacing:0.000000px;}
._1f_c00252{margin-left:-40.149000px;}
._24_c00252{margin-left:-35.922000px;}
._1_c00252{margin-left:-10.281000px;}
._1a_c00252{margin-left:-8.178000px;}
._a_c00252{margin-left:-7.107000px;}
._17_c00252{margin-left:-6.003000px;}
._16_c00252{margin-left:-3.690000px;}
._5_c00252{margin-left:-2.553000px;}
._6_c00252{margin-left:-1.104000px;}
._3_c00252{width:1.104000px;}
._0_c00252{width:2.139000px;}
._2_c00252{width:3.726000px;}
._19_c00252{width:4.761000px;}
._8_c00252{width:5.796000px;}
._7_c00252{width:7.314000px;}
._18_c00252{width:8.349000px;}
._9_c00252{width:10.074000px;}
._b_c00252{width:11.178000px;}
._f_c00252{width:12.972000px;}
._23_c00252{width:15.342000px;}
._d_c00252{width:16.353000px;}
._10_c00252{width:17.595000px;}
._13_c00252{width:21.219000px;}
._15_c00252{width:22.287000px;}
._e_c00252{width:23.322000px;}
._11_c00252{width:24.840000px;}
._25_c00252{width:26.859000px;}
._1c_c00252{width:29.919000px;}
._12_c00252{width:31.431000px;}
._1e_c00252{width:33.606000px;}
._1b_c00252{width:34.911000px;}
._14_c00252{width:37.017000px;}
._21_c00252{width:39.123000px;}
._c_c00252{width:40.641000px;}
._20_c00252{width:41.916000px;}
._1d_c00252{width:54.273000px;}
._22_c00252{width:61.776000px;}
._26_c00252{width:261.345000px;}
._4_c00252{width:518.529000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(128,128,128);}
.fc0_c00252{color:rgb(0,0,0);}
.fs3_c00252{font-size:43.200000px;}
.fs5_c00252{font-size:48.000000px;}
.fs2_c00252{font-size:54.000000px;}
.fs4_c00252{font-size:57.000000px;}
.fs1_c00252{font-size:66.000000px;}
.fs0_c00252{font-size:69.000000px;}
.y0_c00252{bottom:0.000000px;}
.y1a_c00252{bottom:3.105000px;}
.y19_c00252{bottom:7.228355px;}
.y18_c00252{bottom:91.485000px;}
.y17_c00252{bottom:239.985000px;}
.y16_c00252{bottom:256.185000px;}
.y15_c00252{bottom:275.385000px;}
.y14_c00252{bottom:292.635000px;}
.y13_c00252{bottom:317.835000px;}
.y12_c00252{bottom:334.035000px;}
.y11_c00252{bottom:351.885000px;}
.y10_c00252{bottom:369.135000px;}
.yf_c00252{bottom:412.635000px;}
.ye_c00252{bottom:464.085000px;}
.yd_c00252{bottom:487.935000px;}
.yc_c00252{bottom:512.685000px;}
.yb_c00252{bottom:537.285000px;}
.ya_c00252{bottom:561.135000px;}
.y9_c00252{bottom:586.785000px;}
.y8_c00252{bottom:612.135000px;}
.y7_c00252{bottom:636.735000px;}
.y6_c00252{bottom:661.785000px;}
.y5_c00252{bottom:686.835000px;}
.y4_c00252{bottom:711.435000px;}
.y3_c00252{bottom:736.335000px;}
.y2_c00252{bottom:761.085000px;}
.y1_c00252{bottom:786.285000px;}
.h6_c00252{height:13.200074px;}
.h7_c00252{height:43.804688px;}
.h4_c00252{height:68.370117px;}
.h5_c00252{height:72.168457px;}
.h3_c00252{height:80.758301px;}
.h2_c00252{height:87.361816px;}
.h0_c00252{height:815.925000px;}
.h1_c00252{height:816.000000px;}
.w2_c00252{width:104.875500px;}
.w1_c00252{width:555.000000px;}
.w0_c00252{width:555.150000px;}
.x0_c00252{left:0.000000px;}
.x5_c00252{left:21.600000px;}
.x2_c00252{left:22.650000px;}
.x3_c00252{left:23.700000px;}
.x4_c00252{left:24.750000px;}
.x8_c00252{left:39.150000px;}
.x7_c00252{left:40.200000px;}
.x6_c00252{left:118.800000px;}
.x1_c00252{left:190.050000px;}
.xa_c00252{left:229.389267px;}
.x9_c00252{left:282.150000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls2_c00252{letter-spacing:2.666667pt;}
.ls0_c00252{letter-spacing:11.666667pt;}
.ls3_c00252{letter-spacing:24.000000pt;}
.ws4_c00252{word-spacing:-35.568000pt;}
.ws2_c00252{word-spacing:-31.392000pt;}
.ws1_c00252{word-spacing:-29.333333pt;}
.ws3_c00252{word-spacing:-25.113600pt;}
.ws0_c00252{word-spacing:-17.448000pt;}
.ws5_c00252{word-spacing:-14.781333pt;}
.ws6_c00252{word-spacing:0.000000pt;}
._1f_c00252{margin-left:-35.688000pt;}
._24_c00252{margin-left:-31.930667pt;}
._1_c00252{margin-left:-9.138667pt;}
._1a_c00252{margin-left:-7.269333pt;}
._a_c00252{margin-left:-6.317333pt;}
._17_c00252{margin-left:-5.336000pt;}
._16_c00252{margin-left:-3.280000pt;}
._5_c00252{margin-left:-2.269333pt;}
._6_c00252{margin-left:-0.981333pt;}
._3_c00252{width:0.981333pt;}
._0_c00252{width:1.901333pt;}
._2_c00252{width:3.312000pt;}
._19_c00252{width:4.232000pt;}
._8_c00252{width:5.152000pt;}
._7_c00252{width:6.501333pt;}
._18_c00252{width:7.421333pt;}
._9_c00252{width:8.954667pt;}
._b_c00252{width:9.936000pt;}
._f_c00252{width:11.530667pt;}
._23_c00252{width:13.637333pt;}
._d_c00252{width:14.536000pt;}
._10_c00252{width:15.640000pt;}
._13_c00252{width:18.861333pt;}
._15_c00252{width:19.810667pt;}
._e_c00252{width:20.730667pt;}
._11_c00252{width:22.080000pt;}
._25_c00252{width:23.874667pt;}
._1c_c00252{width:26.594667pt;}
._12_c00252{width:27.938667pt;}
._1e_c00252{width:29.872000pt;}
._1b_c00252{width:31.032000pt;}
._14_c00252{width:32.904000pt;}
._21_c00252{width:34.776000pt;}
._c_c00252{width:36.125333pt;}
._20_c00252{width:37.258667pt;}
._1d_c00252{width:48.242667pt;}
._22_c00252{width:54.912000pt;}
._26_c00252{width:232.306667pt;}
._4_c00252{width:460.914667pt;}
.fs3_c00252{font-size:38.400000pt;}
.fs5_c00252{font-size:42.666667pt;}
.fs2_c00252{font-size:48.000000pt;}
.fs4_c00252{font-size:50.666667pt;}
.fs1_c00252{font-size:58.666667pt;}
.fs0_c00252{font-size:61.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y1a_c00252{bottom:2.760000pt;}
.y19_c00252{bottom:6.425204pt;}
.y18_c00252{bottom:81.320000pt;}
.y17_c00252{bottom:213.320000pt;}
.y16_c00252{bottom:227.720000pt;}
.y15_c00252{bottom:244.786667pt;}
.y14_c00252{bottom:260.120000pt;}
.y13_c00252{bottom:282.520000pt;}
.y12_c00252{bottom:296.920000pt;}
.y11_c00252{bottom:312.786667pt;}
.y10_c00252{bottom:328.120000pt;}
.yf_c00252{bottom:366.786667pt;}
.ye_c00252{bottom:412.520000pt;}
.yd_c00252{bottom:433.720000pt;}
.yc_c00252{bottom:455.720000pt;}
.yb_c00252{bottom:477.586667pt;}
.ya_c00252{bottom:498.786667pt;}
.y9_c00252{bottom:521.586667pt;}
.y8_c00252{bottom:544.120000pt;}
.y7_c00252{bottom:565.986667pt;}
.y6_c00252{bottom:588.253333pt;}
.y5_c00252{bottom:610.520000pt;}
.y4_c00252{bottom:632.386667pt;}
.y3_c00252{bottom:654.520000pt;}
.y2_c00252{bottom:676.520000pt;}
.y1_c00252{bottom:698.920000pt;}
.h6_c00252{height:11.733399pt;}
.h7_c00252{height:38.937500pt;}
.h4_c00252{height:60.773438pt;}
.h5_c00252{height:64.149740pt;}
.h3_c00252{height:71.785156pt;}
.h2_c00252{height:77.654948pt;}
.h0_c00252{height:725.266667pt;}
.h1_c00252{height:725.333333pt;}
.w2_c00252{width:93.222667pt;}
.w1_c00252{width:493.333333pt;}
.w0_c00252{width:493.466667pt;}
.x0_c00252{left:0.000000pt;}
.x5_c00252{left:19.200000pt;}
.x2_c00252{left:20.133333pt;}
.x3_c00252{left:21.066667pt;}
.x4_c00252{left:22.000000pt;}
.x8_c00252{left:34.800000pt;}
.x7_c00252{left:35.733333pt;}
.x6_c00252{left:105.600000pt;}
.x1_c00252{left:168.933333pt;}
.xa_c00252{left:203.901571pt;}
.x9_c00252{left:250.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_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_3a64e4a165bf41065fd7ffc1.woff2')format("woff");}.ff1_c00253{font-family:ff1_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:ff2_c00253;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_f255c5c7590fd95f48fe164e.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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff4_c00253{font-family:ff4_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:ff5_c00253;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00253{font-family:ff5_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;}
.ls8_c00253{letter-spacing:0.000000px;}
.ls4_c00253{letter-spacing:0.102000px;}
.ls9_c00253{letter-spacing:3.000000px;}
.ls7_c00253{letter-spacing:8.400000px;}
.ls3_c00253{letter-spacing:9.000000px;}
.ls2_c00253{letter-spacing:9.891000px;}
.ls0_c00253{letter-spacing:17.400000px;}
.ls6_c00253{letter-spacing:19.125000px;}
.ls1_c00253{letter-spacing:19.800000px;}
.ls5_c00253{letter-spacing:30.714000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00253{word-spacing:-17.688000px;}
.ws1_c00253{word-spacing:-16.629000px;}
.ws2_c00253{word-spacing:-1.173000px;}
.ws4_c00253{word-spacing:0.000000px;}
.ws0_c00253{word-spacing:3.933000px;}
._19_c00253{margin-left:-14.352000px;}
._22_c00253{margin-left:-11.133000px;}
._c_c00253{margin-left:-9.660000px;}
._11_c00253{margin-left:-8.118000px;}
._13_c00253{margin-left:-6.741000px;}
._17_c00253{margin-left:-5.727000px;}
._e_c00253{margin-left:-4.692000px;}
._10_c00253{margin-left:-3.243000px;}
._f_c00253{margin-left:-2.070000px;}
._16_c00253{margin-left:-1.056000px;}
._2_c00253{width:1.932000px;}
._4_c00253{width:3.588000px;}
._3_c00253{width:5.037000px;}
._18_c00253{width:6.438000px;}
._5_c00253{width:7.797000px;}
._9_c00253{width:9.522000px;}
._12_c00253{width:11.178000px;}
._8_c00253{width:12.351000px;}
._1b_c00253{width:14.241000px;}
._1c_c00253{width:15.276000px;}
._a_c00253{width:17.016000px;}
._6_c00253{width:18.384000px;}
._14_c00253{width:20.796000px;}
._1_c00253{width:22.152000px;}
._1d_c00253{width:24.183000px;}
._1e_c00253{width:26.151000px;}
._0_c00253{width:28.083000px;}
._25_c00253{width:29.589000px;}
._1f_c00253{width:34.377000px;}
._7_c00253{width:37.179000px;}
._21_c00253{width:39.798000px;}
._b_c00253{width:45.771000px;}
._d_c00253{width:75.201000px;}
._15_c00253{width:77.901000px;}
._27_c00253{width:90.435000px;}
._23_c00253{width:100.026000px;}
._20_c00253{width:102.189000px;}
._24_c00253{width:105.408000px;}
._26_c00253{width:115.035000px;}
._1a_c00253{width:152.283000px;}
.fc2_c00253{color:transparent;}
.fc1_c00253{color:rgb(128,128,128);}
.fc0_c00253{color:rgb(0,0,0);}
.fs4_c00253{font-size:48.000000px;}
.fs1_c00253{font-size:66.000000px;}
.fs0_c00253{font-size:69.000000px;}
.fs3_c00253{font-size:72.000000px;}
.fs2_c00253{font-size:81.000000px;}
.y0_c00253{bottom:0.000000px;}
.y1d_c00253{bottom:3.105000px;}
.y1c_c00253{bottom:7.228357px;}
.y1b_c00253{bottom:57.330000px;}
.y1a_c00253{bottom:84.030000px;}
.y19_c00253{bottom:110.130000px;}
.y18_c00253{bottom:135.030000px;}
.y17_c00253{bottom:159.930000px;}
.y16_c00253{bottom:184.980000px;}
.y15_c00253{bottom:210.030000px;}
.y14_c00253{bottom:234.930000px;}
.y13_c00253{bottom:260.280000px;}
.y12_c00253{bottom:285.630000px;}
.y11_c00253{bottom:309.930000px;}
.y10_c00253{bottom:334.230000px;}
.yf_c00253{bottom:358.530000px;}
.ye_c00253{bottom:383.730000px;}
.yd_c00253{bottom:408.480000px;}
.yc_c00253{bottom:433.980000px;}
.yb_c00253{bottom:459.030000px;}
.ya_c00253{bottom:484.080000px;}
.y9_c00253{bottom:508.980000px;}
.y8_c00253{bottom:533.880000px;}
.y7_c00253{bottom:558.630000px;}
.y6_c00253{bottom:582.930000px;}
.y5_c00253{bottom:609.180000px;}
.y4_c00253{bottom:634.230000px;}
.y3_c00253{bottom:659.130000px;}
.y2_c00253{bottom:684.480000px;}
.y1_c00253{bottom:733.830000px;}
.h5_c00253{height:13.200074px;}
.h6_c00253{height:43.804688px;}
.h2_c00253{height:80.758301px;}
.h1_c00253{height:87.361816px;}
.h4_c00253{height:91.160156px;}
.h3_c00253{height:102.555176px;}
.h0_c00253{height:819.750000px;}
.w2_c00253{width:104.875500px;}
.w1_c00253{width:566.250000px;}
.w0_c00253{width:566.475000px;}
.x0_c00253{left:0.000000px;}
.x7_c00253{left:27.600000px;}
.xb_c00253{left:40.800000px;}
.x6_c00253{left:44.850000px;}
.x8_c00253{left:60.300000px;}
.x5_c00253{left:63.450000px;}
.xc_c00253{left:89.100000px;}
.xa_c00253{left:92.100000px;}
.x9_c00253{left:93.150000px;}
.x2_c00253{left:94.500000px;}
.x4_c00253{left:96.600000px;}
.x3_c00253{left:97.800000px;}
.x1_c00253{left:131.550000px;}
.xe_c00253{left:235.051758px;}
.xd_c00253{left:516.600000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls8_c00253{letter-spacing:0.000000pt;}
.ls4_c00253{letter-spacing:0.090667pt;}
.ls9_c00253{letter-spacing:2.666667pt;}
.ls7_c00253{letter-spacing:7.466667pt;}
.ls3_c00253{letter-spacing:8.000000pt;}
.ls2_c00253{letter-spacing:8.792000pt;}
.ls0_c00253{letter-spacing:15.466667pt;}
.ls6_c00253{letter-spacing:17.000000pt;}
.ls1_c00253{letter-spacing:17.600000pt;}
.ls5_c00253{letter-spacing:27.301333pt;}
.ws3_c00253{word-spacing:-15.722667pt;}
.ws1_c00253{word-spacing:-14.781333pt;}
.ws2_c00253{word-spacing:-1.042667pt;}
.ws4_c00253{word-spacing:0.000000pt;}
.ws0_c00253{word-spacing:3.496000pt;}
._19_c00253{margin-left:-12.757333pt;}
._22_c00253{margin-left:-9.896000pt;}
._c_c00253{margin-left:-8.586667pt;}
._11_c00253{margin-left:-7.216000pt;}
._13_c00253{margin-left:-5.992000pt;}
._17_c00253{margin-left:-5.090667pt;}
._e_c00253{margin-left:-4.170667pt;}
._10_c00253{margin-left:-2.882667pt;}
._f_c00253{margin-left:-1.840000pt;}
._16_c00253{margin-left:-0.938667pt;}
._2_c00253{width:1.717333pt;}
._4_c00253{width:3.189333pt;}
._3_c00253{width:4.477333pt;}
._18_c00253{width:5.722667pt;}
._5_c00253{width:6.930667pt;}
._9_c00253{width:8.464000pt;}
._12_c00253{width:9.936000pt;}
._8_c00253{width:10.978667pt;}
._1b_c00253{width:12.658667pt;}
._1c_c00253{width:13.578667pt;}
._a_c00253{width:15.125333pt;}
._6_c00253{width:16.341333pt;}
._14_c00253{width:18.485333pt;}
._1_c00253{width:19.690667pt;}
._1d_c00253{width:21.496000pt;}
._1e_c00253{width:23.245333pt;}
._0_c00253{width:24.962667pt;}
._25_c00253{width:26.301333pt;}
._1f_c00253{width:30.557333pt;}
._7_c00253{width:33.048000pt;}
._21_c00253{width:35.376000pt;}
._b_c00253{width:40.685333pt;}
._d_c00253{width:66.845333pt;}
._15_c00253{width:69.245333pt;}
._27_c00253{width:80.386667pt;}
._23_c00253{width:88.912000pt;}
._20_c00253{width:90.834667pt;}
._24_c00253{width:93.696000pt;}
._26_c00253{width:102.253333pt;}
._1a_c00253{width:135.362667pt;}
.fs4_c00253{font-size:42.666667pt;}
.fs1_c00253{font-size:58.666667pt;}
.fs0_c00253{font-size:61.333333pt;}
.fs3_c00253{font-size:64.000000pt;}
.fs2_c00253{font-size:72.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y1d_c00253{bottom:2.760000pt;}
.y1c_c00253{bottom:6.425206pt;}
.y1b_c00253{bottom:50.960000pt;}
.y1a_c00253{bottom:74.693333pt;}
.y19_c00253{bottom:97.893333pt;}
.y18_c00253{bottom:120.026667pt;}
.y17_c00253{bottom:142.160000pt;}
.y16_c00253{bottom:164.426667pt;}
.y15_c00253{bottom:186.693333pt;}
.y14_c00253{bottom:208.826667pt;}
.y13_c00253{bottom:231.360000pt;}
.y12_c00253{bottom:253.893333pt;}
.y11_c00253{bottom:275.493333pt;}
.y10_c00253{bottom:297.093333pt;}
.yf_c00253{bottom:318.693333pt;}
.ye_c00253{bottom:341.093333pt;}
.yd_c00253{bottom:363.093333pt;}
.yc_c00253{bottom:385.760000pt;}
.yb_c00253{bottom:408.026667pt;}
.ya_c00253{bottom:430.293333pt;}
.y9_c00253{bottom:452.426667pt;}
.y8_c00253{bottom:474.560000pt;}
.y7_c00253{bottom:496.560000pt;}
.y6_c00253{bottom:518.160000pt;}
.y5_c00253{bottom:541.493333pt;}
.y4_c00253{bottom:563.760000pt;}
.y3_c00253{bottom:585.893333pt;}
.y2_c00253{bottom:608.426667pt;}
.y1_c00253{bottom:652.293333pt;}
.h5_c00253{height:11.733399pt;}
.h6_c00253{height:38.937500pt;}
.h2_c00253{height:71.785156pt;}
.h1_c00253{height:77.654948pt;}
.h4_c00253{height:81.031250pt;}
.h3_c00253{height:91.160156pt;}
.h0_c00253{height:728.666667pt;}
.w2_c00253{width:93.222667pt;}
.w1_c00253{width:503.333333pt;}
.w0_c00253{width:503.533333pt;}
.x0_c00253{left:0.000000pt;}
.x7_c00253{left:24.533333pt;}
.xb_c00253{left:36.266667pt;}
.x6_c00253{left:39.866667pt;}
.x8_c00253{left:53.600000pt;}
.x5_c00253{left:56.400000pt;}
.xc_c00253{left:79.200000pt;}
.xa_c00253{left:81.866667pt;}
.x9_c00253{left:82.800000pt;}
.x2_c00253{left:84.000000pt;}
.x4_c00253{left:85.866667pt;}
.x3_c00253{left:86.933333pt;}
.x1_c00253{left:116.933333pt;}
.xe_c00253{left:208.934896pt;}
.xd_c00253{left:459.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_626485b0501cbac27ca7b176.woff2')format("woff");}.ff1_c00254{font-family:ff1_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:ff2_c00254;src:url('chunks/assets/font_68d424c77a48cd4e899864e1.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.568848;font-style:normal;font-weight:normal;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_7dc87656746fc53e5c619c1a.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_65125775fd9f1387dbf6ea3e.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.568848;font-style:normal;font-weight:normal;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_971befecb98d1d9d979b5502.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.568848;font-style:normal;font-weight:normal;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_9632469fae45d0c43c373a92.woff2')format("woff");}.ff6_c00254{font-family:ff6_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:ff7_c00254;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00254{font-family:ff7_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:ff8_c00254;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00254{font-family:ff8_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;}
.ls3_c00254{letter-spacing:0.000000px;}
.ls4_c00254{letter-spacing:3.000000px;}
.ls1_c00254{letter-spacing:6.000000px;}
.ls2_c00254{letter-spacing:29.616000px;}
.ls0_c00254{letter-spacing:484.371000px;}
.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;}
}
.ws7_c00254{word-spacing:-30.000000px;}
.ws0_c00254{word-spacing:-28.446000px;}
.ws4_c00254{word-spacing:-20.496000px;}
.ws1_c00254{word-spacing:-19.629000px;}
.ws3_c00254{word-spacing:-19.521000px;}
.wsa_c00254{word-spacing:-18.075000px;}
.ws8_c00254{word-spacing:-0.831000px;}
.wsb_c00254{word-spacing:0.000000px;}
.ws6_c00254{word-spacing:0.207000px;}
.ws9_c00254{word-spacing:0.897000px;}
.ws5_c00254{word-spacing:1.656000px;}
.ws2_c00254{word-spacing:6.324000px;}
._28_c00254{margin-left:-31.557600px;}
._22_c00254{margin-left:-16.413000px;}
._3_c00254{margin-left:-14.742000px;}
._11_c00254{margin-left:-13.041000px;}
._1a_c00254{margin-left:-11.694000px;}
._f_c00254{margin-left:-10.287000px;}
._5_c00254{margin-left:-8.268000px;}
._10_c00254{margin-left:-5.994000px;}
._15_c00254{margin-left:-4.755000px;}
._b_c00254{margin-left:-3.399000px;}
._6_c00254{margin-left:-1.416000px;}
._0_c00254{width:1.518000px;}
._1_c00254{width:2.553000px;}
._24_c00254{width:3.585000px;}
._2_c00254{width:4.623000px;}
._8_c00254{width:5.715600px;}
._c_c00254{width:7.055400px;}
._a_c00254{width:8.580000px;}
._4_c00254{width:9.789000px;}
._26_c00254{width:10.794000px;}
._9_c00254{width:11.820000px;}
._19_c00254{width:13.206000px;}
._d_c00254{width:14.346000px;}
._7_c00254{width:15.348000px;}
._16_c00254{width:16.389000px;}
._14_c00254{width:17.811000px;}
._1c_c00254{width:19.521000px;}
._12_c00254{width:21.306000px;}
._21_c00254{width:22.452000px;}
._13_c00254{width:23.598000px;}
._1d_c00254{width:26.028000px;}
._25_c00254{width:28.293000px;}
._20_c00254{width:32.934600px;}
._1f_c00254{width:36.825000px;}
._1e_c00254{width:41.448000px;}
._17_c00254{width:54.570000px;}
._18_c00254{width:96.606000px;}
._1b_c00254{width:123.423600px;}
._27_c00254{width:191.307000px;}
._23_c00254{width:231.492000px;}
._e_c00254{width:369.628800px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(128,128,128);}
.fc0_c00254{color:rgb(0,0,0);}
.fs4_c00254{font-size:31.200000px;}
.fs2_c00254{font-size:39.000000px;}
.fs5_c00254{font-size:48.000000px;}
.fs1_c00254{font-size:66.000000px;}
.fs0_c00254{font-size:69.000000px;}
.fs6_c00254{font-size:75.000000px;}
.fs3_c00254{font-size:81.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1d_c00254{bottom:3.105000px;}
.y1c_c00254{bottom:7.228371px;}
.y1b_c00254{bottom:68.865000px;}
.y1a_c00254{bottom:93.615000px;}
.y19_c00254{bottom:118.815000px;}
.y18_c00254{bottom:144.465000px;}
.y17_c00254{bottom:169.815000px;}
.y16_c00254{bottom:191.715000px;}
.y15_c00254{bottom:219.765000px;}
.y14_c00254{bottom:243.465000px;}
.y13_c00254{bottom:294.615000px;}
.y12_c00254{bottom:319.965000px;}
.y11_c00254{bottom:345.315000px;}
.y10_c00254{bottom:370.215000px;}
.yf_c00254{bottom:419.565000px;}
.ye_c00254{bottom:470.265000px;}
.yd_c00254{bottom:494.415000px;}
.yc_c00254{bottom:519.165000px;}
.yb_c00254{bottom:544.065000px;}
.ya_c00254{bottom:569.115000px;}
.y9_c00254{bottom:594.465000px;}
.y8_c00254{bottom:619.365000px;}
.y7_c00254{bottom:644.415000px;}
.y6_c00254{bottom:669.015000px;}
.y5_c00254{bottom:694.215000px;}
.y4_c00254{bottom:719.565000px;}
.y3_c00254{bottom:744.315000px;}
.y2_c00254{bottom:769.965000px;}
.y1_c00254{bottom:793.515000px;}
.h5_c00254{height:13.200074px;}
.h6_c00254{height:43.804688px;}
.h2_c00254{height:87.361816px;}
.h4_c00254{height:94.958496px;}
.h3_c00254{height:102.555176px;}
.h1_c00254{height:831.000000px;}
.h0_c00254{height:831.075000px;}
.w2_c00254{width:104.875500px;}
.w0_c00254{width:566.175000px;}
.w1_c00254{width:566.250000px;}
.x0_c00254{left:0.000000px;}
.x7_c00254{left:28.350000px;}
.x8_c00254{left:30.750000px;}
.x2_c00254{left:32.100000px;}
.x4_c00254{left:33.750000px;}
.x9_c00254{left:54.600000px;}
.x6_c00254{left:56.700000px;}
.x3_c00254{left:58.650000px;}
.x5_c00254{left:64.350000px;}
.x1_c00254{left:202.500000px;}
.xb_c00254{left:234.901749px;}
.xa_c00254{left:460.350000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls3_c00254{letter-spacing:0.000000pt;}
.ls4_c00254{letter-spacing:2.666667pt;}
.ls1_c00254{letter-spacing:5.333333pt;}
.ls2_c00254{letter-spacing:26.325333pt;}
.ls0_c00254{letter-spacing:430.552000pt;}
.ws7_c00254{word-spacing:-26.666667pt;}
.ws0_c00254{word-spacing:-25.285333pt;}
.ws4_c00254{word-spacing:-18.218667pt;}
.ws1_c00254{word-spacing:-17.448000pt;}
.ws3_c00254{word-spacing:-17.352000pt;}
.wsa_c00254{word-spacing:-16.066667pt;}
.ws8_c00254{word-spacing:-0.738667pt;}
.wsb_c00254{word-spacing:0.000000pt;}
.ws6_c00254{word-spacing:0.184000pt;}
.ws9_c00254{word-spacing:0.797333pt;}
.ws5_c00254{word-spacing:1.472000pt;}
.ws2_c00254{word-spacing:5.621333pt;}
._28_c00254{margin-left:-28.051200pt;}
._22_c00254{margin-left:-14.589333pt;}
._3_c00254{margin-left:-13.104000pt;}
._11_c00254{margin-left:-11.592000pt;}
._1a_c00254{margin-left:-10.394667pt;}
._f_c00254{margin-left:-9.144000pt;}
._5_c00254{margin-left:-7.349333pt;}
._10_c00254{margin-left:-5.328000pt;}
._15_c00254{margin-left:-4.226667pt;}
._b_c00254{margin-left:-3.021333pt;}
._6_c00254{margin-left:-1.258667pt;}
._0_c00254{width:1.349333pt;}
._1_c00254{width:2.269333pt;}
._24_c00254{width:3.186667pt;}
._2_c00254{width:4.109333pt;}
._8_c00254{width:5.080533pt;}
._c_c00254{width:6.271467pt;}
._a_c00254{width:7.626667pt;}
._4_c00254{width:8.701333pt;}
._26_c00254{width:9.594667pt;}
._9_c00254{width:10.506667pt;}
._19_c00254{width:11.738667pt;}
._d_c00254{width:12.752000pt;}
._7_c00254{width:13.642667pt;}
._16_c00254{width:14.568000pt;}
._14_c00254{width:15.832000pt;}
._1c_c00254{width:17.352000pt;}
._12_c00254{width:18.938667pt;}
._21_c00254{width:19.957333pt;}
._13_c00254{width:20.976000pt;}
._1d_c00254{width:23.136000pt;}
._25_c00254{width:25.149333pt;}
._20_c00254{width:29.275200pt;}
._1f_c00254{width:32.733333pt;}
._1e_c00254{width:36.842667pt;}
._17_c00254{width:48.506667pt;}
._18_c00254{width:85.872000pt;}
._1b_c00254{width:109.709867pt;}
._27_c00254{width:170.050667pt;}
._23_c00254{width:205.770667pt;}
._e_c00254{width:328.558933pt;}
.fs4_c00254{font-size:27.733333pt;}
.fs2_c00254{font-size:34.666667pt;}
.fs5_c00254{font-size:42.666667pt;}
.fs1_c00254{font-size:58.666667pt;}
.fs0_c00254{font-size:61.333333pt;}
.fs6_c00254{font-size:66.666667pt;}
.fs3_c00254{font-size:72.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1d_c00254{bottom:2.760000pt;}
.y1c_c00254{bottom:6.425219pt;}
.y1b_c00254{bottom:61.213333pt;}
.y1a_c00254{bottom:83.213333pt;}
.y19_c00254{bottom:105.613333pt;}
.y18_c00254{bottom:128.413333pt;}
.y17_c00254{bottom:150.946667pt;}
.y16_c00254{bottom:170.413333pt;}
.y15_c00254{bottom:195.346667pt;}
.y14_c00254{bottom:216.413333pt;}
.y13_c00254{bottom:261.880000pt;}
.y12_c00254{bottom:284.413333pt;}
.y11_c00254{bottom:306.946667pt;}
.y10_c00254{bottom:329.080000pt;}
.yf_c00254{bottom:372.946667pt;}
.ye_c00254{bottom:418.013333pt;}
.yd_c00254{bottom:439.480000pt;}
.yc_c00254{bottom:461.480000pt;}
.yb_c00254{bottom:483.613333pt;}
.ya_c00254{bottom:505.880000pt;}
.y9_c00254{bottom:528.413333pt;}
.y8_c00254{bottom:550.546667pt;}
.y7_c00254{bottom:572.813333pt;}
.y6_c00254{bottom:594.680000pt;}
.y5_c00254{bottom:617.080000pt;}
.y4_c00254{bottom:639.613333pt;}
.y3_c00254{bottom:661.613333pt;}
.y2_c00254{bottom:684.413333pt;}
.y1_c00254{bottom:705.346667pt;}
.h5_c00254{height:11.733399pt;}
.h6_c00254{height:38.937500pt;}
.h2_c00254{height:77.654948pt;}
.h4_c00254{height:84.407552pt;}
.h3_c00254{height:91.160156pt;}
.h1_c00254{height:738.666667pt;}
.h0_c00254{height:738.733333pt;}
.w2_c00254{width:93.222667pt;}
.w0_c00254{width:503.266667pt;}
.w1_c00254{width:503.333333pt;}
.x0_c00254{left:0.000000pt;}
.x7_c00254{left:25.200000pt;}
.x8_c00254{left:27.333333pt;}
.x2_c00254{left:28.533333pt;}
.x4_c00254{left:30.000000pt;}
.x9_c00254{left:48.533333pt;}
.x6_c00254{left:50.400000pt;}
.x3_c00254{left:52.133333pt;}
.x5_c00254{left:57.200000pt;}
.x1_c00254{left:180.000000pt;}
.xb_c00254{left:208.801554pt;}
.xa_c00254{left:409.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_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_0b040bb4f0e966cf668ec5de.woff2')format("woff");}.ff1_c00255{font-family:ff1_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:ff2_c00255;src:url('chunks/assets/font_93c7057785ca86fb89e19532.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_5d23363bba662f62716e66b0.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_a3540913ddedaecac85a4562.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00255{font-family:ff5_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:ff6_c00255;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00255{font-family:ff6_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;}
.ls6_c00255{letter-spacing:0.000000px;}
.ls1_c00255{letter-spacing:0.150000px;}
.ls2_c00255{letter-spacing:3.000000px;}
.ls5_c00255{letter-spacing:4.350000px;}
.ls4_c00255{letter-spacing:5.550000px;}
.ls0_c00255{letter-spacing:6.000000px;}
.ls3_c00255{letter-spacing:6.367200px;}
.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;}
}
.ws3_c00255{word-spacing:-20.250000px;}
.ws4_c00255{word-spacing:-20.167200px;}
.ws6_c00255{word-spacing:-19.629000px;}
.ws2_c00255{word-spacing:-16.800000px;}
.ws0_c00255{word-spacing:-16.629000px;}
.ws5_c00255{word-spacing:-5.925600px;}
.ws1_c00255{word-spacing:-0.483000px;}
.ws7_c00255{word-spacing:0.000000px;}
._1a_c00255{margin-left:-20.424000px;}
._2b_c00255{margin-left:-18.147000px;}
._28_c00255{margin-left:-15.042000px;}
._1e_c00255{margin-left:-13.800000px;}
._19_c00255{margin-left:-12.351000px;}
._26_c00255{margin-left:-10.143000px;}
._15_c00255{margin-left:-8.484000px;}
._2_c00255{margin-left:-6.624000px;}
._d_c00255{margin-left:-5.037000px;}
._c_c00255{margin-left:-3.795000px;}
._0_c00255{margin-left:-2.346000px;}
._4_c00255{margin-left:-1.035000px;}
._6_c00255{width:1.104000px;}
._7_c00255{width:2.277000px;}
._5_c00255{width:4.140000px;}
._11_c00255{width:5.244000px;}
._8_c00255{width:6.279000px;}
._a_c00255{width:7.659000px;}
._9_c00255{width:8.694000px;}
._16_c00255{width:9.867000px;}
._b_c00255{width:11.040000px;}
._14_c00255{width:12.177000px;}
._18_c00255{width:13.557000px;}
._f_c00255{width:15.285000px;}
._27_c00255{width:16.459800px;}
._13_c00255{width:17.493000px;}
._21_c00255{width:18.525000px;}
._1c_c00255{width:21.597000px;}
._17_c00255{width:22.632000px;}
._20_c00255{width:23.634000px;}
._2a_c00255{width:30.291000px;}
._2c_c00255{width:31.326000px;}
._10_c00255{width:33.879000px;}
._12_c00255{width:36.777000px;}
._29_c00255{width:42.504000px;}
._24_c00255{width:56.889000px;}
._e_c00255{width:64.377000px;}
._1d_c00255{width:67.410000px;}
._1_c00255{width:92.529000px;}
._25_c00255{width:96.567000px;}
._1b_c00255{width:98.049000px;}
._22_c00255{width:99.102000px;}
._1f_c00255{width:106.674000px;}
._23_c00255{width:129.237000px;}
._3_c00255{width:363.177000px;}
.fc2_c00255{color:transparent;}
.fc1_c00255{color:rgb(128,128,128);}
.fc0_c00255{color:rgb(0,0,0);}
.fs3_c00255{font-size:48.000000px;}
.fs2_c00255{font-size:55.200000px;}
.fs1_c00255{font-size:66.000000px;}
.fs0_c00255{font-size:69.000000px;}
.y0_c00255{bottom:0.000000px;}
.y1d_c00255{bottom:3.105000px;}
.y1c_c00255{bottom:7.228357px;}
.y1b_c00255{bottom:56.430000px;}
.y1a_c00255{bottom:156.630000px;}
.y19_c00255{bottom:181.230000px;}
.y18_c00255{bottom:206.880000px;}
.y17_c00255{bottom:231.930000px;}
.y16_c00255{bottom:257.280000px;}
.y15_c00255{bottom:282.180000px;}
.y14_c00255{bottom:307.530000px;}
.y13_c00255{bottom:330.180000px;}
.y12_c00255{bottom:355.680000px;}
.y11_c00255{bottom:381.330000px;}
.y10_c00255{bottom:406.080000px;}
.yf_c00255{bottom:431.430000px;}
.ye_c00255{bottom:457.080000px;}
.yd_c00255{bottom:481.680000px;}
.yc_c00255{bottom:506.580000px;}
.yb_c00255{bottom:531.330000px;}
.ya_c00255{bottom:556.830000px;}
.y9_c00255{bottom:582.480000px;}
.y8_c00255{bottom:606.780000px;}
.y7_c00255{bottom:631.830000px;}
.y6_c00255{bottom:655.830000px;}
.y5_c00255{bottom:681.480000px;}
.y4_c00255{bottom:707.130000px;}
.y3_c00255{bottom:731.730000px;}
.y2_c00255{bottom:757.080000px;}
.y1_c00255{bottom:781.980000px;}
.h4_c00255{height:13.200074px;}
.h5_c00255{height:43.804688px;}
.h2_c00255{height:69.539062px;}
.h3_c00255{height:80.758301px;}
.h1_c00255{height:87.361816px;}
.h0_c00255{height:819.750000px;}
.w2_c00255{width:104.875500px;}
.w1_c00255{width:566.250000px;}
.w0_c00255{width:566.475000px;}
.x0_c00255{left:0.000000px;}
.xd_c00255{left:21.600000px;}
.x8_c00255{left:23.700000px;}
.x4_c00255{left:39.600000px;}
.x7_c00255{left:41.250000px;}
.x6_c00255{left:55.800000px;}
.x5_c00255{left:66.150000px;}
.xb_c00255{left:88.200000px;}
.x9_c00255{left:89.400000px;}
.xa_c00255{left:90.750000px;}
.x3_c00255{left:91.800000px;}
.x2_c00255{left:93.450000px;}
.x1_c00255{left:107.550000px;}
.xc_c00255{left:115.200000px;}
.xf_c00255{left:235.051758px;}
.xe_c00255{left:506.250000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls6_c00255{letter-spacing:0.000000pt;}
.ls1_c00255{letter-spacing:0.133333pt;}
.ls2_c00255{letter-spacing:2.666667pt;}
.ls5_c00255{letter-spacing:3.866667pt;}
.ls4_c00255{letter-spacing:4.933333pt;}
.ls0_c00255{letter-spacing:5.333333pt;}
.ls3_c00255{letter-spacing:5.659733pt;}
.ws3_c00255{word-spacing:-18.000000pt;}
.ws4_c00255{word-spacing:-17.926400pt;}
.ws6_c00255{word-spacing:-17.448000pt;}
.ws2_c00255{word-spacing:-14.933333pt;}
.ws0_c00255{word-spacing:-14.781333pt;}
.ws5_c00255{word-spacing:-5.267200pt;}
.ws1_c00255{word-spacing:-0.429333pt;}
.ws7_c00255{word-spacing:0.000000pt;}
._1a_c00255{margin-left:-18.154667pt;}
._2b_c00255{margin-left:-16.130667pt;}
._28_c00255{margin-left:-13.370667pt;}
._1e_c00255{margin-left:-12.266667pt;}
._19_c00255{margin-left:-10.978667pt;}
._26_c00255{margin-left:-9.016000pt;}
._15_c00255{margin-left:-7.541333pt;}
._2_c00255{margin-left:-5.888000pt;}
._d_c00255{margin-left:-4.477333pt;}
._c_c00255{margin-left:-3.373333pt;}
._0_c00255{margin-left:-2.085333pt;}
._4_c00255{margin-left:-0.920000pt;}
._6_c00255{width:0.981333pt;}
._7_c00255{width:2.024000pt;}
._5_c00255{width:3.680000pt;}
._11_c00255{width:4.661333pt;}
._8_c00255{width:5.581333pt;}
._a_c00255{width:6.808000pt;}
._9_c00255{width:7.728000pt;}
._16_c00255{width:8.770667pt;}
._b_c00255{width:9.813333pt;}
._14_c00255{width:10.824000pt;}
._18_c00255{width:12.050667pt;}
._f_c00255{width:13.586667pt;}
._27_c00255{width:14.630933pt;}
._13_c00255{width:15.549333pt;}
._21_c00255{width:16.466667pt;}
._1c_c00255{width:19.197333pt;}
._17_c00255{width:20.117333pt;}
._20_c00255{width:21.008000pt;}
._2a_c00255{width:26.925333pt;}
._2c_c00255{width:27.845333pt;}
._10_c00255{width:30.114667pt;}
._12_c00255{width:32.690667pt;}
._29_c00255{width:37.781333pt;}
._24_c00255{width:50.568000pt;}
._e_c00255{width:57.224000pt;}
._1d_c00255{width:59.920000pt;}
._1_c00255{width:82.248000pt;}
._25_c00255{width:85.837333pt;}
._1b_c00255{width:87.154667pt;}
._22_c00255{width:88.090667pt;}
._1f_c00255{width:94.821333pt;}
._23_c00255{width:114.877333pt;}
._3_c00255{width:322.824000pt;}
.fs3_c00255{font-size:42.666667pt;}
.fs2_c00255{font-size:49.066667pt;}
.fs1_c00255{font-size:58.666667pt;}
.fs0_c00255{font-size:61.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y1d_c00255{bottom:2.760000pt;}
.y1c_c00255{bottom:6.425206pt;}
.y1b_c00255{bottom:50.160000pt;}
.y1a_c00255{bottom:139.226667pt;}
.y19_c00255{bottom:161.093333pt;}
.y18_c00255{bottom:183.893333pt;}
.y17_c00255{bottom:206.160000pt;}
.y16_c00255{bottom:228.693333pt;}
.y15_c00255{bottom:250.826667pt;}
.y14_c00255{bottom:273.360000pt;}
.y13_c00255{bottom:293.493333pt;}
.y12_c00255{bottom:316.160000pt;}
.y11_c00255{bottom:338.960000pt;}
.y10_c00255{bottom:360.960000pt;}
.yf_c00255{bottom:383.493333pt;}
.ye_c00255{bottom:406.293333pt;}
.yd_c00255{bottom:428.160000pt;}
.yc_c00255{bottom:450.293333pt;}
.yb_c00255{bottom:472.293333pt;}
.ya_c00255{bottom:494.960000pt;}
.y9_c00255{bottom:517.760000pt;}
.y8_c00255{bottom:539.360000pt;}
.y7_c00255{bottom:561.626667pt;}
.y6_c00255{bottom:582.960000pt;}
.y5_c00255{bottom:605.760000pt;}
.y4_c00255{bottom:628.560000pt;}
.y3_c00255{bottom:650.426667pt;}
.y2_c00255{bottom:672.960000pt;}
.y1_c00255{bottom:695.093333pt;}
.h4_c00255{height:11.733399pt;}
.h5_c00255{height:38.937500pt;}
.h2_c00255{height:61.812500pt;}
.h3_c00255{height:71.785156pt;}
.h1_c00255{height:77.654948pt;}
.h0_c00255{height:728.666667pt;}
.w2_c00255{width:93.222667pt;}
.w1_c00255{width:503.333333pt;}
.w0_c00255{width:503.533333pt;}
.x0_c00255{left:0.000000pt;}
.xd_c00255{left:19.200000pt;}
.x8_c00255{left:21.066667pt;}
.x4_c00255{left:35.200000pt;}
.x7_c00255{left:36.666667pt;}
.x6_c00255{left:49.600000pt;}
.x5_c00255{left:58.800000pt;}
.xb_c00255{left:78.400000pt;}
.x9_c00255{left:79.466667pt;}
.xa_c00255{left:80.666667pt;}
.x3_c00255{left:81.600000pt;}
.x2_c00255{left:83.066667pt;}
.x1_c00255{left:95.600000pt;}
.xc_c00255{left:102.400000pt;}
.xf_c00255{left:208.934896pt;}
.xe_c00255{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_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_66f0b688ee97911a63efb1ce.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_afabe8f349ce403595bda0c2.woff2')format("woff");}.ff2_c00256{font-family:ff2_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:ff3_c00256;src:url('chunks/assets/font_788eda523473c38ffde9f6ec.woff2')format("woff");}.ff3_c00256{font-family:ff3_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:ff4_c00256;src:url('chunks/assets/font_77cef0cd7365949dece504f4.woff2')format("woff");}.ff4_c00256{font-family:ff4_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:ff5_c00256;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff5_c00256{font-family:ff5_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:ff6_c00256;src:url('chunks/assets/font_11b746f1d23531e2ca485507.woff2')format("woff");}.ff6_c00256{font-family:ff6_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:ff7_c00256;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00256{font-family:ff7_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;}
.ls2_c00256{letter-spacing:0.000000px;}
.ls1_c00256{letter-spacing:3.000000px;}
.ls3_c00256{letter-spacing:9.000000px;}
.ls0_c00256{letter-spacing:39.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;}
}
.ws5_c00256{word-spacing:-52.974000px;}
.ws3_c00256{word-spacing:-44.022000px;}
.ws4_c00256{word-spacing:-42.379200px;}
.ws1_c00256{word-spacing:-25.629000px;}
.ws6_c00256{word-spacing:-19.521000px;}
.ws2_c00256{word-spacing:-16.629000px;}
.ws7_c00256{word-spacing:0.000000px;}
.ws0_c00256{word-spacing:95.652000px;}
._7_c00256{margin-left:-51.150000px;}
._2_c00256{margin-left:-46.650000px;}
._0_c00256{margin-left:-44.625000px;}
._4_c00256{margin-left:-20.925000px;}
._14_c00256{margin-left:-18.216000px;}
._5_c00256{margin-left:-16.650000px;}
._17_c00256{margin-left:-14.799000px;}
._12_c00256{margin-left:-13.413000px;}
._1d_c00256{margin-left:-11.799000px;}
._13_c00256{margin-left:-10.785000px;}
._20_c00256{margin-left:-9.768000px;}
._15_c00256{margin-left:-8.418000px;}
._1a_c00256{margin-left:-7.353000px;}
._1_c00256{margin-left:-6.150000px;}
._10_c00256{margin-left:-4.860000px;}
._e_c00256{margin-left:-3.699000px;}
._c_c00256{margin-left:-2.316000px;}
._a_c00256{margin-left:-1.311000px;}
._b_c00256{width:1.227000px;}
._3_c00256{width:2.250000px;}
._9_c00256{width:3.450000px;}
._d_c00256{width:5.052000px;}
._8_c00256{width:6.624000px;}
._1c_c00256{width:7.641000px;}
._16_c00256{width:9.126000px;}
._18_c00256{width:10.746000px;}
._23_c00256{width:12.120000px;}
._1b_c00256{width:13.248000px;}
._f_c00256{width:15.264000px;}
._21_c00256{width:17.709000px;}
._24_c00256{width:20.739000px;}
._11_c00256{width:22.137000px;}
._26_c00256{width:24.219000px;}
._22_c00256{width:25.392000px;}
._27_c00256{width:27.048000px;}
._25_c00256{width:31.338000px;}
._28_c00256{width:34.224000px;}
._2b_c00256{width:38.360400px;}
._29_c00256{width:43.332000px;}
._2a_c00256{width:46.098000px;}
._1f_c00256{width:48.453000px;}
._19_c00256{width:98.877000px;}
._1e_c00256{width:103.770000px;}
._6_c00256{width:192.750000px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(128,128,128);}
.fc0_c00256{color:rgb(0,0,0);}
.fs2_c00256{font-size:36.000000px;}
.fs4_c00256{font-size:45.000000px;}
.fs7_c00256{font-size:48.000000px;}
.fs6_c00256{font-size:64.800000px;}
.fs3_c00256{font-size:66.000000px;}
.fs1_c00256{font-size:69.000000px;}
.fs0_c00256{font-size:75.000000px;}
.fs5_c00256{font-size:81.000000px;}
.y0_c00256{bottom:0.000000px;}
.y1b_c00256{bottom:3.105000px;}
.y1a_c00256{bottom:7.228371px;}
.y19_c00256{bottom:87.765000px;}
.y18_c00256{bottom:112.365000px;}
.y17_c00256{bottom:138.765000px;}
.y16_c00256{bottom:163.065000px;}
.y15_c00256{bottom:189.315000px;}
.y14_c00256{bottom:214.365000px;}
.y13_c00256{bottom:239.265000px;}
.y12_c00256{bottom:289.365000px;}
.y11_c00256{bottom:339.915000px;}
.y10_c00256{bottom:364.215000px;}
.yf_c00256{bottom:389.865000px;}
.ye_c00256{bottom:414.915000px;}
.yd_c00256{bottom:439.515000px;}
.yc_c00256{bottom:466.215000px;}
.yb_c00256{bottom:489.465000px;}
.ya_c00256{bottom:514.665000px;}
.y9_c00256{bottom:538.665000px;}
.y8_c00256{bottom:564.015000px;}
.y7_c00256{bottom:588.915000px;}
.y6_c00256{bottom:613.365000px;}
.y5_c00256{bottom:638.865000px;}
.y4_c00256{bottom:662.265000px;}
.y3_c00256{bottom:688.215000px;}
.y2_c00256{bottom:712.515000px;}
.y1_c00256{bottom:738.915000px;}
.h6_c00256{height:13.200074px;}
.h7_c00256{height:43.804688px;}
.h2_c00256{height:73.571777px;}
.h4_c00256{height:80.758301px;}
.h3_c00256{height:87.361816px;}
.h5_c00256{height:102.555176px;}
.h1_c00256{height:831.000000px;}
.h0_c00256{height:831.075000px;}
.w2_c00256{width:104.875500px;}
.w0_c00256{width:566.175000px;}
.w1_c00256{width:566.250000px;}
.x0_c00256{left:0.000000px;}
.x6_c00256{left:29.100000px;}
.x9_c00256{left:31.350000px;}
.x3_c00256{left:32.400000px;}
.x7_c00256{left:34.800000px;}
.x5_c00256{left:36.750000px;}
.x2_c00256{left:55.800000px;}
.x8_c00256{left:59.100000px;}
.xa_c00256{left:60.450000px;}
.xb_c00256{left:66.600000px;}
.x4_c00256{left:68.850000px;}
.x1_c00256{left:141.750000px;}
.xc_c00256{left:234.901749px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls2_c00256{letter-spacing:0.000000pt;}
.ls1_c00256{letter-spacing:2.666667pt;}
.ls3_c00256{letter-spacing:8.000000pt;}
.ls0_c00256{letter-spacing:34.666667pt;}
.ws5_c00256{word-spacing:-47.088000pt;}
.ws3_c00256{word-spacing:-39.130667pt;}
.ws4_c00256{word-spacing:-37.670400pt;}
.ws1_c00256{word-spacing:-22.781333pt;}
.ws6_c00256{word-spacing:-17.352000pt;}
.ws2_c00256{word-spacing:-14.781333pt;}
.ws7_c00256{word-spacing:0.000000pt;}
.ws0_c00256{word-spacing:85.024000pt;}
._7_c00256{margin-left:-45.466667pt;}
._2_c00256{margin-left:-41.466667pt;}
._0_c00256{margin-left:-39.666667pt;}
._4_c00256{margin-left:-18.600000pt;}
._14_c00256{margin-left:-16.192000pt;}
._5_c00256{margin-left:-14.800000pt;}
._17_c00256{margin-left:-13.154667pt;}
._12_c00256{margin-left:-11.922667pt;}
._1d_c00256{margin-left:-10.488000pt;}
._13_c00256{margin-left:-9.586667pt;}
._20_c00256{margin-left:-8.682667pt;}
._15_c00256{margin-left:-7.482667pt;}
._1a_c00256{margin-left:-6.536000pt;}
._1_c00256{margin-left:-5.466667pt;}
._10_c00256{margin-left:-4.320000pt;}
._e_c00256{margin-left:-3.288000pt;}
._c_c00256{margin-left:-2.058667pt;}
._a_c00256{margin-left:-1.165333pt;}
._b_c00256{width:1.090667pt;}
._3_c00256{width:2.000000pt;}
._9_c00256{width:3.066667pt;}
._d_c00256{width:4.490667pt;}
._8_c00256{width:5.888000pt;}
._1c_c00256{width:6.792000pt;}
._16_c00256{width:8.112000pt;}
._18_c00256{width:9.552000pt;}
._23_c00256{width:10.773333pt;}
._1b_c00256{width:11.776000pt;}
._f_c00256{width:13.568000pt;}
._21_c00256{width:15.741333pt;}
._24_c00256{width:18.434667pt;}
._11_c00256{width:19.677333pt;}
._26_c00256{width:21.528000pt;}
._22_c00256{width:22.570667pt;}
._27_c00256{width:24.042667pt;}
._25_c00256{width:27.856000pt;}
._28_c00256{width:30.421333pt;}
._2b_c00256{width:34.098133pt;}
._29_c00256{width:38.517333pt;}
._2a_c00256{width:40.976000pt;}
._1f_c00256{width:43.069333pt;}
._19_c00256{width:87.890667pt;}
._1e_c00256{width:92.240000pt;}
._6_c00256{width:171.333333pt;}
.fs2_c00256{font-size:32.000000pt;}
.fs4_c00256{font-size:40.000000pt;}
.fs7_c00256{font-size:42.666667pt;}
.fs6_c00256{font-size:57.600000pt;}
.fs3_c00256{font-size:58.666667pt;}
.fs1_c00256{font-size:61.333333pt;}
.fs0_c00256{font-size:66.666667pt;}
.fs5_c00256{font-size:72.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1b_c00256{bottom:2.760000pt;}
.y1a_c00256{bottom:6.425219pt;}
.y19_c00256{bottom:78.013333pt;}
.y18_c00256{bottom:99.880000pt;}
.y17_c00256{bottom:123.346667pt;}
.y16_c00256{bottom:144.946667pt;}
.y15_c00256{bottom:168.280000pt;}
.y14_c00256{bottom:190.546667pt;}
.y13_c00256{bottom:212.680000pt;}
.y12_c00256{bottom:257.213333pt;}
.y11_c00256{bottom:302.146667pt;}
.y10_c00256{bottom:323.746667pt;}
.yf_c00256{bottom:346.546667pt;}
.ye_c00256{bottom:368.813333pt;}
.yd_c00256{bottom:390.680000pt;}
.yc_c00256{bottom:414.413333pt;}
.yb_c00256{bottom:435.080000pt;}
.ya_c00256{bottom:457.480000pt;}
.y9_c00256{bottom:478.813333pt;}
.y8_c00256{bottom:501.346667pt;}
.y7_c00256{bottom:523.480000pt;}
.y6_c00256{bottom:545.213333pt;}
.y5_c00256{bottom:567.880000pt;}
.y4_c00256{bottom:588.680000pt;}
.y3_c00256{bottom:611.746667pt;}
.y2_c00256{bottom:633.346667pt;}
.y1_c00256{bottom:656.813333pt;}
.h6_c00256{height:11.733399pt;}
.h7_c00256{height:38.937500pt;}
.h2_c00256{height:65.397135pt;}
.h4_c00256{height:71.785156pt;}
.h3_c00256{height:77.654948pt;}
.h5_c00256{height:91.160156pt;}
.h1_c00256{height:738.666667pt;}
.h0_c00256{height:738.733333pt;}
.w2_c00256{width:93.222667pt;}
.w0_c00256{width:503.266667pt;}
.w1_c00256{width:503.333333pt;}
.x0_c00256{left:0.000000pt;}
.x6_c00256{left:25.866667pt;}
.x9_c00256{left:27.866667pt;}
.x3_c00256{left:28.800000pt;}
.x7_c00256{left:30.933333pt;}
.x5_c00256{left:32.666667pt;}
.x2_c00256{left:49.600000pt;}
.x8_c00256{left:52.533333pt;}
.xa_c00256{left:53.733333pt;}
.xb_c00256{left:59.200000pt;}
.x4_c00256{left:61.200000pt;}
.x1_c00256{left:126.000000pt;}
.xc_c00256{left:208.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_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_271e988103119fd4cfaa37f0.woff2')format("woff");}.ff1_c00257{font-family:ff1_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:ff2_c00257;src:url('chunks/assets/font_414fc5b61e1dbf001ddbce12.woff2')format("woff");}.ff2_c00257{font-family:ff2_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:ff3_c00257;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.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_d10ca46c9142ab554edb6755.woff2')format("woff");}.ff4_c00257{font-family:ff4_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:ff5_c00257;src:url('chunks/assets/font_84ad7996e209aadf5be0947d.woff2')format("woff");}.ff5_c00257{font-family:ff5_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:ff6_c00257;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00257{font-family:ff6_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;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls4_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:0.216000px;}
.ls0_c00257{letter-spacing:2.760000px;}
.ls1_c00257{letter-spacing:3.000000px;}
.ls3_c00257{letter-spacing:5.079000px;}
.ls5_c00257{letter-spacing:6.000000px;}
.ls6_c00257{letter-spacing:48.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;}
}
.ws4_c00257{word-spacing:-64.629000px;}
.ws1_c00257{word-spacing:-44.022000px;}
.ws0_c00257{word-spacing:-19.629000px;}
.ws2_c00257{word-spacing:-16.629000px;}
.ws6_c00257{word-spacing:-13.303200px;}
.ws7_c00257{word-spacing:0.000000px;}
.ws3_c00257{word-spacing:6.134400px;}
.ws5_c00257{word-spacing:124.610400px;}
._2b_c00257{margin-left:-60.655200px;}
._26_c00257{margin-left:-42.642000px;}
._18_c00257{margin-left:-32.361000px;}
._23_c00257{margin-left:-27.462000px;}
._29_c00257{margin-left:-25.599000px;}
._28_c00257{margin-left:-21.963000px;}
._14_c00257{margin-left:-17.154000px;}
._1b_c00257{margin-left:-13.293000px;}
._20_c00257{margin-left:-11.448000px;}
._12_c00257{margin-left:-9.384000px;}
._e_c00257{margin-left:-8.004000px;}
._10_c00257{margin-left:-6.693000px;}
._1_c00257{margin-left:-5.037000px;}
._0_c00257{margin-left:-4.002000px;}
._f_c00257{margin-left:-2.898000px;}
._4_c00257{margin-left:-1.518000px;}
._2_c00257{width:1.932000px;}
._5_c00257{width:3.450000px;}
._7_c00257{width:4.692000px;}
._6_c00257{width:5.727000px;}
._a_c00257{width:7.521000px;}
._21_c00257{width:8.719800px;}
._b_c00257{width:9.729000px;}
._c_c00257{width:11.454000px;}
._17_c00257{width:12.558000px;}
._8_c00257{width:14.628000px;}
._9_c00257{width:15.663000px;}
._16_c00257{width:17.319000px;}
._25_c00257{width:19.458000px;}
._1e_c00257{width:21.114000px;}
._1d_c00257{width:22.257000px;}
._22_c00257{width:23.736000px;}
._11_c00257{width:24.909000px;}
._d_c00257{width:25.944000px;}
._1f_c00257{width:27.291000px;}
._1c_c00257{width:28.683000px;}
._24_c00257{width:29.691000px;}
._19_c00257{width:77.556000px;}
._1a_c00257{width:86.361000px;}
._15_c00257{width:138.966000px;}
._2a_c00257{width:141.320400px;}
._27_c00257{width:170.562000px;}
._2d_c00257{width:205.305000px;}
._13_c00257{width:283.308000px;}
._3_c00257{width:374.967000px;}
._2c_c00257{width:905.994000px;}
._2e_c00257{width:1524.555000px;}
.fc2_c00257{color:transparent;}
.fc1_c00257{color:rgb(128,128,128);}
.fc0_c00257{color:rgb(0,0,0);}
.fs3_c00257{font-size:38.400000px;}
.fs4_c00257{font-size:48.000000px;}
.fs5_c00257{font-size:55.200000px;}
.fs1_c00257{font-size:66.000000px;}
.fs0_c00257{font-size:69.000000px;}
.fs2_c00257{font-size:81.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1e_c00257{bottom:3.105000px;}
.y1d_c00257{bottom:7.228371px;}
.y1c_c00257{bottom:45.915000px;}
.y1b_c00257{bottom:70.965000px;}
.y1a_c00257{bottom:97.515000px;}
.y19_c00257{bottom:122.865000px;}
.y18_c00257{bottom:148.215000px;}
.y17_c00257{bottom:198.165000px;}
.y16_c00257{bottom:223.515000px;}
.y15_c00257{bottom:248.865000px;}
.y14_c00257{bottom:274.365000px;}
.y13_c00257{bottom:299.115000px;}
.y12_c00257{bottom:324.015000px;}
.y11_c00257{bottom:373.665000px;}
.y10_c00257{bottom:424.365000px;}
.yf_c00257{bottom:448.965000px;}
.ye_c00257{bottom:474.915000px;}
.yd_c00257{bottom:499.815000px;}
.yc_c00257{bottom:524.565000px;}
.yb_c00257{bottom:549.765000px;}
.ya_c00257{bottom:575.565000px;}
.y9_c00257{bottom:599.865000px;}
.y8_c00257{bottom:625.065000px;}
.y7_c00257{bottom:649.665000px;}
.y1_c00257{bottom:660.465000px;}
.y6_c00257{bottom:675.015000px;}
.y5_c00257{bottom:699.765000px;}
.y4_c00257{bottom:724.965000px;}
.y3_c00257{bottom:750.015000px;}
.y2_c00257{bottom:775.215000px;}
.h5_c00257{height:13.200074px;}
.h6_c00257{height:43.804688px;}
.h4_c00257{height:80.758301px;}
.h2_c00257{height:87.361816px;}
.h3_c00257{height:102.555176px;}
.h0_c00257{height:812.175000px;}
.h1_c00257{height:812.250000px;}
.w2_c00257{width:104.875500px;}
.w1_c00257{width:561.000000px;}
.w0_c00257{width:561.075000px;}
.x0_c00257{left:0.000000px;}
.xb_c00257{left:27.750000px;}
.xa_c00257{left:29.400000px;}
.x9_c00257{left:32.700000px;}
.x6_c00257{left:38.100000px;}
.x1_c00257{left:48.600000px;}
.x5_c00257{left:72.150000px;}
.x4_c00257{left:95.550000px;}
.x3_c00257{left:97.200000px;}
.x2_c00257{left:108.000000px;}
.x7_c00257{left:120.150000px;}
.x8_c00257{left:231.150000px;}
.xc_c00257{left:232.351730px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls4_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:0.192000pt;}
.ls0_c00257{letter-spacing:2.453333pt;}
.ls1_c00257{letter-spacing:2.666667pt;}
.ls3_c00257{letter-spacing:4.514667pt;}
.ls5_c00257{letter-spacing:5.333333pt;}
.ls6_c00257{letter-spacing:42.666667pt;}
.ws4_c00257{word-spacing:-57.448000pt;}
.ws1_c00257{word-spacing:-39.130667pt;}
.ws0_c00257{word-spacing:-17.448000pt;}
.ws2_c00257{word-spacing:-14.781333pt;}
.ws6_c00257{word-spacing:-11.825067pt;}
.ws7_c00257{word-spacing:0.000000pt;}
.ws3_c00257{word-spacing:5.452800pt;}
.ws5_c00257{word-spacing:110.764800pt;}
._2b_c00257{margin-left:-53.915733pt;}
._26_c00257{margin-left:-37.904000pt;}
._18_c00257{margin-left:-28.765333pt;}
._23_c00257{margin-left:-24.410667pt;}
._29_c00257{margin-left:-22.754667pt;}
._28_c00257{margin-left:-19.522667pt;}
._14_c00257{margin-left:-15.248000pt;}
._1b_c00257{margin-left:-11.816000pt;}
._20_c00257{margin-left:-10.176000pt;}
._12_c00257{margin-left:-8.341333pt;}
._e_c00257{margin-left:-7.114667pt;}
._10_c00257{margin-left:-5.949333pt;}
._1_c00257{margin-left:-4.477333pt;}
._0_c00257{margin-left:-3.557333pt;}
._f_c00257{margin-left:-2.576000pt;}
._4_c00257{margin-left:-1.349333pt;}
._2_c00257{width:1.717333pt;}
._5_c00257{width:3.066667pt;}
._7_c00257{width:4.170667pt;}
._6_c00257{width:5.090667pt;}
._a_c00257{width:6.685333pt;}
._21_c00257{width:7.750933pt;}
._b_c00257{width:8.648000pt;}
._c_c00257{width:10.181333pt;}
._17_c00257{width:11.162667pt;}
._8_c00257{width:13.002667pt;}
._9_c00257{width:13.922667pt;}
._16_c00257{width:15.394667pt;}
._25_c00257{width:17.296000pt;}
._1e_c00257{width:18.768000pt;}
._1d_c00257{width:19.784000pt;}
._22_c00257{width:21.098667pt;}
._11_c00257{width:22.141333pt;}
._d_c00257{width:23.061333pt;}
._1f_c00257{width:24.258667pt;}
._1c_c00257{width:25.496000pt;}
._24_c00257{width:26.392000pt;}
._19_c00257{width:68.938667pt;}
._1a_c00257{width:76.765333pt;}
._15_c00257{width:123.525333pt;}
._2a_c00257{width:125.618133pt;}
._27_c00257{width:151.610667pt;}
._2d_c00257{width:182.493333pt;}
._13_c00257{width:251.829333pt;}
._3_c00257{width:333.304000pt;}
._2c_c00257{width:805.328000pt;}
._2e_c00257{width:1355.160000pt;}
.fs3_c00257{font-size:34.133333pt;}
.fs4_c00257{font-size:42.666667pt;}
.fs5_c00257{font-size:49.066667pt;}
.fs1_c00257{font-size:58.666667pt;}
.fs0_c00257{font-size:61.333333pt;}
.fs2_c00257{font-size:72.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1e_c00257{bottom:2.760000pt;}
.y1d_c00257{bottom:6.425219pt;}
.y1c_c00257{bottom:40.813333pt;}
.y1b_c00257{bottom:63.080000pt;}
.y1a_c00257{bottom:86.680000pt;}
.y19_c00257{bottom:109.213333pt;}
.y18_c00257{bottom:131.746667pt;}
.y17_c00257{bottom:176.146667pt;}
.y16_c00257{bottom:198.680000pt;}
.y15_c00257{bottom:221.213333pt;}
.y14_c00257{bottom:243.880000pt;}
.y13_c00257{bottom:265.880000pt;}
.y12_c00257{bottom:288.013333pt;}
.y11_c00257{bottom:332.146667pt;}
.y10_c00257{bottom:377.213333pt;}
.yf_c00257{bottom:399.080000pt;}
.ye_c00257{bottom:422.146667pt;}
.yd_c00257{bottom:444.280000pt;}
.yc_c00257{bottom:466.280000pt;}
.yb_c00257{bottom:488.680000pt;}
.ya_c00257{bottom:511.613333pt;}
.y9_c00257{bottom:533.213333pt;}
.y8_c00257{bottom:555.613333pt;}
.y7_c00257{bottom:577.480000pt;}
.y1_c00257{bottom:587.080000pt;}
.y6_c00257{bottom:600.013333pt;}
.y5_c00257{bottom:622.013333pt;}
.y4_c00257{bottom:644.413333pt;}
.y3_c00257{bottom:666.680000pt;}
.y2_c00257{bottom:689.080000pt;}
.h5_c00257{height:11.733399pt;}
.h6_c00257{height:38.937500pt;}
.h4_c00257{height:71.785156pt;}
.h2_c00257{height:77.654948pt;}
.h3_c00257{height:91.160156pt;}
.h0_c00257{height:721.933333pt;}
.h1_c00257{height:722.000000pt;}
.w2_c00257{width:93.222667pt;}
.w1_c00257{width:498.666667pt;}
.w0_c00257{width:498.733333pt;}
.x0_c00257{left:0.000000pt;}
.xb_c00257{left:24.666667pt;}
.xa_c00257{left:26.133333pt;}
.x9_c00257{left:29.066667pt;}
.x6_c00257{left:33.866667pt;}
.x1_c00257{left:43.200000pt;}
.x5_c00257{left:64.133333pt;}
.x4_c00257{left:84.933333pt;}
.x3_c00257{left:86.400000pt;}
.x2_c00257{left:96.000000pt;}
.x7_c00257{left:106.800000pt;}
.x8_c00257{left:205.466667pt;}
.xc_c00257{left:206.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_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_f77998aad04c21791bffbc37.woff2')format("woff");}.ff1_c00258{font-family:ff1_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:ff2_c00258;src:url('chunks/assets/font_53ae2cb24135a0102299a50e.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_fb86b78d20da3496d663dbba.woff2')format("woff");}.ff3_c00258{font-family:ff3_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:ff4_c00258;src:url('chunks/assets/font_da61fd1f9e281533659817fd.woff2')format("woff");}.ff4_c00258{font-family:ff4_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:ff5_c00258;src:url('chunks/assets/font_94217e423f8fceedc7a54e51.woff2')format("woff");}.ff5_c00258{font-family:ff5_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:ff6_c00258;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00258{font-family:ff6_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;}
.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:0.000000px;}
.ls7_c00258{letter-spacing:3.000000px;}
.ls3_c00258{letter-spacing:5.394000px;}
.ls4_c00258{letter-spacing:6.771000px;}
.ls1_c00258{letter-spacing:9.000000px;}
.ls0_c00258{letter-spacing:10.101000px;}
.ls2_c00258{letter-spacing:18.171000px;}
.ls5_c00258{letter-spacing:21.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:-33.000000px;}
.ws2_c00258{word-spacing:-25.629000px;}
.ws4_c00258{word-spacing:-20.574000px;}
.ws3_c00258{word-spacing:-19.521000px;}
.ws1_c00258{word-spacing:-16.629000px;}
.ws7_c00258{word-spacing:0.000000px;}
.ws6_c00258{word-spacing:2.208000px;}
.ws5_c00258{word-spacing:3.657000px;}
._21_c00258{margin-left:-26.946000px;}
._20_c00258{margin-left:-25.713000px;}
._19_c00258{margin-left:-19.320000px;}
._22_c00258{margin-left:-16.989000px;}
._1_c00258{margin-left:-15.663000px;}
._1d_c00258{margin-left:-13.710000px;}
._23_c00258{margin-left:-12.588000px;}
._1b_c00258{margin-left:-11.040000px;}
._d_c00258{margin-left:-9.729000px;}
._e_c00258{margin-left:-8.694000px;}
._9_c00258{margin-left:-6.801000px;}
._4_c00258{margin-left:-5.067000px;}
._f_c00258{margin-left:-3.765000px;}
._6_c00258{margin-left:-2.346000px;}
._7_c00258{margin-left:-1.242000px;}
._0_c00258{width:1.242000px;}
._14_c00258{width:2.514000px;}
._8_c00258{width:3.519000px;}
._a_c00258{width:4.968000px;}
._2_c00258{width:6.969000px;}
._1e_c00258{width:8.409000px;}
._3_c00258{width:9.453000px;}
._15_c00258{width:10.848000px;}
._18_c00258{width:12.351000px;}
._12_c00258{width:13.425000px;}
._c_c00258{width:14.559000px;}
._27_c00258{width:16.566000px;}
._10_c00258{width:17.871000px;}
._b_c00258{width:19.044000px;}
._11_c00258{width:20.739000px;}
._17_c00258{width:23.430000px;}
._1c_c00258{width:24.564000px;}
._24_c00258{width:27.186000px;}
._25_c00258{width:38.331000px;}
._1a_c00258{width:41.814000px;}
._1f_c00258{width:44.472000px;}
._26_c00258{width:50.049000px;}
._16_c00258{width:117.279000px;}
._13_c00258{width:158.877000px;}
._5_c00258{width:510.738000px;}
._28_c00258{width:554.484000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(128,128,128);}
.fc0_c00258{color:rgb(0,0,0);}
.fs5_c00258{font-size:48.000000px;}
.fs4_c00258{font-size:60.000000px;}
.fs1_c00258{font-size:66.000000px;}
.fs0_c00258{font-size:69.000000px;}
.fs3_c00258{font-size:78.000000px;}
.fs2_c00258{font-size:81.000000px;}
.y0_c00258{bottom:0.000000px;}
.y1e_c00258{bottom:3.105000px;}
.y1d_c00258{bottom:7.228371px;}
.y1c_c00258{bottom:71.565000px;}
.y1b_c00258{bottom:94.515000px;}
.y1a_c00258{bottom:119.865000px;}
.y19_c00258{bottom:144.765000px;}
.y18_c00258{bottom:169.215000px;}
.y17_c00258{bottom:194.715000px;}
.y16_c00258{bottom:219.765000px;}
.y15_c00258{bottom:245.115000px;}
.y14_c00258{bottom:270.015000px;}
.y13_c00258{bottom:320.265000px;}
.y12_c00258{bottom:369.615000px;}
.y11_c00258{bottom:394.515000px;}
.y10_c00258{bottom:419.265000px;}
.yf_c00258{bottom:444.165000px;}
.ye_c00258{bottom:468.765000px;}
.yd_c00258{bottom:493.815000px;}
.yc_c00258{bottom:518.115000px;}
.yb_c00258{bottom:542.715000px;}
.ya_c00258{bottom:567.465000px;}
.y9_c00258{bottom:592.065000px;}
.y8_c00258{bottom:617.265000px;}
.y7_c00258{bottom:642.015000px;}
.y6_c00258{bottom:666.915000px;}
.y5_c00258{bottom:691.515000px;}
.y4_c00258{bottom:716.265000px;}
.y3_c00258{bottom:741.165000px;}
.y2_c00258{bottom:766.215000px;}
.y1_c00258{bottom:790.815000px;}
.h7_c00258{height:13.200074px;}
.h8_c00258{height:43.804688px;}
.h4_c00258{height:80.758301px;}
.h2_c00258{height:87.361816px;}
.h5_c00258{height:91.291992px;}
.h6_c00258{height:98.756836px;}
.h3_c00258{height:102.555176px;}
.h1_c00258{height:817.500000px;}
.h0_c00258{height:817.575000px;}
.w2_c00258{width:104.875500px;}
.w0_c00258{width:556.200000px;}
.w1_c00258{width:556.500000px;}
.x0_c00258{left:0.000000px;}
.x5_c00258{left:27.000000px;}
.x2_c00258{left:29.100000px;}
.x3_c00258{left:30.450000px;}
.xa_c00258{left:32.700000px;}
.xc_c00258{left:33.750000px;}
.x4_c00258{left:49.350000px;}
.x6_c00258{left:52.950000px;}
.x9_c00258{left:55.650000px;}
.xb_c00258{left:57.000000px;}
.x8_c00258{left:62.550000px;}
.x7_c00258{left:66.900000px;}
.x1_c00258{left:197.700000px;}
.xe_c00258{left:229.914230px;}
.xd_c00258{left:274.500000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls6_c00258{letter-spacing:0.000000pt;}
.ls7_c00258{letter-spacing:2.666667pt;}
.ls3_c00258{letter-spacing:4.794667pt;}
.ls4_c00258{letter-spacing:6.018667pt;}
.ls1_c00258{letter-spacing:8.000000pt;}
.ls0_c00258{letter-spacing:8.978667pt;}
.ls2_c00258{letter-spacing:16.152000pt;}
.ls5_c00258{letter-spacing:18.666667pt;}
.ws0_c00258{word-spacing:-29.333333pt;}
.ws2_c00258{word-spacing:-22.781333pt;}
.ws4_c00258{word-spacing:-18.288000pt;}
.ws3_c00258{word-spacing:-17.352000pt;}
.ws1_c00258{word-spacing:-14.781333pt;}
.ws7_c00258{word-spacing:0.000000pt;}
.ws6_c00258{word-spacing:1.962667pt;}
.ws5_c00258{word-spacing:3.250667pt;}
._21_c00258{margin-left:-23.952000pt;}
._20_c00258{margin-left:-22.856000pt;}
._19_c00258{margin-left:-17.173333pt;}
._22_c00258{margin-left:-15.101333pt;}
._1_c00258{margin-left:-13.922667pt;}
._1d_c00258{margin-left:-12.186667pt;}
._23_c00258{margin-left:-11.189333pt;}
._1b_c00258{margin-left:-9.813333pt;}
._d_c00258{margin-left:-8.648000pt;}
._e_c00258{margin-left:-7.728000pt;}
._9_c00258{margin-left:-6.045333pt;}
._4_c00258{margin-left:-4.504000pt;}
._f_c00258{margin-left:-3.346667pt;}
._6_c00258{margin-left:-2.085333pt;}
._7_c00258{margin-left:-1.104000pt;}
._0_c00258{width:1.104000pt;}
._14_c00258{width:2.234667pt;}
._8_c00258{width:3.128000pt;}
._a_c00258{width:4.416000pt;}
._2_c00258{width:6.194667pt;}
._1e_c00258{width:7.474667pt;}
._3_c00258{width:8.402667pt;}
._15_c00258{width:9.642667pt;}
._18_c00258{width:10.978667pt;}
._12_c00258{width:11.933333pt;}
._c_c00258{width:12.941333pt;}
._27_c00258{width:14.725333pt;}
._10_c00258{width:15.885333pt;}
._b_c00258{width:16.928000pt;}
._11_c00258{width:18.434667pt;}
._17_c00258{width:20.826667pt;}
._1c_c00258{width:21.834667pt;}
._24_c00258{width:24.165333pt;}
._25_c00258{width:34.072000pt;}
._1a_c00258{width:37.168000pt;}
._1f_c00258{width:39.530667pt;}
._26_c00258{width:44.488000pt;}
._16_c00258{width:104.248000pt;}
._13_c00258{width:141.224000pt;}
._5_c00258{width:453.989333pt;}
._28_c00258{width:492.874667pt;}
.fs5_c00258{font-size:42.666667pt;}
.fs4_c00258{font-size:53.333333pt;}
.fs1_c00258{font-size:58.666667pt;}
.fs0_c00258{font-size:61.333333pt;}
.fs3_c00258{font-size:69.333333pt;}
.fs2_c00258{font-size:72.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y1e_c00258{bottom:2.760000pt;}
.y1d_c00258{bottom:6.425219pt;}
.y1c_c00258{bottom:63.613333pt;}
.y1b_c00258{bottom:84.013333pt;}
.y1a_c00258{bottom:106.546667pt;}
.y19_c00258{bottom:128.680000pt;}
.y18_c00258{bottom:150.413333pt;}
.y17_c00258{bottom:173.080000pt;}
.y16_c00258{bottom:195.346667pt;}
.y15_c00258{bottom:217.880000pt;}
.y14_c00258{bottom:240.013333pt;}
.y13_c00258{bottom:284.680000pt;}
.y12_c00258{bottom:328.546667pt;}
.y11_c00258{bottom:350.680000pt;}
.y10_c00258{bottom:372.680000pt;}
.yf_c00258{bottom:394.813333pt;}
.ye_c00258{bottom:416.680000pt;}
.yd_c00258{bottom:438.946667pt;}
.yc_c00258{bottom:460.546667pt;}
.yb_c00258{bottom:482.413333pt;}
.ya_c00258{bottom:504.413333pt;}
.y9_c00258{bottom:526.280000pt;}
.y8_c00258{bottom:548.680000pt;}
.y7_c00258{bottom:570.680000pt;}
.y6_c00258{bottom:592.813333pt;}
.y5_c00258{bottom:614.680000pt;}
.y4_c00258{bottom:636.680000pt;}
.y3_c00258{bottom:658.813333pt;}
.y2_c00258{bottom:681.080000pt;}
.y1_c00258{bottom:702.946667pt;}
.h7_c00258{height:11.733399pt;}
.h8_c00258{height:38.937500pt;}
.h4_c00258{height:71.785156pt;}
.h2_c00258{height:77.654948pt;}
.h5_c00258{height:81.148438pt;}
.h6_c00258{height:87.783854pt;}
.h3_c00258{height:91.160156pt;}
.h1_c00258{height:726.666667pt;}
.h0_c00258{height:726.733333pt;}
.w2_c00258{width:93.222667pt;}
.w0_c00258{width:494.400000pt;}
.w1_c00258{width:494.666667pt;}
.x0_c00258{left:0.000000pt;}
.x5_c00258{left:24.000000pt;}
.x2_c00258{left:25.866667pt;}
.x3_c00258{left:27.066667pt;}
.xa_c00258{left:29.066667pt;}
.xc_c00258{left:30.000000pt;}
.x4_c00258{left:43.866667pt;}
.x6_c00258{left:47.066667pt;}
.x9_c00258{left:49.466667pt;}
.xb_c00258{left:50.666667pt;}
.x8_c00258{left:55.600000pt;}
.x7_c00258{left:59.466667pt;}
.x1_c00258{left:175.733333pt;}
.xe_c00258{left:204.368205pt;}
.xd_c00258{left:244.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_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_758da04d489725a22a47c9aa.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.568848;font-style:normal;font-weight:normal;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_2088b3fee422a0f799de5cec.woff2')format("woff");}.ff2_c00259{font-family:ff2_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:ff3_c00259;src:url('chunks/assets/font_ab75ab6176c361450e833d9e.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00259{font-family:ff4_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;}
.ls3_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:1.200000px;}
.ls2_c00259{letter-spacing:3.000000px;}
.ls4_c00259{letter-spacing:9.000000px;}
.ls0_c00259{letter-spacing:12.525000px;}
.ls5_c00259{letter-spacing:78.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;}
}
.ws1_c00259{word-spacing:-94.629000px;}
.ws0_c00259{word-spacing:-16.629000px;}
.ws2_c00259{word-spacing:0.000000px;}
._21_c00259{margin-left:-19.182000px;}
._19_c00259{margin-left:-17.973000px;}
._a_c00259{margin-left:-16.422000px;}
._1a_c00259{margin-left:-14.718000px;}
._8_c00259{margin-left:-13.662000px;}
._18_c00259{margin-left:-11.550000px;}
._d_c00259{margin-left:-9.219000px;}
._20_c00259{margin-left:-7.656000px;}
._4_c00259{margin-left:-6.555000px;}
._3_c00259{margin-left:-4.899000px;}
._2_c00259{margin-left:-2.898000px;}
._5_c00259{margin-left:-1.518000px;}
._0_c00259{width:1.587000px;}
._9_c00259{width:2.622000px;}
._6_c00259{width:4.209000px;}
._b_c00259{width:5.589000px;}
._13_c00259{width:6.762000px;}
._12_c00259{width:7.890000px;}
._15_c00259{width:9.108000px;}
._17_c00259{width:10.122000px;}
._22_c00259{width:11.127000px;}
._c_c00259{width:12.261000px;}
._7_c00259{width:13.455000px;}
._1e_c00259{width:14.472000px;}
._f_c00259{width:16.119000px;}
._14_c00259{width:17.385000px;}
._1d_c00259{width:18.822000px;}
._11_c00259{width:20.871000px;}
._1f_c00259{width:21.924000px;}
._10_c00259{width:22.977000px;}
._1b_c00259{width:24.138000px;}
._16_c00259{width:25.620000px;}
._1c_c00259{width:26.913000px;}
._24_c00259{width:30.528000px;}
._23_c00259{width:32.568000px;}
._e_c00259{width:370.590000px;}
._1_c00259{width:383.250000px;}
.fc2_c00259{color:transparent;}
.fc1_c00259{color:rgb(128,128,128);}
.fc0_c00259{color:rgb(0,0,0);}
.fs3_c00259{font-size:45.000000px;}
.fs5_c00259{font-size:48.000000px;}
.fs2_c00259{font-size:54.000000px;}
.fs4_c00259{font-size:66.000000px;}
.fs0_c00259{font-size:69.000000px;}
.fs1_c00259{font-size:84.000000px;}
.y0_c00259{bottom:0.000000px;}
.y1a_c00259{bottom:3.105000px;}
.y19_c00259{bottom:7.228363px;}
.y18_c00259{bottom:165.000000px;}
.y17_c00259{bottom:190.650000px;}
.y16_c00259{bottom:215.700000px;}
.y15_c00259{bottom:240.750000px;}
.y14_c00259{bottom:266.250000px;}
.y13_c00259{bottom:291.000000px;}
.y12_c00259{bottom:316.200000px;}
.y11_c00259{bottom:364.950000px;}
.y10_c00259{bottom:403.350000px;}
.yf_c00259{bottom:422.550000px;}
.ye_c00259{bottom:440.400000px;}
.yd_c00259{bottom:476.550000px;}
.yc_c00259{bottom:513.900000px;}
.yb_c00259{bottom:538.650000px;}
.ya_c00259{bottom:563.400000px;}
.y9_c00259{bottom:588.600000px;}
.y8_c00259{bottom:613.200000px;}
.y7_c00259{bottom:639.000000px;}
.y6_c00259{bottom:661.500000px;}
.y5_c00259{bottom:687.900000px;}
.y4_c00259{bottom:713.250000px;}
.y3_c00259{bottom:738.000000px;}
.y2_c00259{bottom:762.750000px;}
.y1_c00259{bottom:787.950000px;}
.h6_c00259{height:13.200074px;}
.h7_c00259{height:43.804688px;}
.h5_c00259{height:68.370117px;}
.h4_c00259{height:80.758301px;}
.h2_c00259{height:87.361816px;}
.h3_c00259{height:106.353516px;}
.h1_c00259{height:827.250000px;}
.h0_c00259{height:827.550000px;}
.w2_c00259{width:104.875500px;}
.w0_c00259{width:572.100000px;}
.w1_c00259{width:572.250000px;}
.x0_c00259{left:0.000000px;}
.x3_c00259{left:80.100000px;}
.xc_c00259{left:96.150000px;}
.xd_c00259{left:99.450000px;}
.xa_c00259{left:100.950000px;}
.x7_c00259{left:102.000000px;}
.x5_c00259{left:103.950000px;}
.x4_c00259{left:105.300000px;}
.x2_c00259{left:108.300000px;}
.x9_c00259{left:117.900000px;}
.x1_c00259{left:121.800000px;}
.xb_c00259{left:125.850000px;}
.x6_c00259{left:126.900000px;}
.xe_c00259{left:237.864258px;}
.x8_c00259{left:251.850000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls3_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:1.066667pt;}
.ls2_c00259{letter-spacing:2.666667pt;}
.ls4_c00259{letter-spacing:8.000000pt;}
.ls0_c00259{letter-spacing:11.133333pt;}
.ls5_c00259{letter-spacing:69.333333pt;}
.ws1_c00259{word-spacing:-84.114667pt;}
.ws0_c00259{word-spacing:-14.781333pt;}
.ws2_c00259{word-spacing:0.000000pt;}
._21_c00259{margin-left:-17.050667pt;}
._19_c00259{margin-left:-15.976000pt;}
._a_c00259{margin-left:-14.597333pt;}
._1a_c00259{margin-left:-13.082667pt;}
._8_c00259{margin-left:-12.144000pt;}
._18_c00259{margin-left:-10.266667pt;}
._d_c00259{margin-left:-8.194667pt;}
._20_c00259{margin-left:-6.805333pt;}
._4_c00259{margin-left:-5.826667pt;}
._3_c00259{margin-left:-4.354667pt;}
._2_c00259{margin-left:-2.576000pt;}
._5_c00259{margin-left:-1.349333pt;}
._0_c00259{width:1.410667pt;}
._9_c00259{width:2.330667pt;}
._6_c00259{width:3.741333pt;}
._b_c00259{width:4.968000pt;}
._13_c00259{width:6.010667pt;}
._12_c00259{width:7.013333pt;}
._15_c00259{width:8.096000pt;}
._17_c00259{width:8.997333pt;}
._22_c00259{width:9.890667pt;}
._c_c00259{width:10.898667pt;}
._7_c00259{width:11.960000pt;}
._1e_c00259{width:12.864000pt;}
._f_c00259{width:14.328000pt;}
._14_c00259{width:15.453333pt;}
._1d_c00259{width:16.730667pt;}
._11_c00259{width:18.552000pt;}
._1f_c00259{width:19.488000pt;}
._10_c00259{width:20.424000pt;}
._1b_c00259{width:21.456000pt;}
._16_c00259{width:22.773333pt;}
._1c_c00259{width:23.922667pt;}
._24_c00259{width:27.136000pt;}
._23_c00259{width:28.949333pt;}
._e_c00259{width:329.413333pt;}
._1_c00259{width:340.666667pt;}
.fs3_c00259{font-size:40.000000pt;}
.fs5_c00259{font-size:42.666667pt;}
.fs2_c00259{font-size:48.000000pt;}
.fs4_c00259{font-size:58.666667pt;}
.fs0_c00259{font-size:61.333333pt;}
.fs1_c00259{font-size:74.666667pt;}
.y0_c00259{bottom:0.000000pt;}
.y1a_c00259{bottom:2.760000pt;}
.y19_c00259{bottom:6.425212pt;}
.y18_c00259{bottom:146.666667pt;}
.y17_c00259{bottom:169.466667pt;}
.y16_c00259{bottom:191.733333pt;}
.y15_c00259{bottom:214.000000pt;}
.y14_c00259{bottom:236.666667pt;}
.y13_c00259{bottom:258.666667pt;}
.y12_c00259{bottom:281.066667pt;}
.y11_c00259{bottom:324.400000pt;}
.y10_c00259{bottom:358.533333pt;}
.yf_c00259{bottom:375.600000pt;}
.ye_c00259{bottom:391.466667pt;}
.yd_c00259{bottom:423.600000pt;}
.yc_c00259{bottom:456.800000pt;}
.yb_c00259{bottom:478.800000pt;}
.ya_c00259{bottom:500.800000pt;}
.y9_c00259{bottom:523.200000pt;}
.y8_c00259{bottom:545.066667pt;}
.y7_c00259{bottom:568.000000pt;}
.y6_c00259{bottom:588.000000pt;}
.y5_c00259{bottom:611.466667pt;}
.y4_c00259{bottom:634.000000pt;}
.y3_c00259{bottom:656.000000pt;}
.y2_c00259{bottom:678.000000pt;}
.y1_c00259{bottom:700.400000pt;}
.h6_c00259{height:11.733399pt;}
.h7_c00259{height:38.937500pt;}
.h5_c00259{height:60.773438pt;}
.h4_c00259{height:71.785156pt;}
.h2_c00259{height:77.654948pt;}
.h3_c00259{height:94.536458pt;}
.h1_c00259{height:735.333333pt;}
.h0_c00259{height:735.600000pt;}
.w2_c00259{width:93.222667pt;}
.w0_c00259{width:508.533333pt;}
.w1_c00259{width:508.666667pt;}
.x0_c00259{left:0.000000pt;}
.x3_c00259{left:71.200000pt;}
.xc_c00259{left:85.466667pt;}
.xd_c00259{left:88.400000pt;}
.xa_c00259{left:89.733333pt;}
.x7_c00259{left:90.666667pt;}
.x5_c00259{left:92.400000pt;}
.x4_c00259{left:93.600000pt;}
.x2_c00259{left:96.266667pt;}
.x9_c00259{left:104.800000pt;}
.x1_c00259{left:108.266667pt;}
.xb_c00259{left:111.866667pt;}
.x6_c00259{left:112.800000pt;}
.xe_c00259{left:211.434896pt;}
.x8_c00259{left:223.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_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_5fa5cce43ef4dcf49cc242b5.woff2')format("woff");}.ff1_c00260{font-family:ff1_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:ff2_c00260;src:url('chunks/assets/font_ebdfed99689e49d1d9cd58a6.woff2')format("woff");}.ff2_c00260{font-family:ff2_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:ff3_c00260;src:url('chunks/assets/font_4bb65207ea31623ccd84efd2.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00260{font-family:ff4_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;}
.ls4_c00260{letter-spacing:0.000000px;}
.ls3_c00260{letter-spacing:3.000000px;}
.ls1_c00260{letter-spacing:5.730000px;}
.ls0_c00260{letter-spacing:9.000000px;}
.ls2_c00260{letter-spacing:48.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-64.629000px;}
.ws1_c00260{word-spacing:-25.629000px;}
.ws2_c00260{word-spacing:-16.629000px;}
.ws3_c00260{word-spacing:0.000000px;}
._2a_c00260{margin-left:-28.899000px;}
._27_c00260{margin-left:-24.741000px;}
._21_c00260{margin-left:-22.047000px;}
._1a_c00260{margin-left:-20.562000px;}
._20_c00260{margin-left:-18.075000px;}
._1c_c00260{margin-left:-16.077000px;}
._f_c00260{margin-left:-14.628000px;}
._1f_c00260{margin-left:-12.423000px;}
._11_c00260{margin-left:-10.146000px;}
._6_c00260{margin-left:-8.832000px;}
._d_c00260{margin-left:-6.453000px;}
._9_c00260{margin-left:-4.932000px;}
._5_c00260{margin-left:-3.519000px;}
._7_c00260{margin-left:-2.070000px;}
._15_c00260{margin-left:-1.035000px;}
._8_c00260{width:1.035000px;}
._4_c00260{width:2.553000px;}
._c_c00260{width:3.588000px;}
._b_c00260{width:5.037000px;}
._1d_c00260{width:6.555000px;}
._0_c00260{width:7.590000px;}
._1_c00260{width:9.039000px;}
._2_c00260{width:10.350000px;}
._3_c00260{width:11.523000px;}
._22_c00260{width:12.555000px;}
._e_c00260{width:13.590000px;}
._1e_c00260{width:14.904000px;}
._a_c00260{width:17.940000px;}
._13_c00260{width:19.665000px;}
._24_c00260{width:20.772000px;}
._12_c00260{width:22.077000px;}
._17_c00260{width:23.184000px;}
._16_c00260{width:24.402000px;}
._1b_c00260{width:25.668000px;}
._26_c00260{width:27.036000px;}
._28_c00260{width:28.707000px;}
._30_c00260{width:30.360000px;}
._25_c00260{width:31.614000px;}
._29_c00260{width:33.465000px;}
._31_c00260{width:35.742000px;}
._23_c00260{width:40.260000px;}
._2e_c00260{width:44.982000px;}
._2c_c00260{width:49.785000px;}
._2d_c00260{width:52.821000px;}
._32_c00260{width:65.136000px;}
._18_c00260{width:107.883000px;}
._2f_c00260{width:109.629000px;}
._2b_c00260{width:114.960000px;}
._14_c00260{width:150.420000px;}
._10_c00260{width:160.974000px;}
._19_c00260{width:176.556000px;}
._33_c00260{width:456.465000px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(128,128,128);}
.fc0_c00260{color:rgb(0,0,0);}
.fs1_c00260{font-size:48.000000px;}
.fs0_c00260{font-size:69.000000px;}
.y0_c00260{bottom:0.000000px;}
.y1b_c00260{bottom:3.105000px;}
.y1a_c00260{bottom:7.228371px;}
.y19_c00260{bottom:68.565000px;}
.y18_c00260{bottom:93.615000px;}
.y17_c00260{bottom:119.115000px;}
.y16_c00260{bottom:144.915000px;}
.y15_c00260{bottom:169.065000px;}
.y14_c00260{bottom:193.815000px;}
.y13_c00260{bottom:219.015000px;}
.y12_c00260{bottom:244.065000px;}
.y11_c00260{bottom:269.115000px;}
.y10_c00260{bottom:294.315000px;}
.yf_c00260{bottom:319.365000px;}
.ye_c00260{bottom:343.965000px;}
.yd_c00260{bottom:368.865000px;}
.yc_c00260{bottom:393.615000px;}
.yb_c00260{bottom:418.515000px;}
.ya_c00260{bottom:443.265000px;}
.y9_c00260{bottom:468.165000px;}
.y8_c00260{bottom:492.465000px;}
.y7_c00260{bottom:517.365000px;}
.y6_c00260{bottom:541.665000px;}
.y5_c00260{bottom:566.415000px;}
.y4_c00260{bottom:591.615000px;}
.y3_c00260{bottom:640.365000px;}
.y2_c00260{bottom:665.265000px;}
.y1_c00260{bottom:715.215000px;}
.h4_c00260{height:13.200074px;}
.h5_c00260{height:43.804688px;}
.h2_c00260{height:80.758301px;}
.h3_c00260{height:87.361816px;}
.h1_c00260{height:831.000000px;}
.h0_c00260{height:831.075000px;}
.w2_c00260{width:104.875500px;}
.w0_c00260{width:566.175000px;}
.w1_c00260{width:566.250000px;}
.x0_c00260{left:0.000000px;}
.xa_c00260{left:27.450000px;}
.x8_c00260{left:28.800000px;}
.x7_c00260{left:30.750000px;}
.x6_c00260{left:31.800000px;}
.x5_c00260{left:33.000000px;}
.x3_c00260{left:34.350000px;}
.x4_c00260{left:57.300000px;}
.x2_c00260{left:70.800000px;}
.x9_c00260{left:74.550000px;}
.x1_c00260{left:147.150000px;}
.xc_c00260{left:234.901749px;}
.xb_c00260{left:294.600000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls4_c00260{letter-spacing:0.000000pt;}
.ls3_c00260{letter-spacing:2.666667pt;}
.ls1_c00260{letter-spacing:5.093333pt;}
.ls0_c00260{letter-spacing:8.000000pt;}
.ls2_c00260{letter-spacing:42.666667pt;}
.ws0_c00260{word-spacing:-57.448000pt;}
.ws1_c00260{word-spacing:-22.781333pt;}
.ws2_c00260{word-spacing:-14.781333pt;}
.ws3_c00260{word-spacing:0.000000pt;}
._2a_c00260{margin-left:-25.688000pt;}
._27_c00260{margin-left:-21.992000pt;}
._21_c00260{margin-left:-19.597333pt;}
._1a_c00260{margin-left:-18.277333pt;}
._20_c00260{margin-left:-16.066667pt;}
._1c_c00260{margin-left:-14.290667pt;}
._f_c00260{margin-left:-13.002667pt;}
._1f_c00260{margin-left:-11.042667pt;}
._11_c00260{margin-left:-9.018667pt;}
._6_c00260{margin-left:-7.850667pt;}
._d_c00260{margin-left:-5.736000pt;}
._9_c00260{margin-left:-4.384000pt;}
._5_c00260{margin-left:-3.128000pt;}
._7_c00260{margin-left:-1.840000pt;}
._15_c00260{margin-left:-0.920000pt;}
._8_c00260{width:0.920000pt;}
._4_c00260{width:2.269333pt;}
._c_c00260{width:3.189333pt;}
._b_c00260{width:4.477333pt;}
._1d_c00260{width:5.826667pt;}
._0_c00260{width:6.746667pt;}
._1_c00260{width:8.034667pt;}
._2_c00260{width:9.200000pt;}
._3_c00260{width:10.242667pt;}
._22_c00260{width:11.160000pt;}
._e_c00260{width:12.080000pt;}
._1e_c00260{width:13.248000pt;}
._a_c00260{width:15.946667pt;}
._13_c00260{width:17.480000pt;}
._24_c00260{width:18.464000pt;}
._12_c00260{width:19.624000pt;}
._17_c00260{width:20.608000pt;}
._16_c00260{width:21.690667pt;}
._1b_c00260{width:22.816000pt;}
._26_c00260{width:24.032000pt;}
._28_c00260{width:25.517333pt;}
._30_c00260{width:26.986667pt;}
._25_c00260{width:28.101333pt;}
._29_c00260{width:29.746667pt;}
._31_c00260{width:31.770667pt;}
._23_c00260{width:35.786667pt;}
._2e_c00260{width:39.984000pt;}
._2c_c00260{width:44.253333pt;}
._2d_c00260{width:46.952000pt;}
._32_c00260{width:57.898667pt;}
._18_c00260{width:95.896000pt;}
._2f_c00260{width:97.448000pt;}
._2b_c00260{width:102.186667pt;}
._14_c00260{width:133.706667pt;}
._10_c00260{width:143.088000pt;}
._19_c00260{width:156.938667pt;}
._33_c00260{width:405.746667pt;}
.fs1_c00260{font-size:42.666667pt;}
.fs0_c00260{font-size:61.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y1b_c00260{bottom:2.760000pt;}
.y1a_c00260{bottom:6.425219pt;}
.y19_c00260{bottom:60.946667pt;}
.y18_c00260{bottom:83.213333pt;}
.y17_c00260{bottom:105.880000pt;}
.y16_c00260{bottom:128.813333pt;}
.y15_c00260{bottom:150.280000pt;}
.y14_c00260{bottom:172.280000pt;}
.y13_c00260{bottom:194.680000pt;}
.y12_c00260{bottom:216.946667pt;}
.y11_c00260{bottom:239.213333pt;}
.y10_c00260{bottom:261.613333pt;}
.yf_c00260{bottom:283.880000pt;}
.ye_c00260{bottom:305.746667pt;}
.yd_c00260{bottom:327.880000pt;}
.yc_c00260{bottom:349.880000pt;}
.yb_c00260{bottom:372.013333pt;}
.ya_c00260{bottom:394.013333pt;}
.y9_c00260{bottom:416.146667pt;}
.y8_c00260{bottom:437.746667pt;}
.y7_c00260{bottom:459.880000pt;}
.y6_c00260{bottom:481.480000pt;}
.y5_c00260{bottom:503.480000pt;}
.y4_c00260{bottom:525.880000pt;}
.y3_c00260{bottom:569.213333pt;}
.y2_c00260{bottom:591.346667pt;}
.y1_c00260{bottom:635.746667pt;}
.h4_c00260{height:11.733399pt;}
.h5_c00260{height:38.937500pt;}
.h2_c00260{height:71.785156pt;}
.h3_c00260{height:77.654948pt;}
.h1_c00260{height:738.666667pt;}
.h0_c00260{height:738.733333pt;}
.w2_c00260{width:93.222667pt;}
.w0_c00260{width:503.266667pt;}
.w1_c00260{width:503.333333pt;}
.x0_c00260{left:0.000000pt;}
.xa_c00260{left:24.400000pt;}
.x8_c00260{left:25.600000pt;}
.x7_c00260{left:27.333333pt;}
.x6_c00260{left:28.266667pt;}
.x5_c00260{left:29.333333pt;}
.x3_c00260{left:30.533333pt;}
.x4_c00260{left:50.933333pt;}
.x2_c00260{left:62.933333pt;}
.x9_c00260{left:66.266667pt;}
.x1_c00260{left:130.800000pt;}
.xc_c00260{left:208.801554pt;}
.xb_c00260{left:261.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_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_a520c3e3a7e3402da879ef32.woff2')format("woff");}.ff1_c00261{font-family:ff1_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:ff2_c00261;src:url('chunks/assets/font_be535e8876c3be82078f3d4a.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_cfb5c42ef3b3a24c9335ba3c.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.568848;font-style:normal;font-weight:normal;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_883a4fe8880dcbdc06a72ef9.woff2')format("woff");}.ff4_c00261{font-family:ff4_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:ff5_c00261;src:url('chunks/assets/font_bafd1305bdd797a7187e7330.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;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_c00261;src:url('chunks/assets/font_a2d32384a57c039417c914ab.woff2')format("woff");}.ff6_c00261{font-family:ff6_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:ff7_c00261;src:url('chunks/assets/font_772efb095818c138baf51910.woff2')format("woff");}.ff7_c00261{font-family:ff7_c00261;line-height:1.568848;font-style:normal;font-weight: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_c00261;src:url('chunks/assets/font_5c6ace82e0f7bd33ec25f7ac.woff2')format("woff");}.ff8_c00261{font-family:ff8_c00261;line-height:1.437000;font-style:normal;font-weight: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_c00261;src:url('chunks/assets/font_c2e5f628bbccef9eeb6c6eb0.woff2')format("woff");}.ff9_c00261{font-family:ff9_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:ffa_c00261;src:url('chunks/assets/font_42c6f71cbe15a3a25258d256.woff2')format("woff");}.ffa_c00261{font-family:ffa_c00261;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_c00261;src:url('chunks/assets/font_85bcdc11b7b03bd07a2deb62.woff2')format("woff");}.ffb_c00261{font-family:ffb_c00261;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:ffc_c00261;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffc_c00261{font-family:ffc_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;}
.m2_c00261{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_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);}
.v2_c00261{vertical-align:-108.000000px;}
.v0_c00261{vertical-align:0.000000px;}
.v1_c00261{vertical-align:52.800000px;}
.ls4_c00261{letter-spacing:0.000000px;}
.ls1_c00261{letter-spacing:3.000000px;}
.ls7_c00261{letter-spacing:6.000000px;}
.ls6_c00261{letter-spacing:9.000000px;}
.ls0_c00261{letter-spacing:12.240000px;}
.ls3_c00261{letter-spacing:18.160800px;}
.ls2_c00261{letter-spacing:37.410000px;}
.ls5_c00261{letter-spacing:54.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-70.629000px;}
.ws7_c00261{word-spacing:-29.244000px;}
.ws6_c00261{word-spacing:-27.168000px;}
.ws2_c00261{word-spacing:-25.629000px;}
.ws0_c00261{word-spacing:-16.629000px;}
.ws5_c00261{word-spacing:-13.737000px;}
.ws4_c00261{word-spacing:-11.568000px;}
.ws3_c00261{word-spacing:-2.307000px;}
.ws8_c00261{word-spacing:0.000000px;}
._2b_c00261{margin-left:-28.635000px;}
._3b_c00261{margin-left:-18.711000px;}
._22_c00261{margin-left:-17.598000px;}
._37_c00261{margin-left:-16.362000px;}
._2f_c00261{margin-left:-13.914000px;}
._f_c00261{margin-left:-12.375000px;}
._1f_c00261{margin-left:-11.223000px;}
._b_c00261{margin-left:-9.936000px;}
._18_c00261{margin-left:-8.763000px;}
._11_c00261{margin-left:-7.176000px;}
._8_c00261{margin-left:-5.934000px;}
._7_c00261{margin-left:-4.278000px;}
._3_c00261{margin-left:-3.036000px;}
._2_c00261{margin-left:-1.863000px;}
._4_c00261{width:1.311000px;}
._0_c00261{width:2.346000px;}
._15_c00261{width:3.381000px;}
._19_c00261{width:4.899000px;}
._1c_c00261{width:6.141000px;}
._5_c00261{width:7.590000px;}
._2d_c00261{width:8.682000px;}
._17_c00261{width:9.795000px;}
._13_c00261{width:10.953000px;}
._6_c00261{width:13.041000px;}
._1e_c00261{width:14.835000px;}
._2e_c00261{width:16.485000px;}
._1a_c00261{width:17.823000px;}
._12_c00261{width:19.665000px;}
._9_c00261{width:21.183000px;}
._31_c00261{width:23.367000px;}
._e_c00261{width:24.561000px;}
._d_c00261{width:26.034000px;}
._c_c00261{width:28.146000px;}
._a_c00261{width:30.153000px;}
._33_c00261{width:31.188000px;}
._2a_c00261{width:32.331000px;}
._14_c00261{width:34.155000px;}
._35_c00261{width:35.544000px;}
._32_c00261{width:36.984000px;}
._10_c00261{width:38.616000px;}
._39_c00261{width:43.179000px;}
._3d_c00261{width:46.929000px;}
._16_c00261{width:50.232000px;}
._3e_c00261{width:53.448000px;}
._28_c00261{width:57.330000px;}
._38_c00261{width:65.583000px;}
._29_c00261{width:73.515000px;}
._27_c00261{width:80.859000px;}
._3a_c00261{width:99.732000px;}
._21_c00261{width:105.477000px;}
._36_c00261{width:112.179000px;}
._34_c00261{width:114.651000px;}
._26_c00261{width:139.710000px;}
._23_c00261{width:145.938000px;}
._2c_c00261{width:156.492000px;}
._30_c00261{width:166.629000px;}
._1d_c00261{width:189.543000px;}
._20_c00261{width:191.763000px;}
._24_c00261{width:235.638000px;}
._1b_c00261{width:252.195000px;}
._3c_c00261{width:310.914000px;}
._25_c00261{width:355.635000px;}
._1_c00261{width:370.392000px;}
.fc2_c00261{color:transparent;}
.fc1_c00261{color:rgb(128,128,128);}
.fc0_c00261{color:rgb(0,0,0);}
.fs3_c00261{font-size:42.000000px;}
.fs2_c00261{font-size:45.000000px;}
.fs7_c00261{font-size:48.000000px;}
.fs9_c00261{font-size:51.000000px;}
.fs6_c00261{font-size:54.000000px;}
.fs5_c00261{font-size:55.200000px;}
.fs8_c00261{font-size:57.000000px;}
.fsb_c00261{font-size:60.000000px;}
.fs4_c00261{font-size:63.000000px;}
.fs0_c00261{font-size:69.000000px;}
.fsd_c00261{font-size:72.000000px;}
.fs1_c00261{font-size:75.000000px;}
.fse_c00261{font-size:84.000000px;}
.fsa_c00261{font-size:87.000000px;}
.fsc_c00261{font-size:96.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1f_c00261{bottom:3.105000px;}
.y1e_c00261{bottom:7.228357px;}
.y1d_c00261{bottom:62.880000px;}
.y1c_c00261{bottom:86.430000px;}
.y1b_c00261{bottom:138.030000px;}
.y1a_c00261{bottom:164.130000px;}
.y19_c00261{bottom:240.630000px;}
.y18_c00261{bottom:260.580000px;}
.y17_c00261{bottom:278.430000px;}
.y13_c00261{bottom:292.680000px;}
.y16_c00261{bottom:295.980000px;}
.y12_c00261{bottom:305.880000px;}
.y15_c00261{bottom:313.830000px;}
.y14_c00261{bottom:330.780000px;}
.y11_c00261{bottom:371.280000px;}
.y10_c00261{bottom:427.380000px;}
.yf_c00261{bottom:452.880000px;}
.ye_c00261{bottom:477.630000px;}
.yd_c00261{bottom:502.980000px;}
.yc_c00261{bottom:527.580000px;}
.yb_c00261{bottom:551.430000px;}
.ya_c00261{bottom:564.630000px;}
.y9_c00261{bottom:596.130000px;}
.y8_c00261{bottom:602.130000px;}
.y7_c00261{bottom:627.480000px;}
.y6_c00261{bottom:652.380000px;}
.y5_c00261{bottom:677.430000px;}
.y4_c00261{bottom:702.780000px;}
.y3_c00261{bottom:727.380000px;}
.y2_c00261{bottom:752.730000px;}
.y1_c00261{bottom:777.630000px;}
.h10_c00261{height:13.200074px;}
.h11_c00261{height:43.804688px;}
.h4_c00261{height:45.528000px;}
.h8_c00261{height:56.179688px;}
.he_c00261{height:58.857422px;}
.ha_c00261{height:60.773438px;}
.hc_c00261{height:64.571777px;}
.h9_c00261{height:66.713379px;}
.h6_c00261{height:68.370117px;}
.hb_c00261{height:72.168457px;}
.h7_c00261{height:79.765137px;}
.h1_c00261{height:80.758301px;}
.h3_c00261{height:87.361816px;}
.h2_c00261{height:87.780762px;}
.hd_c00261{height:91.176000px;}
.hf_c00261{height:106.353516px;}
.h5_c00261{height:140.161816px;}
.h0_c00261{height:819.750000px;}
.w2_c00261{width:104.875500px;}
.w1_c00261{width:566.250000px;}
.w0_c00261{width:566.475000px;}
.x0_c00261{left:0.000000px;}
.x23_c00261{left:28.650000px;}
.x20_c00261{left:31.650000px;}
.xc_c00261{left:32.700000px;}
.x8_c00261{left:37.500000px;}
.x18_c00261{left:42.150000px;}
.x1c_c00261{left:43.200000px;}
.xa_c00261{left:51.000000px;}
.x9_c00261{left:54.000000px;}
.x22_c00261{left:92.400000px;}
.x3_c00261{left:100.500000px;}
.x5_c00261{left:102.300000px;}
.x4_c00261{left:103.950000px;}
.x7_c00261{left:105.000000px;}
.x2_c00261{left:106.950000px;}
.x1_c00261{left:117.150000px;}
.x21_c00261{left:120.450000px;}
.xd_c00261{left:164.250000px;}
.x6_c00261{left:173.850000px;}
.xe_c00261{left:216.000000px;}
.x25_c00261{left:235.051758px;}
.xf_c00261{left:239.550000px;}
.xb_c00261{left:241.350000px;}
.x10_c00261{left:253.800000px;}
.x13_c00261{left:257.550000px;}
.x1d_c00261{left:293.550000px;}
.x14_c00261{left:304.050000px;}
.x1e_c00261{left:309.450000px;}
.x19_c00261{left:312.150000px;}
.x1a_c00261{left:316.950000px;}
.x15_c00261{left:396.600000px;}
.x1f_c00261{left:401.250000px;}
.x11_c00261{left:418.500000px;}
.x16_c00261{left:429.600000px;}
.x12_c00261{left:487.950000px;}
.x17_c00261{left:502.500000px;}
.x24_c00261{left:522.750000px;}
.x1b_c00261{left:536.250000px;}
@media print{
.v2_c00261{vertical-align:-96.000000pt;}
.v0_c00261{vertical-align:0.000000pt;}
.v1_c00261{vertical-align:46.933333pt;}
.ls4_c00261{letter-spacing:0.000000pt;}
.ls1_c00261{letter-spacing:2.666667pt;}
.ls7_c00261{letter-spacing:5.333333pt;}
.ls6_c00261{letter-spacing:8.000000pt;}
.ls0_c00261{letter-spacing:10.880000pt;}
.ls3_c00261{letter-spacing:16.142933pt;}
.ls2_c00261{letter-spacing:33.253333pt;}
.ls5_c00261{letter-spacing:48.000000pt;}
.ws1_c00261{word-spacing:-62.781333pt;}
.ws7_c00261{word-spacing:-25.994667pt;}
.ws6_c00261{word-spacing:-24.149333pt;}
.ws2_c00261{word-spacing:-22.781333pt;}
.ws0_c00261{word-spacing:-14.781333pt;}
.ws5_c00261{word-spacing:-12.210667pt;}
.ws4_c00261{word-spacing:-10.282667pt;}
.ws3_c00261{word-spacing:-2.050667pt;}
.ws8_c00261{word-spacing:0.000000pt;}
._2b_c00261{margin-left:-25.453333pt;}
._3b_c00261{margin-left:-16.632000pt;}
._22_c00261{margin-left:-15.642667pt;}
._37_c00261{margin-left:-14.544000pt;}
._2f_c00261{margin-left:-12.368000pt;}
._f_c00261{margin-left:-11.000000pt;}
._1f_c00261{margin-left:-9.976000pt;}
._b_c00261{margin-left:-8.832000pt;}
._18_c00261{margin-left:-7.789333pt;}
._11_c00261{margin-left:-6.378667pt;}
._8_c00261{margin-left:-5.274667pt;}
._7_c00261{margin-left:-3.802667pt;}
._3_c00261{margin-left:-2.698667pt;}
._2_c00261{margin-left:-1.656000pt;}
._4_c00261{width:1.165333pt;}
._0_c00261{width:2.085333pt;}
._15_c00261{width:3.005333pt;}
._19_c00261{width:4.354667pt;}
._1c_c00261{width:5.458667pt;}
._5_c00261{width:6.746667pt;}
._2d_c00261{width:7.717333pt;}
._17_c00261{width:8.706667pt;}
._13_c00261{width:9.736000pt;}
._6_c00261{width:11.592000pt;}
._1e_c00261{width:13.186667pt;}
._2e_c00261{width:14.653333pt;}
._1a_c00261{width:15.842667pt;}
._12_c00261{width:17.480000pt;}
._9_c00261{width:18.829333pt;}
._31_c00261{width:20.770667pt;}
._e_c00261{width:21.832000pt;}
._d_c00261{width:23.141333pt;}
._c_c00261{width:25.018667pt;}
._a_c00261{width:26.802667pt;}
._33_c00261{width:27.722667pt;}
._2a_c00261{width:28.738667pt;}
._14_c00261{width:30.360000pt;}
._35_c00261{width:31.594667pt;}
._32_c00261{width:32.874667pt;}
._10_c00261{width:34.325333pt;}
._39_c00261{width:38.381333pt;}
._3d_c00261{width:41.714667pt;}
._16_c00261{width:44.650667pt;}
._3e_c00261{width:47.509333pt;}
._28_c00261{width:50.960000pt;}
._38_c00261{width:58.296000pt;}
._29_c00261{width:65.346667pt;}
._27_c00261{width:71.874667pt;}
._3a_c00261{width:88.650667pt;}
._21_c00261{width:93.757333pt;}
._36_c00261{width:99.714667pt;}
._34_c00261{width:101.912000pt;}
._26_c00261{width:124.186667pt;}
._23_c00261{width:129.722667pt;}
._2c_c00261{width:139.104000pt;}
._30_c00261{width:148.114667pt;}
._1d_c00261{width:168.482667pt;}
._20_c00261{width:170.456000pt;}
._24_c00261{width:209.456000pt;}
._1b_c00261{width:224.173333pt;}
._3c_c00261{width:276.368000pt;}
._25_c00261{width:316.120000pt;}
._1_c00261{width:329.237333pt;}
.fs3_c00261{font-size:37.333333pt;}
.fs2_c00261{font-size:40.000000pt;}
.fs7_c00261{font-size:42.666667pt;}
.fs9_c00261{font-size:45.333333pt;}
.fs6_c00261{font-size:48.000000pt;}
.fs5_c00261{font-size:49.066667pt;}
.fs8_c00261{font-size:50.666667pt;}
.fsb_c00261{font-size:53.333333pt;}
.fs4_c00261{font-size:56.000000pt;}
.fs0_c00261{font-size:61.333333pt;}
.fsd_c00261{font-size:64.000000pt;}
.fs1_c00261{font-size:66.666667pt;}
.fse_c00261{font-size:74.666667pt;}
.fsa_c00261{font-size:77.333333pt;}
.fsc_c00261{font-size:85.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y1f_c00261{bottom:2.760000pt;}
.y1e_c00261{bottom:6.425206pt;}
.y1d_c00261{bottom:55.893333pt;}
.y1c_c00261{bottom:76.826667pt;}
.y1b_c00261{bottom:122.693333pt;}
.y1a_c00261{bottom:145.893333pt;}
.y19_c00261{bottom:213.893333pt;}
.y18_c00261{bottom:231.626667pt;}
.y17_c00261{bottom:247.493333pt;}
.y13_c00261{bottom:260.160000pt;}
.y16_c00261{bottom:263.093333pt;}
.y12_c00261{bottom:271.893333pt;}
.y15_c00261{bottom:278.960000pt;}
.y14_c00261{bottom:294.026667pt;}
.y11_c00261{bottom:330.026667pt;}
.y10_c00261{bottom:379.893333pt;}
.yf_c00261{bottom:402.560000pt;}
.ye_c00261{bottom:424.560000pt;}
.yd_c00261{bottom:447.093333pt;}
.yc_c00261{bottom:468.960000pt;}
.yb_c00261{bottom:490.160000pt;}
.ya_c00261{bottom:501.893333pt;}
.y9_c00261{bottom:529.893333pt;}
.y8_c00261{bottom:535.226667pt;}
.y7_c00261{bottom:557.760000pt;}
.y6_c00261{bottom:579.893333pt;}
.y5_c00261{bottom:602.160000pt;}
.y4_c00261{bottom:624.693333pt;}
.y3_c00261{bottom:646.560000pt;}
.y2_c00261{bottom:669.093333pt;}
.y1_c00261{bottom:691.226667pt;}
.h10_c00261{height:11.733399pt;}
.h11_c00261{height:38.937500pt;}
.h4_c00261{height:40.469333pt;}
.h8_c00261{height:49.937500pt;}
.he_c00261{height:52.317708pt;}
.ha_c00261{height:54.020833pt;}
.hc_c00261{height:57.397135pt;}
.h9_c00261{height:59.300781pt;}
.h6_c00261{height:60.773438pt;}
.hb_c00261{height:64.149740pt;}
.h7_c00261{height:70.902344pt;}
.h1_c00261{height:71.785156pt;}
.h3_c00261{height:77.654948pt;}
.h2_c00261{height:78.027344pt;}
.hd_c00261{height:81.045333pt;}
.hf_c00261{height:94.536458pt;}
.h5_c00261{height:124.588281pt;}
.h0_c00261{height:728.666667pt;}
.w2_c00261{width:93.222667pt;}
.w1_c00261{width:503.333333pt;}
.w0_c00261{width:503.533333pt;}
.x0_c00261{left:0.000000pt;}
.x23_c00261{left:25.466667pt;}
.x20_c00261{left:28.133333pt;}
.xc_c00261{left:29.066667pt;}
.x8_c00261{left:33.333333pt;}
.x18_c00261{left:37.466667pt;}
.x1c_c00261{left:38.400000pt;}
.xa_c00261{left:45.333333pt;}
.x9_c00261{left:48.000000pt;}
.x22_c00261{left:82.133333pt;}
.x3_c00261{left:89.333333pt;}
.x5_c00261{left:90.933333pt;}
.x4_c00261{left:92.400000pt;}
.x7_c00261{left:93.333333pt;}
.x2_c00261{left:95.066667pt;}
.x1_c00261{left:104.133333pt;}
.x21_c00261{left:107.066667pt;}
.xd_c00261{left:146.000000pt;}
.x6_c00261{left:154.533333pt;}
.xe_c00261{left:192.000000pt;}
.x25_c00261{left:208.934896pt;}
.xf_c00261{left:212.933333pt;}
.xb_c00261{left:214.533333pt;}
.x10_c00261{left:225.600000pt;}
.x13_c00261{left:228.933333pt;}
.x1d_c00261{left:260.933333pt;}
.x14_c00261{left:270.266667pt;}
.x1e_c00261{left:275.066667pt;}
.x19_c00261{left:277.466667pt;}
.x1a_c00261{left:281.733333pt;}
.x15_c00261{left:352.533333pt;}
.x1f_c00261{left:356.666667pt;}
.x11_c00261{left:372.000000pt;}
.x16_c00261{left:381.866667pt;}
.x12_c00261{left:433.733333pt;}
.x17_c00261{left:446.666667pt;}
.x24_c00261{left:464.666667pt;}
.x1b_c00261{left:476.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_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_3e2e52dff48b005df0e04ef1.woff2')format("woff");}.ff1_c00262{font-family:ff1_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:ff2_c00262;src:url('chunks/assets/font_0f5aab2abd3a7224af6a0309.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.568848;font-style:normal;font-weight:normal;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_75ba70db413959cf8893e62c.woff2')format("woff");}.ff3_c00262{font-family:ff3_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:ff4_c00262;src:url('chunks/assets/font_77a5dda76c7d09ef5152f4b8.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00262{font-family:ff5_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;}
.ls4_c00262{letter-spacing:0.000000px;}
.ls2_c00262{letter-spacing:2.904000px;}
.ls1_c00262{letter-spacing:3.000000px;}
.ls0_c00262{letter-spacing:11.325000px;}
.ls3_c00262{letter-spacing:14.925000px;}
.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:-44.022000px;}
.ws2_c00262{word-spacing:-19.629000px;}
.ws1_c00262{word-spacing:-16.629000px;}
.ws3_c00262{word-spacing:0.000000px;}
._1c_c00262{margin-left:-24.564000px;}
._20_c00262{margin-left:-19.497000px;}
._17_c00262{margin-left:-14.754000px;}
._1f_c00262{margin-left:-9.591000px;}
._13_c00262{margin-left:-7.791000px;}
._b_c00262{margin-left:-6.762000px;}
._5_c00262{margin-left:-4.830000px;}
._d_c00262{margin-left:-3.588000px;}
._6_c00262{margin-left:-2.346000px;}
._c_c00262{margin-left:-1.173000px;}
._1_c00262{width:1.242000px;}
._2_c00262{width:2.898000px;}
._15_c00262{width:3.933000px;}
._4_c00262{width:4.968000px;}
._a_c00262{width:6.072000px;}
._7_c00262{width:7.383000px;}
._f_c00262{width:8.487000px;}
._12_c00262{width:9.798000px;}
._e_c00262{width:11.109000px;}
._0_c00262{width:12.420000px;}
._8_c00262{width:14.007000px;}
._1e_c00262{width:15.111000px;}
._9_c00262{width:16.146000px;}
._10_c00262{width:18.009000px;}
._18_c00262{width:22.461000px;}
._1a_c00262{width:23.946000px;}
._1d_c00262{width:27.774000px;}
._23_c00262{width:29.676000px;}
._16_c00262{width:36.777000px;}
._21_c00262{width:42.987000px;}
._19_c00262{width:48.339000px;}
._14_c00262{width:100.326000px;}
._22_c00262{width:106.254000px;}
._11_c00262{width:208.365000px;}
._1b_c00262{width:213.279000px;}
._24_c00262{width:218.316000px;}
._3_c00262{width:486.441000px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(128,128,128);}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:48.000000px;}
.fs2_c00262{font-size:55.200000px;}
.fs1_c00262{font-size:66.000000px;}
.fs0_c00262{font-size:69.000000px;}
.y0_c00262{bottom:0.000000px;}
.y20_c00262{bottom:3.105000px;}
.y1f_c00262{bottom:7.228371px;}
.y1e_c00262{bottom:68.865000px;}
.y1d_c00262{bottom:93.615000px;}
.y1c_c00262{bottom:119.265000px;}
.y1b_c00262{bottom:144.165000px;}
.y1a_c00262{bottom:168.765000px;}
.y19_c00262{bottom:193.365000px;}
.y18_c00262{bottom:218.415000px;}
.y17_c00262{bottom:243.765000px;}
.y16_c00262{bottom:268.665000px;}
.y15_c00262{bottom:292.965000px;}
.y14_c00262{bottom:318.015000px;}
.y13_c00262{bottom:343.215000px;}
.y12_c00262{bottom:367.665000px;}
.y11_c00262{bottom:392.865000px;}
.y10_c00262{bottom:417.465000px;}
.yf_c00262{bottom:442.215000px;}
.ye_c00262{bottom:467.415000px;}
.yd_c00262{bottom:492.165000px;}
.yc_c00262{bottom:516.465000px;}
.yb_c00262{bottom:540.315000px;}
.ya_c00262{bottom:565.665000px;}
.y9_c00262{bottom:590.715000px;}
.y8_c00262{bottom:615.465000px;}
.y7_c00262{bottom:640.665000px;}
.y6_c00262{bottom:665.865000px;}
.y5_c00262{bottom:690.315000px;}
.y4_c00262{bottom:715.515000px;}
.y3_c00262{bottom:740.865000px;}
.y2_c00262{bottom:765.165000px;}
.y1_c00262{bottom:790.815000px;}
.h4_c00262{height:13.200074px;}
.h5_c00262{height:43.804688px;}
.h2_c00262{height:87.361816px;}
.h3_c00262{height:87.961816px;}
.h1_c00262{height:831.000000px;}
.h0_c00262{height:831.075000px;}
.w2_c00262{width:104.875500px;}
.w0_c00262{width:566.175000px;}
.w1_c00262{width:566.250000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:32.400000px;}
.x3_c00262{left:33.450000px;}
.x4_c00262{left:35.400000px;}
.x1_c00262{left:204.900000px;}
.x6_c00262{left:234.901749px;}
.x5_c00262{left:446.400000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls4_c00262{letter-spacing:0.000000pt;}
.ls2_c00262{letter-spacing:2.581333pt;}
.ls1_c00262{letter-spacing:2.666667pt;}
.ls0_c00262{letter-spacing:10.066667pt;}
.ls3_c00262{letter-spacing:13.266667pt;}
.ws0_c00262{word-spacing:-39.130667pt;}
.ws2_c00262{word-spacing:-17.448000pt;}
.ws1_c00262{word-spacing:-14.781333pt;}
.ws3_c00262{word-spacing:0.000000pt;}
._1c_c00262{margin-left:-21.834667pt;}
._20_c00262{margin-left:-17.330667pt;}
._17_c00262{margin-left:-13.114667pt;}
._1f_c00262{margin-left:-8.525333pt;}
._13_c00262{margin-left:-6.925333pt;}
._b_c00262{margin-left:-6.010667pt;}
._5_c00262{margin-left:-4.293333pt;}
._d_c00262{margin-left:-3.189333pt;}
._6_c00262{margin-left:-2.085333pt;}
._c_c00262{margin-left:-1.042667pt;}
._1_c00262{width:1.104000pt;}
._2_c00262{width:2.576000pt;}
._15_c00262{width:3.496000pt;}
._4_c00262{width:4.416000pt;}
._a_c00262{width:5.397333pt;}
._7_c00262{width:6.562667pt;}
._f_c00262{width:7.544000pt;}
._12_c00262{width:8.709333pt;}
._e_c00262{width:9.874667pt;}
._0_c00262{width:11.040000pt;}
._8_c00262{width:12.450667pt;}
._1e_c00262{width:13.432000pt;}
._9_c00262{width:14.352000pt;}
._10_c00262{width:16.008000pt;}
._18_c00262{width:19.965333pt;}
._1a_c00262{width:21.285333pt;}
._1d_c00262{width:24.688000pt;}
._23_c00262{width:26.378667pt;}
._16_c00262{width:32.690667pt;}
._21_c00262{width:38.210667pt;}
._19_c00262{width:42.968000pt;}
._14_c00262{width:89.178667pt;}
._22_c00262{width:94.448000pt;}
._11_c00262{width:185.213333pt;}
._1b_c00262{width:189.581333pt;}
._24_c00262{width:194.058667pt;}
._3_c00262{width:432.392000pt;}
.fs3_c00262{font-size:42.666667pt;}
.fs2_c00262{font-size:49.066667pt;}
.fs1_c00262{font-size:58.666667pt;}
.fs0_c00262{font-size:61.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y20_c00262{bottom:2.760000pt;}
.y1f_c00262{bottom:6.425219pt;}
.y1e_c00262{bottom:61.213333pt;}
.y1d_c00262{bottom:83.213333pt;}
.y1c_c00262{bottom:106.013333pt;}
.y1b_c00262{bottom:128.146667pt;}
.y1a_c00262{bottom:150.013333pt;}
.y19_c00262{bottom:171.880000pt;}
.y18_c00262{bottom:194.146667pt;}
.y17_c00262{bottom:216.680000pt;}
.y16_c00262{bottom:238.813333pt;}
.y15_c00262{bottom:260.413333pt;}
.y14_c00262{bottom:282.680000pt;}
.y13_c00262{bottom:305.080000pt;}
.y12_c00262{bottom:326.813333pt;}
.y11_c00262{bottom:349.213333pt;}
.y10_c00262{bottom:371.080000pt;}
.yf_c00262{bottom:393.080000pt;}
.ye_c00262{bottom:415.480000pt;}
.yd_c00262{bottom:437.480000pt;}
.yc_c00262{bottom:459.080000pt;}
.yb_c00262{bottom:480.280000pt;}
.ya_c00262{bottom:502.813333pt;}
.y9_c00262{bottom:525.080000pt;}
.y8_c00262{bottom:547.080000pt;}
.y7_c00262{bottom:569.480000pt;}
.y6_c00262{bottom:591.880000pt;}
.y5_c00262{bottom:613.613333pt;}
.y4_c00262{bottom:636.013333pt;}
.y3_c00262{bottom:658.546667pt;}
.y2_c00262{bottom:680.146667pt;}
.y1_c00262{bottom:702.946667pt;}
.h4_c00262{height:11.733399pt;}
.h5_c00262{height:38.937500pt;}
.h2_c00262{height:77.654948pt;}
.h3_c00262{height:78.188281pt;}
.h1_c00262{height:738.666667pt;}
.h0_c00262{height:738.733333pt;}
.w2_c00262{width:93.222667pt;}
.w0_c00262{width:503.266667pt;}
.w1_c00262{width:503.333333pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:28.800000pt;}
.x3_c00262{left:29.733333pt;}
.x4_c00262{left:31.466667pt;}
.x1_c00262{left:182.133333pt;}
.x6_c00262{left:208.801554pt;}
.x5_c00262{left:396.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78c66617058507566c54d48b.woff2')format("woff");}.ff1_c00263{font-family:ff1_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:ff2_c00263;src:url('chunks/assets/font_728302c9d3cbb0e3f0cd0871.woff2')format("woff");}.ff2_c00263{font-family:ff2_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:ff3_c00263;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00263{font-family:ff3_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;}
.ls2_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.024000px;}
.ls1_c00263{letter-spacing:3.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;}
}
.ws1_c00263{word-spacing:-19.629000px;}
.ws4_c00263{word-spacing:-17.352000px;}
.ws0_c00263{word-spacing:-16.629000px;}
.ws3_c00263{word-spacing:-0.414000px;}
.ws2_c00263{word-spacing:-0.207000px;}
.ws5_c00263{word-spacing:0.000000px;}
._21_c00263{margin-left:-26.307000px;}
._20_c00263{margin-left:-16.629000px;}
._1f_c00263{margin-left:-15.309000px;}
._4_c00263{margin-left:-13.455000px;}
._17_c00263{margin-left:-11.601000px;}
._16_c00263{margin-left:-9.936000px;}
._e_c00263{margin-left:-8.409000px;}
._25_c00263{margin-left:-7.314000px;}
._d_c00263{margin-left:-6.210000px;}
._c_c00263{margin-left:-5.106000px;}
._f_c00263{margin-left:-3.921000px;}
._0_c00263{margin-left:-2.001000px;}
._2_c00263{width:2.001000px;}
._5_c00263{width:3.036000px;}
._6_c00263{width:5.037000px;}
._12_c00263{width:6.210000px;}
._a_c00263{width:7.728000px;}
._b_c00263{width:9.108000px;}
._14_c00263{width:10.764000px;}
._15_c00263{width:12.363000px;}
._13_c00263{width:14.181000px;}
._8_c00263{width:15.456000px;}
._7_c00263{width:16.905000px;}
._3_c00263{width:17.940000px;}
._1d_c00263{width:19.008000px;}
._9_c00263{width:21.183000px;}
._18_c00263{width:22.758000px;}
._19_c00263{width:25.035000px;}
._1c_c00263{width:26.118000px;}
._23_c00263{width:32.208000px;}
._1b_c00263{width:36.204000px;}
._1a_c00263{width:38.859000px;}
._1e_c00263{width:41.709000px;}
._11_c00263{width:43.539000px;}
._10_c00263{width:67.965000px;}
._24_c00263{width:95.556000px;}
._1_c00263{width:363.084000px;}
._22_c00263{width:564.684000px;}
.fc2_c00263{color:transparent;}
.fc1_c00263{color:rgb(128,128,128);}
.fc0_c00263{color:rgb(0,0,0);}
.fs2_c00263{font-size:48.000000px;}
.fs0_c00263{font-size:69.000000px;}
.fs1_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y1e_c00263{bottom:3.105000px;}
.y1d_c00263{bottom:7.228363px;}
.y1c_c00263{bottom:53.550000px;}
.y1b_c00263{bottom:79.650000px;}
.y1a_c00263{bottom:105.300000px;}
.y19_c00263{bottom:130.650000px;}
.y18_c00263{bottom:156.150000px;}
.y17_c00263{bottom:180.900000px;}
.y16_c00263{bottom:206.100000px;}
.y15_c00263{bottom:230.850000px;}
.y14_c00263{bottom:255.750000px;}
.y13_c00263{bottom:281.100000px;}
.y12_c00263{bottom:304.650000px;}
.y11_c00263{bottom:331.650000px;}
.y10_c00263{bottom:355.050000px;}
.yf_c00263{bottom:404.700000px;}
.ye_c00263{bottom:456.000000px;}
.yd_c00263{bottom:479.550000px;}
.yc_c00263{bottom:504.600000px;}
.yb_c00263{bottom:529.950000px;}
.ya_c00263{bottom:555.150000px;}
.y9_c00263{bottom:579.750000px;}
.y8_c00263{bottom:604.350000px;}
.y7_c00263{bottom:630.000000px;}
.y6_c00263{bottom:654.750000px;}
.y5_c00263{bottom:679.950000px;}
.y4_c00263{bottom:706.050000px;}
.y3_c00263{bottom:729.600000px;}
.y2_c00263{bottom:754.350000px;}
.y1_c00263{bottom:778.950000px;}
.h5_c00263{height:13.200074px;}
.h6_c00263{height:43.804688px;}
.h3_c00263{height:80.758301px;}
.h2_c00263{height:87.361816px;}
.h4_c00263{height:91.160156px;}
.h1_c00263{height:827.250000px;}
.h0_c00263{height:827.550000px;}
.w2_c00263{width:104.875500px;}
.w0_c00263{width:572.100000px;}
.w1_c00263{width:572.250000px;}
.x0_c00263{left:0.000000px;}
.x4_c00263{left:31.650000px;}
.x8_c00263{left:33.150000px;}
.x5_c00263{left:35.700000px;}
.xa_c00263{left:48.900000px;}
.xb_c00263{left:95.250000px;}
.x9_c00263{left:96.900000px;}
.x2_c00263{left:98.550000px;}
.x3_c00263{left:100.200000px;}
.x1_c00263{left:112.050000px;}
.x7_c00263{left:124.500000px;}
.x6_c00263{left:130.200000px;}
.xd_c00263{left:237.864258px;}
.xc_c00263{left:524.700000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls2_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.021333pt;}
.ls1_c00263{letter-spacing:2.666667pt;}
.ws1_c00263{word-spacing:-17.448000pt;}
.ws4_c00263{word-spacing:-15.424000pt;}
.ws0_c00263{word-spacing:-14.781333pt;}
.ws3_c00263{word-spacing:-0.368000pt;}
.ws2_c00263{word-spacing:-0.184000pt;}
.ws5_c00263{word-spacing:0.000000pt;}
._21_c00263{margin-left:-23.384000pt;}
._20_c00263{margin-left:-14.781333pt;}
._1f_c00263{margin-left:-13.608000pt;}
._4_c00263{margin-left:-11.960000pt;}
._17_c00263{margin-left:-10.312000pt;}
._16_c00263{margin-left:-8.832000pt;}
._e_c00263{margin-left:-7.474667pt;}
._25_c00263{margin-left:-6.501333pt;}
._d_c00263{margin-left:-5.520000pt;}
._c_c00263{margin-left:-4.538667pt;}
._f_c00263{margin-left:-3.485333pt;}
._0_c00263{margin-left:-1.778667pt;}
._2_c00263{width:1.778667pt;}
._5_c00263{width:2.698667pt;}
._6_c00263{width:4.477333pt;}
._12_c00263{width:5.520000pt;}
._a_c00263{width:6.869333pt;}
._b_c00263{width:8.096000pt;}
._14_c00263{width:9.568000pt;}
._15_c00263{width:10.989333pt;}
._13_c00263{width:12.605333pt;}
._8_c00263{width:13.738667pt;}
._7_c00263{width:15.026667pt;}
._3_c00263{width:15.946667pt;}
._1d_c00263{width:16.896000pt;}
._9_c00263{width:18.829333pt;}
._18_c00263{width:20.229333pt;}
._19_c00263{width:22.253333pt;}
._1c_c00263{width:23.216000pt;}
._23_c00263{width:28.629333pt;}
._1b_c00263{width:32.181333pt;}
._1a_c00263{width:34.541333pt;}
._1e_c00263{width:37.074667pt;}
._11_c00263{width:38.701333pt;}
._10_c00263{width:60.413333pt;}
._24_c00263{width:84.938667pt;}
._1_c00263{width:322.741333pt;}
._22_c00263{width:501.941333pt;}
.fs2_c00263{font-size:42.666667pt;}
.fs0_c00263{font-size:61.333333pt;}
.fs1_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y1e_c00263{bottom:2.760000pt;}
.y1d_c00263{bottom:6.425212pt;}
.y1c_c00263{bottom:47.600000pt;}
.y1b_c00263{bottom:70.800000pt;}
.y1a_c00263{bottom:93.600000pt;}
.y19_c00263{bottom:116.133333pt;}
.y18_c00263{bottom:138.800000pt;}
.y17_c00263{bottom:160.800000pt;}
.y16_c00263{bottom:183.200000pt;}
.y15_c00263{bottom:205.200000pt;}
.y14_c00263{bottom:227.333333pt;}
.y13_c00263{bottom:249.866667pt;}
.y12_c00263{bottom:270.800000pt;}
.y11_c00263{bottom:294.800000pt;}
.y10_c00263{bottom:315.600000pt;}
.yf_c00263{bottom:359.733333pt;}
.ye_c00263{bottom:405.333333pt;}
.yd_c00263{bottom:426.266667pt;}
.yc_c00263{bottom:448.533333pt;}
.yb_c00263{bottom:471.066667pt;}
.ya_c00263{bottom:493.466667pt;}
.y9_c00263{bottom:515.333333pt;}
.y8_c00263{bottom:537.200000pt;}
.y7_c00263{bottom:560.000000pt;}
.y6_c00263{bottom:582.000000pt;}
.y5_c00263{bottom:604.400000pt;}
.y4_c00263{bottom:627.600000pt;}
.y3_c00263{bottom:648.533333pt;}
.y2_c00263{bottom:670.533333pt;}
.y1_c00263{bottom:692.400000pt;}
.h5_c00263{height:11.733399pt;}
.h6_c00263{height:38.937500pt;}
.h3_c00263{height:71.785156pt;}
.h2_c00263{height:77.654948pt;}
.h4_c00263{height:81.031250pt;}
.h1_c00263{height:735.333333pt;}
.h0_c00263{height:735.600000pt;}
.w2_c00263{width:93.222667pt;}
.w0_c00263{width:508.533333pt;}
.w1_c00263{width:508.666667pt;}
.x0_c00263{left:0.000000pt;}
.x4_c00263{left:28.133333pt;}
.x8_c00263{left:29.466667pt;}
.x5_c00263{left:31.733333pt;}
.xa_c00263{left:43.466667pt;}
.xb_c00263{left:84.666667pt;}
.x9_c00263{left:86.133333pt;}
.x2_c00263{left:87.600000pt;}
.x3_c00263{left:89.066667pt;}
.x1_c00263{left:99.600000pt;}
.x7_c00263{left:110.666667pt;}
.x6_c00263{left:115.733333pt;}
.xd_c00263{left:211.434896pt;}
.xc_c00263{left:466.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7b9c92e44a7e1080cefdc88.woff2')format("woff");}.ff1_c00264{font-family:ff1_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:ff2_c00264;src:url('chunks/assets/font_2b31ec4b906262b447603953.woff2')format("woff");}.ff2_c00264{font-family:ff2_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:ff3_c00264;src:url('chunks/assets/font_9268461a2a14046e9750194c.woff2')format("woff");}.ff3_c00264{font-family:ff3_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:ff4_c00264;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00264{font-family:ff4_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;}
.ls5_c00264{letter-spacing:0.000000px;}
.ls6_c00264{letter-spacing:3.000000px;}
.ls2_c00264{letter-spacing:8.802000px;}
.ls7_c00264{letter-spacing:9.000000px;}
.ls1_c00264{letter-spacing:11.178000px;}
.ls4_c00264{letter-spacing:12.198000px;}
.ls3_c00264{letter-spacing:14.400000px;}
.ls0_c00264{letter-spacing:48.201000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00264{word-spacing:-25.629000px;}
.ws0_c00264{word-spacing:-19.629000px;}
.ws1_c00264{word-spacing:-16.629000px;}
.ws5_c00264{word-spacing:-13.014000px;}
.ws2_c00264{word-spacing:-0.984000px;}
.ws6_c00264{word-spacing:0.000000px;}
.ws3_c00264{word-spacing:0.243000px;}
._20_c00264{margin-left:-25.737000px;}
._29_c00264{margin-left:-15.144000px;}
._21_c00264{margin-left:-13.989000px;}
._1d_c00264{margin-left:-12.066000px;}
._1c_c00264{margin-left:-10.461000px;}
._18_c00264{margin-left:-8.181000px;}
._17_c00264{margin-left:-7.032000px;}
._10_c00264{margin-left:-5.940000px;}
._6_c00264{margin-left:-4.830000px;}
._8_c00264{margin-left:-3.576000px;}
._2_c00264{margin-left:-1.656000px;}
._1_c00264{width:1.104000px;}
._0_c00264{width:2.139000px;}
._3_c00264{width:3.450000px;}
._11_c00264{width:4.560000px;}
._4_c00264{width:5.589000px;}
._5_c00264{width:6.693000px;}
._b_c00264{width:7.797000px;}
._9_c00264{width:9.729000px;}
._7_c00264{width:11.241000px;}
._15_c00264{width:12.420000px;}
._a_c00264{width:14.145000px;}
._13_c00264{width:15.423000px;}
._e_c00264{width:16.773000px;}
._f_c00264{width:17.871000px;}
._23_c00264{width:19.107000px;}
._12_c00264{width:20.964000px;}
._14_c00264{width:22.323000px;}
._c_c00264{width:23.631000px;}
._19_c00264{width:25.356000px;}
._22_c00264{width:26.592000px;}
._1b_c00264{width:29.040000px;}
._1a_c00264{width:30.624000px;}
._1f_c00264{width:32.505000px;}
._24_c00264{width:35.073000px;}
._d_c00264{width:36.882000px;}
._1e_c00264{width:39.108000px;}
._26_c00264{width:41.502000px;}
._27_c00264{width:42.552000px;}
._16_c00264{width:97.878000px;}
._28_c00264{width:124.236000px;}
._25_c00264{width:250.056000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(128,128,128);}
.fc0_c00264{color:rgb(0,0,0);}
.fs4_c00264{font-size:48.000000px;}
.fs2_c00264{font-size:54.000000px;}
.fs3_c00264{font-size:66.000000px;}
.fs0_c00264{font-size:69.000000px;}
.fs1_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y1d_c00264{bottom:3.105000px;}
.y1c_c00264{bottom:7.228363px;}
.y1b_c00264{bottom:58.800000px;}
.y1a_c00264{bottom:139.500000px;}
.y19_c00264{bottom:154.200000px;}
.y18_c00264{bottom:172.200000px;}
.y17_c00264{bottom:190.350000px;}
.y16_c00264{bottom:235.650000px;}
.y15_c00264{bottom:286.200000px;}
.y14_c00264{bottom:310.800000px;}
.y13_c00264{bottom:335.550000px;}
.y12_c00264{bottom:360.900000px;}
.y11_c00264{bottom:384.750000px;}
.y10_c00264{bottom:411.000000px;}
.yf_c00264{bottom:435.750000px;}
.ye_c00264{bottom:460.050000px;}
.yd_c00264{bottom:485.100000px;}
.yc_c00264{bottom:509.700000px;}
.yb_c00264{bottom:534.300000px;}
.ya_c00264{bottom:558.900000px;}
.y9_c00264{bottom:583.950000px;}
.y8_c00264{bottom:609.150000px;}
.y7_c00264{bottom:633.900000px;}
.y6_c00264{bottom:658.200000px;}
.y5_c00264{bottom:682.800000px;}
.y4_c00264{bottom:707.700000px;}
.y3_c00264{bottom:733.050000px;}
.y2_c00264{bottom:758.250000px;}
.y1_c00264{bottom:782.700000px;}
.h5_c00264{height:13.200074px;}
.h6_c00264{height:43.804688px;}
.h4_c00264{height:68.370117px;}
.h1_c00264{height:80.758301px;}
.h3_c00264{height:87.361816px;}
.h2_c00264{height:91.160156px;}
.h0_c00264{height:823.500000px;}
.w2_c00264{width:104.875500px;}
.w1_c00264{width:560.250000px;}
.w0_c00264{width:560.550000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:28.800000px;}
.x3_c00264{left:30.000000px;}
.x4_c00264{left:31.950000px;}
.x6_c00264{left:46.950000px;}
.x7_c00264{left:82.650000px;}
.x5_c00264{left:139.950000px;}
.x1_c00264{left:198.150000px;}
.x9_c00264{left:232.089249px;}
.x8_c00264{left:409.050000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls5_c00264{letter-spacing:0.000000pt;}
.ls6_c00264{letter-spacing:2.666667pt;}
.ls2_c00264{letter-spacing:7.824000pt;}
.ls7_c00264{letter-spacing:8.000000pt;}
.ls1_c00264{letter-spacing:9.936000pt;}
.ls4_c00264{letter-spacing:10.842667pt;}
.ls3_c00264{letter-spacing:12.800000pt;}
.ls0_c00264{letter-spacing:42.845333pt;}
.ws4_c00264{word-spacing:-22.781333pt;}
.ws0_c00264{word-spacing:-17.448000pt;}
.ws1_c00264{word-spacing:-14.781333pt;}
.ws5_c00264{word-spacing:-11.568000pt;}
.ws2_c00264{word-spacing:-0.874667pt;}
.ws6_c00264{word-spacing:0.000000pt;}
.ws3_c00264{word-spacing:0.216000pt;}
._20_c00264{margin-left:-22.877333pt;}
._29_c00264{margin-left:-13.461333pt;}
._21_c00264{margin-left:-12.434667pt;}
._1d_c00264{margin-left:-10.725333pt;}
._1c_c00264{margin-left:-9.298667pt;}
._18_c00264{margin-left:-7.272000pt;}
._17_c00264{margin-left:-6.250667pt;}
._10_c00264{margin-left:-5.280000pt;}
._6_c00264{margin-left:-4.293333pt;}
._8_c00264{margin-left:-3.178667pt;}
._2_c00264{margin-left:-1.472000pt;}
._1_c00264{width:0.981333pt;}
._0_c00264{width:1.901333pt;}
._3_c00264{width:3.066667pt;}
._11_c00264{width:4.053333pt;}
._4_c00264{width:4.968000pt;}
._5_c00264{width:5.949333pt;}
._b_c00264{width:6.930667pt;}
._9_c00264{width:8.648000pt;}
._7_c00264{width:9.992000pt;}
._15_c00264{width:11.040000pt;}
._a_c00264{width:12.573333pt;}
._13_c00264{width:13.709333pt;}
._e_c00264{width:14.909333pt;}
._f_c00264{width:15.885333pt;}
._23_c00264{width:16.984000pt;}
._12_c00264{width:18.634667pt;}
._14_c00264{width:19.842667pt;}
._c_c00264{width:21.005333pt;}
._19_c00264{width:22.538667pt;}
._22_c00264{width:23.637333pt;}
._1b_c00264{width:25.813333pt;}
._1a_c00264{width:27.221333pt;}
._1f_c00264{width:28.893333pt;}
._24_c00264{width:31.176000pt;}
._d_c00264{width:32.784000pt;}
._1e_c00264{width:34.762667pt;}
._26_c00264{width:36.890667pt;}
._27_c00264{width:37.824000pt;}
._16_c00264{width:87.002667pt;}
._28_c00264{width:110.432000pt;}
._25_c00264{width:222.272000pt;}
.fs4_c00264{font-size:42.666667pt;}
.fs2_c00264{font-size:48.000000pt;}
.fs3_c00264{font-size:58.666667pt;}
.fs0_c00264{font-size:61.333333pt;}
.fs1_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y1d_c00264{bottom:2.760000pt;}
.y1c_c00264{bottom:6.425212pt;}
.y1b_c00264{bottom:52.266667pt;}
.y1a_c00264{bottom:124.000000pt;}
.y19_c00264{bottom:137.066667pt;}
.y18_c00264{bottom:153.066667pt;}
.y17_c00264{bottom:169.200000pt;}
.y16_c00264{bottom:209.466667pt;}
.y15_c00264{bottom:254.400000pt;}
.y14_c00264{bottom:276.266667pt;}
.y13_c00264{bottom:298.266667pt;}
.y12_c00264{bottom:320.800000pt;}
.y11_c00264{bottom:342.000000pt;}
.y10_c00264{bottom:365.333333pt;}
.yf_c00264{bottom:387.333333pt;}
.ye_c00264{bottom:408.933333pt;}
.yd_c00264{bottom:431.200000pt;}
.yc_c00264{bottom:453.066667pt;}
.yb_c00264{bottom:474.933333pt;}
.ya_c00264{bottom:496.800000pt;}
.y9_c00264{bottom:519.066667pt;}
.y8_c00264{bottom:541.466667pt;}
.y7_c00264{bottom:563.466667pt;}
.y6_c00264{bottom:585.066667pt;}
.y5_c00264{bottom:606.933333pt;}
.y4_c00264{bottom:629.066667pt;}
.y3_c00264{bottom:651.600000pt;}
.y2_c00264{bottom:674.000000pt;}
.y1_c00264{bottom:695.733333pt;}
.h5_c00264{height:11.733399pt;}
.h6_c00264{height:38.937500pt;}
.h4_c00264{height:60.773438pt;}
.h1_c00264{height:71.785156pt;}
.h3_c00264{height:77.654948pt;}
.h2_c00264{height:81.031250pt;}
.h0_c00264{height:732.000000pt;}
.w2_c00264{width:93.222667pt;}
.w1_c00264{width:498.000000pt;}
.w0_c00264{width:498.266667pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:25.600000pt;}
.x3_c00264{left:26.666667pt;}
.x4_c00264{left:28.400000pt;}
.x6_c00264{left:41.733333pt;}
.x7_c00264{left:73.466667pt;}
.x5_c00264{left:124.400000pt;}
.x1_c00264{left:176.133333pt;}
.x9_c00264{left:206.301554pt;}
.x8_c00264{left:363.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_467d420dc50d641e1587b2ff.woff2')format("woff");}.ff1_c00265{font-family:ff1_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:ff2_c00265;src:url('chunks/assets/font_0e999cdaa4a076187ae97bf1.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_4624a2501a98af954857b33a.woff2')format("woff");}.ff3_c00265{font-family:ff3_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:ff4_c00265;src:url('chunks/assets/font_35eff4a1937d2ceaf375765b.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;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_c00265;src:url('chunks/assets/font_e108966da6b77c0bc6672be2.woff2')format("woff");}.ff5_c00265{font-family:ff5_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:ff6_c00265;src:url('chunks/assets/font_d3272974d6c7364a70962cca.woff2')format("woff");}.ff6_c00265{font-family:ff6_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:ff7_c00265;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00265{font-family:ff7_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;}
.ls0_c00265{letter-spacing:3.000000px;}
.ls2_c00265{letter-spacing:9.000000px;}
.ls4_c00265{letter-spacing:18.000000px;}
.ls3_c00265{letter-spacing:45.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-63.798000px;}
.ws5_c00265{word-spacing:-63.570000px;}
.ws4_c00265{word-spacing:-50.856000px;}
.ws3_c00265{word-spacing:-36.798000px;}
.ws2_c00265{word-spacing:-24.507000px;}
.ws1_c00265{word-spacing:-18.798000px;}
.ws6_c00265{word-spacing:-16.629000px;}
.ws7_c00265{word-spacing:0.000000px;}
._27_c00265{margin-left:-25.035000px;}
._28_c00265{margin-left:-22.488000px;}
._f_c00265{margin-left:-20.148000px;}
._14_c00265{margin-left:-18.096000px;}
._1e_c00265{margin-left:-16.896000px;}
._b_c00265{margin-left:-15.273000px;}
._17_c00265{margin-left:-14.211000px;}
._1d_c00265{margin-left:-12.480000px;}
._9_c00265{margin-left:-11.433000px;}
._c_c00265{margin-left:-10.218000px;}
._2_c00265{margin-left:-9.177000px;}
._a_c00265{margin-left:-7.737000px;}
._1_c00265{margin-left:-6.693000px;}
._8_c00265{margin-left:-4.968000px;}
._0_c00265{margin-left:-3.795000px;}
._7_c00265{margin-left:-2.622000px;}
._6_c00265{margin-left:-1.242000px;}
._4_c00265{width:1.794000px;}
._3_c00265{width:2.967000px;}
._12_c00265{width:4.047000px;}
._13_c00265{width:5.070000px;}
._11_c00265{width:6.222000px;}
._1b_c00265{width:8.268000px;}
._16_c00265{width:9.609000px;}
._23_c00265{width:10.743000px;}
._e_c00265{width:11.871000px;}
._22_c00265{width:13.164000px;}
._19_c00265{width:14.301000px;}
._15_c00265{width:15.366000px;}
._d_c00265{width:16.422000px;}
._25_c00265{width:17.595000px;}
._1a_c00265{width:22.074000px;}
._1f_c00265{width:29.640000px;}
._26_c00265{width:36.837000px;}
._18_c00265{width:38.088000px;}
._2a_c00265{width:46.458000px;}
._24_c00265{width:64.914000px;}
._2b_c00265{width:74.349000px;}
._1c_c00265{width:79.962000px;}
._20_c00265{width:86.850000px;}
._21_c00265{width:103.752000px;}
._10_c00265{width:136.146000px;}
._29_c00265{width:161.424000px;}
._5_c00265{width:373.983000px;}
.fc2_c00265{color:transparent;}
.fc1_c00265{color:rgb(128,128,128);}
.fc0_c00265{color:rgb(0,0,0);}
.fs5_c00265{font-size:48.000000px;}
.fs1_c00265{font-size:51.000000px;}
.fs4_c00265{font-size:62.400000px;}
.fs3_c00265{font-size:63.000000px;}
.fs0_c00265{font-size:69.000000px;}
.fs2_c00265{font-size:78.000000px;}
.y0_c00265{bottom:0.000000px;}
.y1c_c00265{bottom:3.105000px;}
.y1b_c00265{bottom:7.228363px;}
.y1a_c00265{bottom:59.100000px;}
.y19_c00265{bottom:134.400000px;}
.y18_c00265{bottom:160.350000px;}
.y17_c00265{bottom:186.000000px;}
.y16_c00265{bottom:210.900000px;}
.y15_c00265{bottom:236.250000px;}
.y14_c00265{bottom:261.000000px;}
.y13_c00265{bottom:286.200000px;}
.y12_c00265{bottom:311.250000px;}
.y11_c00265{bottom:335.850000px;}
.y10_c00265{bottom:360.450000px;}
.yf_c00265{bottom:384.750000px;}
.ye_c00265{bottom:410.850000px;}
.yd_c00265{bottom:435.150000px;}
.yc_c00265{bottom:460.800000px;}
.yb_c00265{bottom:486.000000px;}
.ya_c00265{bottom:510.750000px;}
.y9_c00265{bottom:535.950000px;}
.y8_c00265{bottom:560.850000px;}
.y7_c00265{bottom:586.800000px;}
.y6_c00265{bottom:610.500000px;}
.y5_c00265{bottom:635.550000px;}
.y4_c00265{bottom:685.050000px;}
.y3_c00265{bottom:735.300000px;}
.y2_c00265{bottom:760.950000px;}
.y1_c00265{bottom:784.650000px;}
.h8_c00265{height:13.200074px;}
.h9_c00265{height:43.804688px;}
.h3_c00265{height:64.571777px;}
.h5_c00265{height:73.623000px;}
.h7_c00265{height:80.758301px;}
.h2_c00265{height:87.361816px;}
.h4_c00265{height:91.291992px;}
.h6_c00265{height:98.756836px;}
.h0_c00265{height:818.100000px;}
.h1_c00265{height:818.250000px;}
.w2_c00265{width:104.875500px;}
.w0_c00265{width:565.350000px;}
.w1_c00265{width:565.500000px;}
.x0_c00265{left:0.000000px;}
.x7_c00265{left:41.550000px;}
.x9_c00265{left:43.200000px;}
.xb_c00265{left:61.050000px;}
.x6_c00265{left:107.700000px;}
.x8_c00265{left:109.650000px;}
.xa_c00265{left:111.300000px;}
.x1_c00265{left:119.100000px;}
.x5_c00265{left:131.850000px;}
.xc_c00265{left:133.650000px;}
.x4_c00265{left:200.850000px;}
.xe_c00265{left:234.489258px;}
.x3_c00265{left:241.050000px;}
.x2_c00265{left:245.700000px;}
.xd_c00265{left:522.150000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:2.666667pt;}
.ls2_c00265{letter-spacing:8.000000pt;}
.ls4_c00265{letter-spacing:16.000000pt;}
.ls3_c00265{letter-spacing:40.000000pt;}
.ws0_c00265{word-spacing:-56.709333pt;}
.ws5_c00265{word-spacing:-56.506667pt;}
.ws4_c00265{word-spacing:-45.205333pt;}
.ws3_c00265{word-spacing:-32.709333pt;}
.ws2_c00265{word-spacing:-21.784000pt;}
.ws1_c00265{word-spacing:-16.709333pt;}
.ws6_c00265{word-spacing:-14.781333pt;}
.ws7_c00265{word-spacing:0.000000pt;}
._27_c00265{margin-left:-22.253333pt;}
._28_c00265{margin-left:-19.989333pt;}
._f_c00265{margin-left:-17.909333pt;}
._14_c00265{margin-left:-16.085333pt;}
._1e_c00265{margin-left:-15.018667pt;}
._b_c00265{margin-left:-13.576000pt;}
._17_c00265{margin-left:-12.632000pt;}
._1d_c00265{margin-left:-11.093333pt;}
._9_c00265{margin-left:-10.162667pt;}
._c_c00265{margin-left:-9.082667pt;}
._2_c00265{margin-left:-8.157333pt;}
._a_c00265{margin-left:-6.877333pt;}
._1_c00265{margin-left:-5.949333pt;}
._8_c00265{margin-left:-4.416000pt;}
._0_c00265{margin-left:-3.373333pt;}
._7_c00265{margin-left:-2.330667pt;}
._6_c00265{margin-left:-1.104000pt;}
._4_c00265{width:1.594667pt;}
._3_c00265{width:2.637333pt;}
._12_c00265{width:3.597333pt;}
._13_c00265{width:4.506667pt;}
._11_c00265{width:5.530667pt;}
._1b_c00265{width:7.349333pt;}
._16_c00265{width:8.541333pt;}
._23_c00265{width:9.549333pt;}
._e_c00265{width:10.552000pt;}
._22_c00265{width:11.701333pt;}
._19_c00265{width:12.712000pt;}
._15_c00265{width:13.658667pt;}
._d_c00265{width:14.597333pt;}
._25_c00265{width:15.640000pt;}
._1a_c00265{width:19.621333pt;}
._1f_c00265{width:26.346667pt;}
._26_c00265{width:32.744000pt;}
._18_c00265{width:33.856000pt;}
._2a_c00265{width:41.296000pt;}
._24_c00265{width:57.701333pt;}
._2b_c00265{width:66.088000pt;}
._1c_c00265{width:71.077333pt;}
._20_c00265{width:77.200000pt;}
._21_c00265{width:92.224000pt;}
._10_c00265{width:121.018667pt;}
._29_c00265{width:143.488000pt;}
._5_c00265{width:332.429333pt;}
.fs5_c00265{font-size:42.666667pt;}
.fs1_c00265{font-size:45.333333pt;}
.fs4_c00265{font-size:55.466667pt;}
.fs3_c00265{font-size:56.000000pt;}
.fs0_c00265{font-size:61.333333pt;}
.fs2_c00265{font-size:69.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y1c_c00265{bottom:2.760000pt;}
.y1b_c00265{bottom:6.425212pt;}
.y1a_c00265{bottom:52.533333pt;}
.y19_c00265{bottom:119.466667pt;}
.y18_c00265{bottom:142.533333pt;}
.y17_c00265{bottom:165.333333pt;}
.y16_c00265{bottom:187.466667pt;}
.y15_c00265{bottom:210.000000pt;}
.y14_c00265{bottom:232.000000pt;}
.y13_c00265{bottom:254.400000pt;}
.y12_c00265{bottom:276.666667pt;}
.y11_c00265{bottom:298.533333pt;}
.y10_c00265{bottom:320.400000pt;}
.yf_c00265{bottom:342.000000pt;}
.ye_c00265{bottom:365.200000pt;}
.yd_c00265{bottom:386.800000pt;}
.yc_c00265{bottom:409.600000pt;}
.yb_c00265{bottom:432.000000pt;}
.ya_c00265{bottom:454.000000pt;}
.y9_c00265{bottom:476.400000pt;}
.y8_c00265{bottom:498.533333pt;}
.y7_c00265{bottom:521.600000pt;}
.y6_c00265{bottom:542.666667pt;}
.y5_c00265{bottom:564.933333pt;}
.y4_c00265{bottom:608.933333pt;}
.y3_c00265{bottom:653.600000pt;}
.y2_c00265{bottom:676.400000pt;}
.y1_c00265{bottom:697.466667pt;}
.h8_c00265{height:11.733399pt;}
.h9_c00265{height:38.937500pt;}
.h3_c00265{height:57.397135pt;}
.h5_c00265{height:65.442667pt;}
.h7_c00265{height:71.785156pt;}
.h2_c00265{height:77.654948pt;}
.h4_c00265{height:81.148438pt;}
.h6_c00265{height:87.783854pt;}
.h0_c00265{height:727.200000pt;}
.h1_c00265{height:727.333333pt;}
.w2_c00265{width:93.222667pt;}
.w0_c00265{width:502.533333pt;}
.w1_c00265{width:502.666667pt;}
.x0_c00265{left:0.000000pt;}
.x7_c00265{left:36.933333pt;}
.x9_c00265{left:38.400000pt;}
.xb_c00265{left:54.266667pt;}
.x6_c00265{left:95.733333pt;}
.x8_c00265{left:97.466667pt;}
.xa_c00265{left:98.933333pt;}
.x1_c00265{left:105.866667pt;}
.x5_c00265{left:117.200000pt;}
.xc_c00265{left:118.800000pt;}
.x4_c00265{left:178.533333pt;}
.xe_c00265{left:208.434896pt;}
.x3_c00265{left:214.266667pt;}
.x2_c00265{left:218.400000pt;}
.xd_c00265{left:464.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_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_0d0ce9ea86db663196e0ebae.woff2')format("woff");}.ff1_c00266{font-family:ff1_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:ff2_c00266;src:url('chunks/assets/font_b9035f4c7806310d82d53414.woff2')format("woff");}.ff2_c00266{font-family:ff2_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:ff3_c00266;src:url('chunks/assets/font_5da548d9102315d0fa852027.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_cf83504af884872a1b74e6de.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_c359ba475e9a0f1dc69a079e.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;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_c00266;src:url('chunks/assets/font_2233328d79eebe6629944ddd.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;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_c00266;src:url('chunks/assets/font_4eb5efba8d8bdf9220954da8.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;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_c00266;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00266{font-family:ff8_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;}
.ls5_c00266{letter-spacing:-6.000000px;}
.ls3_c00266{letter-spacing:0.000000px;}
.ls2_c00266{letter-spacing:3.000000px;}
.ls1_c00266{letter-spacing:6.966000px;}
.ls0_c00266{letter-spacing:18.000000px;}
.ls4_c00266{letter-spacing:27.000000px;}
.ls6_c00266{letter-spacing:75.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-40.014000px;}
.ws3_c00266{word-spacing:-38.022000px;}
.ws5_c00266{word-spacing:-20.250000px;}
.ws4_c00266{word-spacing:-19.629000px;}
.ws2_c00266{word-spacing:-13.014000px;}
.ws0_c00266{word-spacing:-12.291000px;}
.ws6_c00266{word-spacing:-5.940000px;}
.ws7_c00266{word-spacing:0.000000px;}
._4a_c00266{margin-left:-86.559000px;}
._4c_c00266{margin-left:-79.068000px;}
._4d_c00266{margin-left:-77.847000px;}
._4b_c00266{margin-left:-68.541000px;}
._48_c00266{margin-left:-65.742000px;}
._23_c00266{margin-left:-41.952000px;}
._2_c00266{margin-left:-39.882000px;}
._16_c00266{margin-left:-28.176000px;}
._34_c00266{margin-left:-26.892000px;}
._41_c00266{margin-left:-21.588000px;}
._3b_c00266{margin-left:-19.224000px;}
._12_c00266{margin-left:-18.012000px;}
._3e_c00266{margin-left:-16.740000px;}
._3f_c00266{margin-left:-15.444000px;}
._2e_c00266{margin-left:-13.920000px;}
._0_c00266{margin-left:-11.109000px;}
._b_c00266{margin-left:-8.694000px;}
._9_c00266{margin-left:-7.182000px;}
._8_c00266{margin-left:-6.156000px;}
._a_c00266{margin-left:-4.590000px;}
._d_c00266{margin-left:-2.901000px;}
._e_c00266{margin-left:-1.728000px;}
._4_c00266{width:1.794000px;}
._5_c00266{width:3.726000px;}
._7_c00266{width:4.899000px;}
._f_c00266{width:6.105000px;}
._18_c00266{width:7.614000px;}
._28_c00266{width:8.649000px;}
._1d_c00266{width:10.539000px;}
._27_c00266{width:11.772000px;}
._13_c00266{width:14.040000px;}
._47_c00266{width:15.243000px;}
._15_c00266{width:16.404000px;}
._11_c00266{width:18.240000px;}
._1c_c00266{width:20.421000px;}
._20_c00266{width:21.753000px;}
._14_c00266{width:23.574000px;}
._1e_c00266{width:29.913000px;}
._1b_c00266{width:31.416000px;}
._44_c00266{width:32.622000px;}
._30_c00266{width:34.188000px;}
._25_c00266{width:35.640000px;}
._2d_c00266{width:38.313000px;}
._26_c00266{width:39.798000px;}
._40_c00266{width:42.822000px;}
._32_c00266{width:46.158000px;}
._2a_c00266{width:47.757000px;}
._1a_c00266{width:52.311000px;}
._42_c00266{width:57.513000px;}
._19_c00266{width:61.926000px;}
._c_c00266{width:63.342000px;}
._43_c00266{width:64.356000px;}
._17_c00266{width:65.880000px;}
._33_c00266{width:68.031000px;}
._2b_c00266{width:69.372000px;}
._3_c00266{width:73.677000px;}
._29_c00266{width:82.983000px;}
._3d_c00266{width:89.277000px;}
._1_c00266{width:90.459000px;}
._2f_c00266{width:93.657000px;}
._38_c00266{width:95.094000px;}
._36_c00266{width:103.629000px;}
._21_c00266{width:105.750000px;}
._3a_c00266{width:123.420000px;}
._35_c00266{width:127.368000px;}
._1f_c00266{width:138.030000px;}
._46_c00266{width:146.406000px;}
._49_c00266{width:156.159000px;}
._31_c00266{width:157.824000px;}
._39_c00266{width:162.162000px;}
._22_c00266{width:166.188000px;}
._2c_c00266{width:232.893000px;}
._45_c00266{width:247.557000px;}
._10_c00266{width:320.898000px;}
._37_c00266{width:336.999000px;}
._4e_c00266{width:369.372000px;}
._3c_c00266{width:414.408000px;}
._6_c00266{width:483.576000px;}
._24_c00266{width:1035.483000px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(128,128,128);}
.fc0_c00266{color:rgb(0,0,0);}
.fs5_c00266{font-size:33.000000px;}
.fs6_c00266{font-size:48.000000px;}
.fs2_c00266{font-size:51.000000px;}
.fs1_c00266{font-size:54.000000px;}
.fs3_c00266{font-size:66.000000px;}
.fs0_c00266{font-size:69.000000px;}
.fs4_c00266{font-size:81.000000px;}
.y0_c00266{bottom:0.000000px;}
.y2e_c00266{bottom:3.105000px;}
.y2d_c00266{bottom:7.228371px;}
.y2c_c00266{bottom:60.465000px;}
.y2b_c00266{bottom:78.015000px;}
.y2a_c00266{bottom:94.965000px;}
.y29_c00266{bottom:112.815000px;}
.y28_c00266{bottom:130.365000px;}
.y27_c00266{bottom:147.615000px;}
.y26_c00266{bottom:165.465000px;}
.y25_c00266{bottom:183.015000px;}
.y24_c00266{bottom:201.165000px;}
.y23_c00266{bottom:219.015000px;}
.y22_c00266{bottom:236.715000px;}
.y21_c00266{bottom:254.265000px;}
.y20_c00266{bottom:271.815000px;}
.y1f_c00266{bottom:289.215000px;}
.y1e_c00266{bottom:307.515000px;}
.y1d_c00266{bottom:325.365000px;}
.y1c_c00266{bottom:342.015000px;}
.y1b_c00266{bottom:359.865000px;}
.y1a_c00266{bottom:380.115000px;}
.y19_c00266{bottom:395.265000px;}
.y18_c00266{bottom:412.515000px;}
.y17_c00266{bottom:430.365000px;}
.y16_c00266{bottom:447.915000px;}
.y15_c00266{bottom:466.065000px;}
.y14_c00266{bottom:483.015000px;}
.y10_c00266{bottom:490.065000px;}
.y13_c00266{bottom:499.815000px;}
.y12_c00266{bottom:518.115000px;}
.y11_c00266{bottom:535.365000px;}
.yf_c00266{bottom:553.965000px;}
.ye_c00266{bottom:569.715000px;}
.yd_c00266{bottom:587.715000px;}
.yc_c00266{bottom:605.865000px;}
.ya_c00266{bottom:623.415000px;}
.y9_c00266{bottom:640.665000px;}
.yb_c00266{bottom:641.265000px;}
.y8_c00266{bottom:658.515000px;}
.y7_c00266{bottom:676.815000px;}
.y6_c00266{bottom:694.215000px;}
.y5_c00266{bottom:711.165000px;}
.y4_c00266{bottom:729.015000px;}
.y3_c00266{bottom:746.865000px;}
.y2_c00266{bottom:764.865000px;}
.y1_c00266{bottom:783.765000px;}
.h8_c00266{height:13.200074px;}
.h9_c00266{height:43.804688px;}
.h7_c00266{height:58.536000px;}
.h3_c00266{height:63.202148px;}
.h5_c00266{height:64.571777px;}
.h4_c00266{height:68.370117px;}
.h6_c00266{height:79.457520px;}
.h2_c00266{height:87.361816px;}
.h0_c00266{height:828.375000px;}
.h1_c00266{height:828.750000px;}
.w2_c00266{width:104.875500px;}
.w0_c00266{width:563.775000px;}
.w1_c00266{width:564.000000px;}
.x0_c00266{left:0.000000px;}
.xc_c00266{left:21.600000px;}
.xb_c00266{left:25.650000px;}
.x9_c00266{left:26.700000px;}
.x7_c00266{left:28.350000px;}
.x4_c00266{left:29.400000px;}
.xa_c00266{left:31.350000px;}
.xd_c00266{left:43.650000px;}
.x3_c00266{left:47.550000px;}
.x5_c00266{left:62.550000px;}
.x6_c00266{left:100.350000px;}
.x1_c00266{left:148.050000px;}
.x2_c00266{left:174.600000px;}
.xf_c00266{left:233.701767px;}
.xe_c00266{left:318.600000px;}
.x8_c00266{left:508.650000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls5_c00266{letter-spacing:-5.333333pt;}
.ls3_c00266{letter-spacing:0.000000pt;}
.ls2_c00266{letter-spacing:2.666667pt;}
.ls1_c00266{letter-spacing:6.192000pt;}
.ls0_c00266{letter-spacing:16.000000pt;}
.ls4_c00266{letter-spacing:24.000000pt;}
.ls6_c00266{letter-spacing:66.666667pt;}
.ws1_c00266{word-spacing:-35.568000pt;}
.ws3_c00266{word-spacing:-33.797333pt;}
.ws5_c00266{word-spacing:-18.000000pt;}
.ws4_c00266{word-spacing:-17.448000pt;}
.ws2_c00266{word-spacing:-11.568000pt;}
.ws0_c00266{word-spacing:-10.925333pt;}
.ws6_c00266{word-spacing:-5.280000pt;}
.ws7_c00266{word-spacing:0.000000pt;}
._4a_c00266{margin-left:-76.941333pt;}
._4c_c00266{margin-left:-70.282667pt;}
._4d_c00266{margin-left:-69.197333pt;}
._4b_c00266{margin-left:-60.925333pt;}
._48_c00266{margin-left:-58.437333pt;}
._23_c00266{margin-left:-37.290667pt;}
._2_c00266{margin-left:-35.450667pt;}
._16_c00266{margin-left:-25.045333pt;}
._34_c00266{margin-left:-23.904000pt;}
._41_c00266{margin-left:-19.189333pt;}
._3b_c00266{margin-left:-17.088000pt;}
._12_c00266{margin-left:-16.010667pt;}
._3e_c00266{margin-left:-14.880000pt;}
._3f_c00266{margin-left:-13.728000pt;}
._2e_c00266{margin-left:-12.373333pt;}
._0_c00266{margin-left:-9.874667pt;}
._b_c00266{margin-left:-7.728000pt;}
._9_c00266{margin-left:-6.384000pt;}
._8_c00266{margin-left:-5.472000pt;}
._a_c00266{margin-left:-4.080000pt;}
._d_c00266{margin-left:-2.578667pt;}
._e_c00266{margin-left:-1.536000pt;}
._4_c00266{width:1.594667pt;}
._5_c00266{width:3.312000pt;}
._7_c00266{width:4.354667pt;}
._f_c00266{width:5.426667pt;}
._18_c00266{width:6.768000pt;}
._28_c00266{width:7.688000pt;}
._1d_c00266{width:9.368000pt;}
._27_c00266{width:10.464000pt;}
._13_c00266{width:12.480000pt;}
._47_c00266{width:13.549333pt;}
._15_c00266{width:14.581333pt;}
._11_c00266{width:16.213333pt;}
._1c_c00266{width:18.152000pt;}
._20_c00266{width:19.336000pt;}
._14_c00266{width:20.954667pt;}
._1e_c00266{width:26.589333pt;}
._1b_c00266{width:27.925333pt;}
._44_c00266{width:28.997333pt;}
._30_c00266{width:30.389333pt;}
._25_c00266{width:31.680000pt;}
._2d_c00266{width:34.056000pt;}
._26_c00266{width:35.376000pt;}
._40_c00266{width:38.064000pt;}
._32_c00266{width:41.029333pt;}
._2a_c00266{width:42.450667pt;}
._1a_c00266{width:46.498667pt;}
._42_c00266{width:51.122667pt;}
._19_c00266{width:55.045333pt;}
._c_c00266{width:56.304000pt;}
._43_c00266{width:57.205333pt;}
._17_c00266{width:58.560000pt;}
._33_c00266{width:60.472000pt;}
._2b_c00266{width:61.664000pt;}
._3_c00266{width:65.490667pt;}
._29_c00266{width:73.762667pt;}
._3d_c00266{width:79.357333pt;}
._1_c00266{width:80.408000pt;}
._2f_c00266{width:83.250667pt;}
._38_c00266{width:84.528000pt;}
._36_c00266{width:92.114667pt;}
._21_c00266{width:94.000000pt;}
._3a_c00266{width:109.706667pt;}
._35_c00266{width:113.216000pt;}
._1f_c00266{width:122.693333pt;}
._46_c00266{width:130.138667pt;}
._49_c00266{width:138.808000pt;}
._31_c00266{width:140.288000pt;}
._39_c00266{width:144.144000pt;}
._22_c00266{width:147.722667pt;}
._2c_c00266{width:207.016000pt;}
._45_c00266{width:220.050667pt;}
._10_c00266{width:285.242667pt;}
._37_c00266{width:299.554667pt;}
._4e_c00266{width:328.330667pt;}
._3c_c00266{width:368.362667pt;}
._6_c00266{width:429.845333pt;}
._24_c00266{width:920.429333pt;}
.fs5_c00266{font-size:29.333333pt;}
.fs6_c00266{font-size:42.666667pt;}
.fs2_c00266{font-size:45.333333pt;}
.fs1_c00266{font-size:48.000000pt;}
.fs3_c00266{font-size:58.666667pt;}
.fs0_c00266{font-size:61.333333pt;}
.fs4_c00266{font-size:72.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y2e_c00266{bottom:2.760000pt;}
.y2d_c00266{bottom:6.425219pt;}
.y2c_c00266{bottom:53.746667pt;}
.y2b_c00266{bottom:69.346667pt;}
.y2a_c00266{bottom:84.413333pt;}
.y29_c00266{bottom:100.280000pt;}
.y28_c00266{bottom:115.880000pt;}
.y27_c00266{bottom:131.213333pt;}
.y26_c00266{bottom:147.080000pt;}
.y25_c00266{bottom:162.680000pt;}
.y24_c00266{bottom:178.813333pt;}
.y23_c00266{bottom:194.680000pt;}
.y22_c00266{bottom:210.413333pt;}
.y21_c00266{bottom:226.013333pt;}
.y20_c00266{bottom:241.613333pt;}
.y1f_c00266{bottom:257.080000pt;}
.y1e_c00266{bottom:273.346667pt;}
.y1d_c00266{bottom:289.213333pt;}
.y1c_c00266{bottom:304.013333pt;}
.y1b_c00266{bottom:319.880000pt;}
.y1a_c00266{bottom:337.880000pt;}
.y19_c00266{bottom:351.346667pt;}
.y18_c00266{bottom:366.680000pt;}
.y17_c00266{bottom:382.546667pt;}
.y16_c00266{bottom:398.146667pt;}
.y15_c00266{bottom:414.280000pt;}
.y14_c00266{bottom:429.346667pt;}
.y10_c00266{bottom:435.613333pt;}
.y13_c00266{bottom:444.280000pt;}
.y12_c00266{bottom:460.546667pt;}
.y11_c00266{bottom:475.880000pt;}
.yf_c00266{bottom:492.413333pt;}
.ye_c00266{bottom:506.413333pt;}
.yd_c00266{bottom:522.413333pt;}
.yc_c00266{bottom:538.546667pt;}
.ya_c00266{bottom:554.146667pt;}
.y9_c00266{bottom:569.480000pt;}
.yb_c00266{bottom:570.013333pt;}
.y8_c00266{bottom:585.346667pt;}
.y7_c00266{bottom:601.613333pt;}
.y6_c00266{bottom:617.080000pt;}
.y5_c00266{bottom:632.146667pt;}
.y4_c00266{bottom:648.013333pt;}
.y3_c00266{bottom:663.880000pt;}
.y2_c00266{bottom:679.880000pt;}
.y1_c00266{bottom:696.680000pt;}
.h8_c00266{height:11.733399pt;}
.h9_c00266{height:38.937500pt;}
.h7_c00266{height:52.032000pt;}
.h3_c00266{height:56.179688pt;}
.h5_c00266{height:57.397135pt;}
.h4_c00266{height:60.773438pt;}
.h6_c00266{height:70.628906pt;}
.h2_c00266{height:77.654948pt;}
.h0_c00266{height:736.333333pt;}
.h1_c00266{height:736.666667pt;}
.w2_c00266{width:93.222667pt;}
.w0_c00266{width:501.133333pt;}
.w1_c00266{width:501.333333pt;}
.x0_c00266{left:0.000000pt;}
.xc_c00266{left:19.200000pt;}
.xb_c00266{left:22.800000pt;}
.x9_c00266{left:23.733333pt;}
.x7_c00266{left:25.200000pt;}
.x4_c00266{left:26.133333pt;}
.xa_c00266{left:27.866667pt;}
.xd_c00266{left:38.800000pt;}
.x3_c00266{left:42.266667pt;}
.x5_c00266{left:55.600000pt;}
.x6_c00266{left:89.200000pt;}
.x1_c00266{left:131.600000pt;}
.x2_c00266{left:155.200000pt;}
.xf_c00266{left:207.734904pt;}
.xe_c00266{left:283.200000pt;}
.x8_c00266{left:452.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_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_faef18a22dd1b0081114cf8a.woff2')format("woff");}.ff1_c00267{font-family:ff1_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:ff2_c00267;src:url('chunks/assets/font_e548b40e4c8c88f4a084a2a0.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.568848;font-style:normal;font-weight:normal;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_b55ed0481fe85e100d96f207.woff2')format("woff");}.ff3_c00267{font-family:ff3_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:ff4_c00267;src:url('chunks/assets/font_0c062f7a6456bce652faab26.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;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_c00267;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;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_c00267;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00267{font-family:ff6_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:ff7_c00267;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00267{font-family:ff7_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;}
.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;}
.ls5_c00267{letter-spacing:-6.000000px;}
.ls1_c00267{letter-spacing:0.000000px;}
.ls2_c00267{letter-spacing:3.000000px;}
.ls3_c00267{letter-spacing:9.000000px;}
.ls4_c00267{letter-spacing:18.000000px;}
.ls0_c00267{letter-spacing:22.458000px;}
.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:-44.022000px;}
.ws1_c00267{word-spacing:-25.629000px;}
.ws2_c00267{word-spacing:-16.629000px;}
.ws3_c00267{word-spacing:0.000000px;}
._28_c00267{margin-left:-36.570000px;}
._13_c00267{margin-left:-29.049000px;}
._21_c00267{margin-left:-26.490000px;}
._1b_c00267{margin-left:-17.181000px;}
._10_c00267{margin-left:-14.697000px;}
._0_c00267{margin-left:-12.627000px;}
._14_c00267{margin-left:-11.454000px;}
._1e_c00267{margin-left:-8.247000px;}
._d_c00267{margin-left:-6.969000px;}
._12_c00267{margin-left:-5.727000px;}
._11_c00267{margin-left:-4.692000px;}
._f_c00267{margin-left:-2.829000px;}
._c_c00267{margin-left:-1.449000px;}
._e_c00267{width:1.035000px;}
._4_c00267{width:2.139000px;}
._3_c00267{width:3.864000px;}
._2_c00267{width:5.451000px;}
._5_c00267{width:7.038000px;}
._15_c00267{width:8.142000px;}
._8_c00267{width:9.384000px;}
._18_c00267{width:10.869000px;}
._1d_c00267{width:12.489000px;}
._22_c00267{width:13.794000px;}
._1a_c00267{width:15.732000px;}
._17_c00267{width:16.767000px;}
._16_c00267{width:18.285000px;}
._9_c00267{width:19.320000px;}
._1f_c00267{width:20.631000px;}
._a_c00267{width:21.666000px;}
._20_c00267{width:23.805000px;}
._19_c00267{width:25.425000px;}
._33_c00267{width:26.664000px;}
._24_c00267{width:28.614000px;}
._2c_c00267{width:29.877000px;}
._30_c00267{width:32.154000px;}
._25_c00267{width:33.258000px;}
._2d_c00267{width:35.499000px;}
._2b_c00267{width:38.364000px;}
._32_c00267{width:40.542000px;}
._b_c00267{width:41.676000px;}
._7_c00267{width:43.332000px;}
._6_c00267{width:45.936000px;}
._1c_c00267{width:50.577000px;}
._27_c00267{width:53.544000px;}
._23_c00267{width:54.795000px;}
._31_c00267{width:59.859000px;}
._1_c00267{width:68.001000px;}
._2e_c00267{width:108.882000px;}
._2f_c00267{width:146.211000px;}
._26_c00267{width:150.006000px;}
._2a_c00267{width:217.662000px;}
._29_c00267{width:266.616000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(128,128,128);}
.fc0_c00267{color:rgb(0,0,0);}
.fs2_c00267{font-size:42.000000px;}
.fs3_c00267{font-size:48.000000px;}
.fs0_c00267{font-size:66.000000px;}
.fs1_c00267{font-size:69.000000px;}
.y0_c00267{bottom:0.000000px;}
.y1d_c00267{bottom:3.105000px;}
.y1c_c00267{bottom:7.228363px;}
.y1b_c00267{bottom:73.200000px;}
.y1a_c00267{bottom:98.550000px;}
.y19_c00267{bottom:124.200000px;}
.y18_c00267{bottom:149.550000px;}
.y17_c00267{bottom:173.850000px;}
.y16_c00267{bottom:199.800000px;}
.y15_c00267{bottom:224.850000px;}
.y14_c00267{bottom:250.350000px;}
.y13_c00267{bottom:274.500000px;}
.y12_c00267{bottom:300.150000px;}
.y11_c00267{bottom:325.050000px;}
.y10_c00267{bottom:349.950000px;}
.yf_c00267{bottom:374.700000px;}
.ye_c00267{bottom:399.600000px;}
.yd_c00267{bottom:424.350000px;}
.yc_c00267{bottom:449.850000px;}
.yb_c00267{bottom:475.650000px;}
.ya_c00267{bottom:500.850000px;}
.y9_c00267{bottom:525.150000px;}
.y8_c00267{bottom:550.200000px;}
.y7_c00267{bottom:575.850000px;}
.y1_c00267{bottom:588.900000px;}
.y6_c00267{bottom:601.050000px;}
.y5_c00267{bottom:626.400000px;}
.y4_c00267{bottom:651.150000px;}
.y3_c00267{bottom:676.650000px;}
.y2_c00267{bottom:726.600000px;}
.h4_c00267{height:13.200074px;}
.h5_c00267{height:43.804688px;}
.h3_c00267{height:80.758301px;}
.h2_c00267{height:87.361816px;}
.h0_c00267{height:818.100000px;}
.h1_c00267{height:818.250000px;}
.w2_c00267{width:104.875500px;}
.w0_c00267{width:565.350000px;}
.w1_c00267{width:565.500000px;}
.x0_c00267{left:0.000000px;}
.xb_c00267{left:29.100000px;}
.x9_c00267{left:30.150000px;}
.x8_c00267{left:49.950000px;}
.x1_c00267{left:65.100000px;}
.x6_c00267{left:72.900000px;}
.x2_c00267{left:93.900000px;}
.xc_c00267{left:94.950000px;}
.x5_c00267{left:97.200000px;}
.x7_c00267{left:98.250000px;}
.x4_c00267{left:99.600000px;}
.x3_c00267{left:124.200000px;}
.xa_c00267{left:176.850000px;}
.xd_c00267{left:234.489258px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls5_c00267{letter-spacing:-5.333333pt;}
.ls1_c00267{letter-spacing:0.000000pt;}
.ls2_c00267{letter-spacing:2.666667pt;}
.ls3_c00267{letter-spacing:8.000000pt;}
.ls4_c00267{letter-spacing:16.000000pt;}
.ls0_c00267{letter-spacing:19.962667pt;}
.ws0_c00267{word-spacing:-39.130667pt;}
.ws1_c00267{word-spacing:-22.781333pt;}
.ws2_c00267{word-spacing:-14.781333pt;}
.ws3_c00267{word-spacing:0.000000pt;}
._28_c00267{margin-left:-32.506667pt;}
._13_c00267{margin-left:-25.821333pt;}
._21_c00267{margin-left:-23.546667pt;}
._1b_c00267{margin-left:-15.272000pt;}
._10_c00267{margin-left:-13.064000pt;}
._0_c00267{margin-left:-11.224000pt;}
._14_c00267{margin-left:-10.181333pt;}
._1e_c00267{margin-left:-7.330667pt;}
._d_c00267{margin-left:-6.194667pt;}
._12_c00267{margin-left:-5.090667pt;}
._11_c00267{margin-left:-4.170667pt;}
._f_c00267{margin-left:-2.514667pt;}
._c_c00267{margin-left:-1.288000pt;}
._e_c00267{width:0.920000pt;}
._4_c00267{width:1.901333pt;}
._3_c00267{width:3.434667pt;}
._2_c00267{width:4.845333pt;}
._5_c00267{width:6.256000pt;}
._15_c00267{width:7.237333pt;}
._8_c00267{width:8.341333pt;}
._18_c00267{width:9.661333pt;}
._1d_c00267{width:11.101333pt;}
._22_c00267{width:12.261333pt;}
._1a_c00267{width:13.984000pt;}
._17_c00267{width:14.904000pt;}
._16_c00267{width:16.253333pt;}
._9_c00267{width:17.173333pt;}
._1f_c00267{width:18.338667pt;}
._a_c00267{width:19.258667pt;}
._20_c00267{width:21.160000pt;}
._19_c00267{width:22.600000pt;}
._33_c00267{width:23.701333pt;}
._24_c00267{width:25.434667pt;}
._2c_c00267{width:26.557333pt;}
._30_c00267{width:28.581333pt;}
._25_c00267{width:29.562667pt;}
._2d_c00267{width:31.554667pt;}
._2b_c00267{width:34.101333pt;}
._32_c00267{width:36.037333pt;}
._b_c00267{width:37.045333pt;}
._7_c00267{width:38.517333pt;}
._6_c00267{width:40.832000pt;}
._1c_c00267{width:44.957333pt;}
._27_c00267{width:47.594667pt;}
._23_c00267{width:48.706667pt;}
._31_c00267{width:53.208000pt;}
._1_c00267{width:60.445333pt;}
._2e_c00267{width:96.784000pt;}
._2f_c00267{width:129.965333pt;}
._26_c00267{width:133.338667pt;}
._2a_c00267{width:193.477333pt;}
._29_c00267{width:236.992000pt;}
.fs2_c00267{font-size:37.333333pt;}
.fs3_c00267{font-size:42.666667pt;}
.fs0_c00267{font-size:58.666667pt;}
.fs1_c00267{font-size:61.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y1d_c00267{bottom:2.760000pt;}
.y1c_c00267{bottom:6.425212pt;}
.y1b_c00267{bottom:65.066667pt;}
.y1a_c00267{bottom:87.600000pt;}
.y19_c00267{bottom:110.400000pt;}
.y18_c00267{bottom:132.933333pt;}
.y17_c00267{bottom:154.533333pt;}
.y16_c00267{bottom:177.600000pt;}
.y15_c00267{bottom:199.866667pt;}
.y14_c00267{bottom:222.533333pt;}
.y13_c00267{bottom:244.000000pt;}
.y12_c00267{bottom:266.800000pt;}
.y11_c00267{bottom:288.933333pt;}
.y10_c00267{bottom:311.066667pt;}
.yf_c00267{bottom:333.066667pt;}
.ye_c00267{bottom:355.200000pt;}
.yd_c00267{bottom:377.200000pt;}
.yc_c00267{bottom:399.866667pt;}
.yb_c00267{bottom:422.800000pt;}
.ya_c00267{bottom:445.200000pt;}
.y9_c00267{bottom:466.800000pt;}
.y8_c00267{bottom:489.066667pt;}
.y7_c00267{bottom:511.866667pt;}
.y1_c00267{bottom:523.466667pt;}
.y6_c00267{bottom:534.266667pt;}
.y5_c00267{bottom:556.800000pt;}
.y4_c00267{bottom:578.800000pt;}
.y3_c00267{bottom:601.466667pt;}
.y2_c00267{bottom:645.866667pt;}
.h4_c00267{height:11.733399pt;}
.h5_c00267{height:38.937500pt;}
.h3_c00267{height:71.785156pt;}
.h2_c00267{height:77.654948pt;}
.h0_c00267{height:727.200000pt;}
.h1_c00267{height:727.333333pt;}
.w2_c00267{width:93.222667pt;}
.w0_c00267{width:502.533333pt;}
.w1_c00267{width:502.666667pt;}
.x0_c00267{left:0.000000pt;}
.xb_c00267{left:25.866667pt;}
.x9_c00267{left:26.800000pt;}
.x8_c00267{left:44.400000pt;}
.x1_c00267{left:57.866667pt;}
.x6_c00267{left:64.800000pt;}
.x2_c00267{left:83.466667pt;}
.xc_c00267{left:84.400000pt;}
.x5_c00267{left:86.400000pt;}
.x7_c00267{left:87.333333pt;}
.x4_c00267{left:88.533333pt;}
.x3_c00267{left:110.400000pt;}
.xa_c00267{left:157.200000pt;}
.xd_c00267{left:208.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_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_c534867f327abc91899e1cc6.woff2')format("woff");}.ff1_c00268{font-family:ff1_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:ff2_c00268;src:url('chunks/assets/font_12afb38657d892c8fdbdb1bf.woff2')format("woff");}.ff2_c00268{font-family:ff2_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:ff3_c00268;src:url('chunks/assets/font_6bdc000598bb60aed4771885.woff2')format("woff");}.ff3_c00268{font-family:ff3_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:ff4_c00268;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00268{font-family:ff4_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;}
.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;}
.ls3_c00268{letter-spacing:0.000000px;}
.ls1_c00268{letter-spacing:3.000000px;}
.ls0_c00268{letter-spacing:10.725000px;}
.ls2_c00268{letter-spacing:15.525000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:-16.629000px;}
.ws1_c00268{word-spacing:0.000000px;}
._1a_c00268{margin-left:-23.739000px;}
._28_c00268{margin-left:-20.724000px;}
._25_c00268{margin-left:-17.499000px;}
._23_c00268{margin-left:-13.938000px;}
._f_c00268{margin-left:-12.603000px;}
._18_c00268{margin-left:-10.902000px;}
._19_c00268{margin-left:-9.159000px;}
._b_c00268{margin-left:-8.142000px;}
._10_c00268{margin-left:-6.486000px;}
._0_c00268{margin-left:-5.106000px;}
._1_c00268{margin-left:-3.864000px;}
._2_c00268{margin-left:-2.484000px;}
._9_c00268{margin-left:-1.242000px;}
._3_c00268{width:1.656000px;}
._4_c00268{width:3.105000px;}
._7_c00268{width:5.097000px;}
._14_c00268{width:6.951000px;}
._e_c00268{width:8.556000px;}
._15_c00268{width:9.885000px;}
._a_c00268{width:10.971000px;}
._16_c00268{width:11.982000px;}
._13_c00268{width:13.050000px;}
._11_c00268{width:14.145000px;}
._2a_c00268{width:15.228000px;}
._6_c00268{width:16.284000px;}
._8_c00268{width:18.366000px;}
._c_c00268{width:21.666000px;}
._1c_c00268{width:22.764000px;}
._1f_c00268{width:24.588000px;}
._d_c00268{width:36.297000px;}
._1b_c00268{width:37.674000px;}
._21_c00268{width:42.495000px;}
._24_c00268{width:90.183000px;}
._26_c00268{width:93.477000px;}
._17_c00268{width:97.794000px;}
._1d_c00268{width:98.928000px;}
._1e_c00268{width:104.880000px;}
._22_c00268{width:106.635000px;}
._27_c00268{width:175.260000px;}
._20_c00268{width:183.354000px;}
._12_c00268{width:193.407000px;}
._2b_c00268{width:492.453000px;}
._5_c00268{width:532.743000px;}
._29_c00268{width:945.162000px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(128,128,128);}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:45.000000px;}
.fs2_c00268{font-size:48.000000px;}
.fs0_c00268{font-size:69.000000px;}
.y0_c00268{bottom:0.000000px;}
.y20_c00268{bottom:3.105000px;}
.y1f_c00268{bottom:7.228371px;}
.y1e_c00268{bottom:63.165000px;}
.y1d_c00268{bottom:87.765000px;}
.y1c_c00268{bottom:113.415000px;}
.y1b_c00268{bottom:137.415000px;}
.y1a_c00268{bottom:162.765000px;}
.y19_c00268{bottom:188.115000px;}
.y18_c00268{bottom:213.615000px;}
.y17_c00268{bottom:238.665000px;}
.y16_c00268{bottom:262.965000px;}
.y15_c00268{bottom:288.915000px;}
.y14_c00268{bottom:313.965000px;}
.y13_c00268{bottom:338.865000px;}
.y12_c00268{bottom:363.465000px;}
.y11_c00268{bottom:386.865000px;}
.y10_c00268{bottom:413.415000px;}
.yf_c00268{bottom:438.465000px;}
.ye_c00268{bottom:463.365000px;}
.yd_c00268{bottom:488.115000px;}
.yc_c00268{bottom:512.115000px;}
.yb_c00268{bottom:536.715000px;}
.ya_c00268{bottom:561.915000px;}
.y9_c00268{bottom:586.965000px;}
.y8_c00268{bottom:611.865000px;}
.y7_c00268{bottom:636.615000px;}
.y6_c00268{bottom:661.965000px;}
.y5_c00268{bottom:686.565000px;}
.y4_c00268{bottom:711.465000px;}
.y3_c00268{bottom:736.815000px;}
.y2_c00268{bottom:761.715000px;}
.y1_c00268{bottom:785.415000px;}
.h3_c00268{height:13.200074px;}
.h4_c00268{height:43.804688px;}
.h2_c00268{height:87.361816px;}
.h1_c00268{height:831.000000px;}
.h0_c00268{height:831.075000px;}
.w2_c00268{width:104.875500px;}
.w0_c00268{width:566.175000px;}
.w1_c00268{width:566.250000px;}
.x0_c00268{left:0.000000px;}
.x6_c00268{left:26.700000px;}
.x5_c00268{left:27.900000px;}
.x3_c00268{left:29.250000px;}
.x2_c00268{left:30.600000px;}
.x7_c00268{left:33.000000px;}
.x4_c00268{left:52.650000px;}
.x1_c00268{left:194.100000px;}
.x8_c00268{left:234.901749px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls3_c00268{letter-spacing:0.000000pt;}
.ls1_c00268{letter-spacing:2.666667pt;}
.ls0_c00268{letter-spacing:9.533333pt;}
.ls2_c00268{letter-spacing:13.800000pt;}
.ws0_c00268{word-spacing:-14.781333pt;}
.ws1_c00268{word-spacing:0.000000pt;}
._1a_c00268{margin-left:-21.101333pt;}
._28_c00268{margin-left:-18.421333pt;}
._25_c00268{margin-left:-15.554667pt;}
._23_c00268{margin-left:-12.389333pt;}
._f_c00268{margin-left:-11.202667pt;}
._18_c00268{margin-left:-9.690667pt;}
._19_c00268{margin-left:-8.141333pt;}
._b_c00268{margin-left:-7.237333pt;}
._10_c00268{margin-left:-5.765333pt;}
._0_c00268{margin-left:-4.538667pt;}
._1_c00268{margin-left:-3.434667pt;}
._2_c00268{margin-left:-2.208000pt;}
._9_c00268{margin-left:-1.104000pt;}
._3_c00268{width:1.472000pt;}
._4_c00268{width:2.760000pt;}
._7_c00268{width:4.530667pt;}
._14_c00268{width:6.178667pt;}
._e_c00268{width:7.605333pt;}
._15_c00268{width:8.786667pt;}
._a_c00268{width:9.752000pt;}
._16_c00268{width:10.650667pt;}
._13_c00268{width:11.600000pt;}
._11_c00268{width:12.573333pt;}
._2a_c00268{width:13.536000pt;}
._6_c00268{width:14.474667pt;}
._8_c00268{width:16.325333pt;}
._c_c00268{width:19.258667pt;}
._1c_c00268{width:20.234667pt;}
._1f_c00268{width:21.856000pt;}
._d_c00268{width:32.264000pt;}
._1b_c00268{width:33.488000pt;}
._21_c00268{width:37.773333pt;}
._24_c00268{width:80.162667pt;}
._26_c00268{width:83.090667pt;}
._17_c00268{width:86.928000pt;}
._1d_c00268{width:87.936000pt;}
._1e_c00268{width:93.226667pt;}
._22_c00268{width:94.786667pt;}
._27_c00268{width:155.786667pt;}
._20_c00268{width:162.981333pt;}
._12_c00268{width:171.917333pt;}
._2b_c00268{width:437.736000pt;}
._5_c00268{width:473.549333pt;}
._29_c00268{width:840.144000pt;}
.fs1_c00268{font-size:40.000000pt;}
.fs2_c00268{font-size:42.666667pt;}
.fs0_c00268{font-size:61.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y20_c00268{bottom:2.760000pt;}
.y1f_c00268{bottom:6.425219pt;}
.y1e_c00268{bottom:56.146667pt;}
.y1d_c00268{bottom:78.013333pt;}
.y1c_c00268{bottom:100.813333pt;}
.y1b_c00268{bottom:122.146667pt;}
.y1a_c00268{bottom:144.680000pt;}
.y19_c00268{bottom:167.213333pt;}
.y18_c00268{bottom:189.880000pt;}
.y17_c00268{bottom:212.146667pt;}
.y16_c00268{bottom:233.746667pt;}
.y15_c00268{bottom:256.813333pt;}
.y14_c00268{bottom:279.080000pt;}
.y13_c00268{bottom:301.213333pt;}
.y12_c00268{bottom:323.080000pt;}
.y11_c00268{bottom:343.880000pt;}
.y10_c00268{bottom:367.480000pt;}
.yf_c00268{bottom:389.746667pt;}
.ye_c00268{bottom:411.880000pt;}
.yd_c00268{bottom:433.880000pt;}
.yc_c00268{bottom:455.213333pt;}
.yb_c00268{bottom:477.080000pt;}
.ya_c00268{bottom:499.480000pt;}
.y9_c00268{bottom:521.746667pt;}
.y8_c00268{bottom:543.880000pt;}
.y7_c00268{bottom:565.880000pt;}
.y6_c00268{bottom:588.413333pt;}
.y5_c00268{bottom:610.280000pt;}
.y4_c00268{bottom:632.413333pt;}
.y3_c00268{bottom:654.946667pt;}
.y2_c00268{bottom:677.080000pt;}
.y1_c00268{bottom:698.146667pt;}
.h3_c00268{height:11.733399pt;}
.h4_c00268{height:38.937500pt;}
.h2_c00268{height:77.654948pt;}
.h1_c00268{height:738.666667pt;}
.h0_c00268{height:738.733333pt;}
.w2_c00268{width:93.222667pt;}
.w0_c00268{width:503.266667pt;}
.w1_c00268{width:503.333333pt;}
.x0_c00268{left:0.000000pt;}
.x6_c00268{left:23.733333pt;}
.x5_c00268{left:24.800000pt;}
.x3_c00268{left:26.000000pt;}
.x2_c00268{left:27.200000pt;}
.x7_c00268{left:29.333333pt;}
.x4_c00268{left:46.800000pt;}
.x1_c00268{left:172.533333pt;}
.x8_c00268{left:208.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_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_4e6164a1de0d60a4fec36f49.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_a52689c8ddea96ac8e3674aa.woff2')format("woff");}.ff2_c00269{font-family:ff2_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:ff3_c00269;src:url('chunks/assets/font_b780295278b9a488d89559c1.woff2')format("woff");}.ff3_c00269{font-family:ff3_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:ff4_c00269;src:url('chunks/assets/font_63004473e4f45138e4ddd557.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;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_c00269;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00269{font-family:ff6_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;}
.ls4_c00269{letter-spacing:-6.000000px;}
.ls2_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:3.000000px;}
.ls1_c00269{letter-spacing:3.600000px;}
.ls3_c00269{letter-spacing:6.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-16.629000px;}
.ws3_c00269{word-spacing:-12.798000px;}
.ws2_c00269{word-spacing:-1.104000px;}
.ws1_c00269{word-spacing:-0.138000px;}
.ws4_c00269{word-spacing:0.000000px;}
._2f_c00269{margin-left:-48.141000px;}
._31_c00269{margin-left:-34.362000px;}
._e_c00269{margin-left:-24.633000px;}
._b_c00269{margin-left:-19.458000px;}
._20_c00269{margin-left:-18.078000px;}
._26_c00269{margin-left:-16.953000px;}
._1c_c00269{margin-left:-15.939000px;}
._33_c00269{margin-left:-14.838000px;}
._d_c00269{margin-left:-13.800000px;}
._1f_c00269{margin-left:-12.726000px;}
._21_c00269{margin-left:-11.643000px;}
._16_c00269{margin-left:-10.620000px;}
._11_c00269{margin-left:-8.967000px;}
._12_c00269{margin-left:-7.431000px;}
._34_c00269{margin-left:-6.414000px;}
._8_c00269{margin-left:-5.382000px;}
._13_c00269{margin-left:-4.254000px;}
._0_c00269{margin-left:-3.174000px;}
._3_c00269{margin-left:-1.311000px;}
._9_c00269{width:1.416000px;}
._1_c00269{width:2.418000px;}
._5_c00269{width:3.795000px;}
._4_c00269{width:4.827000px;}
._6_c00269{width:6.210000px;}
._18_c00269{width:7.245000px;}
._a_c00269{width:8.742000px;}
._10_c00269{width:10.572000px;}
._1a_c00269{width:11.625000px;}
._19_c00269{width:12.903000px;}
._24_c00269{width:14.112000px;}
._15_c00269{width:15.189000px;}
._22_c00269{width:16.686000px;}
._7_c00269{width:18.147000px;}
._2c_c00269{width:19.524000px;}
._14_c00269{width:21.135000px;}
._c_c00269{width:22.632000px;}
._25_c00269{width:24.030000px;}
._17_c00269{width:25.383000px;}
._1b_c00269{width:27.669000px;}
._2b_c00269{width:29.541000px;}
._35_c00269{width:56.160000px;}
._27_c00269{width:57.339000px;}
._30_c00269{width:84.477000px;}
._1e_c00269{width:87.189000px;}
._23_c00269{width:96.000000px;}
._1d_c00269{width:105.501000px;}
._f_c00269{width:110.814000px;}
._32_c00269{width:143.538000px;}
._2e_c00269{width:172.338000px;}
._37_c00269{width:190.548000px;}
._38_c00269{width:221.166000px;}
._29_c00269{width:222.870000px;}
._2d_c00269{width:245.475000px;}
._2_c00269{width:375.159000px;}
._2a_c00269{width:382.029000px;}
._36_c00269{width:512.505000px;}
._28_c00269{width:541.647000px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(128,128,128);}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:42.000000px;}
.fs6_c00269{font-size:48.000000px;}
.fs1_c00269{font-size:60.000000px;}
.fs2_c00269{font-size:66.000000px;}
.fs0_c00269{font-size:69.000000px;}
.fs5_c00269{font-size:72.000000px;}
.fs4_c00269{font-size:78.000000px;}
.y0_c00269{bottom:0.000000px;}
.y1f_c00269{bottom:3.105000px;}
.y1e_c00269{bottom:7.228357px;}
.y1d_c00269{bottom:54.330000px;}
.y1c_c00269{bottom:78.930000px;}
.y1b_c00269{bottom:105.330000px;}
.y1a_c00269{bottom:130.680000px;}
.y19_c00269{bottom:156.330000px;}
.y18_c00269{bottom:181.530000px;}
.y17_c00269{bottom:206.580000px;}
.y16_c00269{bottom:232.230000px;}
.y15_c00269{bottom:257.580000px;}
.y14_c00269{bottom:281.580000px;}
.y13_c00269{bottom:307.080000px;}
.y12_c00269{bottom:331.830000px;}
.y11_c00269{bottom:380.430000px;}
.y10_c00269{bottom:394.530000px;}
.yf_c00269{bottom:430.980000px;}
.ye_c00269{bottom:456.330000px;}
.yd_c00269{bottom:481.380000px;}
.yc_c00269{bottom:506.580000px;}
.yb_c00269{bottom:531.330000px;}
.ya_c00269{bottom:556.530000px;}
.y9_c00269{bottom:581.130000px;}
.y8_c00269{bottom:606.180000px;}
.y7_c00269{bottom:631.530000px;}
.y6_c00269{bottom:655.530000px;}
.y5_c00269{bottom:681.480000px;}
.y4_c00269{bottom:706.380000px;}
.y3_c00269{bottom:731.130000px;}
.y2_c00269{bottom:755.730000px;}
.y1_c00269{bottom:781.680000px;}
.h5_c00269{height:13.200074px;}
.h6_c00269{height:43.804688px;}
.h2_c00269{height:75.966797px;}
.h3_c00269{height:80.758301px;}
.h1_c00269{height:87.361816px;}
.h4_c00269{height:91.291992px;}
.h0_c00269{height:819.750000px;}
.w2_c00269{width:104.875500px;}
.w1_c00269{width:566.250000px;}
.w0_c00269{width:566.475000px;}
.x0_c00269{left:0.000000px;}
.x10_c00269{left:27.900000px;}
.xb_c00269{left:35.100000px;}
.x3_c00269{left:36.750000px;}
.xf_c00269{left:46.800000px;}
.x8_c00269{left:50.250000px;}
.x6_c00269{left:55.650000px;}
.x11_c00269{left:90.000000px;}
.x12_c00269{left:92.400000px;}
.xe_c00269{left:94.200000px;}
.xd_c00269{left:95.550000px;}
.xa_c00269{left:96.600000px;}
.x9_c00269{left:97.650000px;}
.x7_c00269{left:99.300000px;}
.x2_c00269{left:100.500000px;}
.x4_c00269{left:101.850000px;}
.xc_c00269{left:102.900000px;}
.x1_c00269{left:114.900000px;}
.x5_c00269{left:125.850000px;}
.x14_c00269{left:235.051758px;}
.x13_c00269{left:251.100000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls4_c00269{letter-spacing:-5.333333pt;}
.ls2_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:2.666667pt;}
.ls1_c00269{letter-spacing:3.200000pt;}
.ls3_c00269{letter-spacing:5.333333pt;}
.ws0_c00269{word-spacing:-14.781333pt;}
.ws3_c00269{word-spacing:-11.376000pt;}
.ws2_c00269{word-spacing:-0.981333pt;}
.ws1_c00269{word-spacing:-0.122667pt;}
.ws4_c00269{word-spacing:0.000000pt;}
._2f_c00269{margin-left:-42.792000pt;}
._31_c00269{margin-left:-30.544000pt;}
._e_c00269{margin-left:-21.896000pt;}
._b_c00269{margin-left:-17.296000pt;}
._20_c00269{margin-left:-16.069333pt;}
._26_c00269{margin-left:-15.069333pt;}
._1c_c00269{margin-left:-14.168000pt;}
._33_c00269{margin-left:-13.189333pt;}
._d_c00269{margin-left:-12.266667pt;}
._1f_c00269{margin-left:-11.312000pt;}
._21_c00269{margin-left:-10.349333pt;}
._16_c00269{margin-left:-9.440000pt;}
._11_c00269{margin-left:-7.970667pt;}
._12_c00269{margin-left:-6.605333pt;}
._34_c00269{margin-left:-5.701333pt;}
._8_c00269{margin-left:-4.784000pt;}
._13_c00269{margin-left:-3.781333pt;}
._0_c00269{margin-left:-2.821333pt;}
._3_c00269{margin-left:-1.165333pt;}
._9_c00269{width:1.258667pt;}
._1_c00269{width:2.149333pt;}
._5_c00269{width:3.373333pt;}
._4_c00269{width:4.290667pt;}
._6_c00269{width:5.520000pt;}
._18_c00269{width:6.440000pt;}
._a_c00269{width:7.770667pt;}
._10_c00269{width:9.397333pt;}
._1a_c00269{width:10.333333pt;}
._19_c00269{width:11.469333pt;}
._24_c00269{width:12.544000pt;}
._15_c00269{width:13.501333pt;}
._22_c00269{width:14.832000pt;}
._7_c00269{width:16.130667pt;}
._2c_c00269{width:17.354667pt;}
._14_c00269{width:18.786667pt;}
._c_c00269{width:20.117333pt;}
._25_c00269{width:21.360000pt;}
._17_c00269{width:22.562667pt;}
._1b_c00269{width:24.594667pt;}
._2b_c00269{width:26.258667pt;}
._35_c00269{width:49.920000pt;}
._27_c00269{width:50.968000pt;}
._30_c00269{width:75.090667pt;}
._1e_c00269{width:77.501333pt;}
._23_c00269{width:85.333333pt;}
._1d_c00269{width:93.778667pt;}
._f_c00269{width:98.501333pt;}
._32_c00269{width:127.589333pt;}
._2e_c00269{width:153.189333pt;}
._37_c00269{width:169.376000pt;}
._38_c00269{width:196.592000pt;}
._29_c00269{width:198.106667pt;}
._2d_c00269{width:218.200000pt;}
._2_c00269{width:333.474667pt;}
._2a_c00269{width:339.581333pt;}
._36_c00269{width:455.560000pt;}
._28_c00269{width:481.464000pt;}
.fs3_c00269{font-size:37.333333pt;}
.fs6_c00269{font-size:42.666667pt;}
.fs1_c00269{font-size:53.333333pt;}
.fs2_c00269{font-size:58.666667pt;}
.fs0_c00269{font-size:61.333333pt;}
.fs5_c00269{font-size:64.000000pt;}
.fs4_c00269{font-size:69.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y1f_c00269{bottom:2.760000pt;}
.y1e_c00269{bottom:6.425206pt;}
.y1d_c00269{bottom:48.293333pt;}
.y1c_c00269{bottom:70.160000pt;}
.y1b_c00269{bottom:93.626667pt;}
.y1a_c00269{bottom:116.160000pt;}
.y19_c00269{bottom:138.960000pt;}
.y18_c00269{bottom:161.360000pt;}
.y17_c00269{bottom:183.626667pt;}
.y16_c00269{bottom:206.426667pt;}
.y15_c00269{bottom:228.960000pt;}
.y14_c00269{bottom:250.293333pt;}
.y13_c00269{bottom:272.960000pt;}
.y12_c00269{bottom:294.960000pt;}
.y11_c00269{bottom:338.160000pt;}
.y10_c00269{bottom:350.693333pt;}
.yf_c00269{bottom:383.093333pt;}
.ye_c00269{bottom:405.626667pt;}
.yd_c00269{bottom:427.893333pt;}
.yc_c00269{bottom:450.293333pt;}
.yb_c00269{bottom:472.293333pt;}
.ya_c00269{bottom:494.693333pt;}
.y9_c00269{bottom:516.560000pt;}
.y8_c00269{bottom:538.826667pt;}
.y7_c00269{bottom:561.360000pt;}
.y6_c00269{bottom:582.693333pt;}
.y5_c00269{bottom:605.760000pt;}
.y4_c00269{bottom:627.893333pt;}
.y3_c00269{bottom:649.893333pt;}
.y2_c00269{bottom:671.760000pt;}
.y1_c00269{bottom:694.826667pt;}
.h5_c00269{height:11.733399pt;}
.h6_c00269{height:38.937500pt;}
.h2_c00269{height:67.526042pt;}
.h3_c00269{height:71.785156pt;}
.h1_c00269{height:77.654948pt;}
.h4_c00269{height:81.148438pt;}
.h0_c00269{height:728.666667pt;}
.w2_c00269{width:93.222667pt;}
.w1_c00269{width:503.333333pt;}
.w0_c00269{width:503.533333pt;}
.x0_c00269{left:0.000000pt;}
.x10_c00269{left:24.800000pt;}
.xb_c00269{left:31.200000pt;}
.x3_c00269{left:32.666667pt;}
.xf_c00269{left:41.600000pt;}
.x8_c00269{left:44.666667pt;}
.x6_c00269{left:49.466667pt;}
.x11_c00269{left:80.000000pt;}
.x12_c00269{left:82.133333pt;}
.xe_c00269{left:83.733333pt;}
.xd_c00269{left:84.933333pt;}
.xa_c00269{left:85.866667pt;}
.x9_c00269{left:86.800000pt;}
.x7_c00269{left:88.266667pt;}
.x2_c00269{left:89.333333pt;}
.x4_c00269{left:90.533333pt;}
.xc_c00269{left:91.466667pt;}
.x1_c00269{left:102.133333pt;}
.x5_c00269{left:111.866667pt;}
.x14_c00269{left:208.934896pt;}
.x13_c00269{left:223.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_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_dec73707c5d3bfe4cfffbd8b.woff2')format("woff");}.ff1_c00270{font-family:ff1_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:ff2_c00270;src:url('chunks/assets/font_660c69f88e28cdd478eea5c3.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.568848;font-style:normal;font-weight:normal;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_f2fd70e5aabe28d503cc2fc7.woff2')format("woff");}.ff3_c00270{font-family:ff3_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:ff4_c00270;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00270{font-family:ff4_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:ff5_c00270;src:url('chunks/assets/font_fdf8dc6864113285c2dc4879.woff2')format("woff");}.ff5_c00270{font-family:ff5_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:ff6_c00270;src:url('chunks/assets/font_d91ae5cda311a8210f3e1f81.woff2')format("woff");}.ff6_c00270{font-family:ff6_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:ff7_c00270;src:url('chunks/assets/font_88319495d759da9e81cb92cd.woff2')format("woff");}.ff7_c00270{font-family:ff7_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:ff8_c00270;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff8_c00270{font-family:ff8_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:ff9_c00270;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls7_c00270{letter-spacing:0.000000px;}
.ls8_c00270{letter-spacing:3.000000px;}
.ls0_c00270{letter-spacing:3.984000px;}
.ls9_c00270{letter-spacing:9.000000px;}
.ls1_c00270{letter-spacing:10.971000px;}
.ls4_c00270{letter-spacing:18.000000px;}
.ls5_c00270{letter-spacing:21.000000px;}
.lsa_c00270{letter-spacing:27.000000px;}
.ls6_c00270{letter-spacing:34.914000px;}
.ls2_c00270{letter-spacing:93.750000px;}
.ls3_c00270{letter-spacing:453.150000px;}
.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;}
}
.ws5_c00270{word-spacing:-46.818000px;}
.ws3_c00270{word-spacing:-26.250000px;}
.ws0_c00270{word-spacing:-25.629000px;}
.ws9_c00270{word-spacing:-18.018000px;}
.ws4_c00270{word-spacing:-18.000000px;}
.ws2_c00270{word-spacing:-17.250000px;}
.ws1_c00270{word-spacing:-16.629000px;}
.wsa_c00270{word-spacing:0.000000px;}
.ws7_c00270{word-spacing:2.940000px;}
.ws6_c00270{word-spacing:3.657000px;}
.ws8_c00270{word-spacing:10.074000px;}
._2d_c00270{margin-left:-31.119000px;}
._10_c00270{margin-left:-21.252000px;}
._11_c00270{margin-left:-18.561000px;}
._28_c00270{margin-left:-17.136000px;}
._25_c00270{margin-left:-15.651000px;}
._27_c00270{margin-left:-14.040000px;}
._f_c00270{margin-left:-12.972000px;}
._19_c00270{margin-left:-11.796000px;}
._15_c00270{margin-left:-10.626000px;}
._17_c00270{margin-left:-9.552000px;}
._18_c00270{margin-left:-8.280000px;}
._1a_c00270{margin-left:-6.975000px;}
._2_c00270{margin-left:-5.865000px;}
._a_c00270{margin-left:-4.386000px;}
._b_c00270{margin-left:-2.859000px;}
._9_c00270{margin-left:-1.653000px;}
._1_c00270{width:1.380000px;}
._0_c00270{width:2.415000px;}
._3_c00270{width:3.864000px;}
._8_c00270{width:5.037000px;}
._16_c00270{width:6.279000px;}
._5_c00270{width:7.866000px;}
._6_c00270{width:9.039000px;}
._7_c00270{width:10.557000px;}
._14_c00270{width:12.075000px;}
._1f_c00270{width:13.110000px;}
._d_c00270{width:14.304000px;}
._13_c00270{width:15.663000px;}
._2a_c00270{width:16.863000px;}
._c_c00270{width:18.147000px;}
._12_c00270{width:19.335000px;}
._20_c00270{width:20.358000px;}
._1d_c00270{width:21.663000px;}
._1e_c00270{width:23.529000px;}
._22_c00270{width:27.462000px;}
._29_c00270{width:28.566000px;}
._2c_c00270{width:30.717000px;}
._24_c00270{width:33.120000px;}
._1b_c00270{width:39.957000px;}
._23_c00270{width:41.487000px;}
._2b_c00270{width:101.592000px;}
._e_c00270{width:103.461000px;}
._21_c00270{width:106.590000px;}
._1c_c00270{width:173.127000px;}
._2e_c00270{width:185.070000px;}
._26_c00270{width:194.616000px;}
._4_c00270{width:524.238000px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(128,128,128);}
.fc0_c00270{color:rgb(0,0,0);}
.fs1_c00270{font-size:48.000000px;}
.fs3_c00270{font-size:54.000000px;}
.fs4_c00270{font-size:66.000000px;}
.fs0_c00270{font-size:69.000000px;}
.fs2_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y1e_c00270{bottom:3.105000px;}
.y1d_c00270{bottom:7.228371px;}
.y1c_c00270{bottom:65.115000px;}
.y1b_c00270{bottom:87.465000px;}
.y1a_c00270{bottom:113.715000px;}
.y19_c00270{bottom:138.015000px;}
.y18_c00270{bottom:162.765000px;}
.y17_c00270{bottom:187.965000px;}
.y16_c00270{bottom:213.315000px;}
.y15_c00270{bottom:238.665000px;}
.y14_c00270{bottom:263.265000px;}
.y13_c00270{bottom:288.615000px;}
.y12_c00270{bottom:313.965000px;}
.y11_c00270{bottom:339.165000px;}
.y10_c00270{bottom:388.215000px;}
.yf_c00270{bottom:427.965000px;}
.ye_c00270{bottom:446.265000px;}
.yd_c00270{bottom:464.115000px;}
.yc_c00270{bottom:498.915000px;}
.yb_c00270{bottom:536.265000px;}
.ya_c00270{bottom:561.315000px;}
.y9_c00270{bottom:586.365000px;}
.y8_c00270{bottom:611.565000px;}
.y7_c00270{bottom:636.615000px;}
.y6_c00270{bottom:661.815000px;}
.y5_c00270{bottom:686.565000px;}
.y4_c00270{bottom:711.465000px;}
.y3_c00270{bottom:736.515000px;}
.y2_c00270{bottom:761.715000px;}
.y1_c00270{bottom:786.765000px;}
.h8_c00270{height:13.200074px;}
.h9_c00270{height:43.804688px;}
.h6_c00270{height:58.536000px;}
.h3_c00270{height:67.719727px;}
.h7_c00270{height:68.370117px;}
.h5_c00270{height:72.562500px;}
.h4_c00270{height:80.758301px;}
.h2_c00270{height:87.361816px;}
.h1_c00270{height:831.000000px;}
.h0_c00270{height:831.075000px;}
.w2_c00270{width:104.875500px;}
.w0_c00270{width:566.175000px;}
.w1_c00270{width:566.250000px;}
.x0_c00270{left:0.000000px;}
.x9_c00270{left:30.750000px;}
.x3_c00270{left:31.950000px;}
.x2_c00270{left:33.750000px;}
.x4_c00270{left:35.100000px;}
.x6_c00270{left:52.350000px;}
.x8_c00270{left:59.700000px;}
.x7_c00270{left:70.800000px;}
.x5_c00270{left:187.350000px;}
.x1_c00270{left:195.150000px;}
.xb_c00270{left:234.901749px;}
.xa_c00270{left:410.100000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls7_c00270{letter-spacing:0.000000pt;}
.ls8_c00270{letter-spacing:2.666667pt;}
.ls0_c00270{letter-spacing:3.541333pt;}
.ls9_c00270{letter-spacing:8.000000pt;}
.ls1_c00270{letter-spacing:9.752000pt;}
.ls4_c00270{letter-spacing:16.000000pt;}
.ls5_c00270{letter-spacing:18.666667pt;}
.lsa_c00270{letter-spacing:24.000000pt;}
.ls6_c00270{letter-spacing:31.034667pt;}
.ls2_c00270{letter-spacing:83.333333pt;}
.ls3_c00270{letter-spacing:402.800000pt;}
.ws5_c00270{word-spacing:-41.616000pt;}
.ws3_c00270{word-spacing:-23.333333pt;}
.ws0_c00270{word-spacing:-22.781333pt;}
.ws9_c00270{word-spacing:-16.016000pt;}
.ws4_c00270{word-spacing:-16.000000pt;}
.ws2_c00270{word-spacing:-15.333333pt;}
.ws1_c00270{word-spacing:-14.781333pt;}
.wsa_c00270{word-spacing:0.000000pt;}
.ws7_c00270{word-spacing:2.613333pt;}
.ws6_c00270{word-spacing:3.250667pt;}
.ws8_c00270{word-spacing:8.954667pt;}
._2d_c00270{margin-left:-27.661333pt;}
._10_c00270{margin-left:-18.890667pt;}
._11_c00270{margin-left:-16.498667pt;}
._28_c00270{margin-left:-15.232000pt;}
._25_c00270{margin-left:-13.912000pt;}
._27_c00270{margin-left:-12.480000pt;}
._f_c00270{margin-left:-11.530667pt;}
._19_c00270{margin-left:-10.485333pt;}
._15_c00270{margin-left:-9.445333pt;}
._17_c00270{margin-left:-8.490667pt;}
._18_c00270{margin-left:-7.360000pt;}
._1a_c00270{margin-left:-6.200000pt;}
._2_c00270{margin-left:-5.213333pt;}
._a_c00270{margin-left:-3.898667pt;}
._b_c00270{margin-left:-2.541333pt;}
._9_c00270{margin-left:-1.469333pt;}
._1_c00270{width:1.226667pt;}
._0_c00270{width:2.146667pt;}
._3_c00270{width:3.434667pt;}
._8_c00270{width:4.477333pt;}
._16_c00270{width:5.581333pt;}
._5_c00270{width:6.992000pt;}
._6_c00270{width:8.034667pt;}
._7_c00270{width:9.384000pt;}
._14_c00270{width:10.733333pt;}
._1f_c00270{width:11.653333pt;}
._d_c00270{width:12.714667pt;}
._13_c00270{width:13.922667pt;}
._2a_c00270{width:14.989333pt;}
._c_c00270{width:16.130667pt;}
._12_c00270{width:17.186667pt;}
._20_c00270{width:18.096000pt;}
._1d_c00270{width:19.256000pt;}
._1e_c00270{width:20.914667pt;}
._22_c00270{width:24.410667pt;}
._29_c00270{width:25.392000pt;}
._2c_c00270{width:27.304000pt;}
._24_c00270{width:29.440000pt;}
._1b_c00270{width:35.517333pt;}
._23_c00270{width:36.877333pt;}
._2b_c00270{width:90.304000pt;}
._e_c00270{width:91.965333pt;}
._21_c00270{width:94.746667pt;}
._1c_c00270{width:153.890667pt;}
._2e_c00270{width:164.506667pt;}
._26_c00270{width:172.992000pt;}
._4_c00270{width:465.989333pt;}
.fs1_c00270{font-size:42.666667pt;}
.fs3_c00270{font-size:48.000000pt;}
.fs4_c00270{font-size:58.666667pt;}
.fs0_c00270{font-size:61.333333pt;}
.fs2_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y1e_c00270{bottom:2.760000pt;}
.y1d_c00270{bottom:6.425219pt;}
.y1c_c00270{bottom:57.880000pt;}
.y1b_c00270{bottom:77.746667pt;}
.y1a_c00270{bottom:101.080000pt;}
.y19_c00270{bottom:122.680000pt;}
.y18_c00270{bottom:144.680000pt;}
.y17_c00270{bottom:167.080000pt;}
.y16_c00270{bottom:189.613333pt;}
.y15_c00270{bottom:212.146667pt;}
.y14_c00270{bottom:234.013333pt;}
.y13_c00270{bottom:256.546667pt;}
.y12_c00270{bottom:279.080000pt;}
.y11_c00270{bottom:301.480000pt;}
.y10_c00270{bottom:345.080000pt;}
.yf_c00270{bottom:380.413333pt;}
.ye_c00270{bottom:396.680000pt;}
.yd_c00270{bottom:412.546667pt;}
.yc_c00270{bottom:443.480000pt;}
.yb_c00270{bottom:476.680000pt;}
.ya_c00270{bottom:498.946667pt;}
.y9_c00270{bottom:521.213333pt;}
.y8_c00270{bottom:543.613333pt;}
.y7_c00270{bottom:565.880000pt;}
.y6_c00270{bottom:588.280000pt;}
.y5_c00270{bottom:610.280000pt;}
.y4_c00270{bottom:632.413333pt;}
.y3_c00270{bottom:654.680000pt;}
.y2_c00270{bottom:677.080000pt;}
.y1_c00270{bottom:699.346667pt;}
.h8_c00270{height:11.733399pt;}
.h9_c00270{height:38.937500pt;}
.h6_c00270{height:52.032000pt;}
.h3_c00270{height:60.195312pt;}
.h7_c00270{height:60.773438pt;}
.h5_c00270{height:64.500000pt;}
.h4_c00270{height:71.785156pt;}
.h2_c00270{height:77.654948pt;}
.h1_c00270{height:738.666667pt;}
.h0_c00270{height:738.733333pt;}
.w2_c00270{width:93.222667pt;}
.w0_c00270{width:503.266667pt;}
.w1_c00270{width:503.333333pt;}
.x0_c00270{left:0.000000pt;}
.x9_c00270{left:27.333333pt;}
.x3_c00270{left:28.400000pt;}
.x2_c00270{left:30.000000pt;}
.x4_c00270{left:31.200000pt;}
.x6_c00270{left:46.533333pt;}
.x8_c00270{left:53.066667pt;}
.x7_c00270{left:62.933333pt;}
.x5_c00270{left:166.533333pt;}
.x1_c00270{left:173.466667pt;}
.xb_c00270{left:208.801554pt;}
.xa_c00270{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_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_529bc60f7422102a69c862ed.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_5d4f64371274dde1c0634bf3.woff2')format("woff");}.ff2_c00271{font-family:ff2_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:ff3_c00271;src:url('chunks/assets/font_2014872469e1a06e0d5e7c2e.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.311035;font-style:normal;font-weight:normal;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_53ae2cb24135a0102299a50e.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00271{font-family:ff5_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;}
.ls9_c00271{letter-spacing:0.000000px;}
.ls8_c00271{letter-spacing:3.000000px;}
.ls6_c00271{letter-spacing:9.000000px;}
.ls3_c00271{letter-spacing:14.289000px;}
.ls7_c00271{letter-spacing:15.525000px;}
.ls5_c00271{letter-spacing:16.200000px;}
.ls0_c00271{letter-spacing:16.800000px;}
.lsa_c00271{letter-spacing:18.000000px;}
.ls2_c00271{letter-spacing:22.200000px;}
.ls1_c00271{letter-spacing:27.600000px;}
.ls4_c00271{letter-spacing:30.600000px;}
.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;}
}
.ws6_c00271{word-spacing:-34.629000px;}
.ws3_c00271{word-spacing:-25.629000px;}
.ws2_c00271{word-spacing:-16.629000px;}
.ws5_c00271{word-spacing:-1.035000px;}
.ws7_c00271{word-spacing:0.000000px;}
.ws4_c00271{word-spacing:0.069000px;}
.ws1_c00271{word-spacing:0.330000px;}
.ws0_c00271{word-spacing:9.246000px;}
._22_c00271{margin-left:-23.391000px;}
._1e_c00271{margin-left:-16.245000px;}
._20_c00271{margin-left:-14.943000px;}
._19_c00271{margin-left:-13.356000px;}
._26_c00271{margin-left:-12.009000px;}
._21_c00271{margin-left:-10.347000px;}
._0_c00271{margin-left:-8.832000px;}
._13_c00271{margin-left:-7.143000px;}
._9_c00271{margin-left:-5.382000px;}
._17_c00271{margin-left:-4.290000px;}
._e_c00271{margin-left:-3.282000px;}
._5_c00271{margin-left:-2.208000px;}
._6_c00271{margin-left:-1.173000px;}
._7_c00271{width:2.001000px;}
._c_c00271{width:3.141000px;}
._3_c00271{width:4.209000px;}
._25_c00271{width:5.241000px;}
._2_c00271{width:6.279000px;}
._1_c00271{width:7.797000px;}
._12_c00271{width:9.108000px;}
._b_c00271{width:11.178000px;}
._11_c00271{width:12.966000px;}
._a_c00271{width:14.007000px;}
._8_c00271{width:16.008000px;}
._1c_c00271{width:17.130000px;}
._16_c00271{width:18.417000px;}
._14_c00271{width:22.110000px;}
._f_c00271{width:23.871000px;}
._1a_c00271{width:25.254000px;}
._10_c00271{width:27.078000px;}
._d_c00271{width:29.205000px;}
._29_c00271{width:34.290000px;}
._1b_c00271{width:36.729000px;}
._1d_c00271{width:42.165000px;}
._1f_c00271{width:45.486000px;}
._27_c00271{width:53.904000px;}
._15_c00271{width:98.646000px;}
._23_c00271{width:131.925000px;}
._18_c00271{width:152.346000px;}
._28_c00271{width:167.619000px;}
._24_c00271{width:168.924000px;}
._4_c00271{width:373.359000px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(128,128,128);}
.fc0_c00271{color:rgb(0,0,0);}
.fs2_c00271{font-size:48.000000px;}
.fs1_c00271{font-size:66.000000px;}
.fs0_c00271{font-size:69.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1e_c00271{bottom:3.105000px;}
.y1d_c00271{bottom:7.228363px;}
.y1c_c00271{bottom:62.100000px;}
.y1b_c00271{bottom:86.700000px;}
.y1a_c00271{bottom:112.350000px;}
.y19_c00271{bottom:137.400000px;}
.y18_c00271{bottom:162.000000px;}
.y17_c00271{bottom:188.550000px;}
.y16_c00271{bottom:213.600000px;}
.y15_c00271{bottom:238.500000px;}
.y14_c00271{bottom:264.150000px;}
.y13_c00271{bottom:288.900000px;}
.y12_c00271{bottom:314.100000px;}
.y11_c00271{bottom:338.550000px;}
.y10_c00271{bottom:364.200000px;}
.yf_c00271{bottom:388.500000px;}
.ye_c00271{bottom:414.150000px;}
.yd_c00271{bottom:439.350000px;}
.yc_c00271{bottom:464.400000px;}
.yb_c00271{bottom:515.250000px;}
.ya_c00271{bottom:564.600000px;}
.y9_c00271{bottom:591.000000px;}
.y8_c00271{bottom:615.150000px;}
.y7_c00271{bottom:639.900000px;}
.y6_c00271{bottom:664.800000px;}
.y5_c00271{bottom:689.850000px;}
.y4_c00271{bottom:714.750000px;}
.y3_c00271{bottom:739.350000px;}
.y2_c00271{bottom:764.400000px;}
.y1_c00271{bottom:789.450000px;}
.h4_c00271{height:13.200074px;}
.h5_c00271{height:43.804688px;}
.h3_c00271{height:80.758301px;}
.h2_c00271{height:87.361816px;}
.h1_c00271{height:827.250000px;}
.h0_c00271{height:827.550000px;}
.w2_c00271{width:104.875500px;}
.w0_c00271{width:572.100000px;}
.w1_c00271{width:572.250000px;}
.x0_c00271{left:0.000000px;}
.xf_c00271{left:30.450000px;}
.xd_c00271{left:32.400000px;}
.x6_c00271{left:35.100000px;}
.x5_c00271{left:48.300000px;}
.xe_c00271{left:49.350000px;}
.x4_c00271{left:51.600000px;}
.xb_c00271{left:68.400000px;}
.xa_c00271{left:96.450000px;}
.x10_c00271{left:98.250000px;}
.x7_c00271{left:99.450000px;}
.x3_c00271{left:100.500000px;}
.x2_c00271{left:101.550000px;}
.xc_c00271{left:102.900000px;}
.x1_c00271{left:111.750000px;}
.x9_c00271{left:123.150000px;}
.x8_c00271{left:135.300000px;}
.x12_c00271{left:237.864258px;}
.x11_c00271{left:527.550000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls9_c00271{letter-spacing:0.000000pt;}
.ls8_c00271{letter-spacing:2.666667pt;}
.ls6_c00271{letter-spacing:8.000000pt;}
.ls3_c00271{letter-spacing:12.701333pt;}
.ls7_c00271{letter-spacing:13.800000pt;}
.ls5_c00271{letter-spacing:14.400000pt;}
.ls0_c00271{letter-spacing:14.933333pt;}
.lsa_c00271{letter-spacing:16.000000pt;}
.ls2_c00271{letter-spacing:19.733333pt;}
.ls1_c00271{letter-spacing:24.533333pt;}
.ls4_c00271{letter-spacing:27.200000pt;}
.ws6_c00271{word-spacing:-30.781333pt;}
.ws3_c00271{word-spacing:-22.781333pt;}
.ws2_c00271{word-spacing:-14.781333pt;}
.ws5_c00271{word-spacing:-0.920000pt;}
.ws7_c00271{word-spacing:0.000000pt;}
.ws4_c00271{word-spacing:0.061333pt;}
.ws1_c00271{word-spacing:0.293333pt;}
.ws0_c00271{word-spacing:8.218667pt;}
._22_c00271{margin-left:-20.792000pt;}
._1e_c00271{margin-left:-14.440000pt;}
._20_c00271{margin-left:-13.282667pt;}
._19_c00271{margin-left:-11.872000pt;}
._26_c00271{margin-left:-10.674667pt;}
._21_c00271{margin-left:-9.197333pt;}
._0_c00271{margin-left:-7.850667pt;}
._13_c00271{margin-left:-6.349333pt;}
._9_c00271{margin-left:-4.784000pt;}
._17_c00271{margin-left:-3.813333pt;}
._e_c00271{margin-left:-2.917333pt;}
._5_c00271{margin-left:-1.962667pt;}
._6_c00271{margin-left:-1.042667pt;}
._7_c00271{width:1.778667pt;}
._c_c00271{width:2.792000pt;}
._3_c00271{width:3.741333pt;}
._25_c00271{width:4.658667pt;}
._2_c00271{width:5.581333pt;}
._1_c00271{width:6.930667pt;}
._12_c00271{width:8.096000pt;}
._b_c00271{width:9.936000pt;}
._11_c00271{width:11.525333pt;}
._a_c00271{width:12.450667pt;}
._8_c00271{width:14.229333pt;}
._1c_c00271{width:15.226667pt;}
._16_c00271{width:16.370667pt;}
._14_c00271{width:19.653333pt;}
._f_c00271{width:21.218667pt;}
._1a_c00271{width:22.448000pt;}
._10_c00271{width:24.069333pt;}
._d_c00271{width:25.960000pt;}
._29_c00271{width:30.480000pt;}
._1b_c00271{width:32.648000pt;}
._1d_c00271{width:37.480000pt;}
._1f_c00271{width:40.432000pt;}
._27_c00271{width:47.914667pt;}
._15_c00271{width:87.685333pt;}
._23_c00271{width:117.266667pt;}
._18_c00271{width:135.418667pt;}
._28_c00271{width:148.994667pt;}
._24_c00271{width:150.154667pt;}
._4_c00271{width:331.874667pt;}
.fs2_c00271{font-size:42.666667pt;}
.fs1_c00271{font-size:58.666667pt;}
.fs0_c00271{font-size:61.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y1e_c00271{bottom:2.760000pt;}
.y1d_c00271{bottom:6.425212pt;}
.y1c_c00271{bottom:55.200000pt;}
.y1b_c00271{bottom:77.066667pt;}
.y1a_c00271{bottom:99.866667pt;}
.y19_c00271{bottom:122.133333pt;}
.y18_c00271{bottom:144.000000pt;}
.y17_c00271{bottom:167.600000pt;}
.y16_c00271{bottom:189.866667pt;}
.y15_c00271{bottom:212.000000pt;}
.y14_c00271{bottom:234.800000pt;}
.y13_c00271{bottom:256.800000pt;}
.y12_c00271{bottom:279.200000pt;}
.y11_c00271{bottom:300.933333pt;}
.y10_c00271{bottom:323.733333pt;}
.yf_c00271{bottom:345.333333pt;}
.ye_c00271{bottom:368.133333pt;}
.yd_c00271{bottom:390.533333pt;}
.yc_c00271{bottom:412.800000pt;}
.yb_c00271{bottom:458.000000pt;}
.ya_c00271{bottom:501.866667pt;}
.y9_c00271{bottom:525.333333pt;}
.y8_c00271{bottom:546.800000pt;}
.y7_c00271{bottom:568.800000pt;}
.y6_c00271{bottom:590.933333pt;}
.y5_c00271{bottom:613.200000pt;}
.y4_c00271{bottom:635.333333pt;}
.y3_c00271{bottom:657.200000pt;}
.y2_c00271{bottom:679.466667pt;}
.y1_c00271{bottom:701.733333pt;}
.h4_c00271{height:11.733399pt;}
.h5_c00271{height:38.937500pt;}
.h3_c00271{height:71.785156pt;}
.h2_c00271{height:77.654948pt;}
.h1_c00271{height:735.333333pt;}
.h0_c00271{height:735.600000pt;}
.w2_c00271{width:93.222667pt;}
.w0_c00271{width:508.533333pt;}
.w1_c00271{width:508.666667pt;}
.x0_c00271{left:0.000000pt;}
.xf_c00271{left:27.066667pt;}
.xd_c00271{left:28.800000pt;}
.x6_c00271{left:31.200000pt;}
.x5_c00271{left:42.933333pt;}
.xe_c00271{left:43.866667pt;}
.x4_c00271{left:45.866667pt;}
.xb_c00271{left:60.800000pt;}
.xa_c00271{left:85.733333pt;}
.x10_c00271{left:87.333333pt;}
.x7_c00271{left:88.400000pt;}
.x3_c00271{left:89.333333pt;}
.x2_c00271{left:90.266667pt;}
.xc_c00271{left:91.466667pt;}
.x1_c00271{left:99.333333pt;}
.x9_c00271{left:109.466667pt;}
.x8_c00271{left:120.266667pt;}
.x12_c00271{left:211.434896pt;}
.x11_c00271{left:468.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_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_a6850445cef52139fa679933.woff2')format("woff");}.ff1_c00272{font-family:ff1_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:ff2_c00272;src:url('chunks/assets/font_5ef5f8d268d9c102b11602ab.woff2')format("woff");}.ff2_c00272{font-family:ff2_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:ff3_c00272;src:url('chunks/assets/font_1321a941d0f2645dd89c0133.woff2')format("woff");}.ff3_c00272{font-family:ff3_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:ff4_c00272;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00272{font-family:ff4_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;}
.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;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls2_c00272{letter-spacing:3.000000px;}
.ls3_c00272{letter-spacing:18.000000px;}
.ls0_c00272{letter-spacing:19.971000px;}
.ls4_c00272{letter-spacing:75.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;}
}
.ws9_c00272{word-spacing:-91.629000px;}
.ws2_c00272{word-spacing:-34.629000px;}
.ws1_c00272{word-spacing:-26.652000px;}
.ws0_c00272{word-spacing:-16.629000px;}
.ws8_c00272{word-spacing:-1.035000px;}
.ws7_c00272{word-spacing:-0.138000px;}
.ws4_c00272{word-spacing:-0.081000px;}
.wsa_c00272{word-spacing:0.000000px;}
.ws3_c00272{word-spacing:1.173000px;}
.ws5_c00272{word-spacing:3.174000px;}
.ws6_c00272{word-spacing:4.737000px;}
._24_c00272{margin-left:-34.431000px;}
._17_c00272{margin-left:-19.803000px;}
._18_c00272{margin-left:-14.307000px;}
._1f_c00272{margin-left:-11.454000px;}
._1d_c00272{margin-left:-10.170000px;}
._13_c00272{margin-left:-7.659000px;}
._11_c00272{margin-left:-6.279000px;}
._16_c00272{margin-left:-5.058000px;}
._12_c00272{margin-left:-4.002000px;}
._14_c00272{margin-left:-2.784000px;}
._9_c00272{margin-left:-1.437000px;}
._1_c00272{width:1.104000px;}
._0_c00272{width:2.139000px;}
._2_c00272{width:3.864000px;}
._3_c00272{width:4.968000px;}
._4_c00272{width:6.003000px;}
._7_c00272{width:7.728000px;}
._e_c00272{width:9.591000px;}
._8_c00272{width:10.728000px;}
._d_c00272{width:11.730000px;}
._c_c00272{width:13.386000px;}
._6_c00272{width:14.628000px;}
._f_c00272{width:15.801000px;}
._a_c00272{width:17.721000px;}
._15_c00272{width:20.406000px;}
._1b_c00272{width:22.047000px;}
._20_c00272{width:23.919000px;}
._1c_c00272{width:29.907000px;}
._10_c00272{width:32.085000px;}
._1a_c00272{width:37.359000px;}
._22_c00272{width:79.896000px;}
._21_c00272{width:97.083000px;}
._1e_c00272{width:105.585000px;}
._b_c00272{width:142.143000px;}
._23_c00272{width:185.748000px;}
._19_c00272{width:186.801000px;}
._25_c00272{width:282.762000px;}
._5_c00272{width:486.036000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(128,128,128);}
.fc0_c00272{color:rgb(0,0,0);}
.fs2_c00272{font-size:48.000000px;}
.fs1_c00272{font-size:66.000000px;}
.fs0_c00272{font-size:69.000000px;}
.y0_c00272{bottom:0.000000px;}
.y1d_c00272{bottom:3.105000px;}
.y1c_c00272{bottom:7.228371px;}
.y1b_c00272{bottom:85.065000px;}
.y1a_c00272{bottom:110.415000px;}
.y19_c00272{bottom:160.365000px;}
.y18_c00272{bottom:210.615000px;}
.y17_c00272{bottom:236.565000px;}
.y16_c00272{bottom:262.215000px;}
.y15_c00272{bottom:286.965000px;}
.y14_c00272{bottom:312.615000px;}
.y13_c00272{bottom:337.215000px;}
.y12_c00272{bottom:362.265000px;}
.y11_c00272{bottom:387.165000px;}
.y10_c00272{bottom:412.515000px;}
.yf_c00272{bottom:437.115000px;}
.ye_c00272{bottom:462.465000px;}
.yd_c00272{bottom:487.665000px;}
.yc_c00272{bottom:512.115000px;}
.yb_c00272{bottom:536.415000px;}
.ya_c00272{bottom:561.315000px;}
.y9_c00272{bottom:586.665000px;}
.y8_c00272{bottom:611.565000px;}
.y7_c00272{bottom:636.915000px;}
.y6_c00272{bottom:661.815000px;}
.y5_c00272{bottom:686.865000px;}
.y4_c00272{bottom:711.765000px;}
.y3_c00272{bottom:736.515000px;}
.y2_c00272{bottom:761.865000px;}
.y1_c00272{bottom:787.365000px;}
.h4_c00272{height:13.200074px;}
.h5_c00272{height:43.804688px;}
.h2_c00272{height:80.758301px;}
.h3_c00272{height:87.361816px;}
.h1_c00272{height:831.000000px;}
.h0_c00272{height:831.075000px;}
.w2_c00272{width:104.875500px;}
.w0_c00272{width:566.175000px;}
.w1_c00272{width:566.250000px;}
.x0_c00272{left:0.000000px;}
.x7_c00272{left:30.750000px;}
.x2_c00272{left:32.100000px;}
.x3_c00272{left:33.750000px;}
.x6_c00272{left:54.600000px;}
.x4_c00272{left:58.050000px;}
.x5_c00272{left:154.800000px;}
.x1_c00272{left:200.850000px;}
.x8_c00272{left:234.901749px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls2_c00272{letter-spacing:2.666667pt;}
.ls3_c00272{letter-spacing:16.000000pt;}
.ls0_c00272{letter-spacing:17.752000pt;}
.ls4_c00272{letter-spacing:66.666667pt;}
.ws9_c00272{word-spacing:-81.448000pt;}
.ws2_c00272{word-spacing:-30.781333pt;}
.ws1_c00272{word-spacing:-23.690667pt;}
.ws0_c00272{word-spacing:-14.781333pt;}
.ws8_c00272{word-spacing:-0.920000pt;}
.ws7_c00272{word-spacing:-0.122667pt;}
.ws4_c00272{word-spacing:-0.072000pt;}
.wsa_c00272{word-spacing:0.000000pt;}
.ws3_c00272{word-spacing:1.042667pt;}
.ws5_c00272{word-spacing:2.821333pt;}
.ws6_c00272{word-spacing:4.210667pt;}
._24_c00272{margin-left:-30.605333pt;}
._17_c00272{margin-left:-17.602667pt;}
._18_c00272{margin-left:-12.717333pt;}
._1f_c00272{margin-left:-10.181333pt;}
._1d_c00272{margin-left:-9.040000pt;}
._13_c00272{margin-left:-6.808000pt;}
._11_c00272{margin-left:-5.581333pt;}
._16_c00272{margin-left:-4.496000pt;}
._12_c00272{margin-left:-3.557333pt;}
._14_c00272{margin-left:-2.474667pt;}
._9_c00272{margin-left:-1.277333pt;}
._1_c00272{width:0.981333pt;}
._0_c00272{width:1.901333pt;}
._2_c00272{width:3.434667pt;}
._3_c00272{width:4.416000pt;}
._4_c00272{width:5.336000pt;}
._7_c00272{width:6.869333pt;}
._e_c00272{width:8.525333pt;}
._8_c00272{width:9.536000pt;}
._d_c00272{width:10.426667pt;}
._c_c00272{width:11.898667pt;}
._6_c00272{width:13.002667pt;}
._f_c00272{width:14.045333pt;}
._a_c00272{width:15.752000pt;}
._15_c00272{width:18.138667pt;}
._1b_c00272{width:19.597333pt;}
._20_c00272{width:21.261333pt;}
._1c_c00272{width:26.584000pt;}
._10_c00272{width:28.520000pt;}
._1a_c00272{width:33.208000pt;}
._22_c00272{width:71.018667pt;}
._21_c00272{width:86.296000pt;}
._1e_c00272{width:93.853333pt;}
._b_c00272{width:126.349333pt;}
._23_c00272{width:165.109333pt;}
._19_c00272{width:166.045333pt;}
._25_c00272{width:251.344000pt;}
._5_c00272{width:432.032000pt;}
.fs2_c00272{font-size:42.666667pt;}
.fs1_c00272{font-size:58.666667pt;}
.fs0_c00272{font-size:61.333333pt;}
.y0_c00272{bottom:0.000000pt;}
.y1d_c00272{bottom:2.760000pt;}
.y1c_c00272{bottom:6.425219pt;}
.y1b_c00272{bottom:75.613333pt;}
.y1a_c00272{bottom:98.146667pt;}
.y19_c00272{bottom:142.546667pt;}
.y18_c00272{bottom:187.213333pt;}
.y17_c00272{bottom:210.280000pt;}
.y16_c00272{bottom:233.080000pt;}
.y15_c00272{bottom:255.080000pt;}
.y14_c00272{bottom:277.880000pt;}
.y13_c00272{bottom:299.746667pt;}
.y12_c00272{bottom:322.013333pt;}
.y11_c00272{bottom:344.146667pt;}
.y10_c00272{bottom:366.680000pt;}
.yf_c00272{bottom:388.546667pt;}
.ye_c00272{bottom:411.080000pt;}
.yd_c00272{bottom:433.480000pt;}
.yc_c00272{bottom:455.213333pt;}
.yb_c00272{bottom:476.813333pt;}
.ya_c00272{bottom:498.946667pt;}
.y9_c00272{bottom:521.480000pt;}
.y8_c00272{bottom:543.613333pt;}
.y7_c00272{bottom:566.146667pt;}
.y6_c00272{bottom:588.280000pt;}
.y5_c00272{bottom:610.546667pt;}
.y4_c00272{bottom:632.680000pt;}
.y3_c00272{bottom:654.680000pt;}
.y2_c00272{bottom:677.213333pt;}
.y1_c00272{bottom:699.880000pt;}
.h4_c00272{height:11.733399pt;}
.h5_c00272{height:38.937500pt;}
.h2_c00272{height:71.785156pt;}
.h3_c00272{height:77.654948pt;}
.h1_c00272{height:738.666667pt;}
.h0_c00272{height:738.733333pt;}
.w2_c00272{width:93.222667pt;}
.w0_c00272{width:503.266667pt;}
.w1_c00272{width:503.333333pt;}
.x0_c00272{left:0.000000pt;}
.x7_c00272{left:27.333333pt;}
.x2_c00272{left:28.533333pt;}
.x3_c00272{left:30.000000pt;}
.x6_c00272{left:48.533333pt;}
.x4_c00272{left:51.600000pt;}
.x5_c00272{left:137.600000pt;}
.x1_c00272{left:178.533333pt;}
.x8_c00272{left:208.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_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_202a8193d0f56c055089724a.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.568848;font-style:normal;font-weight:normal;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_d05b8e5fbcf00734ff02e54d.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.480469;font-style:normal;font-weight:normal;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_77c6c4cb089c86c60835dc7b.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.480469;font-style:normal;font-weight:normal;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_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00273{font-family:ff5_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);}
.m1_c00273{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_c00273{vertical-align:0.000000px;}
.ls6_c00273{letter-spacing:0.000000px;}
.ls4_c00273{letter-spacing:0.600000px;}
.ls5_c00273{letter-spacing:3.000000px;}
.ls8_c00273{letter-spacing:9.000000px;}
.ls2_c00273{letter-spacing:10.416000px;}
.ls0_c00273{letter-spacing:13.406400px;}
.ls1_c00273{letter-spacing:25.965000px;}
.ls3_c00273{letter-spacing:26.565000px;}
.ls7_c00273{letter-spacing:78.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00273{word-spacing:-94.629000px;}
.ws3_c00273{word-spacing:-25.629000px;}
.ws1_c00273{word-spacing:-16.629000px;}
.ws0_c00273{word-spacing:-13.303200px;}
.ws5_c00273{word-spacing:0.000000px;}
.ws4_c00273{word-spacing:18.378000px;}
._2d_c00273{margin-left:-81.627000px;}
._7_c00273{margin-left:-63.273000px;}
._2e_c00273{margin-left:-50.550000px;}
._2c_c00273{margin-left:-44.037000px;}
._36_c00273{margin-left:-29.049000px;}
._24_c00273{margin-left:-23.898000px;}
._22_c00273{margin-left:-21.436800px;}
._21_c00273{margin-left:-20.424000px;}
._20_c00273{margin-left:-17.298000px;}
._16_c00273{margin-left:-14.904000px;}
._11_c00273{margin-left:-13.524000px;}
._1a_c00273{margin-left:-12.070200px;}
._1b_c00273{margin-left:-10.833000px;}
._18_c00273{margin-left:-9.315000px;}
._e_c00273{margin-left:-7.452000px;}
._14_c00273{margin-left:-5.934000px;}
._4_c00273{margin-left:-4.278000px;}
._5_c00273{margin-left:-2.829000px;}
._0_c00273{margin-left:-1.656000px;}
._25_c00273{width:1.035000px;}
._2_c00273{width:2.070000px;}
._b_c00273{width:3.174000px;}
._3_c00273{width:5.175000px;}
._9_c00273{width:6.348000px;}
._a_c00273{width:8.211000px;}
._2b_c00273{width:9.246000px;}
._10_c00273{width:10.902000px;}
._1e_c00273{width:12.903000px;}
._d_c00273{width:14.490000px;}
._c_c00273{width:18.630000px;}
._19_c00273{width:19.803000px;}
._12_c00273{width:20.976000px;}
._13_c00273{width:24.150000px;}
._1d_c00273{width:26.289000px;}
._34_c00273{width:29.172000px;}
._17_c00273{width:30.498000px;}
._f_c00273{width:33.189000px;}
._33_c00273{width:34.575000px;}
._6_c00273{width:35.880000px;}
._30_c00273{width:36.984000px;}
._2f_c00273{width:38.550000px;}
._31_c00273{width:40.636200px;}
._2a_c00273{width:46.506000px;}
._39_c00273{width:54.349800px;}
._37_c00273{width:60.168000px;}
._1f_c00273{width:86.718000px;}
._28_c00273{width:119.763000px;}
._3d_c00273{width:131.100000px;}
._3f_c00273{width:133.584000px;}
._15_c00273{width:151.317000px;}
._8_c00273{width:153.138000px;}
._29_c00273{width:156.906000px;}
._27_c00273{width:171.075000px;}
._38_c00273{width:174.645000px;}
._26_c00273{width:177.123000px;}
._3c_c00273{width:223.629000px;}
._3b_c00273{width:252.540000px;}
._23_c00273{width:272.847000px;}
._1c_c00273{width:281.244000px;}
._35_c00273{width:322.713000px;}
._3e_c00273{width:325.749000px;}
._1_c00273{width:355.320000px;}
._32_c00273{width:554.256000px;}
._3a_c00273{width:988.356000px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(128,128,128);}
.fc0_c00273{color:rgb(0,0,0);}
.fs3_c00273{font-size:48.000000px;}
.fs1_c00273{font-size:55.200000px;}
.fs2_c00273{font-size:66.000000px;}
.fs0_c00273{font-size:69.000000px;}
.y0_c00273{bottom:0.000000px;}
.y1d_c00273{bottom:3.105000px;}
.y1c_c00273{bottom:7.228363px;}
.y1b_c00273{bottom:53.400000px;}
.y1a_c00273{bottom:81.000000px;}
.y19_c00273{bottom:106.650000px;}
.y18_c00273{bottom:132.750000px;}
.y17_c00273{bottom:157.950000px;}
.y16_c00273{bottom:208.200000px;}
.y15_c00273{bottom:233.550000px;}
.y14_c00273{bottom:258.900000px;}
.y13_c00273{bottom:283.950000px;}
.y12_c00273{bottom:311.850000px;}
.y11_c00273{bottom:334.200000px;}
.y10_c00273{bottom:357.450000px;}
.yf_c00273{bottom:383.100000px;}
.ye_c00273{bottom:408.150000px;}
.yd_c00273{bottom:433.350000px;}
.yc_c00273{bottom:483.000000px;}
.yb_c00273{bottom:533.550000px;}
.ya_c00273{bottom:558.300000px;}
.y9_c00273{bottom:583.650000px;}
.y8_c00273{bottom:608.250000px;}
.y7_c00273{bottom:633.150000px;}
.y6_c00273{bottom:659.100000px;}
.y5_c00273{bottom:684.150000px;}
.y4_c00273{bottom:709.500000px;}
.y3_c00273{bottom:735.150000px;}
.y2_c00273{bottom:758.100000px;}
.y1_c00273{bottom:784.050000px;}
.h4_c00273{height:13.200074px;}
.h5_c00273{height:43.804688px;}
.h3_c00273{height:80.758301px;}
.h2_c00273{height:87.361816px;}
.h1_c00273{height:827.250000px;}
.h0_c00273{height:827.550000px;}
.w2_c00273{width:104.875500px;}
.w0_c00273{width:572.100000px;}
.w1_c00273{width:572.250000px;}
.x0_c00273{left:0.000000px;}
.x3_c00273{left:29.400000px;}
.x7_c00273{left:31.050000px;}
.xd_c00273{left:37.800000px;}
.x2_c00273{left:43.200000px;}
.xc_c00273{left:45.900000px;}
.x5_c00273{left:84.150000px;}
.x12_c00273{left:87.750000px;}
.x11_c00273{left:90.750000px;}
.xb_c00273{left:91.800000px;}
.xa_c00273{left:92.850000px;}
.x6_c00273{left:94.950000px;}
.x4_c00273{left:96.300000px;}
.xf_c00273{left:99.600000px;}
.xe_c00273{left:104.250000px;}
.x1_c00273{left:112.350000px;}
.x10_c00273{left:116.700000px;}
.x9_c00273{left:118.500000px;}
.x13_c00273{left:237.864258px;}
.x8_c00273{left:244.350000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls6_c00273{letter-spacing:0.000000pt;}
.ls4_c00273{letter-spacing:0.533333pt;}
.ls5_c00273{letter-spacing:2.666667pt;}
.ls8_c00273{letter-spacing:8.000000pt;}
.ls2_c00273{letter-spacing:9.258667pt;}
.ls0_c00273{letter-spacing:11.916800pt;}
.ls1_c00273{letter-spacing:23.080000pt;}
.ls3_c00273{letter-spacing:23.613333pt;}
.ls7_c00273{letter-spacing:69.333333pt;}
.ws2_c00273{word-spacing:-84.114667pt;}
.ws3_c00273{word-spacing:-22.781333pt;}
.ws1_c00273{word-spacing:-14.781333pt;}
.ws0_c00273{word-spacing:-11.825067pt;}
.ws5_c00273{word-spacing:0.000000pt;}
.ws4_c00273{word-spacing:16.336000pt;}
._2d_c00273{margin-left:-72.557333pt;}
._7_c00273{margin-left:-56.242667pt;}
._2e_c00273{margin-left:-44.933333pt;}
._2c_c00273{margin-left:-39.144000pt;}
._36_c00273{margin-left:-25.821333pt;}
._24_c00273{margin-left:-21.242667pt;}
._22_c00273{margin-left:-19.054933pt;}
._21_c00273{margin-left:-18.154667pt;}
._20_c00273{margin-left:-15.376000pt;}
._16_c00273{margin-left:-13.248000pt;}
._11_c00273{margin-left:-12.021333pt;}
._1a_c00273{margin-left:-10.729067pt;}
._1b_c00273{margin-left:-9.629333pt;}
._18_c00273{margin-left:-8.280000pt;}
._e_c00273{margin-left:-6.624000pt;}
._14_c00273{margin-left:-5.274667pt;}
._4_c00273{margin-left:-3.802667pt;}
._5_c00273{margin-left:-2.514667pt;}
._0_c00273{margin-left:-1.472000pt;}
._25_c00273{width:0.920000pt;}
._2_c00273{width:1.840000pt;}
._b_c00273{width:2.821333pt;}
._3_c00273{width:4.600000pt;}
._9_c00273{width:5.642667pt;}
._a_c00273{width:7.298667pt;}
._2b_c00273{width:8.218667pt;}
._10_c00273{width:9.690667pt;}
._1e_c00273{width:11.469333pt;}
._d_c00273{width:12.880000pt;}
._c_c00273{width:16.560000pt;}
._19_c00273{width:17.602667pt;}
._12_c00273{width:18.645333pt;}
._13_c00273{width:21.466667pt;}
._1d_c00273{width:23.368000pt;}
._34_c00273{width:25.930667pt;}
._17_c00273{width:27.109333pt;}
._f_c00273{width:29.501333pt;}
._33_c00273{width:30.733333pt;}
._6_c00273{width:31.893333pt;}
._30_c00273{width:32.874667pt;}
._2f_c00273{width:34.266667pt;}
._31_c00273{width:36.121067pt;}
._2a_c00273{width:41.338667pt;}
._39_c00273{width:48.310933pt;}
._37_c00273{width:53.482667pt;}
._1f_c00273{width:77.082667pt;}
._28_c00273{width:106.456000pt;}
._3d_c00273{width:116.533333pt;}
._3f_c00273{width:118.741333pt;}
._15_c00273{width:134.504000pt;}
._8_c00273{width:136.122667pt;}
._29_c00273{width:139.472000pt;}
._27_c00273{width:152.066667pt;}
._38_c00273{width:155.240000pt;}
._26_c00273{width:157.442667pt;}
._3c_c00273{width:198.781333pt;}
._3b_c00273{width:224.480000pt;}
._23_c00273{width:242.530667pt;}
._1c_c00273{width:249.994667pt;}
._35_c00273{width:286.856000pt;}
._3e_c00273{width:289.554667pt;}
._1_c00273{width:315.840000pt;}
._32_c00273{width:492.672000pt;}
._3a_c00273{width:878.538667pt;}
.fs3_c00273{font-size:42.666667pt;}
.fs1_c00273{font-size:49.066667pt;}
.fs2_c00273{font-size:58.666667pt;}
.fs0_c00273{font-size:61.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y1d_c00273{bottom:2.760000pt;}
.y1c_c00273{bottom:6.425212pt;}
.y1b_c00273{bottom:47.466667pt;}
.y1a_c00273{bottom:72.000000pt;}
.y19_c00273{bottom:94.800000pt;}
.y18_c00273{bottom:118.000000pt;}
.y17_c00273{bottom:140.400000pt;}
.y16_c00273{bottom:185.066667pt;}
.y15_c00273{bottom:207.600000pt;}
.y14_c00273{bottom:230.133333pt;}
.y13_c00273{bottom:252.400000pt;}
.y12_c00273{bottom:277.200000pt;}
.y11_c00273{bottom:297.066667pt;}
.y10_c00273{bottom:317.733333pt;}
.yf_c00273{bottom:340.533333pt;}
.ye_c00273{bottom:362.800000pt;}
.yd_c00273{bottom:385.200000pt;}
.yc_c00273{bottom:429.333333pt;}
.yb_c00273{bottom:474.266667pt;}
.ya_c00273{bottom:496.266667pt;}
.y9_c00273{bottom:518.800000pt;}
.y8_c00273{bottom:540.666667pt;}
.y7_c00273{bottom:562.800000pt;}
.y6_c00273{bottom:585.866667pt;}
.y5_c00273{bottom:608.133333pt;}
.y4_c00273{bottom:630.666667pt;}
.y3_c00273{bottom:653.466667pt;}
.y2_c00273{bottom:673.866667pt;}
.y1_c00273{bottom:696.933333pt;}
.h4_c00273{height:11.733399pt;}
.h5_c00273{height:38.937500pt;}
.h3_c00273{height:71.785156pt;}
.h2_c00273{height:77.654948pt;}
.h1_c00273{height:735.333333pt;}
.h0_c00273{height:735.600000pt;}
.w2_c00273{width:93.222667pt;}
.w0_c00273{width:508.533333pt;}
.w1_c00273{width:508.666667pt;}
.x0_c00273{left:0.000000pt;}
.x3_c00273{left:26.133333pt;}
.x7_c00273{left:27.600000pt;}
.xd_c00273{left:33.600000pt;}
.x2_c00273{left:38.400000pt;}
.xc_c00273{left:40.800000pt;}
.x5_c00273{left:74.800000pt;}
.x12_c00273{left:78.000000pt;}
.x11_c00273{left:80.666667pt;}
.xb_c00273{left:81.600000pt;}
.xa_c00273{left:82.533333pt;}
.x6_c00273{left:84.400000pt;}
.x4_c00273{left:85.600000pt;}
.xf_c00273{left:88.533333pt;}
.xe_c00273{left:92.666667pt;}
.x1_c00273{left:99.866667pt;}
.x10_c00273{left:103.733333pt;}
.x9_c00273{left:105.333333pt;}
.x13_c00273{left:211.434896pt;}
.x8_c00273{left:217.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_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_107d35a8050e5f08a74c9081.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_25727bb84067ce776a002675.woff2')format("woff");}.ff2_c00274{font-family:ff2_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:ff3_c00274;src:url('chunks/assets/font_254d445c71ac0dcb3a72e20e.woff2')format("woff");}.ff3_c00274{font-family:ff3_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:ff4_c00274;src:url('chunks/assets/font_840cadd1c5940f1cef2da527.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;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_c00274;src:url('chunks/assets/font_f869ced7f3337a7c0e2837c3.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;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_c00274;src:url('chunks/assets/font_d5c5d96c1a3f0a1be364e9ff.woff2')format("woff");}.ff6_c00274{font-family:ff6_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:ff7_c00274;src:url('chunks/assets/font_eb7d05ca76e286b8ab1cd65f.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;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_c00274;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00274{font-family:ff8_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;}
.m1_c00274{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_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;}
.ls3_c00274{letter-spacing:0.000000px;}
.ls4_c00274{letter-spacing:3.000000px;}
.ls2_c00274{letter-spacing:9.000000px;}
.ls5_c00274{letter-spacing:12.000000px;}
.ls0_c00274{letter-spacing:13.725000px;}
.ls1_c00274{letter-spacing:36.171000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-33.000000px;}
.ws3_c00274{word-spacing:-25.629000px;}
.ws2_c00274{word-spacing:-16.629000px;}
.ws5_c00274{word-spacing:-11.568000px;}
.ws1_c00274{word-spacing:-0.966000px;}
.ws6_c00274{word-spacing:0.000000px;}
.ws4_c00274{word-spacing:4.002000px;}
._f_c00274{margin-left:-36.927000px;}
._22_c00274{margin-left:-27.339000px;}
._23_c00274{margin-left:-23.580000px;}
._15_c00274{margin-left:-21.528000px;}
._12_c00274{margin-left:-16.422000px;}
._29_c00274{margin-left:-15.402000px;}
._3_c00274{margin-left:-13.938000px;}
._17_c00274{margin-left:-11.922000px;}
._20_c00274{margin-left:-10.263000px;}
._16_c00274{margin-left:-9.177000px;}
._2a_c00274{margin-left:-8.142000px;}
._1_c00274{margin-left:-7.107000px;}
._11_c00274{margin-left:-5.796000px;}
._e_c00274{margin-left:-4.209000px;}
._6_c00274{margin-left:-2.415000px;}
._7_c00274{margin-left:-1.035000px;}
._0_c00274{width:1.794000px;}
._2_c00274{width:2.829000px;}
._5_c00274{width:4.140000px;}
._9_c00274{width:5.589000px;}
._d_c00274{width:7.038000px;}
._19_c00274{width:8.625000px;}
._13_c00274{width:9.798000px;}
._a_c00274{width:11.367000px;}
._c_c00274{width:12.834000px;}
._b_c00274{width:14.007000px;}
._1e_c00274{width:15.783000px;}
._21_c00274{width:17.856000px;}
._26_c00274{width:19.389000px;}
._18_c00274{width:20.631000px;}
._1c_c00274{width:21.804000px;}
._1b_c00274{width:23.598000px;}
._2b_c00274{width:25.635000px;}
._27_c00274{width:26.979000px;}
._1f_c00274{width:30.699000px;}
._2f_c00274{width:35.811000px;}
._2c_c00274{width:39.216000px;}
._14_c00274{width:40.239000px;}
._1d_c00274{width:45.954000px;}
._28_c00274{width:48.780000px;}
._10_c00274{width:50.577000px;}
._2e_c00274{width:64.404000px;}
._24_c00274{width:112.989000px;}
._25_c00274{width:114.609000px;}
._8_c00274{width:122.280000px;}
._2d_c00274{width:126.408000px;}
._30_c00274{width:188.673000px;}
._1a_c00274{width:200.238000px;}
._4_c00274{width:528.321000px;}
._31_c00274{width:976.758000px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(128,128,128);}
.fc0_c00274{color:rgb(0,0,0);}
.fs6_c00274{font-size:48.000000px;}
.fs5_c00274{font-size:51.000000px;}
.fs4_c00274{font-size:54.000000px;}
.fs2_c00274{font-size:60.000000px;}
.fs1_c00274{font-size:66.000000px;}
.fs0_c00274{font-size:69.000000px;}
.fs3_c00274{font-size:84.000000px;}
.y0_c00274{bottom:0.000000px;}
.y20_c00274{bottom:3.105000px;}
.y1f_c00274{bottom:7.228369px;}
.y1e_c00274{bottom:66.870000px;}
.y1d_c00274{bottom:101.820000px;}
.y1c_c00274{bottom:120.120000px;}
.y1b_c00274{bottom:137.970000px;}
.y1a_c00274{bottom:155.520000px;}
.y19_c00274{bottom:192.270000px;}
.y18_c00274{bottom:218.370000px;}
.y17_c00274{bottom:243.720000px;}
.y16_c00274{bottom:268.620000px;}
.y15_c00274{bottom:293.970000px;}
.y14_c00274{bottom:319.320000px;}
.y13_c00274{bottom:343.920000px;}
.y12_c00274{bottom:368.520000px;}
.y11_c00274{bottom:393.570000px;}
.y10_c00274{bottom:418.470000px;}
.yf_c00274{bottom:443.520000px;}
.ye_c00274{bottom:468.420000px;}
.yd_c00274{bottom:493.320000px;}
.yc_c00274{bottom:517.020000px;}
.yb_c00274{bottom:542.370000px;}
.ya_c00274{bottom:566.670000px;}
.y9_c00274{bottom:593.220000px;}
.y8_c00274{bottom:617.220000px;}
.y7_c00274{bottom:641.970000px;}
.y6_c00274{bottom:667.170000px;}
.y5_c00274{bottom:691.920000px;}
.y4_c00274{bottom:716.820000px;}
.y3_c00274{bottom:741.870000px;}
.y2_c00274{bottom:766.770000px;}
.y1_c00274{bottom:791.670000px;}
.h9_c00274{height:13.200073px;}
.ha_c00274{height:43.804688px;}
.h7_c00274{height:56.179688px;}
.h8_c00274{height:57.618000px;}
.h6_c00274{height:60.773438px;}
.h5_c00274{height:70.224609px;}
.h4_c00274{height:80.758301px;}
.h2_c00274{height:87.361816px;}
.h3_c00274{height:91.056000px;}
.h0_c00274{height:821.850000px;}
.h1_c00274{height:822.000000px;}
.w2_c00274{width:104.875500px;}
.w0_c00274{width:559.425000px;}
.w1_c00274{width:559.500000px;}
.x0_c00274{left:0.000000px;}
.xa_c00274{left:18.450000px;}
.x4_c00274{left:24.300000px;}
.x6_c00274{left:25.350000px;}
.x8_c00274{left:26.550000px;}
.x9_c00274{left:27.600000px;}
.x7_c00274{left:28.800000px;}
.x2_c00274{left:31.050000px;}
.x5_c00274{left:32.400000px;}
.xb_c00274{left:44.100000px;}
.x3_c00274{left:83.100000px;}
.x1_c00274{left:192.600000px;}
.xc_c00274{left:231.526749px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls3_c00274{letter-spacing:0.000000pt;}
.ls4_c00274{letter-spacing:2.666667pt;}
.ls2_c00274{letter-spacing:8.000000pt;}
.ls5_c00274{letter-spacing:10.666667pt;}
.ls0_c00274{letter-spacing:12.200000pt;}
.ls1_c00274{letter-spacing:32.152000pt;}
.ws0_c00274{word-spacing:-29.333333pt;}
.ws3_c00274{word-spacing:-22.781333pt;}
.ws2_c00274{word-spacing:-14.781333pt;}
.ws5_c00274{word-spacing:-10.282667pt;}
.ws1_c00274{word-spacing:-0.858667pt;}
.ws6_c00274{word-spacing:0.000000pt;}
.ws4_c00274{word-spacing:3.557333pt;}
._f_c00274{margin-left:-32.824000pt;}
._22_c00274{margin-left:-24.301333pt;}
._23_c00274{margin-left:-20.960000pt;}
._15_c00274{margin-left:-19.136000pt;}
._12_c00274{margin-left:-14.597333pt;}
._29_c00274{margin-left:-13.690667pt;}
._3_c00274{margin-left:-12.389333pt;}
._17_c00274{margin-left:-10.597333pt;}
._20_c00274{margin-left:-9.122667pt;}
._16_c00274{margin-left:-8.157333pt;}
._2a_c00274{margin-left:-7.237333pt;}
._1_c00274{margin-left:-6.317333pt;}
._11_c00274{margin-left:-5.152000pt;}
._e_c00274{margin-left:-3.741333pt;}
._6_c00274{margin-left:-2.146667pt;}
._7_c00274{margin-left:-0.920000pt;}
._0_c00274{width:1.594667pt;}
._2_c00274{width:2.514667pt;}
._5_c00274{width:3.680000pt;}
._9_c00274{width:4.968000pt;}
._d_c00274{width:6.256000pt;}
._19_c00274{width:7.666667pt;}
._13_c00274{width:8.709333pt;}
._a_c00274{width:10.104000pt;}
._c_c00274{width:11.408000pt;}
._b_c00274{width:12.450667pt;}
._1e_c00274{width:14.029333pt;}
._21_c00274{width:15.872000pt;}
._26_c00274{width:17.234667pt;}
._18_c00274{width:18.338667pt;}
._1c_c00274{width:19.381333pt;}
._1b_c00274{width:20.976000pt;}
._2b_c00274{width:22.786667pt;}
._27_c00274{width:23.981333pt;}
._1f_c00274{width:27.288000pt;}
._2f_c00274{width:31.832000pt;}
._2c_c00274{width:34.858667pt;}
._14_c00274{width:35.768000pt;}
._1d_c00274{width:40.848000pt;}
._28_c00274{width:43.360000pt;}
._10_c00274{width:44.957333pt;}
._2e_c00274{width:57.248000pt;}
._24_c00274{width:100.434667pt;}
._25_c00274{width:101.874667pt;}
._8_c00274{width:108.693333pt;}
._2d_c00274{width:112.362667pt;}
._30_c00274{width:167.709333pt;}
._1a_c00274{width:177.989333pt;}
._4_c00274{width:469.618667pt;}
._31_c00274{width:868.229333pt;}
.fs6_c00274{font-size:42.666667pt;}
.fs5_c00274{font-size:45.333333pt;}
.fs4_c00274{font-size:48.000000pt;}
.fs2_c00274{font-size:53.333333pt;}
.fs1_c00274{font-size:58.666667pt;}
.fs0_c00274{font-size:61.333333pt;}
.fs3_c00274{font-size:74.666667pt;}
.y0_c00274{bottom:0.000000pt;}
.y20_c00274{bottom:2.760000pt;}
.y1f_c00274{bottom:6.425217pt;}
.y1e_c00274{bottom:59.440000pt;}
.y1d_c00274{bottom:90.506667pt;}
.y1c_c00274{bottom:106.773333pt;}
.y1b_c00274{bottom:122.640000pt;}
.y1a_c00274{bottom:138.240000pt;}
.y19_c00274{bottom:170.906667pt;}
.y18_c00274{bottom:194.106667pt;}
.y17_c00274{bottom:216.640000pt;}
.y16_c00274{bottom:238.773333pt;}
.y15_c00274{bottom:261.306667pt;}
.y14_c00274{bottom:283.840000pt;}
.y13_c00274{bottom:305.706667pt;}
.y12_c00274{bottom:327.573333pt;}
.y11_c00274{bottom:349.840000pt;}
.y10_c00274{bottom:371.973333pt;}
.yf_c00274{bottom:394.240000pt;}
.ye_c00274{bottom:416.373333pt;}
.yd_c00274{bottom:438.506667pt;}
.yc_c00274{bottom:459.573333pt;}
.yb_c00274{bottom:482.106667pt;}
.ya_c00274{bottom:503.706667pt;}
.y9_c00274{bottom:527.306667pt;}
.y8_c00274{bottom:548.640000pt;}
.y7_c00274{bottom:570.640000pt;}
.y6_c00274{bottom:593.040000pt;}
.y5_c00274{bottom:615.040000pt;}
.y4_c00274{bottom:637.173333pt;}
.y3_c00274{bottom:659.440000pt;}
.y2_c00274{bottom:681.573333pt;}
.y1_c00274{bottom:703.706667pt;}
.h9_c00274{height:11.733399pt;}
.ha_c00274{height:38.937500pt;}
.h7_c00274{height:49.937500pt;}
.h8_c00274{height:51.216000pt;}
.h6_c00274{height:54.020833pt;}
.h5_c00274{height:62.421875pt;}
.h4_c00274{height:71.785156pt;}
.h2_c00274{height:77.654948pt;}
.h3_c00274{height:80.938667pt;}
.h0_c00274{height:730.533333pt;}
.h1_c00274{height:730.666667pt;}
.w2_c00274{width:93.222667pt;}
.w0_c00274{width:497.266667pt;}
.w1_c00274{width:497.333333pt;}
.x0_c00274{left:0.000000pt;}
.xa_c00274{left:16.400000pt;}
.x4_c00274{left:21.600000pt;}
.x6_c00274{left:22.533333pt;}
.x8_c00274{left:23.600000pt;}
.x9_c00274{left:24.533333pt;}
.x7_c00274{left:25.600000pt;}
.x2_c00274{left:27.600000pt;}
.x5_c00274{left:28.800000pt;}
.xb_c00274{left:39.200000pt;}
.x3_c00274{left:73.866667pt;}
.x1_c00274{left:171.200000pt;}
.xc_c00274{left:205.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_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_b98cc6b30524d4c35b874e4b.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_36f19c3cc294ddd7fe806137.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_633753febb42f5d463b38783.woff2')format("woff");}.ff3_c00275{font-family:ff3_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:ff4_c00275;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff4_c00275{font-family:ff4_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:ff5_c00275;src:url('chunks/assets/font_c3d696c5f2ec7221ffa074e2.woff2')format("woff");}.ff5_c00275{font-family:ff5_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:ff6_c00275;src:url('chunks/assets/font_717644bdd4f1d467ead1dcf9.woff2')format("woff");}.ff6_c00275{font-family:ff6_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:ff7_c00275;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00275{font-family:ff7_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;}
.ls7_c00275{letter-spacing:-6.000000px;}
.ls6_c00275{letter-spacing:0.000000px;}
.ls4_c00275{letter-spacing:1.371000px;}
.ls8_c00275{letter-spacing:3.000000px;}
.ls5_c00275{letter-spacing:3.171000px;}
.ls9_c00275{letter-spacing:6.000000px;}
.ls2_c00275{letter-spacing:9.000000px;}
.ls1_c00275{letter-spacing:12.474000px;}
.ls3_c00275{letter-spacing:15.600000px;}
.ls0_c00275{letter-spacing:22.360800px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00275{word-spacing:-65.235000px;}
.ws1_c00275{word-spacing:-53.988000px;}
.ws3_c00275{word-spacing:-38.022000px;}
.ws0_c00275{word-spacing:-25.629000px;}
.ws4_c00275{word-spacing:-16.629000px;}
.ws6_c00275{word-spacing:-14.460000px;}
.ws5_c00275{word-spacing:-10.845000px;}
.ws7_c00275{word-spacing:0.000000px;}
._36_c00275{margin-left:-33.594000px;}
._1e_c00275{margin-left:-24.675000px;}
._1b_c00275{margin-left:-22.245000px;}
._25_c00275{margin-left:-20.235000px;}
._29_c00275{margin-left:-18.114000px;}
._1c_c00275{margin-left:-16.884000px;}
._2e_c00275{margin-left:-15.768000px;}
._15_c00275{margin-left:-14.697000px;}
._26_c00275{margin-left:-13.695000px;}
._19_c00275{margin-left:-12.663000px;}
._11_c00275{margin-left:-10.764000px;}
._17_c00275{margin-left:-9.228000px;}
._2_c00275{margin-left:-7.347000px;}
._12_c00275{margin-left:-6.210000px;}
._9_c00275{margin-left:-5.175000px;}
._0_c00275{margin-left:-3.312000px;}
._1_c00275{margin-left:-1.863000px;}
._a_c00275{width:1.242000px;}
._5_c00275{width:2.277000px;}
._4_c00275{width:4.071000px;}
._f_c00275{width:5.208000px;}
._6_c00275{width:6.900000px;}
._10_c00275{width:9.000000px;}
._24_c00275{width:10.152000px;}
._13_c00275{width:11.316000px;}
._7_c00275{width:12.903000px;}
._8_c00275{width:14.904000px;}
._c_c00275{width:18.216000px;}
._e_c00275{width:20.217000px;}
._d_c00275{width:21.666000px;}
._18_c00275{width:22.944000px;}
._14_c00275{width:24.167400px;}
._2f_c00275{width:25.392000px;}
._33_c00275{width:26.397000px;}
._b_c00275{width:28.083000px;}
._2a_c00275{width:30.153000px;}
._1f_c00275{width:32.982000px;}
._28_c00275{width:38.394000px;}
._31_c00275{width:63.543000px;}
._32_c00275{width:69.147000px;}
._2c_c00275{width:70.944000px;}
._2d_c00275{width:82.512000px;}
._22_c00275{width:90.459000px;}
._30_c00275{width:94.599000px;}
._1d_c00275{width:98.148000px;}
._21_c00275{width:105.918000px;}
._20_c00275{width:111.753000px;}
._34_c00275{width:166.014000px;}
._27_c00275{width:175.740000px;}
._23_c00275{width:189.735000px;}
._1a_c00275{width:216.384000px;}
._16_c00275{width:228.804000px;}
._2b_c00275{width:231.603000px;}
._35_c00275{width:342.447000px;}
._3_c00275{width:383.919000px;}
._37_c00275{width:506.598000px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(128,128,128);}
.fc0_c00275{color:rgb(0,0,0);}
.fs3_c00275{font-size:45.000000px;}
.fs6_c00275{font-size:48.000000px;}
.fs4_c00275{font-size:51.000000px;}
.fs1_c00275{font-size:55.200000px;}
.fs5_c00275{font-size:60.000000px;}
.fs2_c00275{font-size:66.000000px;}
.fs0_c00275{font-size:69.000000px;}
.y0_c00275{bottom:0.000000px;}
.y25_c00275{bottom:3.105000px;}
.y24_c00275{bottom:7.228363px;}
.y1e_c00275{bottom:63.150000px;}
.y1d_c00275{bottom:89.700000px;}
.y1c_c00275{bottom:114.450000px;}
.y1b_c00275{bottom:140.100000px;}
.y23_c00275{bottom:152.850000px;}
.y1a_c00275{bottom:165.300000px;}
.y19_c00275{bottom:190.650000px;}
.y18_c00275{bottom:215.550000px;}
.y17_c00275{bottom:240.300000px;}
.y22_c00275{bottom:250.800000px;}
.y16_c00275{bottom:265.650000px;}
.y15_c00275{bottom:290.850000px;}
.y14_c00275{bottom:316.500000px;}
.y13_c00275{bottom:340.800000px;}
.y12_c00275{bottom:366.750000px;}
.y11_c00275{bottom:391.050000px;}
.y21_c00275{bottom:406.650000px;}
.y10_c00275{bottom:415.500000px;}
.y20_c00275{bottom:423.450000px;}
.yf_c00275{bottom:441.000000px;}
.ye_c00275{bottom:465.300000px;}
.yd_c00275{bottom:490.950000px;}
.y1f_c00275{bottom:502.200000px;}
.yc_c00275{bottom:516.000000px;}
.yb_c00275{bottom:541.050000px;}
.ya_c00275{bottom:565.950000px;}
.y9_c00275{bottom:591.000000px;}
.y8_c00275{bottom:615.900000px;}
.y7_c00275{bottom:641.250000px;}
.y6_c00275{bottom:666.000000px;}
.y5_c00275{bottom:690.900000px;}
.y4_c00275{bottom:716.100000px;}
.y3_c00275{bottom:740.850000px;}
.y2_c00275{bottom:765.900000px;}
.y1_c00275{bottom:790.800000px;}
.h6_c00275{height:13.200074px;}
.h7_c00275{height:43.804688px;}
.h4_c00275{height:56.975098px;}
.h5_c00275{height:70.224609px;}
.h2_c00275{height:80.758301px;}
.h3_c00275{height:87.361816px;}
.h1_c00275{height:827.250000px;}
.h0_c00275{height:827.550000px;}
.w2_c00275{width:104.875500px;}
.w0_c00275{width:572.100000px;}
.w1_c00275{width:572.250000px;}
.x0_c00275{left:0.000000px;}
.xa_c00275{left:41.850000px;}
.x9_c00275{left:42.900000px;}
.x4_c00275{left:46.200000px;}
.x8_c00275{left:58.350000px;}
.x6_c00275{left:60.150000px;}
.xf_c00275{left:85.800000px;}
.xd_c00275{left:104.250000px;}
.xc_c00275{left:106.050000px;}
.xb_c00275{left:108.750000px;}
.x7_c00275{left:109.800000px;}
.x5_c00275{left:111.300000px;}
.x3_c00275{left:112.350000px;}
.x1_c00275{left:128.400000px;}
.x2_c00275{left:166.950000px;}
.x10_c00275{left:237.864258px;}
.xe_c00275{left:479.550000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls7_c00275{letter-spacing:-5.333333pt;}
.ls6_c00275{letter-spacing:0.000000pt;}
.ls4_c00275{letter-spacing:1.218667pt;}
.ls8_c00275{letter-spacing:2.666667pt;}
.ls5_c00275{letter-spacing:2.818667pt;}
.ls9_c00275{letter-spacing:5.333333pt;}
.ls2_c00275{letter-spacing:8.000000pt;}
.ls1_c00275{letter-spacing:11.088000pt;}
.ls3_c00275{letter-spacing:13.866667pt;}
.ls0_c00275{letter-spacing:19.876267pt;}
.ws2_c00275{word-spacing:-57.986667pt;}
.ws1_c00275{word-spacing:-47.989333pt;}
.ws3_c00275{word-spacing:-33.797333pt;}
.ws0_c00275{word-spacing:-22.781333pt;}
.ws4_c00275{word-spacing:-14.781333pt;}
.ws6_c00275{word-spacing:-12.853333pt;}
.ws5_c00275{word-spacing:-9.640000pt;}
.ws7_c00275{word-spacing:0.000000pt;}
._36_c00275{margin-left:-29.861333pt;}
._1e_c00275{margin-left:-21.933333pt;}
._1b_c00275{margin-left:-19.773333pt;}
._25_c00275{margin-left:-17.986667pt;}
._29_c00275{margin-left:-16.101333pt;}
._1c_c00275{margin-left:-15.008000pt;}
._2e_c00275{margin-left:-14.016000pt;}
._15_c00275{margin-left:-13.064000pt;}
._26_c00275{margin-left:-12.173333pt;}
._19_c00275{margin-left:-11.256000pt;}
._11_c00275{margin-left:-9.568000pt;}
._17_c00275{margin-left:-8.202667pt;}
._2_c00275{margin-left:-6.530667pt;}
._12_c00275{margin-left:-5.520000pt;}
._9_c00275{margin-left:-4.600000pt;}
._0_c00275{margin-left:-2.944000pt;}
._1_c00275{margin-left:-1.656000pt;}
._a_c00275{width:1.104000pt;}
._5_c00275{width:2.024000pt;}
._4_c00275{width:3.618667pt;}
._f_c00275{width:4.629333pt;}
._6_c00275{width:6.133333pt;}
._10_c00275{width:8.000000pt;}
._24_c00275{width:9.024000pt;}
._13_c00275{width:10.058667pt;}
._7_c00275{width:11.469333pt;}
._8_c00275{width:13.248000pt;}
._c_c00275{width:16.192000pt;}
._e_c00275{width:17.970667pt;}
._d_c00275{width:19.258667pt;}
._18_c00275{width:20.394667pt;}
._14_c00275{width:21.482133pt;}
._2f_c00275{width:22.570667pt;}
._33_c00275{width:23.464000pt;}
._b_c00275{width:24.962667pt;}
._2a_c00275{width:26.802667pt;}
._1f_c00275{width:29.317333pt;}
._28_c00275{width:34.128000pt;}
._31_c00275{width:56.482667pt;}
._32_c00275{width:61.464000pt;}
._2c_c00275{width:63.061333pt;}
._2d_c00275{width:73.344000pt;}
._22_c00275{width:80.408000pt;}
._30_c00275{width:84.088000pt;}
._1d_c00275{width:87.242667pt;}
._21_c00275{width:94.149333pt;}
._20_c00275{width:99.336000pt;}
._34_c00275{width:147.568000pt;}
._27_c00275{width:156.213333pt;}
._23_c00275{width:168.653333pt;}
._1a_c00275{width:192.341333pt;}
._16_c00275{width:203.381333pt;}
._2b_c00275{width:205.869333pt;}
._35_c00275{width:304.397333pt;}
._3_c00275{width:341.261333pt;}
._37_c00275{width:450.309333pt;}
.fs3_c00275{font-size:40.000000pt;}
.fs6_c00275{font-size:42.666667pt;}
.fs4_c00275{font-size:45.333333pt;}
.fs1_c00275{font-size:49.066667pt;}
.fs5_c00275{font-size:53.333333pt;}
.fs2_c00275{font-size:58.666667pt;}
.fs0_c00275{font-size:61.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y25_c00275{bottom:2.760000pt;}
.y24_c00275{bottom:6.425212pt;}
.y1e_c00275{bottom:56.133333pt;}
.y1d_c00275{bottom:79.733333pt;}
.y1c_c00275{bottom:101.733333pt;}
.y1b_c00275{bottom:124.533333pt;}
.y23_c00275{bottom:135.866667pt;}
.y1a_c00275{bottom:146.933333pt;}
.y19_c00275{bottom:169.466667pt;}
.y18_c00275{bottom:191.600000pt;}
.y17_c00275{bottom:213.600000pt;}
.y22_c00275{bottom:222.933333pt;}
.y16_c00275{bottom:236.133333pt;}
.y15_c00275{bottom:258.533333pt;}
.y14_c00275{bottom:281.333333pt;}
.y13_c00275{bottom:302.933333pt;}
.y12_c00275{bottom:326.000000pt;}
.y11_c00275{bottom:347.600000pt;}
.y21_c00275{bottom:361.466667pt;}
.y10_c00275{bottom:369.333333pt;}
.y20_c00275{bottom:376.400000pt;}
.yf_c00275{bottom:392.000000pt;}
.ye_c00275{bottom:413.600000pt;}
.yd_c00275{bottom:436.400000pt;}
.y1f_c00275{bottom:446.400000pt;}
.yc_c00275{bottom:458.666667pt;}
.yb_c00275{bottom:480.933333pt;}
.ya_c00275{bottom:503.066667pt;}
.y9_c00275{bottom:525.333333pt;}
.y8_c00275{bottom:547.466667pt;}
.y7_c00275{bottom:570.000000pt;}
.y6_c00275{bottom:592.000000pt;}
.y5_c00275{bottom:614.133333pt;}
.y4_c00275{bottom:636.533333pt;}
.y3_c00275{bottom:658.533333pt;}
.y2_c00275{bottom:680.800000pt;}
.y1_c00275{bottom:702.933333pt;}
.h6_c00275{height:11.733399pt;}
.h7_c00275{height:38.937500pt;}
.h4_c00275{height:50.644531pt;}
.h5_c00275{height:62.421875pt;}
.h2_c00275{height:71.785156pt;}
.h3_c00275{height:77.654948pt;}
.h1_c00275{height:735.333333pt;}
.h0_c00275{height:735.600000pt;}
.w2_c00275{width:93.222667pt;}
.w0_c00275{width:508.533333pt;}
.w1_c00275{width:508.666667pt;}
.x0_c00275{left:0.000000pt;}
.xa_c00275{left:37.200000pt;}
.x9_c00275{left:38.133333pt;}
.x4_c00275{left:41.066667pt;}
.x8_c00275{left:51.866667pt;}
.x6_c00275{left:53.466667pt;}
.xf_c00275{left:76.266667pt;}
.xd_c00275{left:92.666667pt;}
.xc_c00275{left:94.266667pt;}
.xb_c00275{left:96.666667pt;}
.x7_c00275{left:97.600000pt;}
.x5_c00275{left:98.933333pt;}
.x3_c00275{left:99.866667pt;}
.x1_c00275{left:114.133333pt;}
.x2_c00275{left:148.400000pt;}
.x10_c00275{left:211.434896pt;}
.xe_c00275{left:426.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_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_3306eb77e2412250c8ff959c.woff2')format("woff");}.ff1_c00276{font-family:ff1_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:ff2_c00276;src:url('chunks/assets/font_e7314b0ef177d127273104ec.woff2')format("woff");}.ff2_c00276{font-family:ff2_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:ff3_c00276;src:url('chunks/assets/font_ac1b679b89bdafe761d89378.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00276{font-family:ff4_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:-6.000000px;}
.ls3_c00276{letter-spacing:0.000000px;}
.ls2_c00276{letter-spacing:3.000000px;}
.ls1_c00276{letter-spacing:9.000000px;}
.ls0_c00276{letter-spacing:11.925000px;}
.ls4_c00276{letter-spacing:18.000000px;}
.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;}
}
.ws3_c00276{word-spacing:-38.022000px;}
.ws2_c00276{word-spacing:-34.629000px;}
.ws0_c00276{word-spacing:-25.629000px;}
.ws1_c00276{word-spacing:-16.629000px;}
.ws4_c00276{word-spacing:0.000000px;}
._16_c00276{margin-left:-64.791000px;}
._18_c00276{margin-left:-20.838000px;}
._24_c00276{margin-left:-14.352000px;}
._1f_c00276{margin-left:-12.006000px;}
._1b_c00276{margin-left:-10.212000px;}
._1c_c00276{margin-left:-7.728000px;}
._f_c00276{margin-left:-5.796000px;}
._c_c00276{margin-left:-4.002000px;}
._d_c00276{margin-left:-2.829000px;}
._e_c00276{margin-left:-1.311000px;}
._11_c00276{width:1.035000px;}
._10_c00276{width:2.967000px;}
._5_c00276{width:4.071000px;}
._4_c00276{width:5.382000px;}
._0_c00276{width:6.486000px;}
._1_c00276{width:7.659000px;}
._a_c00276{width:9.039000px;}
._2_c00276{width:10.557000px;}
._8_c00276{width:11.730000px;}
._7_c00276{width:13.248000px;}
._9_c00276{width:14.973000px;}
._1a_c00276{width:16.077000px;}
._25_c00276{width:17.664000px;}
._12_c00276{width:18.699000px;}
._20_c00276{width:20.700000px;}
._19_c00276{width:22.011000px;}
._1d_c00276{width:23.289000px;}
._1e_c00276{width:24.633000px;}
._23_c00276{width:28.290000px;}
._13_c00276{width:32.844000px;}
._28_c00276{width:33.879000px;}
._14_c00276{width:34.983000px;}
._6_c00276{width:36.768000px;}
._27_c00276{width:38.298000px;}
._b_c00276{width:39.384000px;}
._3_c00276{width:43.386000px;}
._29_c00276{width:46.713000px;}
._21_c00276{width:49.644000px;}
._26_c00276{width:107.811000px;}
._17_c00276{width:132.480000px;}
._22_c00276{width:139.140000px;}
._2a_c00276{width:216.486000px;}
._2c_c00276{width:361.908000px;}
._15_c00276{width:483.690000px;}
._2b_c00276{width:850.563000px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(128,128,128);}
.fc0_c00276{color:rgb(0,0,0);}
.fs2_c00276{font-size:48.000000px;}
.fs1_c00276{font-size:66.000000px;}
.fs0_c00276{font-size:69.000000px;}
.y0_c00276{bottom:0.000000px;}
.y1d_c00276{bottom:3.105000px;}
.y1c_c00276{bottom:7.228369px;}
.y1b_c00276{bottom:66.870000px;}
.y1a_c00276{bottom:91.020000px;}
.y19_c00276{bottom:115.470000px;}
.y18_c00276{bottom:140.670000px;}
.y17_c00276{bottom:165.420000px;}
.y16_c00276{bottom:190.020000px;}
.y15_c00276{bottom:215.370000px;}
.y14_c00276{bottom:240.420000px;}
.y13_c00276{bottom:265.170000px;}
.y12_c00276{bottom:289.920000px;}
.y11_c00276{bottom:314.820000px;}
.y10_c00276{bottom:339.570000px;}
.yf_c00276{bottom:363.870000px;}
.ye_c00276{bottom:389.070000px;}
.yd_c00276{bottom:414.120000px;}
.yc_c00276{bottom:438.420000px;}
.yb_c00276{bottom:463.770000px;}
.ya_c00276{bottom:488.670000px;}
.y9_c00276{bottom:512.970000px;}
.y8_c00276{bottom:537.270000px;}
.y7_c00276{bottom:562.170000px;}
.y6_c00276{bottom:587.220000px;}
.y5_c00276{bottom:612.120000px;}
.y4_c00276{bottom:637.770000px;}
.y3_c00276{bottom:661.470000px;}
.y2_c00276{bottom:686.520000px;}
.y1_c00276{bottom:736.770000px;}
.h4_c00276{height:13.200073px;}
.h5_c00276{height:43.804688px;}
.h3_c00276{height:80.758301px;}
.h2_c00276{height:87.361816px;}
.h0_c00276{height:821.850000px;}
.h1_c00276{height:822.000000px;}
.w2_c00276{width:104.875500px;}
.w0_c00276{width:559.425000px;}
.w1_c00276{width:559.500000px;}
.x0_c00276{left:0.000000px;}
.x5_c00276{left:24.750000px;}
.x4_c00276{left:26.700000px;}
.x3_c00276{left:28.350000px;}
.x7_c00276{left:45.600000px;}
.x2_c00276{left:52.050000px;}
.x1_c00276{left:59.700000px;}
.x6_c00276{left:113.700000px;}
.x8_c00276{left:231.526749px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls5_c00276{letter-spacing:-5.333333pt;}
.ls3_c00276{letter-spacing:0.000000pt;}
.ls2_c00276{letter-spacing:2.666667pt;}
.ls1_c00276{letter-spacing:8.000000pt;}
.ls0_c00276{letter-spacing:10.600000pt;}
.ls4_c00276{letter-spacing:16.000000pt;}
.ws3_c00276{word-spacing:-33.797333pt;}
.ws2_c00276{word-spacing:-30.781333pt;}
.ws0_c00276{word-spacing:-22.781333pt;}
.ws1_c00276{word-spacing:-14.781333pt;}
.ws4_c00276{word-spacing:0.000000pt;}
._16_c00276{margin-left:-57.592000pt;}
._18_c00276{margin-left:-18.522667pt;}
._24_c00276{margin-left:-12.757333pt;}
._1f_c00276{margin-left:-10.672000pt;}
._1b_c00276{margin-left:-9.077333pt;}
._1c_c00276{margin-left:-6.869333pt;}
._f_c00276{margin-left:-5.152000pt;}
._c_c00276{margin-left:-3.557333pt;}
._d_c00276{margin-left:-2.514667pt;}
._e_c00276{margin-left:-1.165333pt;}
._11_c00276{width:0.920000pt;}
._10_c00276{width:2.637333pt;}
._5_c00276{width:3.618667pt;}
._4_c00276{width:4.784000pt;}
._0_c00276{width:5.765333pt;}
._1_c00276{width:6.808000pt;}
._a_c00276{width:8.034667pt;}
._2_c00276{width:9.384000pt;}
._8_c00276{width:10.426667pt;}
._7_c00276{width:11.776000pt;}
._9_c00276{width:13.309333pt;}
._1a_c00276{width:14.290667pt;}
._25_c00276{width:15.701333pt;}
._12_c00276{width:16.621333pt;}
._20_c00276{width:18.400000pt;}
._19_c00276{width:19.565333pt;}
._1d_c00276{width:20.701333pt;}
._1e_c00276{width:21.896000pt;}
._23_c00276{width:25.146667pt;}
._13_c00276{width:29.194667pt;}
._28_c00276{width:30.114667pt;}
._14_c00276{width:31.096000pt;}
._6_c00276{width:32.682667pt;}
._27_c00276{width:34.042667pt;}
._b_c00276{width:35.008000pt;}
._3_c00276{width:38.565333pt;}
._29_c00276{width:41.522667pt;}
._21_c00276{width:44.128000pt;}
._26_c00276{width:95.832000pt;}
._17_c00276{width:117.760000pt;}
._22_c00276{width:123.680000pt;}
._2a_c00276{width:192.432000pt;}
._2c_c00276{width:321.696000pt;}
._15_c00276{width:429.946667pt;}
._2b_c00276{width:756.056000pt;}
.fs2_c00276{font-size:42.666667pt;}
.fs1_c00276{font-size:58.666667pt;}
.fs0_c00276{font-size:61.333333pt;}
.y0_c00276{bottom:0.000000pt;}
.y1d_c00276{bottom:2.760000pt;}
.y1c_c00276{bottom:6.425217pt;}
.y1b_c00276{bottom:59.440000pt;}
.y1a_c00276{bottom:80.906667pt;}
.y19_c00276{bottom:102.640000pt;}
.y18_c00276{bottom:125.040000pt;}
.y17_c00276{bottom:147.040000pt;}
.y16_c00276{bottom:168.906667pt;}
.y15_c00276{bottom:191.440000pt;}
.y14_c00276{bottom:213.706667pt;}
.y13_c00276{bottom:235.706667pt;}
.y12_c00276{bottom:257.706667pt;}
.y11_c00276{bottom:279.840000pt;}
.y10_c00276{bottom:301.840000pt;}
.yf_c00276{bottom:323.440000pt;}
.ye_c00276{bottom:345.840000pt;}
.yd_c00276{bottom:368.106667pt;}
.yc_c00276{bottom:389.706667pt;}
.yb_c00276{bottom:412.240000pt;}
.ya_c00276{bottom:434.373333pt;}
.y9_c00276{bottom:455.973333pt;}
.y8_c00276{bottom:477.573333pt;}
.y7_c00276{bottom:499.706667pt;}
.y6_c00276{bottom:521.973333pt;}
.y5_c00276{bottom:544.106667pt;}
.y4_c00276{bottom:566.906667pt;}
.y3_c00276{bottom:587.973333pt;}
.y2_c00276{bottom:610.240000pt;}
.y1_c00276{bottom:654.906667pt;}
.h4_c00276{height:11.733399pt;}
.h5_c00276{height:38.937500pt;}
.h3_c00276{height:71.785156pt;}
.h2_c00276{height:77.654948pt;}
.h0_c00276{height:730.533333pt;}
.h1_c00276{height:730.666667pt;}
.w2_c00276{width:93.222667pt;}
.w0_c00276{width:497.266667pt;}
.w1_c00276{width:497.333333pt;}
.x0_c00276{left:0.000000pt;}
.x5_c00276{left:22.000000pt;}
.x4_c00276{left:23.733333pt;}
.x3_c00276{left:25.200000pt;}
.x7_c00276{left:40.533333pt;}
.x2_c00276{left:46.266667pt;}
.x1_c00276{left:53.066667pt;}
.x6_c00276{left:101.066667pt;}
.x8_c00276{left:205.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_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_89760852f69b4fd5bb9f4ba7.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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_81136db0518e0e15a3b4aba9.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.568848;font-style:normal;font-weight:normal;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_f887b7630d286f361c22c6e5.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00277{font-family:ff5_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;}
.ls5_c00277{letter-spacing:0.000000px;}
.ls4_c00277{letter-spacing:3.000000px;}
.ls2_c00277{letter-spacing:4.200000px;}
.ls0_c00277{letter-spacing:10.200000px;}
.ls1_c00277{letter-spacing:11.925000px;}
.ls3_c00277{letter-spacing:44.217000px;}
.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:-20.574000px;}
.ws0_c00277{word-spacing:-18.075000px;}
.ws2_c00277{word-spacing:0.000000px;}
._17_c00277{margin-left:-21.042000px;}
._24_c00277{margin-left:-17.373000px;}
._15_c00277{margin-left:-13.179000px;}
._1a_c00277{margin-left:-11.247000px;}
._11_c00277{margin-left:-9.201000px;}
._14_c00277{margin-left:-7.866000px;}
._1c_c00277{margin-left:-6.717000px;}
._2_c00277{margin-left:-5.589000px;}
._1d_c00277{margin-left:-4.443000px;}
._c_c00277{margin-left:-3.174000px;}
._0_c00277{margin-left:-2.139000px;}
._16_c00277{margin-left:-1.113000px;}
._1_c00277{width:1.251000px;}
._7_c00277{width:2.415000px;}
._5_c00277{width:3.519000px;}
._4_c00277{width:5.313000px;}
._6_c00277{width:6.693000px;}
._3_c00277{width:8.280000px;}
._9_c00277{width:10.281000px;}
._8_c00277{width:12.186000px;}
._1e_c00277{width:13.455000px;}
._23_c00277{width:14.655000px;}
._a_c00277{width:15.705000px;}
._19_c00277{width:17.043000px;}
._10_c00277{width:18.090000px;}
._1b_c00277{width:21.153000px;}
._e_c00277{width:22.278000px;}
._b_c00277{width:24.969000px;}
._f_c00277{width:28.719000px;}
._d_c00277{width:30.438000px;}
._26_c00277{width:32.844000px;}
._20_c00277{width:34.236000px;}
._12_c00277{width:37.329000px;}
._2a_c00277{width:59.409000px;}
._18_c00277{width:61.341000px;}
._29_c00277{width:71.814000px;}
._28_c00277{width:78.798000px;}
._27_c00277{width:81.765000px;}
._1f_c00277{width:89.001000px;}
._22_c00277{width:96.669000px;}
._13_c00277{width:103.086000px;}
._21_c00277{width:544.377000px;}
._25_c00277{width:875.856000px;}
.fc2_c00277{color:transparent;}
.fc1_c00277{color:rgb(128,128,128);}
.fc0_c00277{color:rgb(0,0,0);}
.fs7_c00277{font-size:48.000000px;}
.fs4_c00277{font-size:54.000000px;}
.fs5_c00277{font-size:60.000000px;}
.fs3_c00277{font-size:63.000000px;}
.fs1_c00277{font-size:66.000000px;}
.fs0_c00277{font-size:69.000000px;}
.fs2_c00277{font-size:75.000000px;}
.fs6_c00277{font-size:81.000000px;}
.y0_c00277{bottom:0.000000px;}
.y1e_c00277{bottom:3.105000px;}
.y1d_c00277{bottom:7.228363px;}
.y1c_c00277{bottom:50.400000px;}
.y1b_c00277{bottom:76.350000px;}
.y1a_c00277{bottom:127.650000px;}
.y19_c00277{bottom:178.950000px;}
.y18_c00277{bottom:202.200000px;}
.y17_c00277{bottom:228.450000px;}
.y16_c00277{bottom:253.200000px;}
.y15_c00277{bottom:278.100000px;}
.y14_c00277{bottom:303.450000px;}
.y13_c00277{bottom:326.400000px;}
.y12_c00277{bottom:352.350000px;}
.y11_c00277{bottom:377.400000px;}
.y10_c00277{bottom:405.450000px;}
.yf_c00277{bottom:426.900000px;}
.ye_c00277{bottom:449.250000px;}
.yd_c00277{bottom:477.000000px;}
.yc_c00277{bottom:502.200000px;}
.yb_c00277{bottom:526.800000px;}
.ya_c00277{bottom:552.150000px;}
.y9_c00277{bottom:576.900000px;}
.y8_c00277{bottom:602.850000px;}
.y7_c00277{bottom:626.700000px;}
.y6_c00277{bottom:652.350000px;}
.y5_c00277{bottom:677.100000px;}
.y4_c00277{bottom:702.000000px;}
.y3_c00277{bottom:726.750000px;}
.y2_c00277{bottom:751.950000px;}
.y1_c00277{bottom:777.300000px;}
.h6_c00277{height:13.200074px;}
.h7_c00277{height:43.804688px;}
.h2_c00277{height:80.758301px;}
.h3_c00277{height:87.361816px;}
.h4_c00277{height:87.780762px;}
.h5_c00277{height:102.555176px;}
.h0_c00277{height:818.100000px;}
.h1_c00277{height:818.250000px;}
.w2_c00277{width:104.875500px;}
.w0_c00277{width:565.350000px;}
.w1_c00277{width:565.500000px;}
.x0_c00277{left:0.000000px;}
.x5_c00277{left:34.500000px;}
.xb_c00277{left:48.600000px;}
.x4_c00277{left:51.600000px;}
.xe_c00277{left:95.550000px;}
.xc_c00277{left:97.200000px;}
.x6_c00277{left:98.250000px;}
.x2_c00277{left:99.300000px;}
.x3_c00277{left:100.950000px;}
.xa_c00277{left:121.050000px;}
.x10_c00277{left:234.489258px;}
.xd_c00277{left:246.300000px;}
.x8_c00277{left:247.950000px;}
.x1_c00277{left:255.450000px;}
.x7_c00277{left:447.750000px;}
.x9_c00277{left:454.950000px;}
.xf_c00277{left:513.000000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls5_c00277{letter-spacing:0.000000pt;}
.ls4_c00277{letter-spacing:2.666667pt;}
.ls2_c00277{letter-spacing:3.733333pt;}
.ls0_c00277{letter-spacing:9.066667pt;}
.ls1_c00277{letter-spacing:10.600000pt;}
.ls3_c00277{letter-spacing:39.304000pt;}
.ws1_c00277{word-spacing:-18.288000pt;}
.ws0_c00277{word-spacing:-16.066667pt;}
.ws2_c00277{word-spacing:0.000000pt;}
._17_c00277{margin-left:-18.704000pt;}
._24_c00277{margin-left:-15.442667pt;}
._15_c00277{margin-left:-11.714667pt;}
._1a_c00277{margin-left:-9.997333pt;}
._11_c00277{margin-left:-8.178667pt;}
._14_c00277{margin-left:-6.992000pt;}
._1c_c00277{margin-left:-5.970667pt;}
._2_c00277{margin-left:-4.968000pt;}
._1d_c00277{margin-left:-3.949333pt;}
._c_c00277{margin-left:-2.821333pt;}
._0_c00277{margin-left:-1.901333pt;}
._16_c00277{margin-left:-0.989333pt;}
._1_c00277{width:1.112000pt;}
._7_c00277{width:2.146667pt;}
._5_c00277{width:3.128000pt;}
._4_c00277{width:4.722667pt;}
._6_c00277{width:5.949333pt;}
._3_c00277{width:7.360000pt;}
._9_c00277{width:9.138667pt;}
._8_c00277{width:10.832000pt;}
._1e_c00277{width:11.960000pt;}
._23_c00277{width:13.026667pt;}
._a_c00277{width:13.960000pt;}
._19_c00277{width:15.149333pt;}
._10_c00277{width:16.080000pt;}
._1b_c00277{width:18.802667pt;}
._e_c00277{width:19.802667pt;}
._b_c00277{width:22.194667pt;}
._f_c00277{width:25.528000pt;}
._d_c00277{width:27.056000pt;}
._26_c00277{width:29.194667pt;}
._20_c00277{width:30.432000pt;}
._12_c00277{width:33.181333pt;}
._2a_c00277{width:52.808000pt;}
._18_c00277{width:54.525333pt;}
._29_c00277{width:63.834667pt;}
._28_c00277{width:70.042667pt;}
._27_c00277{width:72.680000pt;}
._1f_c00277{width:79.112000pt;}
._22_c00277{width:85.928000pt;}
._13_c00277{width:91.632000pt;}
._21_c00277{width:483.890667pt;}
._25_c00277{width:778.538667pt;}
.fs7_c00277{font-size:42.666667pt;}
.fs4_c00277{font-size:48.000000pt;}
.fs5_c00277{font-size:53.333333pt;}
.fs3_c00277{font-size:56.000000pt;}
.fs1_c00277{font-size:58.666667pt;}
.fs0_c00277{font-size:61.333333pt;}
.fs2_c00277{font-size:66.666667pt;}
.fs6_c00277{font-size:72.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y1e_c00277{bottom:2.760000pt;}
.y1d_c00277{bottom:6.425212pt;}
.y1c_c00277{bottom:44.800000pt;}
.y1b_c00277{bottom:67.866667pt;}
.y1a_c00277{bottom:113.466667pt;}
.y19_c00277{bottom:159.066667pt;}
.y18_c00277{bottom:179.733333pt;}
.y17_c00277{bottom:203.066667pt;}
.y16_c00277{bottom:225.066667pt;}
.y15_c00277{bottom:247.200000pt;}
.y14_c00277{bottom:269.733333pt;}
.y13_c00277{bottom:290.133333pt;}
.y12_c00277{bottom:313.200000pt;}
.y11_c00277{bottom:335.466667pt;}
.y10_c00277{bottom:360.400000pt;}
.yf_c00277{bottom:379.466667pt;}
.ye_c00277{bottom:399.333333pt;}
.yd_c00277{bottom:424.000000pt;}
.yc_c00277{bottom:446.400000pt;}
.yb_c00277{bottom:468.266667pt;}
.ya_c00277{bottom:490.800000pt;}
.y9_c00277{bottom:512.800000pt;}
.y8_c00277{bottom:535.866667pt;}
.y7_c00277{bottom:557.066667pt;}
.y6_c00277{bottom:579.866667pt;}
.y5_c00277{bottom:601.866667pt;}
.y4_c00277{bottom:624.000000pt;}
.y3_c00277{bottom:646.000000pt;}
.y2_c00277{bottom:668.400000pt;}
.y1_c00277{bottom:690.933333pt;}
.h6_c00277{height:11.733399pt;}
.h7_c00277{height:38.937500pt;}
.h2_c00277{height:71.785156pt;}
.h3_c00277{height:77.654948pt;}
.h4_c00277{height:78.027344pt;}
.h5_c00277{height:91.160156pt;}
.h0_c00277{height:727.200000pt;}
.h1_c00277{height:727.333333pt;}
.w2_c00277{width:93.222667pt;}
.w0_c00277{width:502.533333pt;}
.w1_c00277{width:502.666667pt;}
.x0_c00277{left:0.000000pt;}
.x5_c00277{left:30.666667pt;}
.xb_c00277{left:43.200000pt;}
.x4_c00277{left:45.866667pt;}
.xe_c00277{left:84.933333pt;}
.xc_c00277{left:86.400000pt;}
.x6_c00277{left:87.333333pt;}
.x2_c00277{left:88.266667pt;}
.x3_c00277{left:89.733333pt;}
.xa_c00277{left:107.600000pt;}
.x10_c00277{left:208.434896pt;}
.xd_c00277{left:218.933333pt;}
.x8_c00277{left:220.400000pt;}
.x1_c00277{left:227.066667pt;}
.x7_c00277{left:398.000000pt;}
.x9_c00277{left:404.400000pt;}
.xf_c00277{left:456.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_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_8c48cd2ce005431a146b0165.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_67dfc7d1b4bbb63902208a52.woff2')format("woff");}.ff2_c00278{font-family:ff2_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:ff3_c00278;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00278{font-family:ff3_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:ff4_c00278;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00278{font-family:ff4_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);}
.v0_c00278{vertical-align:0.000000px;}
.ls5_c00278{letter-spacing:-6.000000px;}
.ls2_c00278{letter-spacing:0.000000px;}
.ls3_c00278{letter-spacing:3.000000px;}
.ls4_c00278{letter-spacing:9.000000px;}
.ls0_c00278{letter-spacing:13.125000px;}
.ls1_c00278{letter-spacing:15.600000px;}
.ls6_c00278{letter-spacing:33.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00278{word-spacing:-49.629000px;}
.ws2_c00278{word-spacing:-38.022000px;}
.ws1_c00278{word-spacing:-25.629000px;}
.ws4_c00278{word-spacing:-18.075000px;}
.ws0_c00278{word-spacing:-16.629000px;}
.ws5_c00278{word-spacing:0.000000px;}
._5_c00278{margin-left:-29.091000px;}
._26_c00278{margin-left:-24.840000px;}
._20_c00278{margin-left:-17.112000px;}
._1d_c00278{margin-left:-13.455000px;}
._18_c00278{margin-left:-10.350000px;}
._13_c00278{margin-left:-8.640000px;}
._9_c00278{margin-left:-6.969000px;}
._1b_c00278{margin-left:-5.796000px;}
._0_c00278{margin-left:-4.761000px;}
._3_c00278{margin-left:-2.829000px;}
._a_c00278{margin-left:-1.449000px;}
._8_c00278{width:1.035000px;}
._1_c00278{width:2.208000px;}
._6_c00278{width:4.002000px;}
._b_c00278{width:5.106000px;}
._7_c00278{width:6.762000px;}
._22_c00278{width:8.460000px;}
._e_c00278{width:9.798000px;}
._21_c00278{width:10.932000px;}
._24_c00278{width:12.090000px;}
._d_c00278{width:13.179000px;}
._1c_c00278{width:15.249000px;}
._f_c00278{width:16.941000px;}
._15_c00278{width:18.147000px;}
._10_c00278{width:20.631000px;}
._11_c00278{width:21.906000px;}
._4_c00278{width:23.322000px;}
._19_c00278{width:24.717000px;}
._14_c00278{width:26.565000px;}
._27_c00278{width:32.742000px;}
._2_c00278{width:35.121000px;}
._12_c00278{width:38.361000px;}
._25_c00278{width:66.642000px;}
._1f_c00278{width:75.108000px;}
._17_c00278{width:82.815000px;}
._23_c00278{width:96.576000px;}
._1a_c00278{width:119.922000px;}
._1e_c00278{width:182.814000px;}
._16_c00278{width:241.983000px;}
._c_c00278{width:427.455000px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(128,128,128);}
.fc0_c00278{color:rgb(0,0,0);}
.fs3_c00278{font-size:48.000000px;}
.fs1_c00278{font-size:66.000000px;}
.fs0_c00278{font-size:69.000000px;}
.fs2_c00278{font-size:75.000000px;}
.y0_c00278{bottom:0.000000px;}
.y1e_c00278{bottom:3.105000px;}
.y1d_c00278{bottom:7.228369px;}
.y1c_c00278{bottom:69.420000px;}
.y1b_c00278{bottom:93.120000px;}
.y1a_c00278{bottom:118.770000px;}
.y19_c00278{bottom:142.770000px;}
.y18_c00278{bottom:167.370000px;}
.y17_c00278{bottom:192.270000px;}
.y16_c00278{bottom:217.620000px;}
.y15_c00278{bottom:242.670000px;}
.y14_c00278{bottom:268.020000px;}
.y13_c00278{bottom:292.620000px;}
.y12_c00278{bottom:317.520000px;}
.y11_c00278{bottom:341.820000px;}
.y10_c00278{bottom:367.920000px;}
.yf_c00278{bottom:392.220000px;}
.ye_c00278{bottom:417.420000px;}
.yd_c00278{bottom:442.770000px;}
.yc_c00278{bottom:491.970000px;}
.yb_c00278{bottom:540.720000px;}
.ya_c00278{bottom:565.920000px;}
.y9_c00278{bottom:590.970000px;}
.y8_c00278{bottom:617.220000px;}
.y7_c00278{bottom:640.620000px;}
.y6_c00278{bottom:665.520000px;}
.y5_c00278{bottom:690.420000px;}
.y4_c00278{bottom:715.770000px;}
.y3_c00278{bottom:740.820000px;}
.y2_c00278{bottom:764.670000px;}
.y1_c00278{bottom:790.320000px;}
.h5_c00278{height:13.200073px;}
.h6_c00278{height:43.804688px;}
.h3_c00278{height:80.758301px;}
.h2_c00278{height:87.361816px;}
.h4_c00278{height:94.958496px;}
.h0_c00278{height:821.850000px;}
.h1_c00278{height:822.000000px;}
.w2_c00278{width:104.875500px;}
.w0_c00278{width:559.425000px;}
.w1_c00278{width:559.500000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:30.000000px;}
.x4_c00278{left:32.700000px;}
.x7_c00278{left:34.500000px;}
.x9_c00278{left:36.150000px;}
.x3_c00278{left:56.250000px;}
.x6_c00278{left:58.800000px;}
.x5_c00278{left:69.150000px;}
.x8_c00278{left:70.950000px;}
.x1_c00278{left:187.350000px;}
.xb_c00278{left:231.526749px;}
.xa_c00278{left:453.600000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls5_c00278{letter-spacing:-5.333333pt;}
.ls2_c00278{letter-spacing:0.000000pt;}
.ls3_c00278{letter-spacing:2.666667pt;}
.ls4_c00278{letter-spacing:8.000000pt;}
.ls0_c00278{letter-spacing:11.666667pt;}
.ls1_c00278{letter-spacing:13.866667pt;}
.ls6_c00278{letter-spacing:29.333333pt;}
.ws3_c00278{word-spacing:-44.114667pt;}
.ws2_c00278{word-spacing:-33.797333pt;}
.ws1_c00278{word-spacing:-22.781333pt;}
.ws4_c00278{word-spacing:-16.066667pt;}
.ws0_c00278{word-spacing:-14.781333pt;}
.ws5_c00278{word-spacing:0.000000pt;}
._5_c00278{margin-left:-25.858667pt;}
._26_c00278{margin-left:-22.080000pt;}
._20_c00278{margin-left:-15.210667pt;}
._1d_c00278{margin-left:-11.960000pt;}
._18_c00278{margin-left:-9.200000pt;}
._13_c00278{margin-left:-7.680000pt;}
._9_c00278{margin-left:-6.194667pt;}
._1b_c00278{margin-left:-5.152000pt;}
._0_c00278{margin-left:-4.232000pt;}
._3_c00278{margin-left:-2.514667pt;}
._a_c00278{margin-left:-1.288000pt;}
._8_c00278{width:0.920000pt;}
._1_c00278{width:1.962667pt;}
._6_c00278{width:3.557333pt;}
._b_c00278{width:4.538667pt;}
._7_c00278{width:6.010667pt;}
._22_c00278{width:7.520000pt;}
._e_c00278{width:8.709333pt;}
._21_c00278{width:9.717333pt;}
._24_c00278{width:10.746667pt;}
._d_c00278{width:11.714667pt;}
._1c_c00278{width:13.554667pt;}
._f_c00278{width:15.058667pt;}
._15_c00278{width:16.130667pt;}
._10_c00278{width:18.338667pt;}
._11_c00278{width:19.472000pt;}
._4_c00278{width:20.730667pt;}
._19_c00278{width:21.970667pt;}
._14_c00278{width:23.613333pt;}
._27_c00278{width:29.104000pt;}
._2_c00278{width:31.218667pt;}
._12_c00278{width:34.098667pt;}
._25_c00278{width:59.237333pt;}
._1f_c00278{width:66.762667pt;}
._17_c00278{width:73.613333pt;}
._23_c00278{width:85.845333pt;}
._1a_c00278{width:106.597333pt;}
._1e_c00278{width:162.501333pt;}
._16_c00278{width:215.096000pt;}
._c_c00278{width:379.960000pt;}
.fs3_c00278{font-size:42.666667pt;}
.fs1_c00278{font-size:58.666667pt;}
.fs0_c00278{font-size:61.333333pt;}
.fs2_c00278{font-size:66.666667pt;}
.y0_c00278{bottom:0.000000pt;}
.y1e_c00278{bottom:2.760000pt;}
.y1d_c00278{bottom:6.425217pt;}
.y1c_c00278{bottom:61.706667pt;}
.y1b_c00278{bottom:82.773333pt;}
.y1a_c00278{bottom:105.573333pt;}
.y19_c00278{bottom:126.906667pt;}
.y18_c00278{bottom:148.773333pt;}
.y17_c00278{bottom:170.906667pt;}
.y16_c00278{bottom:193.440000pt;}
.y15_c00278{bottom:215.706667pt;}
.y14_c00278{bottom:238.240000pt;}
.y13_c00278{bottom:260.106667pt;}
.y12_c00278{bottom:282.240000pt;}
.y11_c00278{bottom:303.840000pt;}
.y10_c00278{bottom:327.040000pt;}
.yf_c00278{bottom:348.640000pt;}
.ye_c00278{bottom:371.040000pt;}
.yd_c00278{bottom:393.573333pt;}
.yc_c00278{bottom:437.306667pt;}
.yb_c00278{bottom:480.640000pt;}
.ya_c00278{bottom:503.040000pt;}
.y9_c00278{bottom:525.306667pt;}
.y8_c00278{bottom:548.640000pt;}
.y7_c00278{bottom:569.440000pt;}
.y6_c00278{bottom:591.573333pt;}
.y5_c00278{bottom:613.706667pt;}
.y4_c00278{bottom:636.240000pt;}
.y3_c00278{bottom:658.506667pt;}
.y2_c00278{bottom:679.706667pt;}
.y1_c00278{bottom:702.506667pt;}
.h5_c00278{height:11.733399pt;}
.h6_c00278{height:38.937500pt;}
.h3_c00278{height:71.785156pt;}
.h2_c00278{height:77.654948pt;}
.h4_c00278{height:84.407552pt;}
.h0_c00278{height:730.533333pt;}
.h1_c00278{height:730.666667pt;}
.w2_c00278{width:93.222667pt;}
.w0_c00278{width:497.266667pt;}
.w1_c00278{width:497.333333pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:26.666667pt;}
.x4_c00278{left:29.066667pt;}
.x7_c00278{left:30.666667pt;}
.x9_c00278{left:32.133333pt;}
.x3_c00278{left:50.000000pt;}
.x6_c00278{left:52.266667pt;}
.x5_c00278{left:61.466667pt;}
.x8_c00278{left:63.066667pt;}
.x1_c00278{left:166.533333pt;}
.xb_c00278{left:205.801554pt;}
.xa_c00278{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1678ab5ad1e6f9a921cd5d78.woff2')format("woff");}.ff1_c00279{font-family:ff1_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:ff2_c00279;src:url('chunks/assets/font_320fe08b8d823514c9292c59.woff2')format("woff");}.ff2_c00279{font-family:ff2_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:ff3_c00279;src:url('chunks/assets/font_f4d6bef164d1a49dbb6ce4a5.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.311035;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_1f40bd4c6c0b1756620424e8.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;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_c00279;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00279{font-family:ff6_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:ff7_c00279;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00279{font-family:ff7_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;}
.ls8_c00279{letter-spacing:-6.000000px;}
.ls9_c00279{letter-spacing:-3.000000px;}
.ls6_c00279{letter-spacing:0.000000px;}
.ls2_c00279{letter-spacing:1.200000px;}
.ls4_c00279{letter-spacing:2.400000px;}
.ls7_c00279{letter-spacing:3.000000px;}
.ls3_c00279{letter-spacing:4.125000px;}
.ls1_c00279{letter-spacing:26.595000px;}
.ls0_c00279{letter-spacing:30.000000px;}
.ls5_c00279{letter-spacing:36.810000px;}
.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;}
}
.ws2_c00279{word-spacing:-43.224000px;}
.ws0_c00279{word-spacing:-38.022000px;}
.ws3_c00279{word-spacing:-16.629000px;}
.ws4_c00279{word-spacing:-15.183000px;}
.ws5_c00279{word-spacing:-0.084000px;}
.ws6_c00279{word-spacing:0.000000px;}
.ws1_c00279{word-spacing:1.035000px;}
._27_c00279{margin-left:-64.623000px;}
._28_c00279{margin-left:-35.625000px;}
._2b_c00279{margin-left:-20.805000px;}
._2d_c00279{margin-left:-18.705000px;}
._a_c00279{margin-left:-17.457000px;}
._18_c00279{margin-left:-16.146000px;}
._17_c00279{margin-left:-14.505000px;}
._19_c00279{margin-left:-12.903000px;}
._6_c00279{margin-left:-11.454000px;}
._b_c00279{margin-left:-9.300000px;}
._4_c00279{margin-left:-7.866000px;}
._7_c00279{margin-left:-6.348000px;}
._5_c00279{margin-left:-4.623000px;}
._15_c00279{margin-left:-3.312000px;}
._1_c00279{margin-left:-2.277000px;}
._0_c00279{margin-left:-1.242000px;}
._9_c00279{width:1.104000px;}
._3_c00279{width:2.898000px;}
._2_c00279{width:4.071000px;}
._14_c00279{width:5.175000px;}
._e_c00279{width:6.486000px;}
._12_c00279{width:8.418000px;}
._11_c00279{width:9.660000px;}
._d_c00279{width:10.833000px;}
._10_c00279{width:12.282000px;}
._f_c00279{width:13.869000px;}
._1a_c00279{width:15.042000px;}
._16_c00279{width:16.974000px;}
._1b_c00279{width:18.078000px;}
._31_c00279{width:21.597000px;}
._21_c00279{width:22.632000px;}
._1e_c00279{width:24.702000px;}
._23_c00279{width:29.118000px;}
._2f_c00279{width:30.552000px;}
._29_c00279{width:33.120000px;}
._13_c00279{width:35.079000px;}
._34_c00279{width:40.074000px;}
._1d_c00279{width:42.711000px;}
._22_c00279{width:49.818000px;}
._26_c00279{width:67.122000px;}
._2e_c00279{width:69.222000px;}
._1c_c00279{width:83.421000px;}
._25_c00279{width:84.594000px;}
._8_c00279{width:91.425000px;}
._32_c00279{width:94.929000px;}
._30_c00279{width:96.822000px;}
._2a_c00279{width:112.287000px;}
._33_c00279{width:128.616000px;}
._20_c00279{width:138.621000px;}
._2c_c00279{width:161.667000px;}
._24_c00279{width:185.610000px;}
._1f_c00279{width:328.440000px;}
._c_c00279{width:439.662000px;}
._35_c00279{width:1500.405000px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(128,128,128);}
.fc0_c00279{color:rgb(0,0,0);}
.fs5_c00279{font-size:48.000000px;}
.fs3_c00279{font-size:63.000000px;}
.fs1_c00279{font-size:66.000000px;}
.fs0_c00279{font-size:69.000000px;}
.fs4_c00279{font-size:78.000000px;}
.fs2_c00279{font-size:84.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1f_c00279{bottom:3.105000px;}
.y1e_c00279{bottom:7.228363px;}
.y1d_c00279{bottom:55.350000px;}
.y1c_c00279{bottom:80.100000px;}
.y1b_c00279{bottom:105.300000px;}
.y1a_c00279{bottom:131.250000px;}
.y19_c00279{bottom:155.700000px;}
.y18_c00279{bottom:179.850000px;}
.y17_c00279{bottom:205.650000px;}
.y16_c00279{bottom:231.900000px;}
.y15_c00279{bottom:255.900000px;}
.y14_c00279{bottom:281.100000px;}
.y13_c00279{bottom:306.450000px;}
.y12_c00279{bottom:329.700000px;}
.y11_c00279{bottom:355.500000px;}
.y10_c00279{bottom:381.000000px;}
.yf_c00279{bottom:405.300000px;}
.ye_c00279{bottom:432.450000px;}
.yd_c00279{bottom:480.900000px;}
.yc_c00279{bottom:505.350000px;}
.yb_c00279{bottom:530.550000px;}
.ya_c00279{bottom:555.150000px;}
.y9_c00279{bottom:582.900000px;}
.y8_c00279{bottom:605.550000px;}
.y7_c00279{bottom:630.450000px;}
.y6_c00279{bottom:655.200000px;}
.y5_c00279{bottom:680.400000px;}
.y4_c00279{bottom:704.400000px;}
.y3_c00279{bottom:731.250000px;}
.y2_c00279{bottom:755.700000px;}
.y1_c00279{bottom:780.750000px;}
.h6_c00279{height:13.200074px;}
.h7_c00279{height:43.804688px;}
.h2_c00279{height:80.758301px;}
.h3_c00279{height:87.361816px;}
.h4_c00279{height:87.445312px;}
.h5_c00279{height:98.756836px;}
.h1_c00279{height:827.250000px;}
.h0_c00279{height:827.550000px;}
.w2_c00279{width:104.875500px;}
.w0_c00279{width:572.100000px;}
.w1_c00279{width:572.250000px;}
.x0_c00279{left:0.000000px;}
.x10_c00279{left:19.200000px;}
.x12_c00279{left:20.250000px;}
.x3_c00279{left:26.400000px;}
.xd_c00279{left:36.750000px;}
.xf_c00279{left:41.100000px;}
.x6_c00279{left:42.900000px;}
.x2_c00279{left:44.550000px;}
.x7_c00279{left:47.250000px;}
.xc_c00279{left:55.350000px;}
.x13_c00279{left:83.400000px;}
.x11_c00279{left:84.750000px;}
.xe_c00279{left:86.700000px;}
.x9_c00279{left:88.050000px;}
.x5_c00279{left:90.000000px;}
.x4_c00279{left:91.200000px;}
.xb_c00279{left:111.750000px;}
.xa_c00279{left:128.850000px;}
.x8_c00279{left:199.350000px;}
.x14_c00279{left:237.864258px;}
.x1_c00279{left:247.050000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls8_c00279{letter-spacing:-5.333333pt;}
.ls9_c00279{letter-spacing:-2.666667pt;}
.ls6_c00279{letter-spacing:0.000000pt;}
.ls2_c00279{letter-spacing:1.066667pt;}
.ls4_c00279{letter-spacing:2.133333pt;}
.ls7_c00279{letter-spacing:2.666667pt;}
.ls3_c00279{letter-spacing:3.666667pt;}
.ls1_c00279{letter-spacing:23.640000pt;}
.ls0_c00279{letter-spacing:26.666667pt;}
.ls5_c00279{letter-spacing:32.720000pt;}
.ws2_c00279{word-spacing:-38.421333pt;}
.ws0_c00279{word-spacing:-33.797333pt;}
.ws3_c00279{word-spacing:-14.781333pt;}
.ws4_c00279{word-spacing:-13.496000pt;}
.ws5_c00279{word-spacing:-0.074667pt;}
.ws6_c00279{word-spacing:0.000000pt;}
.ws1_c00279{word-spacing:0.920000pt;}
._27_c00279{margin-left:-57.442667pt;}
._28_c00279{margin-left:-31.666667pt;}
._2b_c00279{margin-left:-18.493333pt;}
._2d_c00279{margin-left:-16.626667pt;}
._a_c00279{margin-left:-15.517333pt;}
._18_c00279{margin-left:-14.352000pt;}
._17_c00279{margin-left:-12.893333pt;}
._19_c00279{margin-left:-11.469333pt;}
._6_c00279{margin-left:-10.181333pt;}
._b_c00279{margin-left:-8.266667pt;}
._4_c00279{margin-left:-6.992000pt;}
._7_c00279{margin-left:-5.642667pt;}
._5_c00279{margin-left:-4.109333pt;}
._15_c00279{margin-left:-2.944000pt;}
._1_c00279{margin-left:-2.024000pt;}
._0_c00279{margin-left:-1.104000pt;}
._9_c00279{width:0.981333pt;}
._3_c00279{width:2.576000pt;}
._2_c00279{width:3.618667pt;}
._14_c00279{width:4.600000pt;}
._e_c00279{width:5.765333pt;}
._12_c00279{width:7.482667pt;}
._11_c00279{width:8.586667pt;}
._d_c00279{width:9.629333pt;}
._10_c00279{width:10.917333pt;}
._f_c00279{width:12.328000pt;}
._1a_c00279{width:13.370667pt;}
._16_c00279{width:15.088000pt;}
._1b_c00279{width:16.069333pt;}
._31_c00279{width:19.197333pt;}
._21_c00279{width:20.117333pt;}
._1e_c00279{width:21.957333pt;}
._23_c00279{width:25.882667pt;}
._2f_c00279{width:27.157333pt;}
._29_c00279{width:29.440000pt;}
._13_c00279{width:31.181333pt;}
._34_c00279{width:35.621333pt;}
._1d_c00279{width:37.965333pt;}
._22_c00279{width:44.282667pt;}
._26_c00279{width:59.664000pt;}
._2e_c00279{width:61.530667pt;}
._1c_c00279{width:74.152000pt;}
._25_c00279{width:75.194667pt;}
._8_c00279{width:81.266667pt;}
._32_c00279{width:84.381333pt;}
._30_c00279{width:86.064000pt;}
._2a_c00279{width:99.810667pt;}
._33_c00279{width:114.325333pt;}
._20_c00279{width:123.218667pt;}
._2c_c00279{width:143.704000pt;}
._24_c00279{width:164.986667pt;}
._1f_c00279{width:291.946667pt;}
._c_c00279{width:390.810667pt;}
._35_c00279{width:1333.693333pt;}
.fs5_c00279{font-size:42.666667pt;}
.fs3_c00279{font-size:56.000000pt;}
.fs1_c00279{font-size:58.666667pt;}
.fs0_c00279{font-size:61.333333pt;}
.fs4_c00279{font-size:69.333333pt;}
.fs2_c00279{font-size:74.666667pt;}
.y0_c00279{bottom:0.000000pt;}
.y1f_c00279{bottom:2.760000pt;}
.y1e_c00279{bottom:6.425212pt;}
.y1d_c00279{bottom:49.200000pt;}
.y1c_c00279{bottom:71.200000pt;}
.y1b_c00279{bottom:93.600000pt;}
.y1a_c00279{bottom:116.666667pt;}
.y19_c00279{bottom:138.400000pt;}
.y18_c00279{bottom:159.866667pt;}
.y17_c00279{bottom:182.800000pt;}
.y16_c00279{bottom:206.133333pt;}
.y15_c00279{bottom:227.466667pt;}
.y14_c00279{bottom:249.866667pt;}
.y13_c00279{bottom:272.400000pt;}
.y12_c00279{bottom:293.066667pt;}
.y11_c00279{bottom:316.000000pt;}
.y10_c00279{bottom:338.666667pt;}
.yf_c00279{bottom:360.266667pt;}
.ye_c00279{bottom:384.400000pt;}
.yd_c00279{bottom:427.466667pt;}
.yc_c00279{bottom:449.200000pt;}
.yb_c00279{bottom:471.600000pt;}
.ya_c00279{bottom:493.466667pt;}
.y9_c00279{bottom:518.133333pt;}
.y8_c00279{bottom:538.266667pt;}
.y7_c00279{bottom:560.400000pt;}
.y6_c00279{bottom:582.400000pt;}
.y5_c00279{bottom:604.800000pt;}
.y4_c00279{bottom:626.133333pt;}
.y3_c00279{bottom:650.000000pt;}
.y2_c00279{bottom:671.733333pt;}
.y1_c00279{bottom:694.000000pt;}
.h6_c00279{height:11.733399pt;}
.h7_c00279{height:38.937500pt;}
.h2_c00279{height:71.785156pt;}
.h3_c00279{height:77.654948pt;}
.h4_c00279{height:77.729167pt;}
.h5_c00279{height:87.783854pt;}
.h1_c00279{height:735.333333pt;}
.h0_c00279{height:735.600000pt;}
.w2_c00279{width:93.222667pt;}
.w0_c00279{width:508.533333pt;}
.w1_c00279{width:508.666667pt;}
.x0_c00279{left:0.000000pt;}
.x10_c00279{left:17.066667pt;}
.x12_c00279{left:18.000000pt;}
.x3_c00279{left:23.466667pt;}
.xd_c00279{left:32.666667pt;}
.xf_c00279{left:36.533333pt;}
.x6_c00279{left:38.133333pt;}
.x2_c00279{left:39.600000pt;}
.x7_c00279{left:42.000000pt;}
.xc_c00279{left:49.200000pt;}
.x13_c00279{left:74.133333pt;}
.x11_c00279{left:75.333333pt;}
.xe_c00279{left:77.066667pt;}
.x9_c00279{left:78.266667pt;}
.x5_c00279{left:80.000000pt;}
.x4_c00279{left:81.066667pt;}
.xb_c00279{left:99.333333pt;}
.xa_c00279{left:114.533333pt;}
.x8_c00279{left:177.200000pt;}
.x14_c00279{left:211.434896pt;}
.x1_c00279{left:219.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_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_257ebcd4f5e2c0dffef078f9.woff2')format("woff");}.ff1_c00280{font-family:ff1_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:ff2_c00280;src:url('chunks/assets/font_a8f2f5371d96b47ba9ecd314.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_9186aa38e98cf6fe21c1125a.woff2')format("woff");}.ff3_c00280{font-family:ff3_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:ff4_c00280;src:url('chunks/assets/font_008051e9819ec713841ac15d.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_7894ca89a0f3c9e434159152.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00280{font-family:ff6_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;}
.ls4_c00280{letter-spacing:0.000000px;}
.ls3_c00280{letter-spacing:6.000000px;}
.ls0_c00280{letter-spacing:8.130000px;}
.ls2_c00280{letter-spacing:9.891000px;}
.ls1_c00280{letter-spacing:19.125000px;}
.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;}
}
.ws3_c00280{word-spacing:-44.988000px;}
.ws0_c00280{word-spacing:-33.870000px;}
.ws1_c00280{word-spacing:-16.629000px;}
.ws5_c00280{word-spacing:0.000000px;}
.ws4_c00280{word-spacing:0.069000px;}
.ws2_c00280{word-spacing:299.325000px;}
._26_c00280{margin-left:-25.782000px;}
._1b_c00280{margin-left:-21.849000px;}
._28_c00280{margin-left:-19.044000px;}
._16_c00280{margin-left:-14.973000px;}
._15_c00280{margin-left:-13.950000px;}
._4_c00280{margin-left:-12.420000px;}
._2_c00280{margin-left:-10.488000px;}
._1f_c00280{margin-left:-9.315000px;}
._e_c00280{margin-left:-8.268000px;}
._10_c00280{margin-left:-7.176000px;}
._b_c00280{margin-left:-5.727000px;}
._f_c00280{margin-left:-4.659000px;}
._d_c00280{margin-left:-3.381000px;}
._3_c00280{margin-left:-2.277000px;}
._14_c00280{margin-left:-1.266000px;}
._a_c00280{width:1.035000px;}
._9_c00280{width:2.070000px;}
._0_c00280{width:3.870000px;}
._1_c00280{width:5.865000px;}
._6_c00280{width:7.452000px;}
._7_c00280{width:9.453000px;}
._1a_c00280{width:10.518000px;}
._18_c00280{width:12.555000px;}
._11_c00280{width:14.859000px;}
._13_c00280{width:16.122000px;}
._1e_c00280{width:17.871000px;}
._12_c00280{width:18.873000px;}
._1d_c00280{width:20.115000px;}
._1c_c00280{width:22.968000px;}
._23_c00280{width:24.426000px;}
._24_c00280{width:28.152000px;}
._22_c00280{width:31.443000px;}
._19_c00280{width:35.235000px;}
._21_c00280{width:37.758000px;}
._25_c00280{width:45.474000px;}
._5_c00280{width:51.528000px;}
._17_c00280{width:79.971000px;}
._c_c00280{width:98.079000px;}
._29_c00280{width:115.920000px;}
._20_c00280{width:142.797000px;}
._27_c00280{width:222.126000px;}
._8_c00280{width:576.321000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(128,128,128);}
.fc0_c00280{color:rgb(0,0,0);}
.fs0_c00280{font-size:45.000000px;}
.fs4_c00280{font-size:48.000000px;}
.fs2_c00280{font-size:55.200000px;}
.fs1_c00280{font-size:69.000000px;}
.fs3_c00280{font-size:84.000000px;}
.y0_c00280{bottom:0.000000px;}
.y21_c00280{bottom:3.105000px;}
.y20_c00280{bottom:7.228363px;}
.y1f_c00280{bottom:66.750000px;}
.y1e_c00280{bottom:90.750000px;}
.y1d_c00280{bottom:114.750000px;}
.y1c_c00280{bottom:139.500000px;}
.y1b_c00280{bottom:164.700000px;}
.y1a_c00280{bottom:189.300000px;}
.y19_c00280{bottom:214.650000px;}
.y18_c00280{bottom:240.000000px;}
.y17_c00280{bottom:265.500000px;}
.y16_c00280{bottom:289.950000px;}
.y15_c00280{bottom:315.300000px;}
.y14_c00280{bottom:340.500000px;}
.y13_c00280{bottom:365.250000px;}
.y12_c00280{bottom:390.750000px;}
.y11_c00280{bottom:415.500000px;}
.y10_c00280{bottom:440.550000px;}
.yf_c00280{bottom:465.750000px;}
.ye_c00280{bottom:516.000000px;}
.yd_c00280{bottom:540.000000px;}
.y2_c00280{bottom:556.200000px;}
.yc_c00280{bottom:565.200000px;}
.yb_c00280{bottom:589.650000px;}
.ya_c00280{bottom:613.950000px;}
.y9_c00280{bottom:639.000000px;}
.y1_c00280{bottom:652.950000px;}
.y8_c00280{bottom:664.500000px;}
.y7_c00280{bottom:689.850000px;}
.y6_c00280{bottom:714.150000px;}
.y5_c00280{bottom:738.900000px;}
.y4_c00280{bottom:763.500000px;}
.y3_c00280{bottom:789.000000px;}
.h4_c00280{height:13.200074px;}
.h5_c00280{height:43.804688px;}
.h1_c00280{height:56.975098px;}
.h3_c00280{height:84.656250px;}
.h2_c00280{height:87.361816px;}
.h0_c00280{height:823.500000px;}
.w2_c00280{width:104.875500px;}
.w1_c00280{width:560.250000px;}
.w0_c00280{width:560.550000px;}
.x0_c00280{left:0.000000px;}
.x4_c00280{left:26.700000px;}
.x5_c00280{left:29.400000px;}
.x8_c00280{left:30.600000px;}
.x6_c00280{left:46.800000px;}
.x7_c00280{left:55.050000px;}
.x3_c00280{left:176.850000px;}
.xa_c00280{left:232.089249px;}
.x9_c00280{left:462.300000px;}
.x1_c00280{left:487.950000px;}
.x2_c00280{left:507.150000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls4_c00280{letter-spacing:0.000000pt;}
.ls3_c00280{letter-spacing:5.333333pt;}
.ls0_c00280{letter-spacing:7.226667pt;}
.ls2_c00280{letter-spacing:8.792000pt;}
.ls1_c00280{letter-spacing:17.000000pt;}
.ws3_c00280{word-spacing:-39.989333pt;}
.ws0_c00280{word-spacing:-30.106667pt;}
.ws1_c00280{word-spacing:-14.781333pt;}
.ws5_c00280{word-spacing:0.000000pt;}
.ws4_c00280{word-spacing:0.061333pt;}
.ws2_c00280{word-spacing:266.066667pt;}
._26_c00280{margin-left:-22.917333pt;}
._1b_c00280{margin-left:-19.421333pt;}
._28_c00280{margin-left:-16.928000pt;}
._16_c00280{margin-left:-13.309333pt;}
._15_c00280{margin-left:-12.400000pt;}
._4_c00280{margin-left:-11.040000pt;}
._2_c00280{margin-left:-9.322667pt;}
._1f_c00280{margin-left:-8.280000pt;}
._e_c00280{margin-left:-7.349333pt;}
._10_c00280{margin-left:-6.378667pt;}
._b_c00280{margin-left:-5.090667pt;}
._f_c00280{margin-left:-4.141333pt;}
._d_c00280{margin-left:-3.005333pt;}
._3_c00280{margin-left:-2.024000pt;}
._14_c00280{margin-left:-1.125333pt;}
._a_c00280{width:0.920000pt;}
._9_c00280{width:1.840000pt;}
._0_c00280{width:3.440000pt;}
._1_c00280{width:5.213333pt;}
._6_c00280{width:6.624000pt;}
._7_c00280{width:8.402667pt;}
._1a_c00280{width:9.349333pt;}
._18_c00280{width:11.160000pt;}
._11_c00280{width:13.208000pt;}
._13_c00280{width:14.330667pt;}
._1e_c00280{width:15.885333pt;}
._12_c00280{width:16.776000pt;}
._1d_c00280{width:17.880000pt;}
._1c_c00280{width:20.416000pt;}
._23_c00280{width:21.712000pt;}
._24_c00280{width:25.024000pt;}
._22_c00280{width:27.949333pt;}
._19_c00280{width:31.320000pt;}
._21_c00280{width:33.562667pt;}
._25_c00280{width:40.421333pt;}
._5_c00280{width:45.802667pt;}
._17_c00280{width:71.085333pt;}
._c_c00280{width:87.181333pt;}
._29_c00280{width:103.040000pt;}
._20_c00280{width:126.930667pt;}
._27_c00280{width:197.445333pt;}
._8_c00280{width:512.285333pt;}
.fs0_c00280{font-size:40.000000pt;}
.fs4_c00280{font-size:42.666667pt;}
.fs2_c00280{font-size:49.066667pt;}
.fs1_c00280{font-size:61.333333pt;}
.fs3_c00280{font-size:74.666667pt;}
.y0_c00280{bottom:0.000000pt;}
.y21_c00280{bottom:2.760000pt;}
.y20_c00280{bottom:6.425212pt;}
.y1f_c00280{bottom:59.333333pt;}
.y1e_c00280{bottom:80.666667pt;}
.y1d_c00280{bottom:102.000000pt;}
.y1c_c00280{bottom:124.000000pt;}
.y1b_c00280{bottom:146.400000pt;}
.y1a_c00280{bottom:168.266667pt;}
.y19_c00280{bottom:190.800000pt;}
.y18_c00280{bottom:213.333333pt;}
.y17_c00280{bottom:236.000000pt;}
.y16_c00280{bottom:257.733333pt;}
.y15_c00280{bottom:280.266667pt;}
.y14_c00280{bottom:302.666667pt;}
.y13_c00280{bottom:324.666667pt;}
.y12_c00280{bottom:347.333333pt;}
.y11_c00280{bottom:369.333333pt;}
.y10_c00280{bottom:391.600000pt;}
.yf_c00280{bottom:414.000000pt;}
.ye_c00280{bottom:458.666667pt;}
.yd_c00280{bottom:480.000000pt;}
.y2_c00280{bottom:494.400000pt;}
.yc_c00280{bottom:502.400000pt;}
.yb_c00280{bottom:524.133333pt;}
.ya_c00280{bottom:545.733333pt;}
.y9_c00280{bottom:568.000000pt;}
.y1_c00280{bottom:580.400000pt;}
.y8_c00280{bottom:590.666667pt;}
.y7_c00280{bottom:613.200000pt;}
.y6_c00280{bottom:634.800000pt;}
.y5_c00280{bottom:656.800000pt;}
.y4_c00280{bottom:678.666667pt;}
.y3_c00280{bottom:701.333333pt;}
.h4_c00280{height:11.733399pt;}
.h5_c00280{height:38.937500pt;}
.h1_c00280{height:50.644531pt;}
.h3_c00280{height:75.250000pt;}
.h2_c00280{height:77.654948pt;}
.h0_c00280{height:732.000000pt;}
.w2_c00280{width:93.222667pt;}
.w1_c00280{width:498.000000pt;}
.w0_c00280{width:498.266667pt;}
.x0_c00280{left:0.000000pt;}
.x4_c00280{left:23.733333pt;}
.x5_c00280{left:26.133333pt;}
.x8_c00280{left:27.200000pt;}
.x6_c00280{left:41.600000pt;}
.x7_c00280{left:48.933333pt;}
.x3_c00280{left:157.200000pt;}
.xa_c00280{left:206.301554pt;}
.x9_c00280{left:410.933333pt;}
.x1_c00280{left:433.733333pt;}
.x2_c00280{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_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_d1c27120265444c665b86507.woff2')format("woff");}.ff1_c00281{font-family:ff1_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:ff2_c00281;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.311035;font-style:normal;font-weight:normal;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_a68dcccc6909b7bcec73c415.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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_13af84dfd3c0be75c27de328.woff2')format("woff");}.ff5_c00281{font-family:ff5_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:ff6_c00281;src:url('chunks/assets/font_47c10ab4ee9cd9718ed56732.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;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_c00281;src:url('chunks/assets/font_7cef0d0dfa8bd8a3f2602997.woff2')format("woff");}.ff7_c00281{font-family:ff7_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:ff8_c00281;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00281{font-family:ff8_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;}
.ls5_c00281{letter-spacing:0.000000px;}
.ls2_c00281{letter-spacing:3.000000px;}
.ls0_c00281{letter-spacing:3.600000px;}
.ls1_c00281{letter-spacing:4.200000px;}
.ls4_c00281{letter-spacing:6.000000px;}
.ls3_c00281{letter-spacing:8.760000px;}
.ls6_c00281{letter-spacing:12.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;}
}
.ws3_c00281{word-spacing:-35.172000px;}
.ws0_c00281{word-spacing:-22.629000px;}
.ws4_c00281{word-spacing:-17.352000px;}
.ws2_c00281{word-spacing:-16.629000px;}
.ws1_c00281{word-spacing:-13.881600px;}
.ws5_c00281{word-spacing:0.000000px;}
._2e_c00281{margin-left:-69.690000px;}
._2f_c00281{margin-left:-38.985000px;}
._2d_c00281{margin-left:-37.812000px;}
._34_c00281{margin-left:-33.603000px;}
._24_c00281{margin-left:-30.774000px;}
._31_c00281{margin-left:-26.565000px;}
._35_c00281{margin-left:-20.640000px;}
._13_c00281{margin-left:-19.182000px;}
._17_c00281{margin-left:-18.162000px;}
._19_c00281{margin-left:-17.064000px;}
._b_c00281{margin-left:-15.456000px;}
._4_c00281{margin-left:-13.938000px;}
._2b_c00281{margin-left:-12.903000px;}
._8_c00281{margin-left:-11.247000px;}
._14_c00281{margin-left:-9.729000px;}
._d_c00281{margin-left:-8.688000px;}
._15_c00281{margin-left:-7.671000px;}
._16_c00281{margin-left:-6.624000px;}
._2_c00281{margin-left:-5.520000px;}
._0_c00281{margin-left:-3.588000px;}
._1_c00281{margin-left:-2.484000px;}
._1b_c00281{margin-left:-1.380000px;}
._9_c00281{width:1.242000px;}
._7_c00281{width:2.760000px;}
._6_c00281{width:4.704000px;}
._5_c00281{width:5.934000px;}
._c_c00281{width:7.107000px;}
._a_c00281{width:8.652000px;}
._e_c00281{width:9.798000px;}
._18_c00281{width:10.995000px;}
._1e_c00281{width:12.087000px;}
._1f_c00281{width:13.248000px;}
._20_c00281{width:14.850000px;}
._37_c00281{width:15.963000px;}
._1a_c00281{width:17.076000px;}
._3_c00281{width:18.216000px;}
._f_c00281{width:19.665000px;}
._10_c00281{width:21.528000px;}
._28_c00281{width:22.770000px;}
._2a_c00281{width:24.672000px;}
._3c_c00281{width:25.716000px;}
._29_c00281{width:26.910000px;}
._27_c00281{width:28.014000px;}
._11_c00281{width:33.465000px;}
._12_c00281{width:35.259000px;}
._3d_c00281{width:38.502000px;}
._2c_c00281{width:39.567000px;}
._38_c00281{width:45.741000px;}
._39_c00281{width:48.024000px;}
._21_c00281{width:62.997000px;}
._3e_c00281{width:93.141000px;}
._1d_c00281{width:95.358000px;}
._3a_c00281{width:103.707000px;}
._1c_c00281{width:125.127000px;}
._33_c00281{width:155.250000px;}
._26_c00281{width:194.994000px;}
._22_c00281{width:209.013000px;}
._3b_c00281{width:215.970000px;}
._25_c00281{width:221.283000px;}
._30_c00281{width:232.116000px;}
._32_c00281{width:241.155000px;}
._23_c00281{width:269.307000px;}
._36_c00281{width:293.871000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(128,128,128);}
.fc0_c00281{color:rgb(0,0,0);}
.fs4_c00281{font-size:30.000000px;}
.fs6_c00281{font-size:48.000000px;}
.fs5_c00281{font-size:51.000000px;}
.fs3_c00281{font-size:57.600000px;}
.fs1_c00281{font-size:66.000000px;}
.fs0_c00281{font-size:69.000000px;}
.fs2_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1e_c00281{bottom:3.105000px;}
.y1d_c00281{bottom:7.228369px;}
.y1c_c00281{bottom:53.970000px;}
.y1b_c00281{bottom:77.220000px;}
.y1a_c00281{bottom:102.870000px;}
.y19_c00281{bottom:128.220000px;}
.y18_c00281{bottom:153.270000px;}
.y17_c00281{bottom:178.770000px;}
.y16_c00281{bottom:203.520000px;}
.y15_c00281{bottom:228.870000px;}
.y14_c00281{bottom:254.520000px;}
.y13_c00281{bottom:279.420000px;}
.y12_c00281{bottom:304.470000px;}
.y11_c00281{bottom:328.620000px;}
.y10_c00281{bottom:353.970000px;}
.yf_c00281{bottom:378.720000px;}
.ye_c00281{bottom:404.970000px;}
.yd_c00281{bottom:429.570000px;}
.yc_c00281{bottom:454.320000px;}
.yb_c00281{bottom:479.520000px;}
.ya_c00281{bottom:506.220000px;}
.y9_c00281{bottom:529.770000px;}
.y8_c00281{bottom:580.470000px;}
.y7_c00281{bottom:604.470000px;}
.y6_c00281{bottom:629.820000px;}
.y5_c00281{bottom:654.120000px;}
.y4_c00281{bottom:679.620000px;}
.y3_c00281{bottom:704.070000px;}
.y2_c00281{bottom:729.570000px;}
.y1_c00281{bottom:752.970000px;}
.h6_c00281{height:13.200073px;}
.h5_c00281{height:32.010000px;}
.h7_c00281{height:43.804688px;}
.h4_c00281{height:80.758301px;}
.h3_c00281{height:87.361816px;}
.h2_c00281{height:91.160156px;}
.h0_c00281{height:821.850000px;}
.h1_c00281{height:822.000000px;}
.w2_c00281{width:104.875500px;}
.w1_c00281{width:567.750000px;}
.w0_c00281{width:568.050000px;}
.x0_c00281{left:0.000000px;}
.x3_c00281{left:33.750000px;}
.x2_c00281{left:35.400000px;}
.xa_c00281{left:77.250000px;}
.x8_c00281{left:94.500000px;}
.x9_c00281{left:97.500000px;}
.x7_c00281{left:98.550000px;}
.x1_c00281{left:100.350000px;}
.x6_c00281{left:123.300000px;}
.x4_c00281{left:131.250000px;}
.xc_c00281{left:235.839249px;}
.x5_c00281{left:475.500000px;}
.xb_c00281{left:523.500000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls5_c00281{letter-spacing:0.000000pt;}
.ls2_c00281{letter-spacing:2.666667pt;}
.ls0_c00281{letter-spacing:3.200000pt;}
.ls1_c00281{letter-spacing:3.733333pt;}
.ls4_c00281{letter-spacing:5.333333pt;}
.ls3_c00281{letter-spacing:7.786667pt;}
.ls6_c00281{letter-spacing:10.666667pt;}
.ws3_c00281{word-spacing:-31.264000pt;}
.ws0_c00281{word-spacing:-20.114667pt;}
.ws4_c00281{word-spacing:-15.424000pt;}
.ws2_c00281{word-spacing:-14.781333pt;}
.ws1_c00281{word-spacing:-12.339200pt;}
.ws5_c00281{word-spacing:0.000000pt;}
._2e_c00281{margin-left:-61.946667pt;}
._2f_c00281{margin-left:-34.653333pt;}
._2d_c00281{margin-left:-33.610667pt;}
._34_c00281{margin-left:-29.869333pt;}
._24_c00281{margin-left:-27.354667pt;}
._31_c00281{margin-left:-23.613333pt;}
._35_c00281{margin-left:-18.346667pt;}
._13_c00281{margin-left:-17.050667pt;}
._17_c00281{margin-left:-16.144000pt;}
._19_c00281{margin-left:-15.168000pt;}
._b_c00281{margin-left:-13.738667pt;}
._4_c00281{margin-left:-12.389333pt;}
._2b_c00281{margin-left:-11.469333pt;}
._8_c00281{margin-left:-9.997333pt;}
._14_c00281{margin-left:-8.648000pt;}
._d_c00281{margin-left:-7.722667pt;}
._15_c00281{margin-left:-6.818667pt;}
._16_c00281{margin-left:-5.888000pt;}
._2_c00281{margin-left:-4.906667pt;}
._0_c00281{margin-left:-3.189333pt;}
._1_c00281{margin-left:-2.208000pt;}
._1b_c00281{margin-left:-1.226667pt;}
._9_c00281{width:1.104000pt;}
._7_c00281{width:2.453333pt;}
._6_c00281{width:4.181333pt;}
._5_c00281{width:5.274667pt;}
._c_c00281{width:6.317333pt;}
._a_c00281{width:7.690667pt;}
._e_c00281{width:8.709333pt;}
._18_c00281{width:9.773333pt;}
._1e_c00281{width:10.744000pt;}
._1f_c00281{width:11.776000pt;}
._20_c00281{width:13.200000pt;}
._37_c00281{width:14.189333pt;}
._1a_c00281{width:15.178667pt;}
._3_c00281{width:16.192000pt;}
._f_c00281{width:17.480000pt;}
._10_c00281{width:19.136000pt;}
._28_c00281{width:20.240000pt;}
._2a_c00281{width:21.930667pt;}
._3c_c00281{width:22.858667pt;}
._29_c00281{width:23.920000pt;}
._27_c00281{width:24.901333pt;}
._11_c00281{width:29.746667pt;}
._12_c00281{width:31.341333pt;}
._3d_c00281{width:34.224000pt;}
._2c_c00281{width:35.170667pt;}
._38_c00281{width:40.658667pt;}
._39_c00281{width:42.688000pt;}
._21_c00281{width:55.997333pt;}
._3e_c00281{width:82.792000pt;}
._1d_c00281{width:84.762667pt;}
._3a_c00281{width:92.184000pt;}
._1c_c00281{width:111.224000pt;}
._33_c00281{width:138.000000pt;}
._26_c00281{width:173.328000pt;}
._22_c00281{width:185.789333pt;}
._3b_c00281{width:191.973333pt;}
._25_c00281{width:196.696000pt;}
._30_c00281{width:206.325333pt;}
._32_c00281{width:214.360000pt;}
._23_c00281{width:239.384000pt;}
._36_c00281{width:261.218667pt;}
.fs4_c00281{font-size:26.666667pt;}
.fs6_c00281{font-size:42.666667pt;}
.fs5_c00281{font-size:45.333333pt;}
.fs3_c00281{font-size:51.200000pt;}
.fs1_c00281{font-size:58.666667pt;}
.fs0_c00281{font-size:61.333333pt;}
.fs2_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y1e_c00281{bottom:2.760000pt;}
.y1d_c00281{bottom:6.425217pt;}
.y1c_c00281{bottom:47.973333pt;}
.y1b_c00281{bottom:68.640000pt;}
.y1a_c00281{bottom:91.440000pt;}
.y19_c00281{bottom:113.973333pt;}
.y18_c00281{bottom:136.240000pt;}
.y17_c00281{bottom:158.906667pt;}
.y16_c00281{bottom:180.906667pt;}
.y15_c00281{bottom:203.440000pt;}
.y14_c00281{bottom:226.240000pt;}
.y13_c00281{bottom:248.373333pt;}
.y12_c00281{bottom:270.640000pt;}
.y11_c00281{bottom:292.106667pt;}
.y10_c00281{bottom:314.640000pt;}
.yf_c00281{bottom:336.640000pt;}
.ye_c00281{bottom:359.973333pt;}
.yd_c00281{bottom:381.840000pt;}
.yc_c00281{bottom:403.840000pt;}
.yb_c00281{bottom:426.240000pt;}
.ya_c00281{bottom:449.973333pt;}
.y9_c00281{bottom:470.906667pt;}
.y8_c00281{bottom:515.973333pt;}
.y7_c00281{bottom:537.306667pt;}
.y6_c00281{bottom:559.840000pt;}
.y5_c00281{bottom:581.440000pt;}
.y4_c00281{bottom:604.106667pt;}
.y3_c00281{bottom:625.840000pt;}
.y2_c00281{bottom:648.506667pt;}
.y1_c00281{bottom:669.306667pt;}
.h6_c00281{height:11.733399pt;}
.h5_c00281{height:28.453333pt;}
.h7_c00281{height:38.937500pt;}
.h4_c00281{height:71.785156pt;}
.h3_c00281{height:77.654948pt;}
.h2_c00281{height:81.031250pt;}
.h0_c00281{height:730.533333pt;}
.h1_c00281{height:730.666667pt;}
.w2_c00281{width:93.222667pt;}
.w1_c00281{width:504.666667pt;}
.w0_c00281{width:504.933333pt;}
.x0_c00281{left:0.000000pt;}
.x3_c00281{left:30.000000pt;}
.x2_c00281{left:31.466667pt;}
.xa_c00281{left:68.666667pt;}
.x8_c00281{left:84.000000pt;}
.x9_c00281{left:86.666667pt;}
.x7_c00281{left:87.600000pt;}
.x1_c00281{left:89.200000pt;}
.x6_c00281{left:109.600000pt;}
.x4_c00281{left:116.666667pt;}
.xc_c00281{left:209.634888pt;}
.x5_c00281{left:422.666667pt;}
.xb_c00281{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_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_07fdb91cdfd4d17ee0bc3458.woff2')format("woff");}.ff1_c00282{font-family:ff1_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:ff2_c00282;src:url('chunks/assets/font_d6e8d5dcc0881c6136044cab.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_6cd4d551838c822b1c7233f3.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_43735793f3f64babf0f3eb1b.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00282{font-family:ff5_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:ff6_c00282;src:url('chunks/assets/font_7442f090b692eaa076c757e2.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00282;src:url('chunks/assets/font_2977228aa03b995ef97c5f51.woff2')format("woff");}.ff7_c00282{font-family:ff7_c00282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00282;src:url('chunks/assets/font_efbc33a696b486e272aee7f2.woff2')format("woff");}.ff8_c00282{font-family:ff8_c00282;line-height:1.437000;font-style:normal;font-weight: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_c00282;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00282{font-family:ff9_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;}
.m1_c00282{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_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;}
.ls3_c00282{letter-spacing:-3.000000px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:6.000000px;}
.ls1_c00282{letter-spacing:6.072000px;}
.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;}
}
.ws3_c00282{word-spacing:-39.000000px;}
.ws4_c00282{word-spacing:-22.629000px;}
.ws1_c00282{word-spacing:-19.182000px;}
.ws0_c00282{word-spacing:-16.629000px;}
.ws2_c00282{word-spacing:-14.250000px;}
.ws5_c00282{word-spacing:0.000000px;}
._2c_c00282{margin-left:-70.518000px;}
._14_c00282{margin-left:-36.570000px;}
._30_c00282{margin-left:-22.332000px;}
._22_c00282{margin-left:-20.148000px;}
._1c_c00282{margin-left:-18.492000px;}
._26_c00282{margin-left:-17.361000px;}
._1d_c00282{margin-left:-16.353000px;}
._2f_c00282{margin-left:-15.318000px;}
._2_c00282{margin-left:-13.869000px;}
._18_c00282{margin-left:-12.327000px;}
._10_c00282{margin-left:-10.425000px;}
._20_c00282{margin-left:-9.393000px;}
._e_c00282{margin-left:-8.112000px;}
._15_c00282{margin-left:-6.279000px;}
._11_c00282{margin-left:-5.112000px;}
._25_c00282{margin-left:-3.978000px;}
._5_c00282{margin-left:-2.967000px;}
._4_c00282{margin-left:-1.725000px;}
._0_c00282{width:1.794000px;}
._21_c00282{width:2.823000px;}
._12_c00282{width:3.846000px;}
._7_c00282{width:5.658000px;}
._1a_c00282{width:6.699000px;}
._9_c00282{width:7.866000px;}
._8_c00282{width:9.315000px;}
._6_c00282{width:11.454000px;}
._f_c00282{width:12.627000px;}
._16_c00282{width:14.079000px;}
._a_c00282{width:15.195000px;}
._d_c00282{width:17.256000px;}
._24_c00282{width:19.956000px;}
._c_c00282{width:21.120000px;}
._b_c00282{width:22.941000px;}
._23_c00282{width:24.486000px;}
._29_c00282{width:26.265000px;}
._2a_c00282{width:32.898000px;}
._2d_c00282{width:37.074000px;}
._1b_c00282{width:38.364000px;}
._13_c00282{width:39.576000px;}
._1f_c00282{width:42.711000px;}
._28_c00282{width:48.891000px;}
._1_c00282{width:65.529000px;}
._19_c00282{width:69.324000px;}
._2b_c00282{width:93.468000px;}
._17_c00282{width:101.094000px;}
._2e_c00282{width:152.283000px;}
._27_c00282{width:161.598000px;}
._3_c00282{width:438.495000px;}
._1e_c00282{width:867.813000px;}
._31_c00282{width:1044.522000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(128,128,128);}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:48.000000px;}
.fs5_c00282{font-size:54.000000px;}
.fs6_c00282{font-size:57.000000px;}
.fs3_c00282{font-size:60.000000px;}
.fs4_c00282{font-size:66.000000px;}
.fs0_c00282{font-size:69.000000px;}
.fs1_c00282{font-size:78.000000px;}
.y0_c00282{bottom:0.000000px;}
.y1c_c00282{bottom:3.105000px;}
.y1b_c00282{bottom:7.228371px;}
.y1a_c00282{bottom:64.215000px;}
.y19_c00282{bottom:155.715000px;}
.y18_c00282{bottom:173.265000px;}
.y17_c00282{bottom:203.565000px;}
.y16_c00282{bottom:219.165000px;}
.y15_c00282{bottom:244.065000px;}
.y14_c00282{bottom:269.415000px;}
.y13_c00282{bottom:294.615000px;}
.y12_c00282{bottom:319.665000px;}
.y11_c00282{bottom:344.265000px;}
.y10_c00282{bottom:369.615000px;}
.yf_c00282{bottom:394.215000px;}
.ye_c00282{bottom:418.215000px;}
.yd_c00282{bottom:444.165000px;}
.yc_c00282{bottom:469.215000px;}
.yb_c00282{bottom:517.515000px;}
.ya_c00282{bottom:567.015000px;}
.y9_c00282{bottom:591.765000px;}
.y8_c00282{bottom:617.415000px;}
.y7_c00282{bottom:642.015000px;}
.y6_c00282{bottom:667.965000px;}
.y5_c00282{bottom:691.665000px;}
.y4_c00282{bottom:716.865000px;}
.y3_c00282{bottom:742.515000px;}
.y2_c00282{bottom:766.215000px;}
.y1_c00282{bottom:791.415000px;}
.h8_c00282{height:13.200074px;}
.h9_c00282{height:43.804688px;}
.h6_c00282{height:56.592000px;}
.h7_c00282{height:66.713379px;}
.h4_c00282{height:69.539062px;}
.h5_c00282{height:80.758301px;}
.h2_c00282{height:87.361816px;}
.h3_c00282{height:98.756836px;}
.h0_c00282{height:828.375000px;}
.h1_c00282{height:828.750000px;}
.w2_c00282{width:104.875500px;}
.w0_c00282{width:563.775000px;}
.w1_c00282{width:564.000000px;}
.x0_c00282{left:0.000000px;}
.x5_c00282{left:26.400000px;}
.x6_c00282{left:28.050000px;}
.x9_c00282{left:29.250000px;}
.x7_c00282{left:30.300000px;}
.x8_c00282{left:31.350000px;}
.x2_c00282{left:33.450000px;}
.x3_c00282{left:35.100000px;}
.xa_c00282{left:46.950000px;}
.x4_c00282{left:162.000000px;}
.x1_c00282{left:194.850000px;}
.xc_c00282{left:233.701767px;}
.xb_c00282{left:280.500000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls3_c00282{letter-spacing:-2.666667pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:5.333333pt;}
.ls1_c00282{letter-spacing:5.397333pt;}
.ws3_c00282{word-spacing:-34.666667pt;}
.ws4_c00282{word-spacing:-20.114667pt;}
.ws1_c00282{word-spacing:-17.050667pt;}
.ws0_c00282{word-spacing:-14.781333pt;}
.ws2_c00282{word-spacing:-12.666667pt;}
.ws5_c00282{word-spacing:0.000000pt;}
._2c_c00282{margin-left:-62.682667pt;}
._14_c00282{margin-left:-32.506667pt;}
._30_c00282{margin-left:-19.850667pt;}
._22_c00282{margin-left:-17.909333pt;}
._1c_c00282{margin-left:-16.437333pt;}
._26_c00282{margin-left:-15.432000pt;}
._1d_c00282{margin-left:-14.536000pt;}
._2f_c00282{margin-left:-13.616000pt;}
._2_c00282{margin-left:-12.328000pt;}
._18_c00282{margin-left:-10.957333pt;}
._10_c00282{margin-left:-9.266667pt;}
._20_c00282{margin-left:-8.349333pt;}
._e_c00282{margin-left:-7.210667pt;}
._15_c00282{margin-left:-5.581333pt;}
._11_c00282{margin-left:-4.544000pt;}
._25_c00282{margin-left:-3.536000pt;}
._5_c00282{margin-left:-2.637333pt;}
._4_c00282{margin-left:-1.533333pt;}
._0_c00282{width:1.594667pt;}
._21_c00282{width:2.509333pt;}
._12_c00282{width:3.418667pt;}
._7_c00282{width:5.029333pt;}
._1a_c00282{width:5.954667pt;}
._9_c00282{width:6.992000pt;}
._8_c00282{width:8.280000pt;}
._6_c00282{width:10.181333pt;}
._f_c00282{width:11.224000pt;}
._16_c00282{width:12.514667pt;}
._a_c00282{width:13.506667pt;}
._d_c00282{width:15.338667pt;}
._24_c00282{width:17.738667pt;}
._c_c00282{width:18.773333pt;}
._b_c00282{width:20.392000pt;}
._23_c00282{width:21.765333pt;}
._29_c00282{width:23.346667pt;}
._2a_c00282{width:29.242667pt;}
._2d_c00282{width:32.954667pt;}
._1b_c00282{width:34.101333pt;}
._13_c00282{width:35.178667pt;}
._1f_c00282{width:37.965333pt;}
._28_c00282{width:43.458667pt;}
._1_c00282{width:58.248000pt;}
._19_c00282{width:61.621333pt;}
._2b_c00282{width:83.082667pt;}
._17_c00282{width:89.861333pt;}
._2e_c00282{width:135.362667pt;}
._27_c00282{width:143.642667pt;}
._3_c00282{width:389.773333pt;}
._1e_c00282{width:771.389333pt;}
._31_c00282{width:928.464000pt;}
.fs2_c00282{font-size:42.666667pt;}
.fs5_c00282{font-size:48.000000pt;}
.fs6_c00282{font-size:50.666667pt;}
.fs3_c00282{font-size:53.333333pt;}
.fs4_c00282{font-size:58.666667pt;}
.fs0_c00282{font-size:61.333333pt;}
.fs1_c00282{font-size:69.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y1c_c00282{bottom:2.760000pt;}
.y1b_c00282{bottom:6.425219pt;}
.y1a_c00282{bottom:57.080000pt;}
.y19_c00282{bottom:138.413333pt;}
.y18_c00282{bottom:154.013333pt;}
.y17_c00282{bottom:180.946667pt;}
.y16_c00282{bottom:194.813333pt;}
.y15_c00282{bottom:216.946667pt;}
.y14_c00282{bottom:239.480000pt;}
.y13_c00282{bottom:261.880000pt;}
.y12_c00282{bottom:284.146667pt;}
.y11_c00282{bottom:306.013333pt;}
.y10_c00282{bottom:328.546667pt;}
.yf_c00282{bottom:350.413333pt;}
.ye_c00282{bottom:371.746667pt;}
.yd_c00282{bottom:394.813333pt;}
.yc_c00282{bottom:417.080000pt;}
.yb_c00282{bottom:460.013333pt;}
.ya_c00282{bottom:504.013333pt;}
.y9_c00282{bottom:526.013333pt;}
.y8_c00282{bottom:548.813333pt;}
.y7_c00282{bottom:570.680000pt;}
.y6_c00282{bottom:593.746667pt;}
.y5_c00282{bottom:614.813333pt;}
.y4_c00282{bottom:637.213333pt;}
.y3_c00282{bottom:660.013333pt;}
.y2_c00282{bottom:681.080000pt;}
.y1_c00282{bottom:703.480000pt;}
.h8_c00282{height:11.733399pt;}
.h9_c00282{height:38.937500pt;}
.h6_c00282{height:50.304000pt;}
.h7_c00282{height:59.300781pt;}
.h4_c00282{height:61.812500pt;}
.h5_c00282{height:71.785156pt;}
.h2_c00282{height:77.654948pt;}
.h3_c00282{height:87.783854pt;}
.h0_c00282{height:736.333333pt;}
.h1_c00282{height:736.666667pt;}
.w2_c00282{width:93.222667pt;}
.w0_c00282{width:501.133333pt;}
.w1_c00282{width:501.333333pt;}
.x0_c00282{left:0.000000pt;}
.x5_c00282{left:23.466667pt;}
.x6_c00282{left:24.933333pt;}
.x9_c00282{left:26.000000pt;}
.x7_c00282{left:26.933333pt;}
.x8_c00282{left:27.866667pt;}
.x2_c00282{left:29.733333pt;}
.x3_c00282{left:31.200000pt;}
.xa_c00282{left:41.733333pt;}
.x4_c00282{left:144.000000pt;}
.x1_c00282{left:173.200000pt;}
.xc_c00282{left:207.734904pt;}
.xb_c00282{left:249.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_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_fb19de2324162e114dd9d6ca.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_0ff3dad1f9589e9afa4c6b12.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_db746c8f6cffa595b2625a58.woff2')format("woff");}.ff3_c00283{font-family:ff3_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:ff4_c00283;src:url('chunks/assets/font_aea7265443acda61a383547f.woff2')format("woff");}.ff4_c00283{font-family:ff4_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:ff5_c00283;src:url('chunks/assets/font_a969b67708adefaa74e0b267.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00283{font-family:ff6_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;}
.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;}
.ls2_c00283{letter-spacing:0.000000px;}
.ls1_c00283{letter-spacing:6.000000px;}
.ls0_c00283{letter-spacing:127.371000px;}
.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:-45.000000px;}
.ws2_c00283{word-spacing:-16.629000px;}
.ws1_c00283{word-spacing:-16.500000px;}
.ws3_c00283{word-spacing:0.000000px;}
._12_c00283{margin-left:-43.470000px;}
._2b_c00283{margin-left:-41.160000px;}
._27_c00283{margin-left:-26.841000px;}
._1a_c00283{margin-left:-19.965000px;}
._2a_c00283{margin-left:-18.030000px;}
._1e_c00283{margin-left:-16.734000px;}
._18_c00283{margin-left:-15.621000px;}
._17_c00283{margin-left:-14.280000px;}
._11_c00283{margin-left:-12.237000px;}
._19_c00283{margin-left:-10.212000px;}
._f_c00283{margin-left:-8.631000px;}
._10_c00283{margin-left:-7.032000px;}
._d_c00283{margin-left:-5.190000px;}
._c_c00283{margin-left:-3.999000px;}
._5_c00283{margin-left:-2.997000px;}
._6_c00283{margin-left:-1.215000px;}
._13_c00283{width:1.050000px;}
._1_c00283{width:2.340000px;}
._15_c00283{width:3.474000px;}
._0_c00283{width:4.524000px;}
._2_c00283{width:5.538000px;}
._3_c00283{width:6.864000px;}
._b_c00283{width:8.400000px;}
._1c_c00283{width:9.504000px;}
._8_c00283{width:11.154000px;}
._9_c00283{width:13.338000px;}
._14_c00283{width:14.715000px;}
._4_c00283{width:15.789000px;}
._16_c00283{width:17.076000px;}
._20_c00283{width:18.462000px;}
._e_c00283{width:19.488000px;}
._21_c00283{width:21.012000px;}
._28_c00283{width:29.658000px;}
._25_c00283{width:31.509000px;}
._7_c00283{width:38.715000px;}
._1b_c00283{width:77.898000px;}
._a_c00283{width:107.499000px;}
._1d_c00283{width:149.817000px;}
._1f_c00283{width:154.722000px;}
._24_c00283{width:163.929000px;}
._26_c00283{width:205.689000px;}
._23_c00283{width:264.519000px;}
._29_c00283{width:437.295000px;}
._22_c00283{width:505.845000px;}
._2c_c00283{width:881.268000px;}
.fc2_c00283{color:transparent;}
.fc1_c00283{color:rgb(128,128,128);}
.fc0_c00283{color:rgb(0,0,0);}
.fs6_c00283{font-size:48.000000px;}
.fs3_c00283{font-size:54.000000px;}
.fs4_c00283{font-size:66.000000px;}
.fs2_c00283{font-size:69.000000px;}
.fs5_c00283{font-size:75.000000px;}
.fs0_c00283{font-size:78.000000px;}
.fs1_c00283{font-size:81.000000px;}
.y0_c00283{bottom:0.000000px;}
.y1c_c00283{bottom:3.105000px;}
.y1b_c00283{bottom:7.228369px;}
.y1a_c00283{bottom:45.120000px;}
.y19_c00283{bottom:72.270000px;}
.y18_c00283{bottom:97.170000px;}
.y17_c00283{bottom:121.770000px;}
.y16_c00283{bottom:147.120000px;}
.y15_c00283{bottom:172.470000px;}
.y14_c00283{bottom:197.370000px;}
.y13_c00283{bottom:222.720000px;}
.y12_c00283{bottom:247.320000px;}
.y11_c00283{bottom:272.970000px;}
.y10_c00283{bottom:298.020000px;}
.yf_c00283{bottom:320.970000px;}
.ye_c00283{bottom:346.920000px;}
.yd_c00283{bottom:371.970000px;}
.yc_c00283{bottom:396.120000px;}
.yb_c00283{bottom:421.920000px;}
.ya_c00283{bottom:446.520000px;}
.y9_c00283{bottom:472.170000px;}
.y8_c00283{bottom:497.070000px;}
.y7_c00283{bottom:521.820000px;}
.y6_c00283{bottom:546.420000px;}
.y5_c00283{bottom:571.620000px;}
.y4_c00283{bottom:621.270000px;}
.y3_c00283{bottom:646.620000px;}
.y2_c00283{bottom:672.570000px;}
.y1_c00283{bottom:721.620000px;}
.h5_c00283{height:13.200073px;}
.h6_c00283{height:43.804688px;}
.h3_c00283{height:87.361816px;}
.h4_c00283{height:94.958496px;}
.h2_c00283{height:102.555176px;}
.h1_c00283{height:797.250000px;}
.h0_c00283{height:797.550000px;}
.w2_c00283{width:104.875500px;}
.w1_c00283{width:550.500000px;}
.w0_c00283{width:550.800000px;}
.x0_c00283{left:0.000000px;}
.x6_c00283{left:19.200000px;}
.x8_c00283{left:20.700000px;}
.xa_c00283{left:61.800000px;}
.x4_c00283{left:63.900000px;}
.xc_c00283{left:81.300000px;}
.x9_c00283{left:83.100000px;}
.x7_c00283{left:84.450000px;}
.x5_c00283{left:85.500000px;}
.x3_c00283{left:87.000000px;}
.xb_c00283{left:105.600000px;}
.x2_c00283{left:111.000000px;}
.x1_c00283{left:136.950000px;}
.xd_c00283{left:227.214249px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls2_c00283{letter-spacing:0.000000pt;}
.ls1_c00283{letter-spacing:5.333333pt;}
.ls0_c00283{letter-spacing:113.218667pt;}
.ws0_c00283{word-spacing:-40.000000pt;}
.ws2_c00283{word-spacing:-14.781333pt;}
.ws1_c00283{word-spacing:-14.666667pt;}
.ws3_c00283{word-spacing:0.000000pt;}
._12_c00283{margin-left:-38.640000pt;}
._2b_c00283{margin-left:-36.586667pt;}
._27_c00283{margin-left:-23.858667pt;}
._1a_c00283{margin-left:-17.746667pt;}
._2a_c00283{margin-left:-16.026667pt;}
._1e_c00283{margin-left:-14.874667pt;}
._18_c00283{margin-left:-13.885333pt;}
._17_c00283{margin-left:-12.693333pt;}
._11_c00283{margin-left:-10.877333pt;}
._19_c00283{margin-left:-9.077333pt;}
._f_c00283{margin-left:-7.672000pt;}
._10_c00283{margin-left:-6.250667pt;}
._d_c00283{margin-left:-4.613333pt;}
._c_c00283{margin-left:-3.554667pt;}
._5_c00283{margin-left:-2.664000pt;}
._6_c00283{margin-left:-1.080000pt;}
._13_c00283{width:0.933333pt;}
._1_c00283{width:2.080000pt;}
._15_c00283{width:3.088000pt;}
._0_c00283{width:4.021333pt;}
._2_c00283{width:4.922667pt;}
._3_c00283{width:6.101333pt;}
._b_c00283{width:7.466667pt;}
._1c_c00283{width:8.448000pt;}
._8_c00283{width:9.914667pt;}
._9_c00283{width:11.856000pt;}
._14_c00283{width:13.080000pt;}
._4_c00283{width:14.034667pt;}
._16_c00283{width:15.178667pt;}
._20_c00283{width:16.410667pt;}
._e_c00283{width:17.322667pt;}
._21_c00283{width:18.677333pt;}
._28_c00283{width:26.362667pt;}
._25_c00283{width:28.008000pt;}
._7_c00283{width:34.413333pt;}
._1b_c00283{width:69.242667pt;}
._a_c00283{width:95.554667pt;}
._1d_c00283{width:133.170667pt;}
._1f_c00283{width:137.530667pt;}
._24_c00283{width:145.714667pt;}
._26_c00283{width:182.834667pt;}
._23_c00283{width:235.128000pt;}
._29_c00283{width:388.706667pt;}
._22_c00283{width:449.640000pt;}
._2c_c00283{width:783.349333pt;}
.fs6_c00283{font-size:42.666667pt;}
.fs3_c00283{font-size:48.000000pt;}
.fs4_c00283{font-size:58.666667pt;}
.fs2_c00283{font-size:61.333333pt;}
.fs5_c00283{font-size:66.666667pt;}
.fs0_c00283{font-size:69.333333pt;}
.fs1_c00283{font-size:72.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y1c_c00283{bottom:2.760000pt;}
.y1b_c00283{bottom:6.425217pt;}
.y1a_c00283{bottom:40.106667pt;}
.y19_c00283{bottom:64.240000pt;}
.y18_c00283{bottom:86.373333pt;}
.y17_c00283{bottom:108.240000pt;}
.y16_c00283{bottom:130.773333pt;}
.y15_c00283{bottom:153.306667pt;}
.y14_c00283{bottom:175.440000pt;}
.y13_c00283{bottom:197.973333pt;}
.y12_c00283{bottom:219.840000pt;}
.y11_c00283{bottom:242.640000pt;}
.y10_c00283{bottom:264.906667pt;}
.yf_c00283{bottom:285.306667pt;}
.ye_c00283{bottom:308.373333pt;}
.yd_c00283{bottom:330.640000pt;}
.yc_c00283{bottom:352.106667pt;}
.yb_c00283{bottom:375.040000pt;}
.ya_c00283{bottom:396.906667pt;}
.y9_c00283{bottom:419.706667pt;}
.y8_c00283{bottom:441.840000pt;}
.y7_c00283{bottom:463.840000pt;}
.y6_c00283{bottom:485.706667pt;}
.y5_c00283{bottom:508.106667pt;}
.y4_c00283{bottom:552.240000pt;}
.y3_c00283{bottom:574.773333pt;}
.y2_c00283{bottom:597.840000pt;}
.y1_c00283{bottom:641.440000pt;}
.h5_c00283{height:11.733399pt;}
.h6_c00283{height:38.937500pt;}
.h3_c00283{height:77.654948pt;}
.h4_c00283{height:84.407552pt;}
.h2_c00283{height:91.160156pt;}
.h1_c00283{height:708.666667pt;}
.h0_c00283{height:708.933333pt;}
.w2_c00283{width:93.222667pt;}
.w1_c00283{width:489.333333pt;}
.w0_c00283{width:489.600000pt;}
.x0_c00283{left:0.000000pt;}
.x6_c00283{left:17.066667pt;}
.x8_c00283{left:18.400000pt;}
.xa_c00283{left:54.933333pt;}
.x4_c00283{left:56.800000pt;}
.xc_c00283{left:72.266667pt;}
.x9_c00283{left:73.866667pt;}
.x7_c00283{left:75.066667pt;}
.x5_c00283{left:76.000000pt;}
.x3_c00283{left:77.333333pt;}
.xb_c00283{left:93.866667pt;}
.x2_c00283{left:98.666667pt;}
.x1_c00283{left:121.733333pt;}
.xd_c00283{left:201.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_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_3f5fecc7a6a886cb704056cf.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_856a3950c7cd765ed755617c.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00284{font-family:ff3_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;}
.ls3_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:2.346000px;}
.ls2_c00284{letter-spacing:6.000000px;}
.ls0_c00284{letter-spacing:13.125000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00284{word-spacing:-22.629000px;}
.ws0_c00284{word-spacing:-18.975000px;}
.ws1_c00284{word-spacing:-16.629000px;}
.ws4_c00284{word-spacing:0.000000px;}
.ws3_c00284{word-spacing:15.042000px;}
._24_c00284{margin-left:-27.531000px;}
._13_c00284{margin-left:-16.506000px;}
._17_c00284{margin-left:-14.697000px;}
._18_c00284{margin-left:-13.455000px;}
._1b_c00284{margin-left:-11.109000px;}
._1a_c00284{margin-left:-10.008000px;}
._16_c00284{margin-left:-8.973000px;}
._d_c00284{margin-left:-7.659000px;}
._15_c00284{margin-left:-6.486000px;}
._8_c00284{margin-left:-4.623000px;}
._7_c00284{margin-left:-2.898000px;}
._1_c00284{margin-left:-1.587000px;}
._0_c00284{width:1.242000px;}
._5_c00284{width:2.361000px;}
._2_c00284{width:3.381000px;}
._3_c00284{width:4.692000px;}
._4_c00284{width:6.141000px;}
._f_c00284{width:7.728000px;}
._10_c00284{width:9.246000px;}
._c_c00284{width:11.364000px;}
._1e_c00284{width:12.474000px;}
._e_c00284{width:13.614000px;}
._14_c00284{width:15.249000px;}
._1c_c00284{width:17.091000px;}
._25_c00284{width:18.249000px;}
._12_c00284{width:19.251000px;}
._11_c00284{width:21.666000px;}
._27_c00284{width:25.812000px;}
._20_c00284{width:28.152000px;}
._a_c00284{width:30.153000px;}
._1f_c00284{width:31.881000px;}
._26_c00284{width:34.479000px;}
._21_c00284{width:37.536000px;}
._b_c00284{width:38.646000px;}
._28_c00284{width:42.981000px;}
._22_c00284{width:76.524000px;}
._23_c00284{width:86.319000px;}
._19_c00284{width:104.187000px;}
._9_c00284{width:146.073000px;}
._1d_c00284{width:153.180000px;}
._6_c00284{width:489.762000px;}
._2a_c00284{width:538.476000px;}
._29_c00284{width:719.268000px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(128,128,128);}
.fc0_c00284{color:rgb(0,0,0);}
.fs1_c00284{font-size:48.000000px;}
.fs0_c00284{font-size:69.000000px;}
.y0_c00284{bottom:0.000000px;}
.y20_c00284{bottom:3.105000px;}
.y1f_c00284{bottom:7.228371px;}
.y1e_c00284{bottom:69.315000px;}
.y1d_c00284{bottom:94.515000px;}
.y1c_c00284{bottom:119.565000px;}
.y1b_c00284{bottom:144.465000px;}
.y1a_c00284{bottom:169.215000px;}
.y19_c00284{bottom:193.815000px;}
.y18_c00284{bottom:218.715000px;}
.y17_c00284{bottom:243.765000px;}
.y16_c00284{bottom:268.665000px;}
.y15_c00284{bottom:293.715000px;}
.y14_c00284{bottom:318.615000px;}
.y13_c00284{bottom:343.665000px;}
.y12_c00284{bottom:367.965000px;}
.y11_c00284{bottom:392.865000px;}
.y10_c00284{bottom:417.615000px;}
.yf_c00284{bottom:442.815000px;}
.ye_c00284{bottom:467.415000px;}
.yd_c00284{bottom:492.165000px;}
.yc_c00284{bottom:516.015000px;}
.yb_c00284{bottom:540.315000px;}
.ya_c00284{bottom:566.115000px;}
.y9_c00284{bottom:589.965000px;}
.y8_c00284{bottom:615.315000px;}
.y7_c00284{bottom:640.215000px;}
.y6_c00284{bottom:664.965000px;}
.y5_c00284{bottom:690.915000px;}
.y4_c00284{bottom:714.915000px;}
.y3_c00284{bottom:739.515000px;}
.y2_c00284{bottom:765.165000px;}
.y1_c00284{bottom:789.765000px;}
.h3_c00284{height:13.200074px;}
.h4_c00284{height:43.804688px;}
.h2_c00284{height:87.361816px;}
.h1_c00284{height:831.000000px;}
.h0_c00284{height:831.075000px;}
.w2_c00284{width:104.875500px;}
.w0_c00284{width:566.175000px;}
.w1_c00284{width:566.250000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:29.100000px;}
.x3_c00284{left:30.150000px;}
.x5_c00284{left:31.350000px;}
.x6_c00284{left:32.400000px;}
.x7_c00284{left:33.750000px;}
.x8_c00284{left:37.500000px;}
.x4_c00284{left:53.700000px;}
.x1_c00284{left:197.400000px;}
.x9_c00284{left:234.901749px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls3_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:2.085333pt;}
.ls2_c00284{letter-spacing:5.333333pt;}
.ls0_c00284{letter-spacing:11.666667pt;}
.ws2_c00284{word-spacing:-20.114667pt;}
.ws0_c00284{word-spacing:-16.866667pt;}
.ws1_c00284{word-spacing:-14.781333pt;}
.ws4_c00284{word-spacing:0.000000pt;}
.ws3_c00284{word-spacing:13.370667pt;}
._24_c00284{margin-left:-24.472000pt;}
._13_c00284{margin-left:-14.672000pt;}
._17_c00284{margin-left:-13.064000pt;}
._18_c00284{margin-left:-11.960000pt;}
._1b_c00284{margin-left:-9.874667pt;}
._1a_c00284{margin-left:-8.896000pt;}
._16_c00284{margin-left:-7.976000pt;}
._d_c00284{margin-left:-6.808000pt;}
._15_c00284{margin-left:-5.765333pt;}
._8_c00284{margin-left:-4.109333pt;}
._7_c00284{margin-left:-2.576000pt;}
._1_c00284{margin-left:-1.410667pt;}
._0_c00284{width:1.104000pt;}
._5_c00284{width:2.098667pt;}
._2_c00284{width:3.005333pt;}
._3_c00284{width:4.170667pt;}
._4_c00284{width:5.458667pt;}
._f_c00284{width:6.869333pt;}
._10_c00284{width:8.218667pt;}
._c_c00284{width:10.101333pt;}
._1e_c00284{width:11.088000pt;}
._e_c00284{width:12.101333pt;}
._14_c00284{width:13.554667pt;}
._1c_c00284{width:15.192000pt;}
._25_c00284{width:16.221333pt;}
._12_c00284{width:17.112000pt;}
._11_c00284{width:19.258667pt;}
._27_c00284{width:22.944000pt;}
._20_c00284{width:25.024000pt;}
._a_c00284{width:26.802667pt;}
._1f_c00284{width:28.338667pt;}
._26_c00284{width:30.648000pt;}
._21_c00284{width:33.365333pt;}
._b_c00284{width:34.352000pt;}
._28_c00284{width:38.205333pt;}
._22_c00284{width:68.021333pt;}
._23_c00284{width:76.728000pt;}
._19_c00284{width:92.610667pt;}
._9_c00284{width:129.842667pt;}
._1d_c00284{width:136.160000pt;}
._6_c00284{width:435.344000pt;}
._2a_c00284{width:478.645333pt;}
._29_c00284{width:639.349333pt;}
.fs1_c00284{font-size:42.666667pt;}
.fs0_c00284{font-size:61.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y20_c00284{bottom:2.760000pt;}
.y1f_c00284{bottom:6.425219pt;}
.y1e_c00284{bottom:61.613333pt;}
.y1d_c00284{bottom:84.013333pt;}
.y1c_c00284{bottom:106.280000pt;}
.y1b_c00284{bottom:128.413333pt;}
.y1a_c00284{bottom:150.413333pt;}
.y19_c00284{bottom:172.280000pt;}
.y18_c00284{bottom:194.413333pt;}
.y17_c00284{bottom:216.680000pt;}
.y16_c00284{bottom:238.813333pt;}
.y15_c00284{bottom:261.080000pt;}
.y14_c00284{bottom:283.213333pt;}
.y13_c00284{bottom:305.480000pt;}
.y12_c00284{bottom:327.080000pt;}
.y11_c00284{bottom:349.213333pt;}
.y10_c00284{bottom:371.213333pt;}
.yf_c00284{bottom:393.613333pt;}
.ye_c00284{bottom:415.480000pt;}
.yd_c00284{bottom:437.480000pt;}
.yc_c00284{bottom:458.680000pt;}
.yb_c00284{bottom:480.280000pt;}
.ya_c00284{bottom:503.213333pt;}
.y9_c00284{bottom:524.413333pt;}
.y8_c00284{bottom:546.946667pt;}
.y7_c00284{bottom:569.080000pt;}
.y6_c00284{bottom:591.080000pt;}
.y5_c00284{bottom:614.146667pt;}
.y4_c00284{bottom:635.480000pt;}
.y3_c00284{bottom:657.346667pt;}
.y2_c00284{bottom:680.146667pt;}
.y1_c00284{bottom:702.013333pt;}
.h3_c00284{height:11.733399pt;}
.h4_c00284{height:38.937500pt;}
.h2_c00284{height:77.654948pt;}
.h1_c00284{height:738.666667pt;}
.h0_c00284{height:738.733333pt;}
.w2_c00284{width:93.222667pt;}
.w0_c00284{width:503.266667pt;}
.w1_c00284{width:503.333333pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:25.866667pt;}
.x3_c00284{left:26.800000pt;}
.x5_c00284{left:27.866667pt;}
.x6_c00284{left:28.800000pt;}
.x7_c00284{left:30.000000pt;}
.x8_c00284{left:33.333333pt;}
.x4_c00284{left:47.733333pt;}
.x1_c00284{left:175.466667pt;}
.x9_c00284{left:208.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_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_143be70b2fee15b63ae2c51c.woff2')format("woff");}.ff1_c00285{font-family:ff1_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:ff2_c00285;src:url('chunks/assets/font_4c41df1ff130e6ced99385a8.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_43086ba9f76f76da79bfc089.woff2')format("woff");}.ff3_c00285{font-family:ff3_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:ff4_c00285;src:url('chunks/assets/font_ffdbbaadd2d53c5f165ef5e9.woff2')format("woff");}.ff4_c00285{font-family:ff4_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:ff5_c00285;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.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_a828150b219cf90aa367627d.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00285;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00285{font-family:ff7_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;}
.ls7_c00285{letter-spacing:0.000000px;}
.ls2_c00285{letter-spacing:3.000000px;}
.ls8_c00285{letter-spacing:6.000000px;}
.ls1_c00285{letter-spacing:11.571000px;}
.ls3_c00285{letter-spacing:14.289000px;}
.ls6_c00285{letter-spacing:18.171000px;}
.ls4_c00285{letter-spacing:19.200000px;}
.ls5_c00285{letter-spacing:29.877000px;}
.ls0_c00285{letter-spacing:36.171000px;}
.ls9_c00285{letter-spacing:51.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;}
}
.ws4_c00285{word-spacing:-67.629000px;}
.ws0_c00285{word-spacing:-56.235000px;}
.ws1_c00285{word-spacing:-44.988000px;}
.ws2_c00285{word-spacing:-44.022000px;}
.ws8_c00285{word-spacing:-39.000000px;}
.ws3_c00285{word-spacing:-22.629000px;}
.wsa_c00285{word-spacing:-17.478000px;}
.ws6_c00285{word-spacing:-16.629000px;}
.ws5_c00285{word-spacing:-7.818000px;}
.wsb_c00285{word-spacing:0.000000px;}
.ws9_c00285{word-spacing:1.449000px;}
.ws7_c00285{word-spacing:7.383000px;}
._2b_c00285{margin-left:-41.952000px;}
._1f_c00285{margin-left:-25.668000px;}
._26_c00285{margin-left:-24.081000px;}
._29_c00285{margin-left:-20.169000px;}
._1e_c00285{margin-left:-18.471000px;}
._1b_c00285{margin-left:-15.636000px;}
._1a_c00285{margin-left:-13.980000px;}
._9_c00285{margin-left:-12.271200px;}
._f_c00285{margin-left:-10.281000px;}
._11_c00285{margin-left:-8.859000px;}
._8_c00285{margin-left:-7.245000px;}
._18_c00285{margin-left:-5.622000px;}
._7_c00285{margin-left:-4.554000px;}
._5_c00285{margin-left:-3.312000px;}
._4_c00285{margin-left:-1.863000px;}
._a_c00285{width:1.104000px;}
._e_c00285{width:2.277000px;}
._2_c00285{width:3.477000px;}
._1d_c00285{width:4.638000px;}
._0_c00285{width:5.700000px;}
._1_c00285{width:6.726000px;}
._d_c00285{width:7.797000px;}
._13_c00285{width:9.384000px;}
._12_c00285{width:10.557000px;}
._6_c00285{width:11.703000px;}
._15_c00285{width:13.869000px;}
._c_c00285{width:15.456000px;}
._19_c00285{width:17.028000px;}
._b_c00285{width:18.837000px;}
._10_c00285{width:20.355000px;}
._16_c00285{width:21.459000px;}
._17_c00285{width:24.075000px;}
._1c_c00285{width:26.287200px;}
._22_c00285{width:28.084800px;}
._2e_c00285{width:29.196000px;}
._23_c00285{width:38.778000px;}
._24_c00285{width:41.233200px;}
._2a_c00285{width:43.236000px;}
._2c_c00285{width:52.026000px;}
._2d_c00285{width:64.809000px;}
._28_c00285{width:66.435000px;}
._20_c00285{width:100.395000px;}
._25_c00285{width:155.076000px;}
._14_c00285{width:192.855000px;}
._21_c00285{width:269.442000px;}
._3_c00285{width:387.534000px;}
._27_c00285{width:1441.044000px;}
.fc2_c00285{color:transparent;}
.fc1_c00285{color:rgb(128,128,128);}
.fc0_c00285{color:rgb(0,0,0);}
.fs4_c00285{font-size:24.000000px;}
.fs5_c00285{font-size:48.000000px;}
.fs2_c00285{font-size:55.200000px;}
.fs0_c00285{font-size:57.000000px;}
.fs3_c00285{font-size:66.000000px;}
.fs1_c00285{font-size:69.000000px;}
.y0_c00285{bottom:0.000000px;}
.y1d_c00285{bottom:3.105000px;}
.y1c_c00285{bottom:7.228363px;}
.y1b_c00285{bottom:62.550000px;}
.y1a_c00285{bottom:88.350000px;}
.y19_c00285{bottom:114.000000px;}
.y18_c00285{bottom:138.750000px;}
.y17_c00285{bottom:164.400000px;}
.y16_c00285{bottom:189.900000px;}
.y15_c00285{bottom:215.700000px;}
.y14_c00285{bottom:240.900000px;}
.y13_c00285{bottom:265.200000px;}
.y12_c00285{bottom:298.800000px;}
.y11_c00285{bottom:315.300000px;}
.y10_c00285{bottom:365.400000px;}
.yf_c00285{bottom:389.700000px;}
.ye_c00285{bottom:414.450000px;}
.yd_c00285{bottom:439.650000px;}
.yc_c00285{bottom:464.700000px;}
.yb_c00285{bottom:489.750000px;}
.ya_c00285{bottom:514.800000px;}
.y9_c00285{bottom:539.700000px;}
.y8_c00285{bottom:590.400000px;}
.y7_c00285{bottom:639.900000px;}
.y6_c00285{bottom:664.650000px;}
.y5_c00285{bottom:690.300000px;}
.y4_c00285{bottom:715.500000px;}
.y3_c00285{bottom:740.550000px;}
.y2_c00285{bottom:765.450000px;}
.y1_c00285{bottom:791.100000px;}
.h5_c00285{height:13.200074px;}
.h6_c00285{height:43.804688px;}
.h2_c00285{height:80.758301px;}
.h3_c00285{height:87.361816px;}
.h4_c00285{height:87.961816px;}
.h1_c00285{height:827.250000px;}
.h0_c00285{height:827.550000px;}
.w2_c00285{width:104.875500px;}
.w0_c00285{width:572.100000px;}
.w1_c00285{width:572.250000px;}
.x0_c00285{left:0.000000px;}
.x3_c00285{left:54.300000px;}
.xa_c00285{left:68.850000px;}
.xc_c00285{left:94.500000px;}
.xb_c00285{left:99.600000px;}
.x8_c00285{left:101.250000px;}
.x9_c00285{left:102.600000px;}
.x2_c00285{left:105.900000px;}
.x5_c00285{left:106.950000px;}
.x1_c00285{left:119.100000px;}
.x7_c00285{left:128.550000px;}
.x4_c00285{left:151.800000px;}
.xe_c00285{left:237.864258px;}
.x6_c00285{left:240.900000px;}
.xd_c00285{left:507.300000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls7_c00285{letter-spacing:0.000000pt;}
.ls2_c00285{letter-spacing:2.666667pt;}
.ls8_c00285{letter-spacing:5.333333pt;}
.ls1_c00285{letter-spacing:10.285333pt;}
.ls3_c00285{letter-spacing:12.701333pt;}
.ls6_c00285{letter-spacing:16.152000pt;}
.ls4_c00285{letter-spacing:17.066667pt;}
.ls5_c00285{letter-spacing:26.557333pt;}
.ls0_c00285{letter-spacing:32.152000pt;}
.ls9_c00285{letter-spacing:45.333333pt;}
.ws4_c00285{word-spacing:-60.114667pt;}
.ws0_c00285{word-spacing:-49.986667pt;}
.ws1_c00285{word-spacing:-39.989333pt;}
.ws2_c00285{word-spacing:-39.130667pt;}
.ws8_c00285{word-spacing:-34.666667pt;}
.ws3_c00285{word-spacing:-20.114667pt;}
.wsa_c00285{word-spacing:-15.536000pt;}
.ws6_c00285{word-spacing:-14.781333pt;}
.ws5_c00285{word-spacing:-6.949333pt;}
.wsb_c00285{word-spacing:0.000000pt;}
.ws9_c00285{word-spacing:1.288000pt;}
.ws7_c00285{word-spacing:6.562667pt;}
._2b_c00285{margin-left:-37.290667pt;}
._1f_c00285{margin-left:-22.816000pt;}
._26_c00285{margin-left:-21.405333pt;}
._29_c00285{margin-left:-17.928000pt;}
._1e_c00285{margin-left:-16.418667pt;}
._1b_c00285{margin-left:-13.898667pt;}
._1a_c00285{margin-left:-12.426667pt;}
._9_c00285{margin-left:-10.907733pt;}
._f_c00285{margin-left:-9.138667pt;}
._11_c00285{margin-left:-7.874667pt;}
._8_c00285{margin-left:-6.440000pt;}
._18_c00285{margin-left:-4.997333pt;}
._7_c00285{margin-left:-4.048000pt;}
._5_c00285{margin-left:-2.944000pt;}
._4_c00285{margin-left:-1.656000pt;}
._a_c00285{width:0.981333pt;}
._e_c00285{width:2.024000pt;}
._2_c00285{width:3.090667pt;}
._1d_c00285{width:4.122667pt;}
._0_c00285{width:5.066667pt;}
._1_c00285{width:5.978667pt;}
._d_c00285{width:6.930667pt;}
._13_c00285{width:8.341333pt;}
._12_c00285{width:9.384000pt;}
._6_c00285{width:10.402667pt;}
._15_c00285{width:12.328000pt;}
._c_c00285{width:13.738667pt;}
._19_c00285{width:15.136000pt;}
._b_c00285{width:16.744000pt;}
._10_c00285{width:18.093333pt;}
._16_c00285{width:19.074667pt;}
._17_c00285{width:21.400000pt;}
._1c_c00285{width:23.366400pt;}
._22_c00285{width:24.964267pt;}
._2e_c00285{width:25.952000pt;}
._23_c00285{width:34.469333pt;}
._24_c00285{width:36.651733pt;}
._2a_c00285{width:38.432000pt;}
._2c_c00285{width:46.245333pt;}
._2d_c00285{width:57.608000pt;}
._28_c00285{width:59.053333pt;}
._20_c00285{width:89.240000pt;}
._25_c00285{width:137.845333pt;}
._14_c00285{width:171.426667pt;}
._21_c00285{width:239.504000pt;}
._3_c00285{width:344.474667pt;}
._27_c00285{width:1280.928000pt;}
.fs4_c00285{font-size:21.333333pt;}
.fs5_c00285{font-size:42.666667pt;}
.fs2_c00285{font-size:49.066667pt;}
.fs0_c00285{font-size:50.666667pt;}
.fs3_c00285{font-size:58.666667pt;}
.fs1_c00285{font-size:61.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y1d_c00285{bottom:2.760000pt;}
.y1c_c00285{bottom:6.425212pt;}
.y1b_c00285{bottom:55.600000pt;}
.y1a_c00285{bottom:78.533333pt;}
.y19_c00285{bottom:101.333333pt;}
.y18_c00285{bottom:123.333333pt;}
.y17_c00285{bottom:146.133333pt;}
.y16_c00285{bottom:168.800000pt;}
.y15_c00285{bottom:191.733333pt;}
.y14_c00285{bottom:214.133333pt;}
.y13_c00285{bottom:235.733333pt;}
.y12_c00285{bottom:265.600000pt;}
.y11_c00285{bottom:280.266667pt;}
.y10_c00285{bottom:324.800000pt;}
.yf_c00285{bottom:346.400000pt;}
.ye_c00285{bottom:368.400000pt;}
.yd_c00285{bottom:390.800000pt;}
.yc_c00285{bottom:413.066667pt;}
.yb_c00285{bottom:435.333333pt;}
.ya_c00285{bottom:457.600000pt;}
.y9_c00285{bottom:479.733333pt;}
.y8_c00285{bottom:524.800000pt;}
.y7_c00285{bottom:568.800000pt;}
.y6_c00285{bottom:590.800000pt;}
.y5_c00285{bottom:613.600000pt;}
.y4_c00285{bottom:636.000000pt;}
.y3_c00285{bottom:658.266667pt;}
.y2_c00285{bottom:680.400000pt;}
.y1_c00285{bottom:703.200000pt;}
.h5_c00285{height:11.733399pt;}
.h6_c00285{height:38.937500pt;}
.h2_c00285{height:71.785156pt;}
.h3_c00285{height:77.654948pt;}
.h4_c00285{height:78.188281pt;}
.h1_c00285{height:735.333333pt;}
.h0_c00285{height:735.600000pt;}
.w2_c00285{width:93.222667pt;}
.w0_c00285{width:508.533333pt;}
.w1_c00285{width:508.666667pt;}
.x0_c00285{left:0.000000pt;}
.x3_c00285{left:48.266667pt;}
.xa_c00285{left:61.200000pt;}
.xc_c00285{left:84.000000pt;}
.xb_c00285{left:88.533333pt;}
.x8_c00285{left:90.000000pt;}
.x9_c00285{left:91.200000pt;}
.x2_c00285{left:94.133333pt;}
.x5_c00285{left:95.066667pt;}
.x1_c00285{left:105.866667pt;}
.x7_c00285{left:114.266667pt;}
.x4_c00285{left:134.933333pt;}
.xe_c00285{left:211.434896pt;}
.x6_c00285{left:214.133333pt;}
.xd_c00285{left:450.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_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_818607b241410fb6e99399ec.woff2')format("woff");}.ff1_c00286{font-family:ff1_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:ff2_c00286;src:url('chunks/assets/font_5cb09d29c88ecb4d804f7314.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.568848;font-style:normal;font-weight:normal;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_f389b5d05d432055b97a145b.woff2')format("woff");}.ff3_c00286{font-family:ff3_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:ff4_c00286;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00286{font-family:ff4_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;}
.ls4_c00286{letter-spacing:-3.000000px;}
.ls2_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:3.600000px;}
.ls3_c00286{letter-spacing:6.000000px;}
.ls1_c00286{letter-spacing:9.147000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-25.428000px;}
.ws1_c00286{word-spacing:-22.629000px;}
.ws2_c00286{word-spacing:-16.629000px;}
.ws3_c00286{word-spacing:0.000000px;}
._2e_c00286{margin-left:-30.294000px;}
._20_c00286{margin-left:-21.243000px;}
._19_c00286{margin-left:-18.423000px;}
._31_c00286{margin-left:-16.836000px;}
._1d_c00286{margin-left:-15.510000px;}
._f_c00286{margin-left:-13.455000px;}
._7_c00286{margin-left:-11.877000px;}
._10_c00286{margin-left:-9.936000px;}
._4_c00286{margin-left:-8.832000px;}
._8_c00286{margin-left:-7.521000px;}
._6_c00286{margin-left:-6.234000px;}
._9_c00286{margin-left:-4.368000px;}
._d_c00286{margin-left:-2.598000px;}
._c_c00286{margin-left:-1.518000px;}
._b_c00286{width:1.173000px;}
._0_c00286{width:2.760000px;}
._1_c00286{width:4.347000px;}
._2_c00286{width:6.210000px;}
._11_c00286{width:7.335000px;}
._12_c00286{width:8.832000px;}
._1a_c00286{width:10.662000px;}
._13_c00286{width:12.258000px;}
._1b_c00286{width:13.593000px;}
._1c_c00286{width:14.625000px;}
._14_c00286{width:15.849000px;}
._1e_c00286{width:17.424000px;}
._17_c00286{width:19.389000px;}
._21_c00286{width:21.288000px;}
._2a_c00286{width:23.043000px;}
._16_c00286{width:24.909000px;}
._15_c00286{width:26.946000px;}
._23_c00286{width:29.532000px;}
._25_c00286{width:31.326000px;}
._24_c00286{width:33.210000px;}
._26_c00286{width:36.132000px;}
._2b_c00286{width:40.260000px;}
._2d_c00286{width:42.411000px;}
._3_c00286{width:52.890000px;}
._32_c00286{width:59.943000px;}
._e_c00286{width:62.259000px;}
._28_c00286{width:86.835000px;}
._1f_c00286{width:89.847000px;}
._2c_c00286{width:96.882000px;}
._2f_c00286{width:102.981000px;}
._18_c00286{width:129.861000px;}
._29_c00286{width:152.142000px;}
._27_c00286{width:174.078000px;}
._a_c00286{width:216.453000px;}
._22_c00286{width:222.651000px;}
._30_c00286{width:225.642000px;}
._5_c00286{width:400.614000px;}
._33_c00286{width:1333.977000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(128,128,128);}
.fc0_c00286{color:rgb(0,0,0);}
.fs3_c00286{font-size:48.000000px;}
.fs1_c00286{font-size:66.000000px;}
.fs0_c00286{font-size:69.000000px;}
.fs2_c00286{font-size:75.000000px;}
.y0_c00286{bottom:0.000000px;}
.y20_c00286{bottom:3.105000px;}
.y1f_c00286{bottom:7.228371px;}
.y1e_c00286{bottom:67.965000px;}
.y1d_c00286{bottom:90.765000px;}
.y1c_c00286{bottom:116.415000px;}
.y1b_c00286{bottom:141.165000px;}
.y1a_c00286{bottom:165.765000px;}
.y19_c00286{bottom:191.115000px;}
.y18_c00286{bottom:216.465000px;}
.y17_c00286{bottom:241.665000px;}
.y16_c00286{bottom:266.415000px;}
.y15_c00286{bottom:291.915000px;}
.y14_c00286{bottom:316.965000px;}
.y13_c00286{bottom:341.865000px;}
.y12_c00286{bottom:366.165000px;}
.y11_c00286{bottom:391.215000px;}
.y10_c00286{bottom:416.115000px;}
.yf_c00286{bottom:441.165000px;}
.ye_c00286{bottom:466.215000px;}
.yd_c00286{bottom:490.515000px;}
.yc_c00286{bottom:515.415000px;}
.yb_c00286{bottom:540.015000px;}
.ya_c00286{bottom:564.615000px;}
.y9_c00286{bottom:591.015000px;}
.y8_c00286{bottom:614.715000px;}
.y7_c00286{bottom:639.915000px;}
.y6_c00286{bottom:664.515000px;}
.y5_c00286{bottom:689.265000px;}
.y4_c00286{bottom:714.615000px;}
.y3_c00286{bottom:739.515000px;}
.y2_c00286{bottom:764.565000px;}
.y1_c00286{bottom:788.415000px;}
.h5_c00286{height:13.200074px;}
.h6_c00286{height:43.804688px;}
.h3_c00286{height:80.758301px;}
.h2_c00286{height:87.361816px;}
.h4_c00286{height:94.958496px;}
.h1_c00286{height:831.000000px;}
.h0_c00286{height:831.075000px;}
.w2_c00286{width:104.875500px;}
.w0_c00286{width:566.175000px;}
.w1_c00286{width:566.250000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:29.700000px;}
.x3_c00286{left:30.750000px;}
.x4_c00286{left:32.400000px;}
.x5_c00286{left:33.750000px;}
.x7_c00286{left:34.800000px;}
.x8_c00286{left:59.100000px;}
.x9_c00286{left:79.050000px;}
.x6_c00286{left:181.950000px;}
.x1_c00286{left:198.450000px;}
.xa_c00286{left:234.901749px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls4_c00286{letter-spacing:-2.666667pt;}
.ls2_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:3.200000pt;}
.ls3_c00286{letter-spacing:5.333333pt;}
.ls1_c00286{letter-spacing:8.130667pt;}
.ws0_c00286{word-spacing:-22.602667pt;}
.ws1_c00286{word-spacing:-20.114667pt;}
.ws2_c00286{word-spacing:-14.781333pt;}
.ws3_c00286{word-spacing:0.000000pt;}
._2e_c00286{margin-left:-26.928000pt;}
._20_c00286{margin-left:-18.882667pt;}
._19_c00286{margin-left:-16.376000pt;}
._31_c00286{margin-left:-14.965333pt;}
._1d_c00286{margin-left:-13.786667pt;}
._f_c00286{margin-left:-11.960000pt;}
._7_c00286{margin-left:-10.557333pt;}
._10_c00286{margin-left:-8.832000pt;}
._4_c00286{margin-left:-7.850667pt;}
._8_c00286{margin-left:-6.685333pt;}
._6_c00286{margin-left:-5.541333pt;}
._9_c00286{margin-left:-3.882667pt;}
._d_c00286{margin-left:-2.309333pt;}
._c_c00286{margin-left:-1.349333pt;}
._b_c00286{width:1.042667pt;}
._0_c00286{width:2.453333pt;}
._1_c00286{width:3.864000pt;}
._2_c00286{width:5.520000pt;}
._11_c00286{width:6.520000pt;}
._12_c00286{width:7.850667pt;}
._1a_c00286{width:9.477333pt;}
._13_c00286{width:10.896000pt;}
._1b_c00286{width:12.082667pt;}
._1c_c00286{width:13.000000pt;}
._14_c00286{width:14.088000pt;}
._1e_c00286{width:15.488000pt;}
._17_c00286{width:17.234667pt;}
._21_c00286{width:18.922667pt;}
._2a_c00286{width:20.482667pt;}
._16_c00286{width:22.141333pt;}
._15_c00286{width:23.952000pt;}
._23_c00286{width:26.250667pt;}
._25_c00286{width:27.845333pt;}
._24_c00286{width:29.520000pt;}
._26_c00286{width:32.117333pt;}
._2b_c00286{width:35.786667pt;}
._2d_c00286{width:37.698667pt;}
._3_c00286{width:47.013333pt;}
._32_c00286{width:53.282667pt;}
._e_c00286{width:55.341333pt;}
._28_c00286{width:77.186667pt;}
._1f_c00286{width:79.864000pt;}
._2c_c00286{width:86.117333pt;}
._2f_c00286{width:91.538667pt;}
._18_c00286{width:115.432000pt;}
._29_c00286{width:135.237333pt;}
._27_c00286{width:154.736000pt;}
._a_c00286{width:192.402667pt;}
._22_c00286{width:197.912000pt;}
._30_c00286{width:200.570667pt;}
._5_c00286{width:356.101333pt;}
._33_c00286{width:1185.757333pt;}
.fs3_c00286{font-size:42.666667pt;}
.fs1_c00286{font-size:58.666667pt;}
.fs0_c00286{font-size:61.333333pt;}
.fs2_c00286{font-size:66.666667pt;}
.y0_c00286{bottom:0.000000pt;}
.y20_c00286{bottom:2.760000pt;}
.y1f_c00286{bottom:6.425219pt;}
.y1e_c00286{bottom:60.413333pt;}
.y1d_c00286{bottom:80.680000pt;}
.y1c_c00286{bottom:103.480000pt;}
.y1b_c00286{bottom:125.480000pt;}
.y1a_c00286{bottom:147.346667pt;}
.y19_c00286{bottom:169.880000pt;}
.y18_c00286{bottom:192.413333pt;}
.y17_c00286{bottom:214.813333pt;}
.y16_c00286{bottom:236.813333pt;}
.y15_c00286{bottom:259.480000pt;}
.y14_c00286{bottom:281.746667pt;}
.y13_c00286{bottom:303.880000pt;}
.y12_c00286{bottom:325.480000pt;}
.y11_c00286{bottom:347.746667pt;}
.y10_c00286{bottom:369.880000pt;}
.yf_c00286{bottom:392.146667pt;}
.ye_c00286{bottom:414.413333pt;}
.yd_c00286{bottom:436.013333pt;}
.yc_c00286{bottom:458.146667pt;}
.yb_c00286{bottom:480.013333pt;}
.ya_c00286{bottom:501.880000pt;}
.y9_c00286{bottom:525.346667pt;}
.y8_c00286{bottom:546.413333pt;}
.y7_c00286{bottom:568.813333pt;}
.y6_c00286{bottom:590.680000pt;}
.y5_c00286{bottom:612.680000pt;}
.y4_c00286{bottom:635.213333pt;}
.y3_c00286{bottom:657.346667pt;}
.y2_c00286{bottom:679.613333pt;}
.y1_c00286{bottom:700.813333pt;}
.h5_c00286{height:11.733399pt;}
.h6_c00286{height:38.937500pt;}
.h3_c00286{height:71.785156pt;}
.h2_c00286{height:77.654948pt;}
.h4_c00286{height:84.407552pt;}
.h1_c00286{height:738.666667pt;}
.h0_c00286{height:738.733333pt;}
.w2_c00286{width:93.222667pt;}
.w0_c00286{width:503.266667pt;}
.w1_c00286{width:503.333333pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:26.400000pt;}
.x3_c00286{left:27.333333pt;}
.x4_c00286{left:28.800000pt;}
.x5_c00286{left:30.000000pt;}
.x7_c00286{left:30.933333pt;}
.x8_c00286{left:52.533333pt;}
.x9_c00286{left:70.266667pt;}
.x6_c00286{left:161.733333pt;}
.x1_c00286{left:176.400000pt;}
.xa_c00286{left:208.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_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_8d5b587ef36db60bada23560.woff2')format("woff");}.ff1_c00287{font-family:ff1_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:ff2_c00287;src:url('chunks/assets/font_d66879f778bc30af9977a7d5.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_91f3127089b3f285665cda04.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_2ec1f2f2e0c682d5471ca0ee.woff2')format("woff");}.ff4_c00287{font-family:ff4_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:ff5_c00287;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00287{font-family:ff5_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;}
.ls8_c00287{letter-spacing:0.000000px;}
.ls7_c00287{letter-spacing:6.000000px;}
.ls1_c00287{letter-spacing:6.027000px;}
.ls9_c00287{letter-spacing:12.000000px;}
.ls6_c00287{letter-spacing:14.325000px;}
.ls2_c00287{letter-spacing:19.800000px;}
.ls4_c00287{letter-spacing:21.600000px;}
.ls0_c00287{letter-spacing:28.800000px;}
.ls5_c00287{letter-spacing:33.114000px;}
.ls3_c00287{letter-spacing:34.899000px;}
.lsa_c00287{letter-spacing:96.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;}
}
.ws3_c00287{word-spacing:-56.235000px;}
.ws2_c00287{word-spacing:-44.988000px;}
.ws1_c00287{word-spacing:-39.000000px;}
.ws4_c00287{word-spacing:-22.629000px;}
.ws0_c00287{word-spacing:-16.629000px;}
.ws5_c00287{word-spacing:0.000000px;}
._2d_c00287{margin-left:-109.296000px;}
._2f_c00287{margin-left:-104.214000px;}
._2b_c00287{margin-left:-98.802000px;}
._32_c00287{margin-left:-59.994000px;}
._30_c00287{margin-left:-37.179000px;}
._31_c00287{margin-left:-35.685000px;}
._1d_c00287{margin-left:-23.253000px;}
._22_c00287{margin-left:-16.974000px;}
._1f_c00287{margin-left:-13.041000px;}
._1_c00287{margin-left:-11.868000px;}
._17_c00287{margin-left:-10.212000px;}
._26_c00287{margin-left:-9.177000px;}
._15_c00287{margin-left:-7.797000px;}
._14_c00287{margin-left:-6.141000px;}
._10_c00287{margin-left:-5.037000px;}
._3_c00287{margin-left:-3.864000px;}
._0_c00287{margin-left:-2.346000px;}
._7_c00287{margin-left:-1.173000px;}
._5_c00287{width:1.242000px;}
._6_c00287{width:2.622000px;}
._e_c00287{width:3.726000px;}
._b_c00287{width:5.175000px;}
._4_c00287{width:6.210000px;}
._d_c00287{width:7.452000px;}
._a_c00287{width:8.694000px;}
._c_c00287{width:10.626000px;}
._f_c00287{width:11.868000px;}
._9_c00287{width:12.972000px;}
._11_c00287{width:14.766000px;}
._16_c00287{width:16.140000px;}
._21_c00287{width:17.250000px;}
._13_c00287{width:19.614000px;}
._12_c00287{width:20.631000px;}
._24_c00287{width:23.805000px;}
._19_c00287{width:24.840000px;}
._18_c00287{width:26.463000px;}
._25_c00287{width:30.849000px;}
._27_c00287{width:32.499000px;}
._28_c00287{width:35.052000px;}
._2e_c00287{width:39.270000px;}
._1c_c00287{width:44.484000px;}
._20_c00287{width:47.541000px;}
._1e_c00287{width:92.046000px;}
._2a_c00287{width:102.534000px;}
._23_c00287{width:125.304000px;}
._29_c00287{width:154.221000px;}
._1a_c00287{width:163.875000px;}
._8_c00287{width:204.930000px;}
._2_c00287{width:410.832000px;}
._1b_c00287{width:636.456000px;}
._2c_c00287{width:1018.776000px;}
.fc2_c00287{color:transparent;}
.fc1_c00287{color:rgb(128,128,128);}
.fc0_c00287{color:rgb(0,0,0);}
.fs4_c00287{font-size:48.000000px;}
.fs3_c00287{font-size:55.200000px;}
.fs1_c00287{font-size:63.000000px;}
.fs2_c00287{font-size:66.000000px;}
.fs0_c00287{font-size:69.000000px;}
.y0_c00287{bottom:0.000000px;}
.y1c_c00287{bottom:3.105000px;}
.y1b_c00287{bottom:7.228363px;}
.y1a_c00287{bottom:57.000000px;}
.y19_c00287{bottom:78.600000px;}
.y18_c00287{bottom:157.050000px;}
.y17_c00287{bottom:183.000000px;}
.y16_c00287{bottom:208.650000px;}
.y15_c00287{bottom:232.650000px;}
.y14_c00287{bottom:257.850000px;}
.y13_c00287{bottom:283.200000px;}
.y12_c00287{bottom:308.100000px;}
.y11_c00287{bottom:332.100000px;}
.y10_c00287{bottom:357.150000px;}
.yf_c00287{bottom:382.050000px;}
.ye_c00287{bottom:407.100000px;}
.yd_c00287{bottom:432.300000px;}
.yc_c00287{bottom:456.000000px;}
.yb_c00287{bottom:482.400000px;}
.ya_c00287{bottom:532.650000px;}
.y9_c00287{bottom:582.300000px;}
.y8_c00287{bottom:607.500000px;}
.y7_c00287{bottom:632.850000px;}
.y6_c00287{bottom:658.050000px;}
.y5_c00287{bottom:682.800000px;}
.y4_c00287{bottom:707.700000px;}
.y3_c00287{bottom:732.750000px;}
.y2_c00287{bottom:757.650000px;}
.y1_c00287{bottom:783.300000px;}
.h5_c00287{height:13.200074px;}
.h6_c00287{height:43.804688px;}
.h3_c00287{height:80.758301px;}
.h4_c00287{height:83.563477px;}
.h2_c00287{height:87.361816px;}
.h1_c00287{height:827.250000px;}
.h0_c00287{height:827.550000px;}
.w2_c00287{width:104.875500px;}
.w0_c00287{width:572.100000px;}
.w1_c00287{width:572.250000px;}
.x0_c00287{left:0.000000px;}
.xc_c00287{left:29.400000px;}
.xb_c00287{left:45.600000px;}
.x8_c00287{left:48.600000px;}
.x9_c00287{left:55.050000px;}
.x3_c00287{left:94.800000px;}
.x2_c00287{left:95.850000px;}
.x7_c00287{left:96.900000px;}
.xa_c00287{left:98.250000px;}
.xd_c00287{left:102.900000px;}
.x5_c00287{left:104.550000px;}
.x1_c00287{left:108.900000px;}
.x4_c00287{left:110.700000px;}
.x6_c00287{left:121.200000px;}
.xf_c00287{left:237.864258px;}
.xe_c00287{left:469.800000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls8_c00287{letter-spacing:0.000000pt;}
.ls7_c00287{letter-spacing:5.333333pt;}
.ls1_c00287{letter-spacing:5.357333pt;}
.ls9_c00287{letter-spacing:10.666667pt;}
.ls6_c00287{letter-spacing:12.733333pt;}
.ls2_c00287{letter-spacing:17.600000pt;}
.ls4_c00287{letter-spacing:19.200000pt;}
.ls0_c00287{letter-spacing:25.600000pt;}
.ls5_c00287{letter-spacing:29.434667pt;}
.ls3_c00287{letter-spacing:31.021333pt;}
.lsa_c00287{letter-spacing:85.333333pt;}
.ws3_c00287{word-spacing:-49.986667pt;}
.ws2_c00287{word-spacing:-39.989333pt;}
.ws1_c00287{word-spacing:-34.666667pt;}
.ws4_c00287{word-spacing:-20.114667pt;}
.ws0_c00287{word-spacing:-14.781333pt;}
.ws5_c00287{word-spacing:0.000000pt;}
._2d_c00287{margin-left:-97.152000pt;}
._2f_c00287{margin-left:-92.634667pt;}
._2b_c00287{margin-left:-87.824000pt;}
._32_c00287{margin-left:-53.328000pt;}
._30_c00287{margin-left:-33.048000pt;}
._31_c00287{margin-left:-31.720000pt;}
._1d_c00287{margin-left:-20.669333pt;}
._22_c00287{margin-left:-15.088000pt;}
._1f_c00287{margin-left:-11.592000pt;}
._1_c00287{margin-left:-10.549333pt;}
._17_c00287{margin-left:-9.077333pt;}
._26_c00287{margin-left:-8.157333pt;}
._15_c00287{margin-left:-6.930667pt;}
._14_c00287{margin-left:-5.458667pt;}
._10_c00287{margin-left:-4.477333pt;}
._3_c00287{margin-left:-3.434667pt;}
._0_c00287{margin-left:-2.085333pt;}
._7_c00287{margin-left:-1.042667pt;}
._5_c00287{width:1.104000pt;}
._6_c00287{width:2.330667pt;}
._e_c00287{width:3.312000pt;}
._b_c00287{width:4.600000pt;}
._4_c00287{width:5.520000pt;}
._d_c00287{width:6.624000pt;}
._a_c00287{width:7.728000pt;}
._c_c00287{width:9.445333pt;}
._f_c00287{width:10.549333pt;}
._9_c00287{width:11.530667pt;}
._11_c00287{width:13.125333pt;}
._16_c00287{width:14.346667pt;}
._21_c00287{width:15.333333pt;}
._13_c00287{width:17.434667pt;}
._12_c00287{width:18.338667pt;}
._24_c00287{width:21.160000pt;}
._19_c00287{width:22.080000pt;}
._18_c00287{width:23.522667pt;}
._25_c00287{width:27.421333pt;}
._27_c00287{width:28.888000pt;}
._28_c00287{width:31.157333pt;}
._2e_c00287{width:34.906667pt;}
._1c_c00287{width:39.541333pt;}
._20_c00287{width:42.258667pt;}
._1e_c00287{width:81.818667pt;}
._2a_c00287{width:91.141333pt;}
._23_c00287{width:111.381333pt;}
._29_c00287{width:137.085333pt;}
._1a_c00287{width:145.666667pt;}
._8_c00287{width:182.160000pt;}
._2_c00287{width:365.184000pt;}
._1b_c00287{width:565.738667pt;}
._2c_c00287{width:905.578667pt;}
.fs4_c00287{font-size:42.666667pt;}
.fs3_c00287{font-size:49.066667pt;}
.fs1_c00287{font-size:56.000000pt;}
.fs2_c00287{font-size:58.666667pt;}
.fs0_c00287{font-size:61.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y1c_c00287{bottom:2.760000pt;}
.y1b_c00287{bottom:6.425212pt;}
.y1a_c00287{bottom:50.666667pt;}
.y19_c00287{bottom:69.866667pt;}
.y18_c00287{bottom:139.600000pt;}
.y17_c00287{bottom:162.666667pt;}
.y16_c00287{bottom:185.466667pt;}
.y15_c00287{bottom:206.800000pt;}
.y14_c00287{bottom:229.200000pt;}
.y13_c00287{bottom:251.733333pt;}
.y12_c00287{bottom:273.866667pt;}
.y11_c00287{bottom:295.200000pt;}
.y10_c00287{bottom:317.466667pt;}
.yf_c00287{bottom:339.600000pt;}
.ye_c00287{bottom:361.866667pt;}
.yd_c00287{bottom:384.266667pt;}
.yc_c00287{bottom:405.333333pt;}
.yb_c00287{bottom:428.800000pt;}
.ya_c00287{bottom:473.466667pt;}
.y9_c00287{bottom:517.600000pt;}
.y8_c00287{bottom:540.000000pt;}
.y7_c00287{bottom:562.533333pt;}
.y6_c00287{bottom:584.933333pt;}
.y5_c00287{bottom:606.933333pt;}
.y4_c00287{bottom:629.066667pt;}
.y3_c00287{bottom:651.333333pt;}
.y2_c00287{bottom:673.466667pt;}
.y1_c00287{bottom:696.266667pt;}
.h5_c00287{height:11.733399pt;}
.h6_c00287{height:38.937500pt;}
.h3_c00287{height:71.785156pt;}
.h4_c00287{height:74.278646pt;}
.h2_c00287{height:77.654948pt;}
.h1_c00287{height:735.333333pt;}
.h0_c00287{height:735.600000pt;}
.w2_c00287{width:93.222667pt;}
.w0_c00287{width:508.533333pt;}
.w1_c00287{width:508.666667pt;}
.x0_c00287{left:0.000000pt;}
.xc_c00287{left:26.133333pt;}
.xb_c00287{left:40.533333pt;}
.x8_c00287{left:43.200000pt;}
.x9_c00287{left:48.933333pt;}
.x3_c00287{left:84.266667pt;}
.x2_c00287{left:85.200000pt;}
.x7_c00287{left:86.133333pt;}
.xa_c00287{left:87.333333pt;}
.xd_c00287{left:91.466667pt;}
.x5_c00287{left:92.933333pt;}
.x1_c00287{left:96.800000pt;}
.x4_c00287{left:98.400000pt;}
.x6_c00287{left:107.733333pt;}
.xf_c00287{left:211.434896pt;}
.xe_c00287{left:417.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_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_6c881de6ba9cadebce5214ea.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_8608e3c20a8bb107dcc2da7c.woff2')format("woff");}.ff2_c00288{font-family:ff2_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:ff3_c00288;src:url('chunks/assets/font_ae909c7f1b35e407c26cc84d.woff2')format("woff");}.ff3_c00288{font-family:ff3_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:ff4_c00288;src:url('chunks/assets/font_c0664f115c40f445e2f55961.woff2')format("woff");}.ff4_c00288{font-family:ff4_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:ff5_c00288;src:url('chunks/assets/font_cdf1be31e2a87e91ac50a82c.woff2')format("woff");}.ff5_c00288{font-family:ff5_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:ff6_c00288;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00288{font-family:ff6_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;}
.ls6_c00288{letter-spacing:0.000000px;}
.ls5_c00288{letter-spacing:2.712000px;}
.ls8_c00288{letter-spacing:3.000000px;}
.ls3_c00288{letter-spacing:3.600000px;}
.ls4_c00288{letter-spacing:5.119200px;}
.ls7_c00288{letter-spacing:6.000000px;}
.ls9_c00288{letter-spacing:9.000000px;}
.ls2_c00288{letter-spacing:16.125000px;}
.ls1_c00288{letter-spacing:18.525000px;}
.ls0_c00288{letter-spacing:34.512000px;}
.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;}
}
.ws5_c00288{word-spacing:-66.015000px;}
.ws6_c00288{word-spacing:-56.235000px;}
.ws7_c00288{word-spacing:-44.988000px;}
.ws4_c00288{word-spacing:-44.022000px;}
.ws8_c00288{word-spacing:-36.090000px;}
.ws3_c00288{word-spacing:-28.521000px;}
.ws1_c00288{word-spacing:-19.521000px;}
.ws0_c00288{word-spacing:-16.629000px;}
.ws9_c00288{word-spacing:0.000000px;}
.ws2_c00288{word-spacing:0.567000px;}
._5_c00288{margin-left:-39.261000px;}
._2f_c00288{margin-left:-26.358000px;}
._17_c00288{margin-left:-23.943000px;}
._2e_c00288{margin-left:-21.096000px;}
._e_c00288{margin-left:-19.182000px;}
._7_c00288{margin-left:-17.112000px;}
._26_c00288{margin-left:-15.474000px;}
._27_c00288{margin-left:-13.800000px;}
._2d_c00288{margin-left:-12.351000px;}
._10_c00288{margin-left:-11.109000px;}
._13_c00288{margin-left:-9.660000px;}
._a_c00288{margin-left:-7.935000px;}
._12_c00288{margin-left:-6.624000px;}
._9_c00288{margin-left:-4.899000px;}
._15_c00288{margin-left:-3.588000px;}
._c_c00288{margin-left:-2.484000px;}
._23_c00288{margin-left:-1.272000px;}
._24_c00288{width:1.656000px;}
._1_c00288{width:2.829000px;}
._2_c00288{width:4.002000px;}
._0_c00288{width:5.727000px;}
._22_c00288{width:7.176000px;}
._1a_c00288{width:8.343000px;}
._1b_c00288{width:9.375000px;}
._1f_c00288{width:10.449000px;}
._4_c00288{width:11.523000px;}
._1c_c00288{width:13.515000px;}
._11_c00288{width:15.111000px;}
._20_c00288{width:17.496000px;}
._2a_c00288{width:18.849000px;}
._28_c00288{width:20.808000px;}
._1e_c00288{width:22.383000px;}
._30_c00288{width:25.710000px;}
._25_c00288{width:28.470000px;}
._1d_c00288{width:30.492000px;}
._2b_c00288{width:32.223000px;}
._16_c00288{width:34.914000px;}
._32_c00288{width:36.639000px;}
._21_c00288{width:37.848000px;}
._14_c00288{width:40.917000px;}
._34_c00288{width:45.471000px;}
._d_c00288{width:46.782000px;}
._33_c00288{width:71.499000px;}
._37_c00288{width:74.241000px;}
._19_c00288{width:77.133000px;}
._18_c00288{width:84.111000px;}
._2c_c00288{width:102.954000px;}
._35_c00288{width:108.615000px;}
._29_c00288{width:114.576000px;}
._6_c00288{width:127.374000px;}
._8_c00288{width:184.920000px;}
._31_c00288{width:222.900000px;}
._f_c00288{width:268.962000px;}
._38_c00288{width:278.403000px;}
._36_c00288{width:314.829000px;}
._b_c00288{width:390.747000px;}
._3_c00288{width:525.990000px;}
._39_c00288{width:1112.625000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(128,128,128);}
.fc0_c00288{color:rgb(0,0,0);}
.fs6_c00288{font-size:48.000000px;}
.fs5_c00288{font-size:55.200000px;}
.fs4_c00288{font-size:64.800000px;}
.fs3_c00288{font-size:66.000000px;}
.fs0_c00288{font-size:69.000000px;}
.fs1_c00288{font-size:72.000000px;}
.fs2_c00288{font-size:81.000000px;}
.y0_c00288{bottom:0.000000px;}
.y1e_c00288{bottom:3.105000px;}
.y1d_c00288{bottom:7.228371px;}
.y1c_c00288{bottom:70.965000px;}
.y1b_c00288{bottom:94.815000px;}
.y1a_c00288{bottom:120.165000px;}
.y19_c00288{bottom:144.915000px;}
.y18_c00288{bottom:169.815000px;}
.y17_c00288{bottom:192.015000px;}
.y16_c00288{bottom:220.515000px;}
.y15_c00288{bottom:245.115000px;}
.y14_c00288{bottom:270.315000px;}
.y13_c00288{bottom:295.065000px;}
.y12_c00288{bottom:320.415000px;}
.y11_c00288{bottom:346.065000px;}
.y10_c00288{bottom:370.365000px;}
.yf_c00288{bottom:394.965000px;}
.ye_c00288{bottom:420.315000px;}
.yd_c00288{bottom:444.915000px;}
.yc_c00288{bottom:470.265000px;}
.yb_c00288{bottom:495.165000px;}
.ya_c00288{bottom:519.465000px;}
.y9_c00288{bottom:543.765000px;}
.y8_c00288{bottom:567.465000px;}
.y7_c00288{bottom:593.415000px;}
.y6_c00288{bottom:643.965000px;}
.y5_c00288{bottom:668.715000px;}
.y4_c00288{bottom:694.215000px;}
.y3_c00288{bottom:743.265000px;}
.y2_c00288{bottom:768.615000px;}
.y1_c00288{bottom:793.215000px;}
.h6_c00288{height:13.200074px;}
.h7_c00288{height:43.804688px;}
.h4_c00288{height:80.758301px;}
.h2_c00288{height:87.361816px;}
.h5_c00288{height:94.803223px;}
.h3_c00288{height:102.555176px;}
.h1_c00288{height:831.000000px;}
.h0_c00288{height:831.075000px;}
.w2_c00288{width:104.875500px;}
.w0_c00288{width:566.175000px;}
.w1_c00288{width:566.250000px;}
.x0_c00288{left:0.000000px;}
.x9_c00288{left:32.700000px;}
.x8_c00288{left:34.050000px;}
.x3_c00288{left:35.550000px;}
.x5_c00288{left:36.900000px;}
.x2_c00288{left:52.050000px;}
.x6_c00288{left:60.150000px;}
.x4_c00288{left:72.900000px;}
.x7_c00288{left:84.750000px;}
.x1_c00288{left:196.050000px;}
.xa_c00288{left:234.901749px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls6_c00288{letter-spacing:0.000000pt;}
.ls5_c00288{letter-spacing:2.410667pt;}
.ls8_c00288{letter-spacing:2.666667pt;}
.ls3_c00288{letter-spacing:3.200000pt;}
.ls4_c00288{letter-spacing:4.550400pt;}
.ls7_c00288{letter-spacing:5.333333pt;}
.ls9_c00288{letter-spacing:8.000000pt;}
.ls2_c00288{letter-spacing:14.333333pt;}
.ls1_c00288{letter-spacing:16.466667pt;}
.ls0_c00288{letter-spacing:30.677333pt;}
.ws5_c00288{word-spacing:-58.680000pt;}
.ws6_c00288{word-spacing:-49.986667pt;}
.ws7_c00288{word-spacing:-39.989333pt;}
.ws4_c00288{word-spacing:-39.130667pt;}
.ws8_c00288{word-spacing:-32.080000pt;}
.ws3_c00288{word-spacing:-25.352000pt;}
.ws1_c00288{word-spacing:-17.352000pt;}
.ws0_c00288{word-spacing:-14.781333pt;}
.ws9_c00288{word-spacing:0.000000pt;}
.ws2_c00288{word-spacing:0.504000pt;}
._5_c00288{margin-left:-34.898667pt;}
._2f_c00288{margin-left:-23.429333pt;}
._17_c00288{margin-left:-21.282667pt;}
._2e_c00288{margin-left:-18.752000pt;}
._e_c00288{margin-left:-17.050667pt;}
._7_c00288{margin-left:-15.210667pt;}
._26_c00288{margin-left:-13.754667pt;}
._27_c00288{margin-left:-12.266667pt;}
._2d_c00288{margin-left:-10.978667pt;}
._10_c00288{margin-left:-9.874667pt;}
._13_c00288{margin-left:-8.586667pt;}
._a_c00288{margin-left:-7.053333pt;}
._12_c00288{margin-left:-5.888000pt;}
._9_c00288{margin-left:-4.354667pt;}
._15_c00288{margin-left:-3.189333pt;}
._c_c00288{margin-left:-2.208000pt;}
._23_c00288{margin-left:-1.130667pt;}
._24_c00288{width:1.472000pt;}
._1_c00288{width:2.514667pt;}
._2_c00288{width:3.557333pt;}
._0_c00288{width:5.090667pt;}
._22_c00288{width:6.378667pt;}
._1a_c00288{width:7.416000pt;}
._1b_c00288{width:8.333333pt;}
._1f_c00288{width:9.288000pt;}
._4_c00288{width:10.242667pt;}
._1c_c00288{width:12.013333pt;}
._11_c00288{width:13.432000pt;}
._20_c00288{width:15.552000pt;}
._2a_c00288{width:16.754667pt;}
._28_c00288{width:18.496000pt;}
._1e_c00288{width:19.896000pt;}
._30_c00288{width:22.853333pt;}
._25_c00288{width:25.306667pt;}
._1d_c00288{width:27.104000pt;}
._2b_c00288{width:28.642667pt;}
._16_c00288{width:31.034667pt;}
._32_c00288{width:32.568000pt;}
._21_c00288{width:33.642667pt;}
._14_c00288{width:36.370667pt;}
._34_c00288{width:40.418667pt;}
._d_c00288{width:41.584000pt;}
._33_c00288{width:63.554667pt;}
._37_c00288{width:65.992000pt;}
._19_c00288{width:68.562667pt;}
._18_c00288{width:74.765333pt;}
._2c_c00288{width:91.514667pt;}
._35_c00288{width:96.546667pt;}
._29_c00288{width:101.845333pt;}
._6_c00288{width:113.221333pt;}
._8_c00288{width:164.373333pt;}
._31_c00288{width:198.133333pt;}
._f_c00288{width:239.077333pt;}
._38_c00288{width:247.469333pt;}
._36_c00288{width:279.848000pt;}
._b_c00288{width:347.330667pt;}
._3_c00288{width:467.546667pt;}
._39_c00288{width:989.000000pt;}
.fs6_c00288{font-size:42.666667pt;}
.fs5_c00288{font-size:49.066667pt;}
.fs4_c00288{font-size:57.600000pt;}
.fs3_c00288{font-size:58.666667pt;}
.fs0_c00288{font-size:61.333333pt;}
.fs1_c00288{font-size:64.000000pt;}
.fs2_c00288{font-size:72.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y1e_c00288{bottom:2.760000pt;}
.y1d_c00288{bottom:6.425219pt;}
.y1c_c00288{bottom:63.080000pt;}
.y1b_c00288{bottom:84.280000pt;}
.y1a_c00288{bottom:106.813333pt;}
.y19_c00288{bottom:128.813333pt;}
.y18_c00288{bottom:150.946667pt;}
.y17_c00288{bottom:170.680000pt;}
.y16_c00288{bottom:196.013333pt;}
.y15_c00288{bottom:217.880000pt;}
.y14_c00288{bottom:240.280000pt;}
.y13_c00288{bottom:262.280000pt;}
.y12_c00288{bottom:284.813333pt;}
.y11_c00288{bottom:307.613333pt;}
.y10_c00288{bottom:329.213333pt;}
.yf_c00288{bottom:351.080000pt;}
.ye_c00288{bottom:373.613333pt;}
.yd_c00288{bottom:395.480000pt;}
.yc_c00288{bottom:418.013333pt;}
.yb_c00288{bottom:440.146667pt;}
.ya_c00288{bottom:461.746667pt;}
.y9_c00288{bottom:483.346667pt;}
.y8_c00288{bottom:504.413333pt;}
.y7_c00288{bottom:527.480000pt;}
.y6_c00288{bottom:572.413333pt;}
.y5_c00288{bottom:594.413333pt;}
.y4_c00288{bottom:617.080000pt;}
.y3_c00288{bottom:660.680000pt;}
.y2_c00288{bottom:683.213333pt;}
.y1_c00288{bottom:705.080000pt;}
.h6_c00288{height:11.733399pt;}
.h7_c00288{height:38.937500pt;}
.h4_c00288{height:71.785156pt;}
.h2_c00288{height:77.654948pt;}
.h5_c00288{height:84.269531pt;}
.h3_c00288{height:91.160156pt;}
.h1_c00288{height:738.666667pt;}
.h0_c00288{height:738.733333pt;}
.w2_c00288{width:93.222667pt;}
.w0_c00288{width:503.266667pt;}
.w1_c00288{width:503.333333pt;}
.x0_c00288{left:0.000000pt;}
.x9_c00288{left:29.066667pt;}
.x8_c00288{left:30.266667pt;}
.x3_c00288{left:31.600000pt;}
.x5_c00288{left:32.800000pt;}
.x2_c00288{left:46.266667pt;}
.x6_c00288{left:53.466667pt;}
.x4_c00288{left:64.800000pt;}
.x7_c00288{left:75.333333pt;}
.x1_c00288{left:174.266667pt;}
.xa_c00288{left:208.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_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_1c5b2f44e2b1a1050ca9a093.woff2')format("woff");}.ff1_c00289{font-family:ff1_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:ff2_c00289;src:url('chunks/assets/font_cd8533b606d02bc0315a9b7a.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_1820cf2bcdeb6fae87e3bb6d.woff2')format("woff");}.ff3_c00289{font-family:ff3_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:ff4_c00289;src:url('chunks/assets/font_63bdcbf280f99fb973f780ac.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_466dd1fee644a68400924083.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_4b2568b715026656adefadab.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;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_c00289;src:url('chunks/assets/font_57f3332cbb4dd9a5040f37e9.woff2')format("woff");}.ff7_c00289{font-family:ff7_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:ff8_c00289;src:url('chunks/assets/font_f7bd3b4370c9dbccd05c8630.woff2')format("woff");}.ff8_c00289{font-family:ff8_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:ff9_c00289;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00289{font-family:ff9_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;}
.m1_c00289{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_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;}
.ls4_c00289{letter-spacing:0.000000px;}
.ls5_c00289{letter-spacing:6.000000px;}
.ls1_c00289{letter-spacing:9.000000px;}
.ls7_c00289{letter-spacing:12.000000px;}
.ls0_c00289{letter-spacing:14.325000px;}
.ls6_c00289{letter-spacing:15.000000px;}
.ls3_c00289{letter-spacing:16.278000px;}
.ls2_c00289{letter-spacing:16.296000px;}
.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;}
}
.ws3_c00289{word-spacing:-32.574000px;}
.ws4_c00289{word-spacing:-19.014000px;}
.ws1_c00289{word-spacing:-16.629000px;}
.ws5_c00289{word-spacing:0.000000px;}
.ws2_c00289{word-spacing:2.964000px;}
.ws0_c00289{word-spacing:4.071000px;}
._3b_c00289{margin-left:-56.574000px;}
._29_c00289{margin-left:-42.333000px;}
._1d_c00289{margin-left:-37.191000px;}
._42_c00289{margin-left:-35.949000px;}
._40_c00289{margin-left:-27.060000px;}
._36_c00289{margin-left:-26.028000px;}
._20_c00289{margin-left:-23.460000px;}
._31_c00289{margin-left:-21.645000px;}
._39_c00289{margin-left:-20.295000px;}
._1a_c00289{margin-left:-19.233000px;}
._43_c00289{margin-left:-18.225000px;}
._25_c00289{margin-left:-16.836000px;}
._15_c00289{margin-left:-15.732000px;}
._11_c00289{margin-left:-14.490000px;}
._26_c00289{margin-left:-13.110000px;}
._e_c00289{margin-left:-11.730000px;}
._17_c00289{margin-left:-10.500000px;}
._b_c00289{margin-left:-8.970000px;}
._13_c00289{margin-left:-7.239000px;}
._1c_c00289{margin-left:-6.210000px;}
._6_c00289{margin-left:-5.106000px;}
._5_c00289{margin-left:-3.519000px;}
._4_c00289{margin-left:-1.725000px;}
._f_c00289{width:1.035000px;}
._1_c00289{width:2.208000px;}
._2_c00289{width:3.450000px;}
._0_c00289{width:4.761000px;}
._a_c00289{width:5.865000px;}
._3_c00289{width:7.107000px;}
._d_c00289{width:8.763000px;}
._18_c00289{width:11.109000px;}
._c_c00289{width:12.765000px;}
._9_c00289{width:13.800000px;}
._14_c00289{width:15.099000px;}
._7_c00289{width:16.836000px;}
._8_c00289{width:18.078000px;}
._10_c00289{width:19.872000px;}
._2f_c00289{width:21.486000px;}
._2e_c00289{width:24.030000px;}
._2d_c00289{width:26.082000px;}
._44_c00289{width:27.255000px;}
._19_c00289{width:28.506000px;}
._32_c00289{width:29.718000px;}
._30_c00289{width:31.482000px;}
._3d_c00289{width:33.570000px;}
._1b_c00289{width:39.000000px;}
._27_c00289{width:40.449000px;}
._35_c00289{width:44.997000px;}
._24_c00289{width:48.702000px;}
._3a_c00289{width:54.258000px;}
._3f_c00289{width:57.546000px;}
._33_c00289{width:63.264000px;}
._34_c00289{width:64.833000px;}
._2b_c00289{width:66.000000px;}
._2c_c00289{width:72.879000px;}
._23_c00289{width:81.834000px;}
._3e_c00289{width:86.334000px;}
._3c_c00289{width:92.412000px;}
._12_c00289{width:93.771000px;}
._38_c00289{width:96.768000px;}
._21_c00289{width:109.503000px;}
._41_c00289{width:117.084000px;}
._28_c00289{width:118.398000px;}
._2a_c00289{width:123.336000px;}
._22_c00289{width:153.180000px;}
._1e_c00289{width:167.325000px;}
._37_c00289{width:194.280000px;}
._16_c00289{width:205.896000px;}
._1f_c00289{width:821.322000px;}
._45_c00289{width:1458.798000px;}
.fc2_c00289{color:transparent;}
.fc1_c00289{color:rgb(128,128,128);}
.fc0_c00289{color:rgb(0,0,0);}
.fs7_c00289{font-size:48.000000px;}
.fs1_c00289{font-size:54.000000px;}
.fs2_c00289{font-size:57.000000px;}
.fs5_c00289{font-size:66.000000px;}
.fs0_c00289{font-size:69.000000px;}
.fs6_c00289{font-size:75.000000px;}
.fs4_c00289{font-size:81.000000px;}
.fs3_c00289{font-size:171.000000px;}
.y0_c00289{bottom:0.000000px;}
.y1d_c00289{bottom:3.105000px;}
.y1c_c00289{bottom:7.228363px;}
.y1b_c00289{bottom:56.100000px;}
.y1a_c00289{bottom:80.100000px;}
.y19_c00289{bottom:107.100000px;}
.y18_c00289{bottom:131.700000px;}
.y17_c00289{bottom:156.600000px;}
.y16_c00289{bottom:181.950000px;}
.y15_c00289{bottom:208.200000px;}
.y14_c00289{bottom:232.800000px;}
.y13_c00289{bottom:258.150000px;}
.y12_c00289{bottom:283.050000px;}
.y11_c00289{bottom:307.800000px;}
.y10_c00289{bottom:332.400000px;}
.yf_c00289{bottom:357.300000px;}
.ye_c00289{bottom:380.100000px;}
.yd_c00289{bottom:407.250000px;}
.yc_c00289{bottom:432.900000px;}
.yb_c00289{bottom:457.650000px;}
.ya_c00289{bottom:482.850000px;}
.y9_c00289{bottom:507.600000px;}
.y8_c00289{bottom:532.200000px;}
.y7_c00289{bottom:558.600000px;}
.y6_c00289{bottom:582.900000px;}
.y5_c00289{bottom:608.100000px;}
.y4_c00289{bottom:707.700000px;}
.y3_c00289{bottom:732.000000px;}
.y2_c00289{bottom:757.350000px;}
.y1_c00289{bottom:782.700000px;}
.ha_c00289{height:13.200074px;}
.hb_c00289{height:43.804688px;}
.h4_c00289{height:56.592000px;}
.h5_c00289{height:66.713379px;}
.h7_c00289{height:68.370117px;}
.h2_c00289{height:87.361816px;}
.h9_c00289{height:87.780762px;}
.h3_c00289{height:87.961816px;}
.h8_c00289{height:94.958496px;}
.h6_c00289{height:182.457000px;}
.h1_c00289{height:827.250000px;}
.h0_c00289{height:827.550000px;}
.w2_c00289{width:104.875500px;}
.w0_c00289{width:572.100000px;}
.w1_c00289{width:572.250000px;}
.x0_c00289{left:0.000000px;}
.x8_c00289{left:29.400000px;}
.xa_c00289{left:31.950000px;}
.x9_c00289{left:46.950000px;}
.x5_c00289{left:50.250000px;}
.xb_c00289{left:60.450000px;}
.x6_c00289{left:68.250000px;}
.x12_c00289{left:92.550000px;}
.xd_c00289{left:95.400000px;}
.xc_c00289{left:96.450000px;}
.x7_c00289{left:97.800000px;}
.x3_c00289{left:100.350000px;}
.x2_c00289{left:102.000000px;}
.x10_c00289{left:117.150000px;}
.x11_c00289{left:122.550000px;}
.x4_c00289{left:124.950000px;}
.x13_c00289{left:237.864258px;}
.x1_c00289{left:252.750000px;}
.xe_c00289{left:288.450000px;}
.xf_c00289{left:302.100000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls4_c00289{letter-spacing:0.000000pt;}
.ls5_c00289{letter-spacing:5.333333pt;}
.ls1_c00289{letter-spacing:8.000000pt;}
.ls7_c00289{letter-spacing:10.666667pt;}
.ls0_c00289{letter-spacing:12.733333pt;}
.ls6_c00289{letter-spacing:13.333333pt;}
.ls3_c00289{letter-spacing:14.469333pt;}
.ls2_c00289{letter-spacing:14.485333pt;}
.ws3_c00289{word-spacing:-28.954667pt;}
.ws4_c00289{word-spacing:-16.901333pt;}
.ws1_c00289{word-spacing:-14.781333pt;}
.ws5_c00289{word-spacing:0.000000pt;}
.ws2_c00289{word-spacing:2.634667pt;}
.ws0_c00289{word-spacing:3.618667pt;}
._3b_c00289{margin-left:-50.288000pt;}
._29_c00289{margin-left:-37.629333pt;}
._1d_c00289{margin-left:-33.058667pt;}
._42_c00289{margin-left:-31.954667pt;}
._40_c00289{margin-left:-24.053333pt;}
._36_c00289{margin-left:-23.136000pt;}
._20_c00289{margin-left:-20.853333pt;}
._31_c00289{margin-left:-19.240000pt;}
._39_c00289{margin-left:-18.040000pt;}
._1a_c00289{margin-left:-17.096000pt;}
._43_c00289{margin-left:-16.200000pt;}
._25_c00289{margin-left:-14.965333pt;}
._15_c00289{margin-left:-13.984000pt;}
._11_c00289{margin-left:-12.880000pt;}
._26_c00289{margin-left:-11.653333pt;}
._e_c00289{margin-left:-10.426667pt;}
._17_c00289{margin-left:-9.333333pt;}
._b_c00289{margin-left:-7.973333pt;}
._13_c00289{margin-left:-6.434667pt;}
._1c_c00289{margin-left:-5.520000pt;}
._6_c00289{margin-left:-4.538667pt;}
._5_c00289{margin-left:-3.128000pt;}
._4_c00289{margin-left:-1.533333pt;}
._f_c00289{width:0.920000pt;}
._1_c00289{width:1.962667pt;}
._2_c00289{width:3.066667pt;}
._0_c00289{width:4.232000pt;}
._a_c00289{width:5.213333pt;}
._3_c00289{width:6.317333pt;}
._d_c00289{width:7.789333pt;}
._18_c00289{width:9.874667pt;}
._c_c00289{width:11.346667pt;}
._9_c00289{width:12.266667pt;}
._14_c00289{width:13.421333pt;}
._7_c00289{width:14.965333pt;}
._8_c00289{width:16.069333pt;}
._10_c00289{width:17.664000pt;}
._2f_c00289{width:19.098667pt;}
._2e_c00289{width:21.360000pt;}
._2d_c00289{width:23.184000pt;}
._44_c00289{width:24.226667pt;}
._19_c00289{width:25.338667pt;}
._32_c00289{width:26.416000pt;}
._30_c00289{width:27.984000pt;}
._3d_c00289{width:29.840000pt;}
._1b_c00289{width:34.666667pt;}
._27_c00289{width:35.954667pt;}
._35_c00289{width:39.997333pt;}
._24_c00289{width:43.290667pt;}
._3a_c00289{width:48.229333pt;}
._3f_c00289{width:51.152000pt;}
._33_c00289{width:56.234667pt;}
._34_c00289{width:57.629333pt;}
._2b_c00289{width:58.666667pt;}
._2c_c00289{width:64.781333pt;}
._23_c00289{width:72.741333pt;}
._3e_c00289{width:76.741333pt;}
._3c_c00289{width:82.144000pt;}
._12_c00289{width:83.352000pt;}
._38_c00289{width:86.016000pt;}
._21_c00289{width:97.336000pt;}
._41_c00289{width:104.074667pt;}
._28_c00289{width:105.242667pt;}
._2a_c00289{width:109.632000pt;}
._22_c00289{width:136.160000pt;}
._1e_c00289{width:148.733333pt;}
._37_c00289{width:172.693333pt;}
._16_c00289{width:183.018667pt;}
._1f_c00289{width:730.064000pt;}
._45_c00289{width:1296.709333pt;}
.fs7_c00289{font-size:42.666667pt;}
.fs1_c00289{font-size:48.000000pt;}
.fs2_c00289{font-size:50.666667pt;}
.fs5_c00289{font-size:58.666667pt;}
.fs0_c00289{font-size:61.333333pt;}
.fs6_c00289{font-size:66.666667pt;}
.fs4_c00289{font-size:72.000000pt;}
.fs3_c00289{font-size:152.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y1d_c00289{bottom:2.760000pt;}
.y1c_c00289{bottom:6.425212pt;}
.y1b_c00289{bottom:49.866667pt;}
.y1a_c00289{bottom:71.200000pt;}
.y19_c00289{bottom:95.200000pt;}
.y18_c00289{bottom:117.066667pt;}
.y17_c00289{bottom:139.200000pt;}
.y16_c00289{bottom:161.733333pt;}
.y15_c00289{bottom:185.066667pt;}
.y14_c00289{bottom:206.933333pt;}
.y13_c00289{bottom:229.466667pt;}
.y12_c00289{bottom:251.600000pt;}
.y11_c00289{bottom:273.600000pt;}
.y10_c00289{bottom:295.466667pt;}
.yf_c00289{bottom:317.600000pt;}
.ye_c00289{bottom:337.866667pt;}
.yd_c00289{bottom:362.000000pt;}
.yc_c00289{bottom:384.800000pt;}
.yb_c00289{bottom:406.800000pt;}
.ya_c00289{bottom:429.200000pt;}
.y9_c00289{bottom:451.200000pt;}
.y8_c00289{bottom:473.066667pt;}
.y7_c00289{bottom:496.533333pt;}
.y6_c00289{bottom:518.133333pt;}
.y5_c00289{bottom:540.533333pt;}
.y4_c00289{bottom:629.066667pt;}
.y3_c00289{bottom:650.666667pt;}
.y2_c00289{bottom:673.200000pt;}
.y1_c00289{bottom:695.733333pt;}
.ha_c00289{height:11.733399pt;}
.hb_c00289{height:38.937500pt;}
.h4_c00289{height:50.304000pt;}
.h5_c00289{height:59.300781pt;}
.h7_c00289{height:60.773438pt;}
.h2_c00289{height:77.654948pt;}
.h9_c00289{height:78.027344pt;}
.h3_c00289{height:78.188281pt;}
.h8_c00289{height:84.407552pt;}
.h6_c00289{height:162.184000pt;}
.h1_c00289{height:735.333333pt;}
.h0_c00289{height:735.600000pt;}
.w2_c00289{width:93.222667pt;}
.w0_c00289{width:508.533333pt;}
.w1_c00289{width:508.666667pt;}
.x0_c00289{left:0.000000pt;}
.x8_c00289{left:26.133333pt;}
.xa_c00289{left:28.400000pt;}
.x9_c00289{left:41.733333pt;}
.x5_c00289{left:44.666667pt;}
.xb_c00289{left:53.733333pt;}
.x6_c00289{left:60.666667pt;}
.x12_c00289{left:82.266667pt;}
.xd_c00289{left:84.800000pt;}
.xc_c00289{left:85.733333pt;}
.x7_c00289{left:86.933333pt;}
.x3_c00289{left:89.200000pt;}
.x2_c00289{left:90.666667pt;}
.x10_c00289{left:104.133333pt;}
.x11_c00289{left:108.933333pt;}
.x4_c00289{left:111.066667pt;}
.x13_c00289{left:211.434896pt;}
.x1_c00289{left:224.666667pt;}
.xe_c00289{left:256.400000pt;}
.xf_c00289{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_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_059e9b307b744f55fed01106.woff2')format("woff");}.ff1_c00290{font-family:ff1_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:ff2_c00290;src:url('chunks/assets/font_481574c9dd6b0b926596cc76.woff2')format("woff");}.ff2_c00290{font-family:ff2_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:ff3_c00290;src:url('chunks/assets/font_f4d6bef164d1a49dbb6ce4a5.woff2')format("woff");}.ff3_c00290{font-family:ff3_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:ff4_c00290;src:url('chunks/assets/font_0c16696e6cf8197b4ef62db0.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls5_c00290{letter-spacing:0.000000px;}
.ls3_c00290{letter-spacing:3.744000px;}
.ls1_c00290{letter-spacing:6.000000px;}
.ls6_c00290{letter-spacing:9.000000px;}
.ls4_c00290{letter-spacing:10.200000px;}
.ls2_c00290{letter-spacing:42.771000px;}
.ls0_c00290{letter-spacing:537.171000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-44.022000px;}
.ws4_c00290{word-spacing:-39.000000px;}
.ws3_c00290{word-spacing:-21.096000px;}
.ws1_c00290{word-spacing:-16.629000px;}
.ws5_c00290{word-spacing:0.000000px;}
.ws2_c00290{word-spacing:1.311000px;}
._19_c00290{margin-left:-39.537000px;}
._24_c00290{margin-left:-20.685000px;}
._3_c00290{margin-left:-14.346000px;}
._4_c00290{margin-left:-12.528000px;}
._1f_c00290{margin-left:-11.184000px;}
._1b_c00290{margin-left:-9.039000px;}
._2_c00290{margin-left:-7.245000px;}
._a_c00290{margin-left:-5.268000px;}
._9_c00290{margin-left:-3.582000px;}
._8_c00290{margin-left:-2.376000px;}
._12_c00290{margin-left:-1.005000px;}
._0_c00290{width:1.518000px;}
._1_c00290{width:2.760000px;}
._6_c00290{width:4.248000px;}
._11_c00290{width:5.382000px;}
._7_c00290{width:6.393000px;}
._1c_c00290{width:7.446000px;}
._13_c00290{width:9.108000px;}
._5_c00290{width:11.088000px;}
._1a_c00290{width:12.195000px;}
._e_c00290{width:13.455000px;}
._d_c00290{width:15.417000px;}
._1d_c00290{width:17.238000px;}
._14_c00290{width:18.798000px;}
._15_c00290{width:20.607000px;}
._23_c00290{width:22.011000px;}
._c_c00290{width:26.772000px;}
._22_c00290{width:27.870000px;}
._b_c00290{width:30.498000px;}
._10_c00290{width:31.872000px;}
._f_c00290{width:35.556000px;}
._17_c00290{width:114.312000px;}
._21_c00290{width:116.727000px;}
._1e_c00290{width:131.676000px;}
._18_c00290{width:136.440000px;}
._16_c00290{width:139.317000px;}
._20_c00290{width:216.966000px;}
._25_c00290{width:559.452000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(128,128,128);}
.fc0_c00290{color:rgb(0,0,0);}
.fs3_c00290{font-size:48.000000px;}
.fs2_c00290{font-size:66.000000px;}
.fs0_c00290{font-size:69.000000px;}
.fs1_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1e_c00290{bottom:3.105000px;}
.y1d_c00290{bottom:7.228371px;}
.y1c_c00290{bottom:64.215000px;}
.y1b_c00290{bottom:89.415000px;}
.y1a_c00290{bottom:115.065000px;}
.y19_c00290{bottom:140.115000px;}
.y18_c00290{bottom:190.065000px;}
.y17_c00290{bottom:240.315000px;}
.y16_c00290{bottom:265.365000px;}
.y15_c00290{bottom:290.565000px;}
.y14_c00290{bottom:315.915000px;}
.y13_c00290{bottom:340.665000px;}
.y12_c00290{bottom:364.965000px;}
.y11_c00290{bottom:390.165000px;}
.y10_c00290{bottom:415.215000px;}
.yf_c00290{bottom:440.115000px;}
.ye_c00290{bottom:465.165000px;}
.yd_c00290{bottom:489.765000px;}
.yc_c00290{bottom:514.665000px;}
.yb_c00290{bottom:538.665000px;}
.ya_c00290{bottom:563.715000px;}
.y9_c00290{bottom:588.915000px;}
.y8_c00290{bottom:613.365000px;}
.y7_c00290{bottom:638.565000px;}
.y6_c00290{bottom:663.315000px;}
.y5_c00290{bottom:687.915000px;}
.y4_c00290{bottom:713.115000px;}
.y3_c00290{bottom:737.865000px;}
.y2_c00290{bottom:763.815000px;}
.y1_c00290{bottom:788.115000px;}
.h5_c00290{height:13.200074px;}
.h6_c00290{height:43.804688px;}
.h4_c00290{height:80.758301px;}
.h3_c00290{height:87.361816px;}
.h2_c00290{height:91.160156px;}
.h1_c00290{height:831.000000px;}
.h0_c00290{height:831.075000px;}
.w2_c00290{width:104.875500px;}
.w0_c00290{width:566.175000px;}
.w1_c00290{width:566.250000px;}
.x0_c00290{left:0.000000px;}
.xa_c00290{left:22.950000px;}
.x7_c00290{left:25.650000px;}
.x5_c00290{left:27.000000px;}
.x6_c00290{left:28.350000px;}
.x3_c00290{left:29.400000px;}
.x2_c00290{left:31.350000px;}
.x4_c00290{left:33.450000px;}
.x9_c00290{left:52.350000px;}
.x8_c00290{left:58.050000px;}
.x1_c00290{left:197.700000px;}
.xc_c00290{left:234.901749px;}
.xb_c00290{left:275.400000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls5_c00290{letter-spacing:0.000000pt;}
.ls3_c00290{letter-spacing:3.328000pt;}
.ls1_c00290{letter-spacing:5.333333pt;}
.ls6_c00290{letter-spacing:8.000000pt;}
.ls4_c00290{letter-spacing:9.066667pt;}
.ls2_c00290{letter-spacing:38.018667pt;}
.ls0_c00290{letter-spacing:477.485333pt;}
.ws0_c00290{word-spacing:-39.130667pt;}
.ws4_c00290{word-spacing:-34.666667pt;}
.ws3_c00290{word-spacing:-18.752000pt;}
.ws1_c00290{word-spacing:-14.781333pt;}
.ws5_c00290{word-spacing:0.000000pt;}
.ws2_c00290{word-spacing:1.165333pt;}
._19_c00290{margin-left:-35.144000pt;}
._24_c00290{margin-left:-18.386667pt;}
._3_c00290{margin-left:-12.752000pt;}
._4_c00290{margin-left:-11.136000pt;}
._1f_c00290{margin-left:-9.941333pt;}
._1b_c00290{margin-left:-8.034667pt;}
._2_c00290{margin-left:-6.440000pt;}
._a_c00290{margin-left:-4.682667pt;}
._9_c00290{margin-left:-3.184000pt;}
._8_c00290{margin-left:-2.112000pt;}
._12_c00290{margin-left:-0.893333pt;}
._0_c00290{width:1.349333pt;}
._1_c00290{width:2.453333pt;}
._6_c00290{width:3.776000pt;}
._11_c00290{width:4.784000pt;}
._7_c00290{width:5.682667pt;}
._1c_c00290{width:6.618667pt;}
._13_c00290{width:8.096000pt;}
._5_c00290{width:9.856000pt;}
._1a_c00290{width:10.840000pt;}
._e_c00290{width:11.960000pt;}
._d_c00290{width:13.704000pt;}
._1d_c00290{width:15.322667pt;}
._14_c00290{width:16.709333pt;}
._15_c00290{width:18.317333pt;}
._23_c00290{width:19.565333pt;}
._c_c00290{width:23.797333pt;}
._22_c00290{width:24.773333pt;}
._b_c00290{width:27.109333pt;}
._10_c00290{width:28.330667pt;}
._f_c00290{width:31.605333pt;}
._17_c00290{width:101.610667pt;}
._21_c00290{width:103.757333pt;}
._1e_c00290{width:117.045333pt;}
._18_c00290{width:121.280000pt;}
._16_c00290{width:123.837333pt;}
._20_c00290{width:192.858667pt;}
._25_c00290{width:497.290667pt;}
.fs3_c00290{font-size:42.666667pt;}
.fs2_c00290{font-size:58.666667pt;}
.fs0_c00290{font-size:61.333333pt;}
.fs1_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1e_c00290{bottom:2.760000pt;}
.y1d_c00290{bottom:6.425219pt;}
.y1c_c00290{bottom:57.080000pt;}
.y1b_c00290{bottom:79.480000pt;}
.y1a_c00290{bottom:102.280000pt;}
.y19_c00290{bottom:124.546667pt;}
.y18_c00290{bottom:168.946667pt;}
.y17_c00290{bottom:213.613333pt;}
.y16_c00290{bottom:235.880000pt;}
.y15_c00290{bottom:258.280000pt;}
.y14_c00290{bottom:280.813333pt;}
.y13_c00290{bottom:302.813333pt;}
.y12_c00290{bottom:324.413333pt;}
.y11_c00290{bottom:346.813333pt;}
.y10_c00290{bottom:369.080000pt;}
.yf_c00290{bottom:391.213333pt;}
.ye_c00290{bottom:413.480000pt;}
.yd_c00290{bottom:435.346667pt;}
.yc_c00290{bottom:457.480000pt;}
.yb_c00290{bottom:478.813333pt;}
.ya_c00290{bottom:501.080000pt;}
.y9_c00290{bottom:523.480000pt;}
.y8_c00290{bottom:545.213333pt;}
.y7_c00290{bottom:567.613333pt;}
.y6_c00290{bottom:589.613333pt;}
.y5_c00290{bottom:611.480000pt;}
.y4_c00290{bottom:633.880000pt;}
.y3_c00290{bottom:655.880000pt;}
.y2_c00290{bottom:678.946667pt;}
.y1_c00290{bottom:700.546667pt;}
.h5_c00290{height:11.733399pt;}
.h6_c00290{height:38.937500pt;}
.h4_c00290{height:71.785156pt;}
.h3_c00290{height:77.654948pt;}
.h2_c00290{height:81.031250pt;}
.h1_c00290{height:738.666667pt;}
.h0_c00290{height:738.733333pt;}
.w2_c00290{width:93.222667pt;}
.w0_c00290{width:503.266667pt;}
.w1_c00290{width:503.333333pt;}
.x0_c00290{left:0.000000pt;}
.xa_c00290{left:20.400000pt;}
.x7_c00290{left:22.800000pt;}
.x5_c00290{left:24.000000pt;}
.x6_c00290{left:25.200000pt;}
.x3_c00290{left:26.133333pt;}
.x2_c00290{left:27.866667pt;}
.x4_c00290{left:29.733333pt;}
.x9_c00290{left:46.533333pt;}
.x8_c00290{left:51.600000pt;}
.x1_c00290{left:175.733333pt;}
.xc_c00290{left:208.801554pt;}
.xb_c00290{left:244.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_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_b4a7d6fc2d5aa3b40aa768d4.woff2')format("woff");}.ff1_c00291{font-family:ff1_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:ff2_c00291;src:url('chunks/assets/font_8d2ca7c082f2d25efe2d2179.woff2')format("woff");}.ff2_c00291{font-family:ff2_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:ff3_c00291;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00291{font-family:ff3_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:ff4_c00291;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00291{font-family:ff4_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;}
.ls2_c00291{letter-spacing:6.000000px;}
.ls0_c00291{letter-spacing:11.850000px;}
.ls1_c00291{letter-spacing:26.955000px;}
.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;}
}
.ws1_c00291{word-spacing:-44.022000px;}
.ws2_c00291{word-spacing:-22.629000px;}
.ws0_c00291{word-spacing:-14.676000px;}
.ws3_c00291{word-spacing:0.000000px;}
._13_c00291{margin-left:-20.976000px;}
._14_c00291{margin-left:-18.561000px;}
._20_c00291{margin-left:-16.500000px;}
._1a_c00291{margin-left:-14.283000px;}
._0_c00291{margin-left:-10.488000px;}
._1e_c00291{margin-left:-9.108000px;}
._1_c00291{margin-left:-8.073000px;}
._18_c00291{margin-left:-6.762000px;}
._2_c00291{margin-left:-5.727000px;}
._7_c00291{margin-left:-4.002000px;}
._6_c00291{margin-left:-2.277000px;}
._8_c00291{margin-left:-1.035000px;}
._b_c00291{width:1.518000px;}
._d_c00291{width:2.898000px;}
._5_c00291{width:4.485000px;}
._4_c00291{width:6.555000px;}
._e_c00291{width:7.728000px;}
._9_c00291{width:9.867000px;}
._a_c00291{width:11.109000px;}
._16_c00291{width:12.732000px;}
._f_c00291{width:13.869000px;}
._12_c00291{width:15.870000px;}
._c_c00291{width:17.871000px;}
._10_c00291{width:19.596000px;}
._11_c00291{width:21.390000px;}
._1d_c00291{width:23.838000px;}
._1c_c00291{width:25.527000px;}
._19_c00291{width:27.735000px;}
._21_c00291{width:39.813000px;}
._1b_c00291{width:54.096000px;}
._17_c00291{width:68.034000px;}
._1f_c00291{width:93.426000px;}
._15_c00291{width:99.153000px;}
._3_c00291{width:132.756000px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(128,128,128);}
.fc0_c00291{color:rgb(0,0,0);}
.fs2_c00291{font-size:36.000000px;}
.fs1_c00291{font-size:45.000000px;}
.fs4_c00291{font-size:48.000000px;}
.fs3_c00291{font-size:66.000000px;}
.fs0_c00291{font-size:69.000000px;}
.y0_c00291{bottom:0.000000px;}
.y1f_c00291{bottom:3.105000px;}
.y1e_c00291{bottom:7.228363px;}
.y1d_c00291{bottom:57.750000px;}
.y1c_c00291{bottom:82.650000px;}
.y1b_c00291{bottom:108.450000px;}
.y1a_c00291{bottom:133.950000px;}
.y19_c00291{bottom:159.300000px;}
.y18_c00291{bottom:184.350000px;}
.y17_c00291{bottom:208.350000px;}
.y16_c00291{bottom:235.200000px;}
.y15_c00291{bottom:258.150000px;}
.y14_c00291{bottom:284.550000px;}
.y13_c00291{bottom:309.600000px;}
.y12_c00291{bottom:333.750000px;}
.y11_c00291{bottom:358.800000px;}
.y10_c00291{bottom:383.850000px;}
.yf_c00291{bottom:408.750000px;}
.ye_c00291{bottom:433.650000px;}
.yd_c00291{bottom:458.100000px;}
.yc_c00291{bottom:484.350000px;}
.yb_c00291{bottom:507.600000px;}
.ya_c00291{bottom:534.000000px;}
.y9_c00291{bottom:559.200000px;}
.y8_c00291{bottom:583.950000px;}
.y7_c00291{bottom:608.850000px;}
.y6_c00291{bottom:633.900000px;}
.y5_c00291{bottom:658.500000px;}
.y4_c00291{bottom:683.850000px;}
.y3_c00291{bottom:709.050000px;}
.y2_c00291{bottom:733.500000px;}
.y1_c00291{bottom:757.950000px;}
.h3_c00291{height:13.200074px;}
.h4_c00291{height:43.804688px;}
.h2_c00291{height:87.361816px;}
.h1_c00291{height:827.250000px;}
.h0_c00291{height:827.550000px;}
.w2_c00291{width:104.875500px;}
.w0_c00291{width:572.100000px;}
.w1_c00291{width:572.250000px;}
.x0_c00291{left:0.000000px;}
.x6_c00291{left:30.600000px;}
.x4_c00291{left:32.400000px;}
.xa_c00291{left:45.600000px;}
.x3_c00291{left:47.550000px;}
.x1_c00291{left:66.450000px;}
.x5_c00291{left:93.450000px;}
.x9_c00291{left:95.400000px;}
.x8_c00291{left:96.450000px;}
.x7_c00291{left:98.100000px;}
.x2_c00291{left:99.600000px;}
.xc_c00291{left:237.864258px;}
.xb_c00291{left:487.350000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls3_c00291{letter-spacing:0.000000pt;}
.ls2_c00291{letter-spacing:5.333333pt;}
.ls0_c00291{letter-spacing:10.533333pt;}
.ls1_c00291{letter-spacing:23.960000pt;}
.ws1_c00291{word-spacing:-39.130667pt;}
.ws2_c00291{word-spacing:-20.114667pt;}
.ws0_c00291{word-spacing:-13.045333pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._13_c00291{margin-left:-18.645333pt;}
._14_c00291{margin-left:-16.498667pt;}
._20_c00291{margin-left:-14.666667pt;}
._1a_c00291{margin-left:-12.696000pt;}
._0_c00291{margin-left:-9.322667pt;}
._1e_c00291{margin-left:-8.096000pt;}
._1_c00291{margin-left:-7.176000pt;}
._18_c00291{margin-left:-6.010667pt;}
._2_c00291{margin-left:-5.090667pt;}
._7_c00291{margin-left:-3.557333pt;}
._6_c00291{margin-left:-2.024000pt;}
._8_c00291{margin-left:-0.920000pt;}
._b_c00291{width:1.349333pt;}
._d_c00291{width:2.576000pt;}
._5_c00291{width:3.986667pt;}
._4_c00291{width:5.826667pt;}
._e_c00291{width:6.869333pt;}
._9_c00291{width:8.770667pt;}
._a_c00291{width:9.874667pt;}
._16_c00291{width:11.317333pt;}
._f_c00291{width:12.328000pt;}
._12_c00291{width:14.106667pt;}
._c_c00291{width:15.885333pt;}
._10_c00291{width:17.418667pt;}
._11_c00291{width:19.013333pt;}
._1d_c00291{width:21.189333pt;}
._1c_c00291{width:22.690667pt;}
._19_c00291{width:24.653333pt;}
._21_c00291{width:35.389333pt;}
._1b_c00291{width:48.085333pt;}
._17_c00291{width:60.474667pt;}
._1f_c00291{width:83.045333pt;}
._15_c00291{width:88.136000pt;}
._3_c00291{width:118.005333pt;}
.fs2_c00291{font-size:32.000000pt;}
.fs1_c00291{font-size:40.000000pt;}
.fs4_c00291{font-size:42.666667pt;}
.fs3_c00291{font-size:58.666667pt;}
.fs0_c00291{font-size:61.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y1f_c00291{bottom:2.760000pt;}
.y1e_c00291{bottom:6.425212pt;}
.y1d_c00291{bottom:51.333333pt;}
.y1c_c00291{bottom:73.466667pt;}
.y1b_c00291{bottom:96.400000pt;}
.y1a_c00291{bottom:119.066667pt;}
.y19_c00291{bottom:141.600000pt;}
.y18_c00291{bottom:163.866667pt;}
.y17_c00291{bottom:185.200000pt;}
.y16_c00291{bottom:209.066667pt;}
.y15_c00291{bottom:229.466667pt;}
.y14_c00291{bottom:252.933333pt;}
.y13_c00291{bottom:275.200000pt;}
.y12_c00291{bottom:296.666667pt;}
.y11_c00291{bottom:318.933333pt;}
.y10_c00291{bottom:341.200000pt;}
.yf_c00291{bottom:363.333333pt;}
.ye_c00291{bottom:385.466667pt;}
.yd_c00291{bottom:407.200000pt;}
.yc_c00291{bottom:430.533333pt;}
.yb_c00291{bottom:451.200000pt;}
.ya_c00291{bottom:474.666667pt;}
.y9_c00291{bottom:497.066667pt;}
.y8_c00291{bottom:519.066667pt;}
.y7_c00291{bottom:541.200000pt;}
.y6_c00291{bottom:563.466667pt;}
.y5_c00291{bottom:585.333333pt;}
.y4_c00291{bottom:607.866667pt;}
.y3_c00291{bottom:630.266667pt;}
.y2_c00291{bottom:652.000000pt;}
.y1_c00291{bottom:673.733333pt;}
.h3_c00291{height:11.733399pt;}
.h4_c00291{height:38.937500pt;}
.h2_c00291{height:77.654948pt;}
.h1_c00291{height:735.333333pt;}
.h0_c00291{height:735.600000pt;}
.w2_c00291{width:93.222667pt;}
.w0_c00291{width:508.533333pt;}
.w1_c00291{width:508.666667pt;}
.x0_c00291{left:0.000000pt;}
.x6_c00291{left:27.200000pt;}
.x4_c00291{left:28.800000pt;}
.xa_c00291{left:40.533333pt;}
.x3_c00291{left:42.266667pt;}
.x1_c00291{left:59.066667pt;}
.x5_c00291{left:83.066667pt;}
.x9_c00291{left:84.800000pt;}
.x8_c00291{left:85.733333pt;}
.x7_c00291{left:87.200000pt;}
.x2_c00291{left:88.533333pt;}
.xc_c00291{left:211.434896pt;}
.xb_c00291{left:433.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_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_5dd2cdb0f6cc8774dfb44088.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_52d8e7e0ebcc28b74eaa7341.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_35323ef17dd3f92c7c457cb6.woff2')format("woff");}.ff3_c00292{font-family:ff3_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:ff4_c00292;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00292{font-family:ff4_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;}
.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;}
.ls3_c00292{letter-spacing:0.000000px;}
.ls1_c00292{letter-spacing:6.000000px;}
.ls2_c00292{letter-spacing:11.925000px;}
.ls0_c00292{letter-spacing:18.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00292{word-spacing:-16.629000px;}
.ws2_c00292{word-spacing:-0.414000px;}
.ws0_c00292{word-spacing:-0.387000px;}
.ws5_c00292{word-spacing:0.000000px;}
.ws4_c00292{word-spacing:0.966000px;}
.ws3_c00292{word-spacing:4.278000px;}
._14_c00292{margin-left:-22.425000px;}
._20_c00292{margin-left:-18.285000px;}
._1f_c00292{margin-left:-14.163000px;}
._1d_c00292{margin-left:-12.489000px;}
._1b_c00292{margin-left:-10.971000px;}
._8_c00292{margin-left:-9.246000px;}
._6_c00292{margin-left:-7.797000px;}
._7_c00292{margin-left:-6.762000px;}
._1_c00292{margin-left:-4.761000px;}
._b_c00292{margin-left:-3.174000px;}
._5_c00292{margin-left:-2.139000px;}
._4_c00292{margin-left:-1.035000px;}
._0_c00292{width:1.518000px;}
._2_c00292{width:2.553000px;}
._f_c00292{width:4.002000px;}
._16_c00292{width:5.106000px;}
._e_c00292{width:6.348000px;}
._10_c00292{width:8.142000px;}
._c_c00292{width:10.557000px;}
._d_c00292{width:12.351000px;}
._18_c00292{width:13.524000px;}
._a_c00292{width:14.904000px;}
._1c_c00292{width:16.629000px;}
._9_c00292{width:17.664000px;}
._17_c00292{width:18.837000px;}
._12_c00292{width:20.010000px;}
._19_c00292{width:21.321000px;}
._22_c00292{width:24.702000px;}
._1e_c00292{width:26.496000px;}
._24_c00292{width:31.050000px;}
._23_c00292{width:33.465000px;}
._15_c00292{width:34.707000px;}
._1a_c00292{width:36.432000px;}
._21_c00292{width:43.332000px;}
._11_c00292{width:146.004000px;}
._13_c00292{width:209.622000px;}
._25_c00292{width:472.374000px;}
._3_c00292{width:533.814000px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(128,128,128);}
.fc0_c00292{color:rgb(0,0,0);}
.fs2_c00292{font-size:48.000000px;}
.fs1_c00292{font-size:66.000000px;}
.fs0_c00292{font-size:69.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1f_c00292{bottom:3.105000px;}
.y1e_c00292{bottom:7.228355px;}
.y1d_c00292{bottom:50.235000px;}
.y1c_c00292{bottom:100.785000px;}
.y1b_c00292{bottom:125.535000px;}
.y1a_c00292{bottom:151.185000px;}
.y19_c00292{bottom:176.085000px;}
.y18_c00292{bottom:201.135000px;}
.y17_c00292{bottom:226.485000px;}
.y16_c00292{bottom:251.385000px;}
.y15_c00292{bottom:275.985000px;}
.y14_c00292{bottom:301.635000px;}
.y13_c00292{bottom:326.685000px;}
.y12_c00292{bottom:350.985000px;}
.y11_c00292{bottom:376.335000px;}
.y10_c00292{bottom:400.935000px;}
.yf_c00292{bottom:426.135000px;}
.ye_c00292{bottom:450.885000px;}
.yd_c00292{bottom:475.185000px;}
.yc_c00292{bottom:499.785000px;}
.yb_c00292{bottom:524.085000px;}
.ya_c00292{bottom:550.485000px;}
.y9_c00292{bottom:573.735000px;}
.y8_c00292{bottom:599.085000px;}
.y7_c00292{bottom:623.985000px;}
.y6_c00292{bottom:648.885000px;}
.y5_c00292{bottom:673.935000px;}
.y4_c00292{bottom:698.985000px;}
.y3_c00292{bottom:723.285000px;}
.y2_c00292{bottom:748.935000px;}
.y1_c00292{bottom:773.835000px;}
.h4_c00292{height:13.200074px;}
.h5_c00292{height:43.804688px;}
.h3_c00292{height:80.758301px;}
.h2_c00292{height:87.361816px;}
.h1_c00292{height:807.750000px;}
.h0_c00292{height:807.825000px;}
.w1_c00292{width:104.875500px;}
.w0_c00292{width:549.750000px;}
.x0_c00292{left:0.000000px;}
.x7_c00292{left:32.100000px;}
.x6_c00292{left:33.150000px;}
.x5_c00292{left:34.500000px;}
.x3_c00292{left:36.750000px;}
.x2_c00292{left:38.100000px;}
.x4_c00292{left:58.650000px;}
.x1_c00292{left:201.450000px;}
.x9_c00292{left:226.689240px;}
.x8_c00292{left:280.500000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls3_c00292{letter-spacing:0.000000pt;}
.ls1_c00292{letter-spacing:5.333333pt;}
.ls2_c00292{letter-spacing:10.600000pt;}
.ls0_c00292{letter-spacing:16.000000pt;}
.ws1_c00292{word-spacing:-14.781333pt;}
.ws2_c00292{word-spacing:-0.368000pt;}
.ws0_c00292{word-spacing:-0.344000pt;}
.ws5_c00292{word-spacing:0.000000pt;}
.ws4_c00292{word-spacing:0.858667pt;}
.ws3_c00292{word-spacing:3.802667pt;}
._14_c00292{margin-left:-19.933333pt;}
._20_c00292{margin-left:-16.253333pt;}
._1f_c00292{margin-left:-12.589333pt;}
._1d_c00292{margin-left:-11.101333pt;}
._1b_c00292{margin-left:-9.752000pt;}
._8_c00292{margin-left:-8.218667pt;}
._6_c00292{margin-left:-6.930667pt;}
._7_c00292{margin-left:-6.010667pt;}
._1_c00292{margin-left:-4.232000pt;}
._b_c00292{margin-left:-2.821333pt;}
._5_c00292{margin-left:-1.901333pt;}
._4_c00292{margin-left:-0.920000pt;}
._0_c00292{width:1.349333pt;}
._2_c00292{width:2.269333pt;}
._f_c00292{width:3.557333pt;}
._16_c00292{width:4.538667pt;}
._e_c00292{width:5.642667pt;}
._10_c00292{width:7.237333pt;}
._c_c00292{width:9.384000pt;}
._d_c00292{width:10.978667pt;}
._18_c00292{width:12.021333pt;}
._a_c00292{width:13.248000pt;}
._1c_c00292{width:14.781333pt;}
._9_c00292{width:15.701333pt;}
._17_c00292{width:16.744000pt;}
._12_c00292{width:17.786667pt;}
._19_c00292{width:18.952000pt;}
._22_c00292{width:21.957333pt;}
._1e_c00292{width:23.552000pt;}
._24_c00292{width:27.600000pt;}
._23_c00292{width:29.746667pt;}
._15_c00292{width:30.850667pt;}
._1a_c00292{width:32.384000pt;}
._21_c00292{width:38.517333pt;}
._11_c00292{width:129.781333pt;}
._13_c00292{width:186.330667pt;}
._25_c00292{width:419.888000pt;}
._3_c00292{width:474.501333pt;}
.fs2_c00292{font-size:42.666667pt;}
.fs1_c00292{font-size:58.666667pt;}
.fs0_c00292{font-size:61.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y1f_c00292{bottom:2.760000pt;}
.y1e_c00292{bottom:6.425204pt;}
.y1d_c00292{bottom:44.653333pt;}
.y1c_c00292{bottom:89.586667pt;}
.y1b_c00292{bottom:111.586667pt;}
.y1a_c00292{bottom:134.386667pt;}
.y19_c00292{bottom:156.520000pt;}
.y18_c00292{bottom:178.786667pt;}
.y17_c00292{bottom:201.320000pt;}
.y16_c00292{bottom:223.453333pt;}
.y15_c00292{bottom:245.320000pt;}
.y14_c00292{bottom:268.120000pt;}
.y13_c00292{bottom:290.386667pt;}
.y12_c00292{bottom:311.986667pt;}
.y11_c00292{bottom:334.520000pt;}
.y10_c00292{bottom:356.386667pt;}
.yf_c00292{bottom:378.786667pt;}
.ye_c00292{bottom:400.786667pt;}
.yd_c00292{bottom:422.386667pt;}
.yc_c00292{bottom:444.253333pt;}
.yb_c00292{bottom:465.853333pt;}
.ya_c00292{bottom:489.320000pt;}
.y9_c00292{bottom:509.986667pt;}
.y8_c00292{bottom:532.520000pt;}
.y7_c00292{bottom:554.653333pt;}
.y6_c00292{bottom:576.786667pt;}
.y5_c00292{bottom:599.053333pt;}
.y4_c00292{bottom:621.320000pt;}
.y3_c00292{bottom:642.920000pt;}
.y2_c00292{bottom:665.720000pt;}
.y1_c00292{bottom:687.853333pt;}
.h4_c00292{height:11.733399pt;}
.h5_c00292{height:38.937500pt;}
.h3_c00292{height:71.785156pt;}
.h2_c00292{height:77.654948pt;}
.h1_c00292{height:718.000000pt;}
.h0_c00292{height:718.066667pt;}
.w1_c00292{width:93.222667pt;}
.w0_c00292{width:488.666667pt;}
.x0_c00292{left:0.000000pt;}
.x7_c00292{left:28.533333pt;}
.x6_c00292{left:29.466667pt;}
.x5_c00292{left:30.666667pt;}
.x3_c00292{left:32.666667pt;}
.x2_c00292{left:33.866667pt;}
.x4_c00292{left:52.133333pt;}
.x1_c00292{left:179.066667pt;}
.x9_c00292{left:201.501546pt;}
.x8_c00292{left:249.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_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_0fcc664f20380a0662a81f86.woff2')format("woff");}.ff1_c00293{font-family:ff1_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:ff2_c00293;src:url('chunks/assets/font_f4b6d583d621c19f419b7d7f.woff2')format("woff");}.ff2_c00293{font-family:ff2_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:ff3_c00293;src:url('chunks/assets/font_1e3aa5178f1ed915abfc73e7.woff2')format("woff");}.ff3_c00293{font-family:ff3_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:ff4_c00293;src:url('chunks/assets/font_71621646d09e7ede499e2bb3.woff2')format("woff");}.ff4_c00293{font-family:ff4_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:ff5_c00293;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00293{font-family:ff5_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;}
.ls4_c00293{letter-spacing:-6.000000px;}
.ls2_c00293{letter-spacing:0.000000px;}
.ls3_c00293{letter-spacing:6.000000px;}
.ls0_c00293{letter-spacing:6.144000px;}
.ls1_c00293{letter-spacing:33.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-55.500000px;}
.ws1_c00293{word-spacing:-23.718000px;}
.ws2_c00293{word-spacing:0.000000px;}
._16_c00293{margin-left:-14.508000px;}
._17_c00293{margin-left:-9.009000px;}
._6_c00293{margin-left:-5.022000px;}
._5_c00293{margin-left:-3.327000px;}
._0_c00293{margin-left:-1.620000px;}
._3_c00293{width:1.428000px;}
._2_c00293{width:2.499000px;}
._7_c00293{width:3.675000px;}
._a_c00293{width:5.370000px;}
._e_c00293{width:6.807000px;}
._4_c00293{width:8.619000px;}
._d_c00293{width:10.005000px;}
._b_c00293{width:11.934000px;}
._15_c00293{width:13.041000px;}
._c_c00293{width:14.739000px;}
._8_c00293{width:16.536000px;}
._9_c00293{width:17.595000px;}
._f_c00293{width:19.512000px;}
._13_c00293{width:21.597000px;}
._12_c00293{width:23.667000px;}
._11_c00293{width:26.013000px;}
._10_c00293{width:28.125000px;}
._14_c00293{width:32.568000px;}
._1_c00293{width:60.537000px;}
.fc2_c00293{color:transparent;}
.fc1_c00293{color:rgb(128,128,128);}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:45.000000px;}
.fs1_c00293{font-size:48.000000px;}
.fs2_c00293{font-size:51.000000px;}
.fs3_c00293{font-size:54.000000px;}
.fs4_c00293{font-size:69.000000px;}
.fs5_c00293{font-size:117.000000px;}
.y0_c00293{bottom:0.000000px;}
.yb_c00293{bottom:3.105000px;}
.ya_c00293{bottom:7.228363px;}
.y9_c00293{bottom:56.100000px;}
.y8_c00293{bottom:501.150000px;}
.y7_c00293{bottom:617.700000px;}
.y6_c00293{bottom:636.300000px;}
.y5_c00293{bottom:654.750000px;}
.y4_c00293{bottom:670.950000px;}
.y3_c00293{bottom:689.250000px;}
.y2_c00293{bottom:707.400000px;}
.y1_c00293{bottom:743.550000px;}
.h7_c00293{height:13.200074px;}
.h8_c00293{height:43.804688px;}
.h2_c00293{height:44.143066px;}
.h3_c00293{height:64.571777px;}
.h4_c00293{height:68.370117px;}
.h5_c00293{height:87.361816px;}
.h6_c00293{height:148.135254px;}
.h0_c00293{height:818.100000px;}
.h1_c00293{height:818.250000px;}
.w2_c00293{width:104.875500px;}
.w0_c00293{width:565.350000px;}
.w1_c00293{width:565.500000px;}
.x0_c00293{left:0.000000px;}
.x3_c00293{left:93.450000px;}
.x4_c00293{left:111.750000px;}
.x2_c00293{left:113.100000px;}
.x5_c00293{left:160.050000px;}
.x7_c00293{left:234.489258px;}
.x1_c00293{left:237.150000px;}
.x6_c00293{left:511.050000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls4_c00293{letter-spacing:-5.333333pt;}
.ls2_c00293{letter-spacing:0.000000pt;}
.ls3_c00293{letter-spacing:5.333333pt;}
.ls0_c00293{letter-spacing:5.461333pt;}
.ls1_c00293{letter-spacing:29.333333pt;}
.ws0_c00293{word-spacing:-49.333333pt;}
.ws1_c00293{word-spacing:-21.082667pt;}
.ws2_c00293{word-spacing:0.000000pt;}
._16_c00293{margin-left:-12.896000pt;}
._17_c00293{margin-left:-8.008000pt;}
._6_c00293{margin-left:-4.464000pt;}
._5_c00293{margin-left:-2.957333pt;}
._0_c00293{margin-left:-1.440000pt;}
._3_c00293{width:1.269333pt;}
._2_c00293{width:2.221333pt;}
._7_c00293{width:3.266667pt;}
._a_c00293{width:4.773333pt;}
._e_c00293{width:6.050667pt;}
._4_c00293{width:7.661333pt;}
._d_c00293{width:8.893333pt;}
._b_c00293{width:10.608000pt;}
._15_c00293{width:11.592000pt;}
._c_c00293{width:13.101333pt;}
._8_c00293{width:14.698667pt;}
._9_c00293{width:15.640000pt;}
._f_c00293{width:17.344000pt;}
._13_c00293{width:19.197333pt;}
._12_c00293{width:21.037333pt;}
._11_c00293{width:23.122667pt;}
._10_c00293{width:25.000000pt;}
._14_c00293{width:28.949333pt;}
._1_c00293{width:53.810667pt;}
.fs0_c00293{font-size:40.000000pt;}
.fs1_c00293{font-size:42.666667pt;}
.fs2_c00293{font-size:45.333333pt;}
.fs3_c00293{font-size:48.000000pt;}
.fs4_c00293{font-size:61.333333pt;}
.fs5_c00293{font-size:104.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.yb_c00293{bottom:2.760000pt;}
.ya_c00293{bottom:6.425212pt;}
.y9_c00293{bottom:49.866667pt;}
.y8_c00293{bottom:445.466667pt;}
.y7_c00293{bottom:549.066667pt;}
.y6_c00293{bottom:565.600000pt;}
.y5_c00293{bottom:582.000000pt;}
.y4_c00293{bottom:596.400000pt;}
.y3_c00293{bottom:612.666667pt;}
.y2_c00293{bottom:628.800000pt;}
.y1_c00293{bottom:660.933333pt;}
.h7_c00293{height:11.733399pt;}
.h8_c00293{height:38.937500pt;}
.h2_c00293{height:39.238281pt;}
.h3_c00293{height:57.397135pt;}
.h4_c00293{height:60.773438pt;}
.h5_c00293{height:77.654948pt;}
.h6_c00293{height:131.675781pt;}
.h0_c00293{height:727.200000pt;}
.h1_c00293{height:727.333333pt;}
.w2_c00293{width:93.222667pt;}
.w0_c00293{width:502.533333pt;}
.w1_c00293{width:502.666667pt;}
.x0_c00293{left:0.000000pt;}
.x3_c00293{left:83.066667pt;}
.x4_c00293{left:99.333333pt;}
.x2_c00293{left:100.533333pt;}
.x5_c00293{left:142.266667pt;}
.x7_c00293{left:208.434896pt;}
.x1_c00293{left:210.800000pt;}
.x6_c00293{left:454.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_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_510a5604aeb2839e5a765c40.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.437000;font-style:normal;font-weight:normal;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_45e3639379cda79ef166d753.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.568848;font-style:normal;font-weight:normal;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_085323bf4e634a0ca028896d.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.568848;font-style:normal;font-weight:normal;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_98dadf564126de77afa56f1a.woff2')format("woff");}.ff4_c00294{font-family:ff4_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:ff5_c00294;src:url('chunks/assets/font_60f7dcbcb72726222f8a5906.woff2')format("woff");}.ff5_c00294{font-family:ff5_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:ff6_c00294;src:url('chunks/assets/font_bec7d92fc481c595196ef14e.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00294;src:url('chunks/assets/font_0182f72c45a77160a42b5758.woff2')format("woff");}.ff7_c00294{font-family:ff7_c00294;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00294;src:url('chunks/assets/font_85b10320767e2623065a2b19.woff2')format("woff");}.ff8_c00294{font-family:ff8_c00294;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_c00294;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00294{font-family:ff9_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;}
.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;}
.ls3_c00294{letter-spacing:0.000000px;}
.ls2_c00294{letter-spacing:6.000000px;}
.ls0_c00294{letter-spacing:20.100000px;}
.ls1_c00294{letter-spacing:27.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:-107.523000px;}
.ws2_c00294{word-spacing:-19.182000px;}
.ws1_c00294{word-spacing:-18.798000px;}
.ws3_c00294{word-spacing:-16.629000px;}
.ws4_c00294{word-spacing:0.000000px;}
._1f_c00294{margin-left:-31.671000px;}
._18_c00294{margin-left:-20.262000px;}
._17_c00294{margin-left:-17.802000px;}
._1b_c00294{margin-left:-15.459000px;}
._f_c00294{margin-left:-14.382000px;}
._1a_c00294{margin-left:-13.287000px;}
._13_c00294{margin-left:-12.042000px;}
._e_c00294{margin-left:-10.173000px;}
._d_c00294{margin-left:-9.027000px;}
._11_c00294{margin-left:-7.188000px;}
._12_c00294{margin-left:-5.937000px;}
._10_c00294{margin-left:-4.869000px;}
._14_c00294{margin-left:-3.858000px;}
._15_c00294{margin-left:-1.857000px;}
._19_c00294{width:1.659000px;}
._b_c00294{width:2.796000px;}
._1c_c00294{width:3.924000px;}
._1e_c00294{width:4.992000px;}
._a_c00294{width:6.072000px;}
._1_c00294{width:7.452000px;}
._0_c00294{width:9.315000px;}
._9_c00294{width:10.350000px;}
._3_c00294{width:11.385000px;}
._2_c00294{width:12.489000px;}
._6_c00294{width:13.938000px;}
._8_c00294{width:15.801000px;}
._1d_c00294{width:17.013000px;}
._7_c00294{width:18.561000px;}
._16_c00294{width:22.860000px;}
._4_c00294{width:28.359000px;}
._5_c00294{width:34.431000px;}
._c_c00294{width:48.906000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(128,128,128);}
.fc0_c00294{color:rgb(0,0,0);}
.fs6_c00294{font-size:48.000000px;}
.fs3_c00294{font-size:57.000000px;}
.fs5_c00294{font-size:63.000000px;}
.fs2_c00294{font-size:66.000000px;}
.fs1_c00294{font-size:69.000000px;}
.fs4_c00294{font-size:78.000000px;}
.fs0_c00294{font-size:207.000000px;}
.y0_c00294{bottom:0.000000px;}
.y18_c00294{bottom:3.105000px;}
.y17_c00294{bottom:7.228363px;}
.y16_c00294{bottom:62.100000px;}
.y15_c00294{bottom:86.100000px;}
.y14_c00294{bottom:111.750000px;}
.y13_c00294{bottom:136.650000px;}
.y12_c00294{bottom:161.700000px;}
.y11_c00294{bottom:186.600000px;}
.y10_c00294{bottom:212.400000px;}
.yf_c00294{bottom:237.900000px;}
.ye_c00294{bottom:263.250000px;}
.yd_c00294{bottom:288.000000px;}
.yc_c00294{bottom:313.200000px;}
.yb_c00294{bottom:337.950000px;}
.ya_c00294{bottom:363.600000px;}
.y9_c00294{bottom:388.500000px;}
.y8_c00294{bottom:413.850000px;}
.y7_c00294{bottom:438.750000px;}
.y6_c00294{bottom:464.100000px;}
.y5_c00294{bottom:489.000000px;}
.y4_c00294{bottom:513.750000px;}
.y3_c00294{bottom:559.950000px;}
.y2_c00294{bottom:586.650000px;}
.y1_c00294{bottom:622.650000px;}
.h7_c00294{height:13.200074px;}
.h8_c00294{height:43.804688px;}
.h6_c00294{height:80.758301px;}
.h3_c00294{height:83.563477px;}
.h2_c00294{height:87.361816px;}
.h5_c00294{height:91.291992px;}
.h4_c00294{height:98.756836px;}
.h1_c00294{height:216.936000px;}
.h0_c00294{height:823.500000px;}
.w2_c00294{width:104.875500px;}
.w1_c00294{width:560.250000px;}
.w0_c00294{width:560.550000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:43.500000px;}
.x9_c00294{left:44.850000px;}
.x1_c00294{left:120.450000px;}
.x3_c00294{left:169.800000px;}
.x4_c00294{left:192.150000px;}
.x6_c00294{left:208.950000px;}
.x5_c00294{left:210.300000px;}
.x8_c00294{left:211.650000px;}
.x7_c00294{left:213.000000px;}
.xb_c00294{left:232.089249px;}
.xa_c00294{left:441.450000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls3_c00294{letter-spacing:0.000000pt;}
.ls2_c00294{letter-spacing:5.333333pt;}
.ls0_c00294{letter-spacing:17.866667pt;}
.ls1_c00294{letter-spacing:24.000000pt;}
.ws0_c00294{word-spacing:-95.576000pt;}
.ws2_c00294{word-spacing:-17.050667pt;}
.ws1_c00294{word-spacing:-16.709333pt;}
.ws3_c00294{word-spacing:-14.781333pt;}
.ws4_c00294{word-spacing:0.000000pt;}
._1f_c00294{margin-left:-28.152000pt;}
._18_c00294{margin-left:-18.010667pt;}
._17_c00294{margin-left:-15.824000pt;}
._1b_c00294{margin-left:-13.741333pt;}
._f_c00294{margin-left:-12.784000pt;}
._1a_c00294{margin-left:-11.810667pt;}
._13_c00294{margin-left:-10.704000pt;}
._e_c00294{margin-left:-9.042667pt;}
._d_c00294{margin-left:-8.024000pt;}
._11_c00294{margin-left:-6.389333pt;}
._12_c00294{margin-left:-5.277333pt;}
._10_c00294{margin-left:-4.328000pt;}
._14_c00294{margin-left:-3.429333pt;}
._15_c00294{margin-left:-1.650667pt;}
._19_c00294{width:1.474667pt;}
._b_c00294{width:2.485333pt;}
._1c_c00294{width:3.488000pt;}
._1e_c00294{width:4.437333pt;}
._a_c00294{width:5.397333pt;}
._1_c00294{width:6.624000pt;}
._0_c00294{width:8.280000pt;}
._9_c00294{width:9.200000pt;}
._3_c00294{width:10.120000pt;}
._2_c00294{width:11.101333pt;}
._6_c00294{width:12.389333pt;}
._8_c00294{width:14.045333pt;}
._1d_c00294{width:15.122667pt;}
._7_c00294{width:16.498667pt;}
._16_c00294{width:20.320000pt;}
._4_c00294{width:25.208000pt;}
._5_c00294{width:30.605333pt;}
._c_c00294{width:43.472000pt;}
.fs6_c00294{font-size:42.666667pt;}
.fs3_c00294{font-size:50.666667pt;}
.fs5_c00294{font-size:56.000000pt;}
.fs2_c00294{font-size:58.666667pt;}
.fs1_c00294{font-size:61.333333pt;}
.fs4_c00294{font-size:69.333333pt;}
.fs0_c00294{font-size:184.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y18_c00294{bottom:2.760000pt;}
.y17_c00294{bottom:6.425212pt;}
.y16_c00294{bottom:55.200000pt;}
.y15_c00294{bottom:76.533333pt;}
.y14_c00294{bottom:99.333333pt;}
.y13_c00294{bottom:121.466667pt;}
.y12_c00294{bottom:143.733333pt;}
.y11_c00294{bottom:165.866667pt;}
.y10_c00294{bottom:188.800000pt;}
.yf_c00294{bottom:211.466667pt;}
.ye_c00294{bottom:234.000000pt;}
.yd_c00294{bottom:256.000000pt;}
.yc_c00294{bottom:278.400000pt;}
.yb_c00294{bottom:300.400000pt;}
.ya_c00294{bottom:323.200000pt;}
.y9_c00294{bottom:345.333333pt;}
.y8_c00294{bottom:367.866667pt;}
.y7_c00294{bottom:390.000000pt;}
.y6_c00294{bottom:412.533333pt;}
.y5_c00294{bottom:434.666667pt;}
.y4_c00294{bottom:456.666667pt;}
.y3_c00294{bottom:497.733333pt;}
.y2_c00294{bottom:521.466667pt;}
.y1_c00294{bottom:553.466667pt;}
.h7_c00294{height:11.733399pt;}
.h8_c00294{height:38.937500pt;}
.h6_c00294{height:71.785156pt;}
.h3_c00294{height:74.278646pt;}
.h2_c00294{height:77.654948pt;}
.h5_c00294{height:81.148438pt;}
.h4_c00294{height:87.783854pt;}
.h1_c00294{height:192.832000pt;}
.h0_c00294{height:732.000000pt;}
.w2_c00294{width:93.222667pt;}
.w1_c00294{width:498.000000pt;}
.w0_c00294{width:498.266667pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:38.666667pt;}
.x9_c00294{left:39.866667pt;}
.x1_c00294{left:107.066667pt;}
.x3_c00294{left:150.933333pt;}
.x4_c00294{left:170.800000pt;}
.x6_c00294{left:185.733333pt;}
.x5_c00294{left:186.933333pt;}
.x8_c00294{left:188.133333pt;}
.x7_c00294{left:189.333333pt;}
.xb_c00294{left:206.301554pt;}
.xa_c00294{left:392.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efa358508737bb3eb36cc80f.woff2')format("woff");}.ff1_c00295{font-family:ff1_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:ff2_c00295;src:url('chunks/assets/font_fe837e64d8bccf33c2b8064c.woff2')format("woff");}.ff2_c00295{font-family:ff2_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:ff3_c00295;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00295{font-family:ff4_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;}
.ls3_c00295{letter-spacing:0.000000px;}
.ls5_c00295{letter-spacing:3.000000px;}
.ls1_c00295{letter-spacing:6.000000px;}
.ls0_c00295{letter-spacing:7.200000px;}
.ls4_c00295{letter-spacing:24.000000px;}
.ls2_c00295{letter-spacing:27.771000px;}
.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;}
}
.ws1_c00295{word-spacing:-40.629000px;}
.ws2_c00295{word-spacing:-22.629000px;}
.ws0_c00295{word-spacing:-16.629000px;}
.ws3_c00295{word-spacing:0.000000px;}
._17_c00295{margin-left:-70.518000px;}
._25_c00295{margin-left:-17.085000px;}
._1c_c00295{margin-left:-14.766000px;}
._b_c00295{margin-left:-13.248000px;}
._1d_c00295{margin-left:-11.523000px;}
._20_c00295{margin-left:-9.909000px;}
._15_c00295{margin-left:-8.004000px;}
._d_c00295{margin-left:-6.996000px;}
._3_c00295{margin-left:-4.968000px;}
._4_c00295{margin-left:-3.381000px;}
._0_c00295{margin-left:-1.449000px;}
._2_c00295{width:1.035000px;}
._1_c00295{width:2.967000px;}
._6_c00295{width:4.761000px;}
._c_c00295{width:5.796000px;}
._5_c00295{width:7.038000px;}
._22_c00295{width:8.238000px;}
._7_c00295{width:9.246000px;}
._24_c00295{width:10.461000px;}
._9_c00295{width:12.006000px;}
._f_c00295{width:14.007000px;}
._1e_c00295{width:15.249000px;}
._21_c00295{width:17.457000px;}
._10_c00295{width:18.699000px;}
._8_c00295{width:20.286000px;}
._e_c00295{width:22.632000px;}
._13_c00295{width:25.254000px;}
._12_c00295{width:27.876000px;}
._11_c00295{width:31.395000px;}
._1b_c00295{width:70.752000px;}
._19_c00295{width:79.143000px;}
._27_c00295{width:82.047000px;}
._14_c00295{width:86.691000px;}
._16_c00295{width:87.837000px;}
._1f_c00295{width:105.363000px;}
._1a_c00295{width:167.847000px;}
._26_c00295{width:173.121000px;}
._a_c00295{width:191.682000px;}
._23_c00295{width:194.349000px;}
._18_c00295{width:318.504000px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(128,128,128);}
.fc0_c00295{color:rgb(0,0,0);}
.fs2_c00295{font-size:45.000000px;}
.fs3_c00295{font-size:48.000000px;}
.fs1_c00295{font-size:66.000000px;}
.fs0_c00295{font-size:69.000000px;}
.y0_c00295{bottom:0.000000px;}
.y1e_c00295{bottom:3.105000px;}
.y1d_c00295{bottom:7.228363px;}
.y1c_c00295{bottom:53.400000px;}
.y1b_c00295{bottom:76.650000px;}
.y1a_c00295{bottom:102.300000px;}
.y19_c00295{bottom:127.950000px;}
.y18_c00295{bottom:153.000000px;}
.y17_c00295{bottom:178.650000px;}
.y16_c00295{bottom:204.150000px;}
.y15_c00295{bottom:228.600000px;}
.y14_c00295{bottom:254.250000px;}
.y13_c00295{bottom:279.150000px;}
.y12_c00295{bottom:304.200000px;}
.y11_c00295{bottom:328.800000px;}
.y10_c00295{bottom:353.700000px;}
.yf_c00295{bottom:378.450000px;}
.ye_c00295{bottom:402.750000px;}
.yd_c00295{bottom:428.250000px;}
.yc_c00295{bottom:453.600000px;}
.yb_c00295{bottom:478.350000px;}
.ya_c00295{bottom:503.550000px;}
.y9_c00295{bottom:528.600000px;}
.y8_c00295{bottom:553.500000px;}
.y7_c00295{bottom:603.900000px;}
.y6_c00295{bottom:653.850000px;}
.y5_c00295{bottom:679.050000px;}
.y4_c00295{bottom:704.100000px;}
.y3_c00295{bottom:729.450000px;}
.y2_c00295{bottom:754.650000px;}
.y1_c00295{bottom:780.000000px;}
.h4_c00295{height:13.200074px;}
.h5_c00295{height:43.804688px;}
.h3_c00295{height:80.758301px;}
.h2_c00295{height:87.361816px;}
.h1_c00295{height:827.250000px;}
.h0_c00295{height:827.550000px;}
.w2_c00295{width:104.875500px;}
.w0_c00295{width:572.100000px;}
.w1_c00295{width:572.250000px;}
.x0_c00295{left:0.000000px;}
.x9_c00295{left:24.300000px;}
.x7_c00295{left:25.650000px;}
.x6_c00295{left:29.400000px;}
.xa_c00295{left:87.000000px;}
.x3_c00295{left:89.700000px;}
.x2_c00295{left:90.900000px;}
.xb_c00295{left:114.300000px;}
.x5_c00295{left:117.000000px;}
.x8_c00295{left:153.150000px;}
.x4_c00295{left:201.150000px;}
.xd_c00295{left:237.864258px;}
.x1_c00295{left:243.300000px;}
.xc_c00295{left:490.650000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls3_c00295{letter-spacing:0.000000pt;}
.ls5_c00295{letter-spacing:2.666667pt;}
.ls1_c00295{letter-spacing:5.333333pt;}
.ls0_c00295{letter-spacing:6.400000pt;}
.ls4_c00295{letter-spacing:21.333333pt;}
.ls2_c00295{letter-spacing:24.685333pt;}
.ws1_c00295{word-spacing:-36.114667pt;}
.ws2_c00295{word-spacing:-20.114667pt;}
.ws0_c00295{word-spacing:-14.781333pt;}
.ws3_c00295{word-spacing:0.000000pt;}
._17_c00295{margin-left:-62.682667pt;}
._25_c00295{margin-left:-15.186667pt;}
._1c_c00295{margin-left:-13.125333pt;}
._b_c00295{margin-left:-11.776000pt;}
._1d_c00295{margin-left:-10.242667pt;}
._20_c00295{margin-left:-8.808000pt;}
._15_c00295{margin-left:-7.114667pt;}
._d_c00295{margin-left:-6.218667pt;}
._3_c00295{margin-left:-4.416000pt;}
._4_c00295{margin-left:-3.005333pt;}
._0_c00295{margin-left:-1.288000pt;}
._2_c00295{width:0.920000pt;}
._1_c00295{width:2.637333pt;}
._6_c00295{width:4.232000pt;}
._c_c00295{width:5.152000pt;}
._5_c00295{width:6.256000pt;}
._22_c00295{width:7.322667pt;}
._7_c00295{width:8.218667pt;}
._24_c00295{width:9.298667pt;}
._9_c00295{width:10.672000pt;}
._f_c00295{width:12.450667pt;}
._1e_c00295{width:13.554667pt;}
._21_c00295{width:15.517333pt;}
._10_c00295{width:16.621333pt;}
._8_c00295{width:18.032000pt;}
._e_c00295{width:20.117333pt;}
._13_c00295{width:22.448000pt;}
._12_c00295{width:24.778667pt;}
._11_c00295{width:27.906667pt;}
._1b_c00295{width:62.890667pt;}
._19_c00295{width:70.349333pt;}
._27_c00295{width:72.930667pt;}
._14_c00295{width:77.058667pt;}
._16_c00295{width:78.077333pt;}
._1f_c00295{width:93.656000pt;}
._1a_c00295{width:149.197333pt;}
._26_c00295{width:153.885333pt;}
._a_c00295{width:170.384000pt;}
._23_c00295{width:172.754667pt;}
._18_c00295{width:283.114667pt;}
.fs2_c00295{font-size:40.000000pt;}
.fs3_c00295{font-size:42.666667pt;}
.fs1_c00295{font-size:58.666667pt;}
.fs0_c00295{font-size:61.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y1e_c00295{bottom:2.760000pt;}
.y1d_c00295{bottom:6.425212pt;}
.y1c_c00295{bottom:47.466667pt;}
.y1b_c00295{bottom:68.133333pt;}
.y1a_c00295{bottom:90.933333pt;}
.y19_c00295{bottom:113.733333pt;}
.y18_c00295{bottom:136.000000pt;}
.y17_c00295{bottom:158.800000pt;}
.y16_c00295{bottom:181.466667pt;}
.y15_c00295{bottom:203.200000pt;}
.y14_c00295{bottom:226.000000pt;}
.y13_c00295{bottom:248.133333pt;}
.y12_c00295{bottom:270.400000pt;}
.y11_c00295{bottom:292.266667pt;}
.y10_c00295{bottom:314.400000pt;}
.yf_c00295{bottom:336.400000pt;}
.ye_c00295{bottom:358.000000pt;}
.yd_c00295{bottom:380.666667pt;}
.yc_c00295{bottom:403.200000pt;}
.yb_c00295{bottom:425.200000pt;}
.ya_c00295{bottom:447.600000pt;}
.y9_c00295{bottom:469.866667pt;}
.y8_c00295{bottom:492.000000pt;}
.y7_c00295{bottom:536.800000pt;}
.y6_c00295{bottom:581.200000pt;}
.y5_c00295{bottom:603.600000pt;}
.y4_c00295{bottom:625.866667pt;}
.y3_c00295{bottom:648.400000pt;}
.y2_c00295{bottom:670.800000pt;}
.y1_c00295{bottom:693.333333pt;}
.h4_c00295{height:11.733399pt;}
.h5_c00295{height:38.937500pt;}
.h3_c00295{height:71.785156pt;}
.h2_c00295{height:77.654948pt;}
.h1_c00295{height:735.333333pt;}
.h0_c00295{height:735.600000pt;}
.w2_c00295{width:93.222667pt;}
.w0_c00295{width:508.533333pt;}
.w1_c00295{width:508.666667pt;}
.x0_c00295{left:0.000000pt;}
.x9_c00295{left:21.600000pt;}
.x7_c00295{left:22.800000pt;}
.x6_c00295{left:26.133333pt;}
.xa_c00295{left:77.333333pt;}
.x3_c00295{left:79.733333pt;}
.x2_c00295{left:80.800000pt;}
.xb_c00295{left:101.600000pt;}
.x5_c00295{left:104.000000pt;}
.x8_c00295{left:136.133333pt;}
.x4_c00295{left:178.800000pt;}
.xd_c00295{left:211.434896pt;}
.x1_c00295{left:216.266667pt;}
.xc_c00295{left:436.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_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_31ade322395ea845e94df4cc.woff2')format("woff");}.ff1_c00296{font-family:ff1_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:ff2_c00296;src:url('chunks/assets/font_f768894583adaf3a313f6eb0.woff2')format("woff");}.ff2_c00296{font-family:ff2_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:ff3_c00296;src:url('chunks/assets/font_efd7637e814e821ab430fc04.woff2')format("woff");}.ff3_c00296{font-family:ff3_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:ff4_c00296;src:url('chunks/assets/font_b64b7a1e524643871dbf116e.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;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_c00296;src:url('chunks/assets/font_177172b79f8b2f7cdc133453.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;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_c00296;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00296{font-family:ff6_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);}
.v1_c00296{vertical-align:-91.800000px;}
.v0_c00296{vertical-align:0.000000px;}
.ls4_c00296{letter-spacing:-6.000000px;}
.ls3_c00296{letter-spacing:0.000000px;}
.ls2_c00296{letter-spacing:6.000000px;}
.ls1_c00296{letter-spacing:16.494000px;}
.ls0_c00296{letter-spacing:82.110000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-45.000000px;}
.ws4_c00296{word-spacing:-22.629000px;}
.ws3_c00296{word-spacing:-16.629000px;}
.ws2_c00296{word-spacing:-9.906000px;}
.ws1_c00296{word-spacing:-0.132000px;}
.ws5_c00296{word-spacing:0.000000px;}
._33_c00296{margin-left:-37.944000px;}
._31_c00296{margin-left:-34.773000px;}
._30_c00296{margin-left:-29.118000px;}
._2f_c00296{margin-left:-26.838000px;}
._26_c00296{margin-left:-25.596000px;}
._32_c00296{margin-left:-24.330000px;}
._1c_c00296{margin-left:-22.914000px;}
._34_c00296{margin-left:-21.690000px;}
._2e_c00296{margin-left:-20.682000px;}
._2c_c00296{margin-left:-18.666000px;}
._1f_c00296{margin-left:-17.616000px;}
._1e_c00296{margin-left:-15.906000px;}
._15_c00296{margin-left:-13.869000px;}
._16_c00296{margin-left:-11.799000px;}
._9_c00296{margin-left:-10.176000px;}
._2d_c00296{margin-left:-9.078000px;}
._12_c00296{margin-left:-8.004000px;}
._2_c00296{margin-left:-6.177000px;}
._25_c00296{margin-left:-5.172000px;}
._6_c00296{margin-left:-4.140000px;}
._4_c00296{margin-left:-3.036000px;}
._0_c00296{margin-left:-1.656000px;}
._a_c00296{width:1.140000px;}
._5_c00296{width:2.208000px;}
._1_c00296{width:3.243000px;}
._d_c00296{width:5.037000px;}
._3_c00296{width:6.777000px;}
._f_c00296{width:8.592000px;}
._21_c00296{width:9.882000px;}
._1d_c00296{width:10.971000px;}
._b_c00296{width:12.114000px;}
._10_c00296{width:13.209000px;}
._17_c00296{width:14.529000px;}
._c_c00296{width:15.801000px;}
._18_c00296{width:18.246000px;}
._11_c00296{width:20.838000px;}
._7_c00296{width:21.855000px;}
._20_c00296{width:23.061000px;}
._8_c00296{width:24.150000px;}
._2b_c00296{width:28.497000px;}
._13_c00296{width:29.601000px;}
._24_c00296{width:31.395000px;}
._22_c00296{width:33.075000px;}
._19_c00296{width:40.707000px;}
._23_c00296{width:43.302000px;}
._29_c00296{width:45.189000px;}
._36_c00296{width:79.764000px;}
._2a_c00296{width:87.597000px;}
._28_c00296{width:89.181000px;}
._27_c00296{width:115.941000px;}
._e_c00296{width:130.998000px;}
._14_c00296{width:156.546000px;}
._1a_c00296{width:162.759000px;}
._1b_c00296{width:230.331000px;}
._37_c00296{width:294.078000px;}
._35_c00296{width:739.341000px;}
._38_c00296{width:1162.188000px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(128,128,128);}
.fc0_c00296{color:rgb(0,0,0);}
.fs7_c00296{font-size:48.000000px;}
.fs3_c00296{font-size:66.000000px;}
.fs0_c00296{font-size:69.000000px;}
.fs6_c00296{font-size:78.000000px;}
.fs1_c00296{font-size:84.000000px;}
.fs2_c00296{font-size:90.000000px;}
.fs5_c00296{font-size:102.000000px;}
.fs4_c00296{font-size:132.000000px;}
.y0_c00296{bottom:0.000000px;}
.y1e_c00296{bottom:3.105000px;}
.y1d_c00296{bottom:7.228371px;}
.y1c_c00296{bottom:84.465000px;}
.y1b_c00296{bottom:109.365000px;}
.y1a_c00296{bottom:135.315000px;}
.y19_c00296{bottom:160.365000px;}
.y18_c00296{bottom:186.015000px;}
.y17_c00296{bottom:211.065000px;}
.y16_c00296{bottom:236.265000px;}
.y15_c00296{bottom:260.565000px;}
.y14_c00296{bottom:286.215000px;}
.y13_c00296{bottom:310.815000px;}
.y12_c00296{bottom:336.165000px;}
.y11_c00296{bottom:362.115000px;}
.y10_c00296{bottom:385.815000px;}
.yf_c00296{bottom:410.715000px;}
.ye_c00296{bottom:436.515000px;}
.yd_c00296{bottom:461.415000px;}
.yc_c00296{bottom:485.115000px;}
.yb_c00296{bottom:510.315000px;}
.ya_c00296{bottom:534.915000px;}
.y9_c00296{bottom:559.665000px;}
.y8_c00296{bottom:583.665000px;}
.y7_c00296{bottom:609.165000px;}
.y6_c00296{bottom:634.815000px;}
.y5_c00296{bottom:659.865000px;}
.y4_c00296{bottom:683.415000px;}
.y3_c00296{bottom:709.815000px;}
.y2_c00296{bottom:734.415000px;}
.y1_c00296{bottom:759.015000px;}
.h9_c00296{height:13.200074px;}
.ha_c00296{height:43.804688px;}
.h4_c00296{height:80.758301px;}
.h3_c00296{height:87.361816px;}
.h2_c00296{height:106.353516px;}
.h5_c00296{height:113.950195px;}
.h8_c00296{height:119.381836px;}
.h7_c00296{height:129.143555px;}
.h6_c00296{height:143.088000px;}
.h1_c00296{height:831.000000px;}
.h0_c00296{height:831.075000px;}
.w2_c00296{width:104.875500px;}
.w0_c00296{width:566.175000px;}
.w1_c00296{width:566.250000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:35.700000px;}
.x2_c00296{left:37.350000px;}
.x3_c00296{left:40.800000px;}
.x6_c00296{left:42.600000px;}
.x8_c00296{left:44.550000px;}
.xa_c00296{left:45.600000px;}
.x5_c00296{left:63.750000px;}
.x4_c00296{left:66.450000px;}
.x7_c00296{left:68.550000px;}
.x9_c00296{left:69.900000px;}
.xb_c00296{left:71.550000px;}
.xc_c00296{left:234.901749px;}
@media print{
.v1_c00296{vertical-align:-81.600000pt;}
.v0_c00296{vertical-align:0.000000pt;}
.ls4_c00296{letter-spacing:-5.333333pt;}
.ls3_c00296{letter-spacing:0.000000pt;}
.ls2_c00296{letter-spacing:5.333333pt;}
.ls1_c00296{letter-spacing:14.661333pt;}
.ls0_c00296{letter-spacing:72.986667pt;}
.ws0_c00296{word-spacing:-40.000000pt;}
.ws4_c00296{word-spacing:-20.114667pt;}
.ws3_c00296{word-spacing:-14.781333pt;}
.ws2_c00296{word-spacing:-8.805333pt;}
.ws1_c00296{word-spacing:-0.117333pt;}
.ws5_c00296{word-spacing:0.000000pt;}
._33_c00296{margin-left:-33.728000pt;}
._31_c00296{margin-left:-30.909333pt;}
._30_c00296{margin-left:-25.882667pt;}
._2f_c00296{margin-left:-23.856000pt;}
._26_c00296{margin-left:-22.752000pt;}
._32_c00296{margin-left:-21.626667pt;}
._1c_c00296{margin-left:-20.368000pt;}
._34_c00296{margin-left:-19.280000pt;}
._2e_c00296{margin-left:-18.384000pt;}
._2c_c00296{margin-left:-16.592000pt;}
._1f_c00296{margin-left:-15.658667pt;}
._1e_c00296{margin-left:-14.138667pt;}
._15_c00296{margin-left:-12.328000pt;}
._16_c00296{margin-left:-10.488000pt;}
._9_c00296{margin-left:-9.045333pt;}
._2d_c00296{margin-left:-8.069333pt;}
._12_c00296{margin-left:-7.114667pt;}
._2_c00296{margin-left:-5.490667pt;}
._25_c00296{margin-left:-4.597333pt;}
._6_c00296{margin-left:-3.680000pt;}
._4_c00296{margin-left:-2.698667pt;}
._0_c00296{margin-left:-1.472000pt;}
._a_c00296{width:1.013333pt;}
._5_c00296{width:1.962667pt;}
._1_c00296{width:2.882667pt;}
._d_c00296{width:4.477333pt;}
._3_c00296{width:6.024000pt;}
._f_c00296{width:7.637333pt;}
._21_c00296{width:8.784000pt;}
._1d_c00296{width:9.752000pt;}
._b_c00296{width:10.768000pt;}
._10_c00296{width:11.741333pt;}
._17_c00296{width:12.914667pt;}
._c_c00296{width:14.045333pt;}
._18_c00296{width:16.218667pt;}
._11_c00296{width:18.522667pt;}
._7_c00296{width:19.426667pt;}
._20_c00296{width:20.498667pt;}
._8_c00296{width:21.466667pt;}
._2b_c00296{width:25.330667pt;}
._13_c00296{width:26.312000pt;}
._24_c00296{width:27.906667pt;}
._22_c00296{width:29.400000pt;}
._19_c00296{width:36.184000pt;}
._23_c00296{width:38.490667pt;}
._29_c00296{width:40.168000pt;}
._36_c00296{width:70.901333pt;}
._2a_c00296{width:77.864000pt;}
._28_c00296{width:79.272000pt;}
._27_c00296{width:103.058667pt;}
._e_c00296{width:116.442667pt;}
._14_c00296{width:139.152000pt;}
._1a_c00296{width:144.674667pt;}
._1b_c00296{width:204.738667pt;}
._37_c00296{width:261.402667pt;}
._35_c00296{width:657.192000pt;}
._38_c00296{width:1033.056000pt;}
.fs7_c00296{font-size:42.666667pt;}
.fs3_c00296{font-size:58.666667pt;}
.fs0_c00296{font-size:61.333333pt;}
.fs6_c00296{font-size:69.333333pt;}
.fs1_c00296{font-size:74.666667pt;}
.fs2_c00296{font-size:80.000000pt;}
.fs5_c00296{font-size:90.666667pt;}
.fs4_c00296{font-size:117.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y1e_c00296{bottom:2.760000pt;}
.y1d_c00296{bottom:6.425219pt;}
.y1c_c00296{bottom:75.080000pt;}
.y1b_c00296{bottom:97.213333pt;}
.y1a_c00296{bottom:120.280000pt;}
.y19_c00296{bottom:142.546667pt;}
.y18_c00296{bottom:165.346667pt;}
.y17_c00296{bottom:187.613333pt;}
.y16_c00296{bottom:210.013333pt;}
.y15_c00296{bottom:231.613333pt;}
.y14_c00296{bottom:254.413333pt;}
.y13_c00296{bottom:276.280000pt;}
.y12_c00296{bottom:298.813333pt;}
.y11_c00296{bottom:321.880000pt;}
.y10_c00296{bottom:342.946667pt;}
.yf_c00296{bottom:365.080000pt;}
.ye_c00296{bottom:388.013333pt;}
.yd_c00296{bottom:410.146667pt;}
.yc_c00296{bottom:431.213333pt;}
.yb_c00296{bottom:453.613333pt;}
.ya_c00296{bottom:475.480000pt;}
.y9_c00296{bottom:497.480000pt;}
.y8_c00296{bottom:518.813333pt;}
.y7_c00296{bottom:541.480000pt;}
.y6_c00296{bottom:564.280000pt;}
.y5_c00296{bottom:586.546667pt;}
.y4_c00296{bottom:607.480000pt;}
.y3_c00296{bottom:630.946667pt;}
.y2_c00296{bottom:652.813333pt;}
.y1_c00296{bottom:674.680000pt;}
.h9_c00296{height:11.733399pt;}
.ha_c00296{height:38.937500pt;}
.h4_c00296{height:71.785156pt;}
.h3_c00296{height:77.654948pt;}
.h2_c00296{height:94.536458pt;}
.h5_c00296{height:101.289062pt;}
.h8_c00296{height:106.117188pt;}
.h7_c00296{height:114.794271pt;}
.h6_c00296{height:127.189333pt;}
.h1_c00296{height:738.666667pt;}
.h0_c00296{height:738.733333pt;}
.w2_c00296{width:93.222667pt;}
.w0_c00296{width:503.266667pt;}
.w1_c00296{width:503.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:31.733333pt;}
.x2_c00296{left:33.200000pt;}
.x3_c00296{left:36.266667pt;}
.x6_c00296{left:37.866667pt;}
.x8_c00296{left:39.600000pt;}
.xa_c00296{left:40.533333pt;}
.x5_c00296{left:56.666667pt;}
.x4_c00296{left:59.066667pt;}
.x7_c00296{left:60.933333pt;}
.x9_c00296{left:62.133333pt;}
.xb_c00296{left:63.600000pt;}
.xc_c00296{left:208.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_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_a2d6e54b248403a61836351c.woff2')format("woff");}.ff1_c00297{font-family:ff1_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:ff2_c00297;src:url('chunks/assets/font_9767f6483f10c3de7d6e4211.woff2')format("woff");}.ff2_c00297{font-family:ff2_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:ff3_c00297;src:url('chunks/assets/font_21efed3f0d45ca4fecbb1edd.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_d8071caeb2bd2466614c3865.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00297{font-family:ff5_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;}
.ls7_c00297{letter-spacing:-6.000000px;}
.ls6_c00297{letter-spacing:0.000000px;}
.ls5_c00297{letter-spacing:5.202000px;}
.ls4_c00297{letter-spacing:6.000000px;}
.ls1_c00297{letter-spacing:23.560800px;}
.ls3_c00297{letter-spacing:25.360800px;}
.ls2_c00297{letter-spacing:31.960800px;}
.ls0_c00297{letter-spacing:135.771000px;}
.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;}
}
.ws2_c00297{word-spacing:-56.235000px;}
.ws0_c00297{word-spacing:-44.022000px;}
.ws3_c00297{word-spacing:-40.434000px;}
.ws1_c00297{word-spacing:-39.831000px;}
.ws5_c00297{word-spacing:-16.629000px;}
.ws4_c00297{word-spacing:-9.906000px;}
.ws6_c00297{word-spacing:0.000000px;}
._24_c00297{margin-left:-25.392000px;}
._22_c00297{margin-left:-24.150000px;}
._26_c00297{margin-left:-18.468000px;}
._1a_c00297{margin-left:-16.422000px;}
._23_c00297{margin-left:-14.949000px;}
._8_c00297{margin-left:-12.558000px;}
._1f_c00297{margin-left:-11.274000px;}
._1d_c00297{margin-left:-9.360000px;}
._12_c00297{margin-left:-8.085000px;}
._6_c00297{margin-left:-6.762000px;}
._13_c00297{margin-left:-5.670000px;}
._c_c00297{margin-left:-4.413000px;}
._0_c00297{margin-left:-2.691000px;}
._1_c00297{margin-left:-1.035000px;}
._3_c00297{width:1.449000px;}
._a_c00297{width:2.484000px;}
._4_c00297{width:3.795000px;}
._5_c00297{width:5.037000px;}
._14_c00297{width:6.141000px;}
._f_c00297{width:7.524000px;}
._18_c00297{width:8.556000px;}
._19_c00297{width:9.798000px;}
._d_c00297{width:11.655000px;}
._20_c00297{width:12.834000px;}
._b_c00297{width:14.352000px;}
._1e_c00297{width:15.954000px;}
._1b_c00297{width:17.859000px;}
._1c_c00297{width:19.110000px;}
._27_c00297{width:20.286000px;}
._17_c00297{width:24.102000px;}
._10_c00297{width:25.737000px;}
._29_c00297{width:27.108000px;}
._28_c00297{width:29.532000px;}
._e_c00297{width:31.875000px;}
._25_c00297{width:33.030000px;}
._11_c00297{width:34.362000px;}
._21_c00297{width:38.565000px;}
._9_c00297{width:62.859000px;}
._7_c00297{width:75.831000px;}
._15_c00297{width:84.525000px;}
._2a_c00297{width:89.079000px;}
._16_c00297{width:151.869000px;}
._2_c00297{width:378.087000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(128,128,128);}
.fc0_c00297{color:rgb(0,0,0);}
.fs4_c00297{font-size:48.000000px;}
.fs2_c00297{font-size:55.200000px;}
.fs1_c00297{font-size:66.000000px;}
.fs0_c00297{font-size:69.000000px;}
.fs3_c00297{font-size:78.000000px;}
.y0_c00297{bottom:0.000000px;}
.y20_c00297{bottom:3.105000px;}
.y1f_c00297{bottom:7.228371px;}
.y1e_c00297{bottom:46.965000px;}
.y1d_c00297{bottom:69.915000px;}
.y1c_c00297{bottom:95.265000px;}
.y1b_c00297{bottom:120.165000px;}
.y1a_c00297{bottom:145.515000px;}
.y19_c00297{bottom:170.865000px;}
.y18_c00297{bottom:196.515000px;}
.y17_c00297{bottom:221.865000px;}
.y16_c00297{bottom:247.065000px;}
.y15_c00297{bottom:272.715000px;}
.y14_c00297{bottom:297.765000px;}
.y13_c00297{bottom:321.765000px;}
.y12_c00297{bottom:347.265000px;}
.y11_c00297{bottom:372.615000px;}
.y10_c00297{bottom:397.665000px;}
.yf_c00297{bottom:422.865000px;}
.ye_c00297{bottom:448.215000px;}
.yd_c00297{bottom:472.815000px;}
.yc_c00297{bottom:498.165000px;}
.yb_c00297{bottom:523.215000px;}
.ya_c00297{bottom:548.115000px;}
.y9_c00297{bottom:573.165000px;}
.y8_c00297{bottom:598.065000px;}
.y7_c00297{bottom:622.815000px;}
.y6_c00297{bottom:648.465000px;}
.y5_c00297{bottom:673.665000px;}
.y4_c00297{bottom:697.365000px;}
.y3_c00297{bottom:722.715000px;}
.y2_c00297{bottom:748.215000px;}
.y1_c00297{bottom:772.965000px;}
.h6_c00297{height:13.200074px;}
.h7_c00297{height:43.804688px;}
.h5_c00297{height:77.247070px;}
.h3_c00297{height:80.758301px;}
.h2_c00297{height:87.361816px;}
.h4_c00297{height:98.756836px;}
.h0_c00297{height:812.175000px;}
.h1_c00297{height:812.250000px;}
.w2_c00297{width:104.875500px;}
.w1_c00297{width:561.000000px;}
.w0_c00297{width:561.075000px;}
.x0_c00297{left:0.000000px;}
.x5_c00297{left:39.150000px;}
.x9_c00297{left:46.350000px;}
.xb_c00297{left:79.950000px;}
.xa_c00297{left:81.300000px;}
.xc_c00297{left:83.100000px;}
.x6_c00297{left:84.300000px;}
.x3_c00297{left:86.100000px;}
.x2_c00297{left:87.450000px;}
.x1_c00297{left:101.550000px;}
.xd_c00297{left:105.600000px;}
.x7_c00297{left:110.400000px;}
.x4_c00297{left:112.350000px;}
.x8_c00297{left:113.850000px;}
.xf_c00297{left:232.351730px;}
.xe_c00297{left:495.150000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls7_c00297{letter-spacing:-5.333333pt;}
.ls6_c00297{letter-spacing:0.000000pt;}
.ls5_c00297{letter-spacing:4.624000pt;}
.ls4_c00297{letter-spacing:5.333333pt;}
.ls1_c00297{letter-spacing:20.942933pt;}
.ls3_c00297{letter-spacing:22.542933pt;}
.ls2_c00297{letter-spacing:28.409600pt;}
.ls0_c00297{letter-spacing:120.685333pt;}
.ws2_c00297{word-spacing:-49.986667pt;}
.ws0_c00297{word-spacing:-39.130667pt;}
.ws3_c00297{word-spacing:-35.941333pt;}
.ws1_c00297{word-spacing:-35.405333pt;}
.ws5_c00297{word-spacing:-14.781333pt;}
.ws4_c00297{word-spacing:-8.805333pt;}
.ws6_c00297{word-spacing:0.000000pt;}
._24_c00297{margin-left:-22.570667pt;}
._22_c00297{margin-left:-21.466667pt;}
._26_c00297{margin-left:-16.416000pt;}
._1a_c00297{margin-left:-14.597333pt;}
._23_c00297{margin-left:-13.288000pt;}
._8_c00297{margin-left:-11.162667pt;}
._1f_c00297{margin-left:-10.021333pt;}
._1d_c00297{margin-left:-8.320000pt;}
._12_c00297{margin-left:-7.186667pt;}
._6_c00297{margin-left:-6.010667pt;}
._13_c00297{margin-left:-5.040000pt;}
._c_c00297{margin-left:-3.922667pt;}
._0_c00297{margin-left:-2.392000pt;}
._1_c00297{margin-left:-0.920000pt;}
._3_c00297{width:1.288000pt;}
._a_c00297{width:2.208000pt;}
._4_c00297{width:3.373333pt;}
._5_c00297{width:4.477333pt;}
._14_c00297{width:5.458667pt;}
._f_c00297{width:6.688000pt;}
._18_c00297{width:7.605333pt;}
._19_c00297{width:8.709333pt;}
._d_c00297{width:10.360000pt;}
._20_c00297{width:11.408000pt;}
._b_c00297{width:12.757333pt;}
._1e_c00297{width:14.181333pt;}
._1b_c00297{width:15.874667pt;}
._1c_c00297{width:16.986667pt;}
._27_c00297{width:18.032000pt;}
._17_c00297{width:21.424000pt;}
._10_c00297{width:22.877333pt;}
._29_c00297{width:24.096000pt;}
._28_c00297{width:26.250667pt;}
._e_c00297{width:28.333333pt;}
._25_c00297{width:29.360000pt;}
._11_c00297{width:30.544000pt;}
._21_c00297{width:34.280000pt;}
._9_c00297{width:55.874667pt;}
._7_c00297{width:67.405333pt;}
._15_c00297{width:75.133333pt;}
._2a_c00297{width:79.181333pt;}
._16_c00297{width:134.994667pt;}
._2_c00297{width:336.077333pt;}
.fs4_c00297{font-size:42.666667pt;}
.fs2_c00297{font-size:49.066667pt;}
.fs1_c00297{font-size:58.666667pt;}
.fs0_c00297{font-size:61.333333pt;}
.fs3_c00297{font-size:69.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y20_c00297{bottom:2.760000pt;}
.y1f_c00297{bottom:6.425219pt;}
.y1e_c00297{bottom:41.746667pt;}
.y1d_c00297{bottom:62.146667pt;}
.y1c_c00297{bottom:84.680000pt;}
.y1b_c00297{bottom:106.813333pt;}
.y1a_c00297{bottom:129.346667pt;}
.y19_c00297{bottom:151.880000pt;}
.y18_c00297{bottom:174.680000pt;}
.y17_c00297{bottom:197.213333pt;}
.y16_c00297{bottom:219.613333pt;}
.y15_c00297{bottom:242.413333pt;}
.y14_c00297{bottom:264.680000pt;}
.y13_c00297{bottom:286.013333pt;}
.y12_c00297{bottom:308.680000pt;}
.y11_c00297{bottom:331.213333pt;}
.y10_c00297{bottom:353.480000pt;}
.yf_c00297{bottom:375.880000pt;}
.ye_c00297{bottom:398.413333pt;}
.yd_c00297{bottom:420.280000pt;}
.yc_c00297{bottom:442.813333pt;}
.yb_c00297{bottom:465.080000pt;}
.ya_c00297{bottom:487.213333pt;}
.y9_c00297{bottom:509.480000pt;}
.y8_c00297{bottom:531.613333pt;}
.y7_c00297{bottom:553.613333pt;}
.y6_c00297{bottom:576.413333pt;}
.y5_c00297{bottom:598.813333pt;}
.y4_c00297{bottom:619.880000pt;}
.y3_c00297{bottom:642.413333pt;}
.y2_c00297{bottom:665.080000pt;}
.y1_c00297{bottom:687.080000pt;}
.h6_c00297{height:11.733399pt;}
.h7_c00297{height:38.937500pt;}
.h5_c00297{height:68.664062pt;}
.h3_c00297{height:71.785156pt;}
.h2_c00297{height:77.654948pt;}
.h4_c00297{height:87.783854pt;}
.h0_c00297{height:721.933333pt;}
.h1_c00297{height:722.000000pt;}
.w2_c00297{width:93.222667pt;}
.w1_c00297{width:498.666667pt;}
.w0_c00297{width:498.733333pt;}
.x0_c00297{left:0.000000pt;}
.x5_c00297{left:34.800000pt;}
.x9_c00297{left:41.200000pt;}
.xb_c00297{left:71.066667pt;}
.xa_c00297{left:72.266667pt;}
.xc_c00297{left:73.866667pt;}
.x6_c00297{left:74.933333pt;}
.x3_c00297{left:76.533333pt;}
.x2_c00297{left:77.733333pt;}
.x1_c00297{left:90.266667pt;}
.xd_c00297{left:93.866667pt;}
.x7_c00297{left:98.133333pt;}
.x4_c00297{left:99.866667pt;}
.x8_c00297{left:101.200000pt;}
.xf_c00297{left:206.534871pt;}
.xe_c00297{left:440.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_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_31836ddd9b61789ff111961d.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_775bbd40c3adea07a390959e.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_f9e45e232b8b3daa6d385ce5.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_128227e1c82cf15615fcaeaa.woff2')format("woff");}.ff4_c00298{font-family:ff4_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:ff5_c00298;src:url('chunks/assets/font_8686872cf05dc9c65af49c46.woff2')format("woff");}.ff5_c00298{font-family:ff5_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:ff6_c00298;src:url('chunks/assets/font_82562e42e8f19e90fb115c9b.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00298;src:url('chunks/assets/font_37d773b8009bb80c301cb431.woff2')format("woff");}.ff7_c00298{font-family:ff7_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:ff8_c00298;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00298{font-family:ff8_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;}
.ls5_c00298{letter-spacing:0.000000px;}
.ls6_c00298{letter-spacing:6.000000px;}
.ls8_c00298{letter-spacing:9.000000px;}
.ls4_c00298{letter-spacing:13.125000px;}
.ls7_c00298{letter-spacing:15.000000px;}
.ls3_c00298{letter-spacing:17.325000px;}
.ls1_c00298{letter-spacing:18.072000px;}
.ls0_c00298{letter-spacing:48.171000px;}
.ls2_c00298{letter-spacing:49.371000px;}
.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;}
}
.ws3_c00298{word-spacing:-44.988000px;}
.ws2_c00298{word-spacing:-31.629000px;}
.ws4_c00298{word-spacing:-23.460000px;}
.ws1_c00298{word-spacing:-1.242000px;}
.ws5_c00298{word-spacing:0.000000px;}
.ws0_c00298{word-spacing:3.243000px;}
._26_c00298{margin-left:-71.619000px;}
._2a_c00298{margin-left:-61.479000px;}
._28_c00298{margin-left:-32.568000px;}
._2c_c00298{margin-left:-28.515000px;}
._c_c00298{margin-left:-26.013000px;}
._22_c00298{margin-left:-22.152000px;}
._1a_c00298{margin-left:-15.732000px;}
._17_c00298{margin-left:-14.697000px;}
._3_c00298{margin-left:-12.972000px;}
._24_c00298{margin-left:-11.103000px;}
._14_c00298{margin-left:-9.384000px;}
._16_c00298{margin-left:-7.452000px;}
._15_c00298{margin-left:-6.210000px;}
._7_c00298{margin-left:-5.175000px;}
._9_c00298{margin-left:-4.140000px;}
._6_c00298{margin-left:-3.105000px;}
._5_c00298{margin-left:-2.001000px;}
._1_c00298{width:1.104000px;}
._0_c00298{width:2.139000px;}
._11_c00298{width:3.174000px;}
._13_c00298{width:4.209000px;}
._b_c00298{width:5.589000px;}
._1b_c00298{width:6.693000px;}
._8_c00298{width:7.935000px;}
._f_c00298{width:9.039000px;}
._18_c00298{width:10.764000px;}
._2d_c00298{width:11.799000px;}
._d_c00298{width:13.662000px;}
._1e_c00298{width:14.934000px;}
._2e_c00298{width:16.848000px;}
._19_c00298{width:18.078000px;}
._12_c00298{width:19.941000px;}
._e_c00298{width:21.198000px;}
._10_c00298{width:22.356000px;}
._a_c00298{width:24.564000px;}
._2_c00298{width:25.749000px;}
._20_c00298{width:27.381000px;}
._23_c00298{width:29.805000px;}
._1f_c00298{width:31.050000px;}
._1d_c00298{width:32.985000px;}
._2b_c00298{width:39.972000px;}
._21_c00298{width:48.852000px;}
._29_c00298{width:88.785000px;}
._27_c00298{width:182.574000px;}
._1c_c00298{width:194.787000px;}
._25_c00298{width:361.629000px;}
._4_c00298{width:427.731000px;}
._2f_c00298{width:534.144000px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(128,128,128);}
.fc0_c00298{color:rgb(0,0,0);}
.fs5_c00298{font-size:24.000000px;}
.fs4_c00298{font-size:45.000000px;}
.fs7_c00298{font-size:48.000000px;}
.fs3_c00298{font-size:55.200000px;}
.fs6_c00298{font-size:60.000000px;}
.fs0_c00298{font-size:69.000000px;}
.fs1_c00298{font-size:75.000000px;}
.fs2_c00298{font-size:81.000000px;}
.y0_c00298{bottom:0.000000px;}
.y1d_c00298{bottom:3.105000px;}
.y1c_c00298{bottom:7.228363px;}
.y1b_c00298{bottom:43.950000px;}
.y1a_c00298{bottom:68.550000px;}
.y19_c00298{bottom:94.050000px;}
.y18_c00298{bottom:119.700000px;}
.y17_c00298{bottom:144.750000px;}
.y16_c00298{bottom:170.400000px;}
.y15_c00298{bottom:195.450000px;}
.y14_c00298{bottom:245.400000px;}
.y13_c00298{bottom:295.650000px;}
.y12_c00298{bottom:320.700000px;}
.y11_c00298{bottom:345.600000px;}
.y10_c00298{bottom:370.950000px;}
.yf_c00298{bottom:395.850000px;}
.ye_c00298{bottom:420.600000px;}
.yd_c00298{bottom:446.250000px;}
.yc_c00298{bottom:470.850000px;}
.yb_c00298{bottom:499.500000px;}
.ya_c00298{bottom:520.050000px;}
.y9_c00298{bottom:569.100000px;}
.y8_c00298{bottom:594.750000px;}
.y7_c00298{bottom:620.100000px;}
.y6_c00298{bottom:645.300000px;}
.y5_c00298{bottom:670.350000px;}
.y4_c00298{bottom:695.550000px;}
.y3_c00298{bottom:721.200000px;}
.y2_c00298{bottom:745.950000px;}
.y1_c00298{bottom:770.850000px;}
.h6_c00298{height:13.200074px;}
.h7_c00298{height:43.804688px;}
.h3_c00298{height:80.758301px;}
.h2_c00298{height:87.361816px;}
.h5_c00298{height:87.961816px;}
.h4_c00298{height:102.555176px;}
.h0_c00298{height:812.700000px;}
.h1_c00298{height:813.000000px;}
.w2_c00298{width:104.875500px;}
.w1_c00298{width:552.750000px;}
.w0_c00298{width:552.975000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:27.000000px;}
.x8_c00298{left:28.050000px;}
.x5_c00298{left:29.400000px;}
.x3_c00298{left:31.050000px;}
.x9_c00298{left:53.100000px;}
.x7_c00298{left:54.300000px;}
.x4_c00298{left:58.350000px;}
.x6_c00298{left:73.350000px;}
.xa_c00298{left:74.700000px;}
.x1_c00298{left:190.800000px;}
.xc_c00298{left:228.301758px;}
.xb_c00298{left:284.250000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls5_c00298{letter-spacing:0.000000pt;}
.ls6_c00298{letter-spacing:5.333333pt;}
.ls8_c00298{letter-spacing:8.000000pt;}
.ls4_c00298{letter-spacing:11.666667pt;}
.ls7_c00298{letter-spacing:13.333333pt;}
.ls3_c00298{letter-spacing:15.400000pt;}
.ls1_c00298{letter-spacing:16.064000pt;}
.ls0_c00298{letter-spacing:42.818667pt;}
.ls2_c00298{letter-spacing:43.885333pt;}
.ws3_c00298{word-spacing:-39.989333pt;}
.ws2_c00298{word-spacing:-28.114667pt;}
.ws4_c00298{word-spacing:-20.853333pt;}
.ws1_c00298{word-spacing:-1.104000pt;}
.ws5_c00298{word-spacing:0.000000pt;}
.ws0_c00298{word-spacing:2.882667pt;}
._26_c00298{margin-left:-63.661333pt;}
._2a_c00298{margin-left:-54.648000pt;}
._28_c00298{margin-left:-28.949333pt;}
._2c_c00298{margin-left:-25.346667pt;}
._c_c00298{margin-left:-23.122667pt;}
._22_c00298{margin-left:-19.690667pt;}
._1a_c00298{margin-left:-13.984000pt;}
._17_c00298{margin-left:-13.064000pt;}
._3_c00298{margin-left:-11.530667pt;}
._24_c00298{margin-left:-9.869333pt;}
._14_c00298{margin-left:-8.341333pt;}
._16_c00298{margin-left:-6.624000pt;}
._15_c00298{margin-left:-5.520000pt;}
._7_c00298{margin-left:-4.600000pt;}
._9_c00298{margin-left:-3.680000pt;}
._6_c00298{margin-left:-2.760000pt;}
._5_c00298{margin-left:-1.778667pt;}
._1_c00298{width:0.981333pt;}
._0_c00298{width:1.901333pt;}
._11_c00298{width:2.821333pt;}
._13_c00298{width:3.741333pt;}
._b_c00298{width:4.968000pt;}
._1b_c00298{width:5.949333pt;}
._8_c00298{width:7.053333pt;}
._f_c00298{width:8.034667pt;}
._18_c00298{width:9.568000pt;}
._2d_c00298{width:10.488000pt;}
._d_c00298{width:12.144000pt;}
._1e_c00298{width:13.274667pt;}
._2e_c00298{width:14.976000pt;}
._19_c00298{width:16.069333pt;}
._12_c00298{width:17.725333pt;}
._e_c00298{width:18.842667pt;}
._10_c00298{width:19.872000pt;}
._a_c00298{width:21.834667pt;}
._2_c00298{width:22.888000pt;}
._20_c00298{width:24.338667pt;}
._23_c00298{width:26.493333pt;}
._1f_c00298{width:27.600000pt;}
._1d_c00298{width:29.320000pt;}
._2b_c00298{width:35.530667pt;}
._21_c00298{width:43.424000pt;}
._29_c00298{width:78.920000pt;}
._27_c00298{width:162.288000pt;}
._1c_c00298{width:173.144000pt;}
._25_c00298{width:321.448000pt;}
._4_c00298{width:380.205333pt;}
._2f_c00298{width:474.794667pt;}
.fs5_c00298{font-size:21.333333pt;}
.fs4_c00298{font-size:40.000000pt;}
.fs7_c00298{font-size:42.666667pt;}
.fs3_c00298{font-size:49.066667pt;}
.fs6_c00298{font-size:53.333333pt;}
.fs0_c00298{font-size:61.333333pt;}
.fs1_c00298{font-size:66.666667pt;}
.fs2_c00298{font-size:72.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y1d_c00298{bottom:2.760000pt;}
.y1c_c00298{bottom:6.425212pt;}
.y1b_c00298{bottom:39.066667pt;}
.y1a_c00298{bottom:60.933333pt;}
.y19_c00298{bottom:83.600000pt;}
.y18_c00298{bottom:106.400000pt;}
.y17_c00298{bottom:128.666667pt;}
.y16_c00298{bottom:151.466667pt;}
.y15_c00298{bottom:173.733333pt;}
.y14_c00298{bottom:218.133333pt;}
.y13_c00298{bottom:262.800000pt;}
.y12_c00298{bottom:285.066667pt;}
.y11_c00298{bottom:307.200000pt;}
.y10_c00298{bottom:329.733333pt;}
.yf_c00298{bottom:351.866667pt;}
.ye_c00298{bottom:373.866667pt;}
.yd_c00298{bottom:396.666667pt;}
.yc_c00298{bottom:418.533333pt;}
.yb_c00298{bottom:444.000000pt;}
.ya_c00298{bottom:462.266667pt;}
.y9_c00298{bottom:505.866667pt;}
.y8_c00298{bottom:528.666667pt;}
.y7_c00298{bottom:551.200000pt;}
.y6_c00298{bottom:573.600000pt;}
.y5_c00298{bottom:595.866667pt;}
.y4_c00298{bottom:618.266667pt;}
.y3_c00298{bottom:641.066667pt;}
.y2_c00298{bottom:663.066667pt;}
.y1_c00298{bottom:685.200000pt;}
.h6_c00298{height:11.733399pt;}
.h7_c00298{height:38.937500pt;}
.h3_c00298{height:71.785156pt;}
.h2_c00298{height:77.654948pt;}
.h5_c00298{height:78.188281pt;}
.h4_c00298{height:91.160156pt;}
.h0_c00298{height:722.400000pt;}
.h1_c00298{height:722.666667pt;}
.w2_c00298{width:93.222667pt;}
.w1_c00298{width:491.333333pt;}
.w0_c00298{width:491.533333pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:24.000000pt;}
.x8_c00298{left:24.933333pt;}
.x5_c00298{left:26.133333pt;}
.x3_c00298{left:27.600000pt;}
.x9_c00298{left:47.200000pt;}
.x7_c00298{left:48.266667pt;}
.x4_c00298{left:51.866667pt;}
.x6_c00298{left:65.200000pt;}
.xa_c00298{left:66.400000pt;}
.x1_c00298{left:169.600000pt;}
.xc_c00298{left:202.934896pt;}
.xb_c00298{left:252.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_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_ec830b3fe2f46db3b2a3a2cd.woff2')format("woff");}.ff1_c00299{font-family:ff1_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:ff2_c00299;src:url('chunks/assets/font_2a0c3fe72594821bf77584ab.woff2')format("woff");}.ff2_c00299{font-family:ff2_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:ff3_c00299;src:url('chunks/assets/font_7f36a2263a52adcbd7452c26.woff2')format("woff");}.ff3_c00299{font-family:ff3_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:ff4_c00299;src:url('chunks/assets/font_57efac1db1b38b02c6a078a2.woff2')format("woff");}.ff4_c00299{font-family:ff4_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:ff5_c00299;src:url('chunks/assets/font_3fb9df993db67abcbb961559.woff2')format("woff");}.ff5_c00299{font-family:ff5_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:ff6_c00299;src:url('chunks/assets/font_75fb201bf8f9285121ce9cf6.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00299;src:url('chunks/assets/font_e9aab9d9c00757e5c03850dd.woff2')format("woff");}.ff7_c00299{font-family:ff7_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:ff8_c00299;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00299{font-family:ff8_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);}
.v0_c00299{vertical-align:0.000000px;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:6.000000px;}
.ls3_c00299{letter-spacing:9.000000px;}
.ls1_c00299{letter-spacing:13.500000px;}
.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;}
}
.ws1_c00299{word-spacing:-44.988000px;}
.ws2_c00299{word-spacing:-44.022000px;}
.ws0_c00299{word-spacing:-20.295000px;}
.ws7_c00299{word-spacing:-16.296000px;}
.ws3_c00299{word-spacing:-0.276000px;}
.ws4_c00299{word-spacing:-0.138000px;}
.ws8_c00299{word-spacing:0.000000px;}
.ws5_c00299{word-spacing:2.208000px;}
.ws6_c00299{word-spacing:6.210000px;}
._18_c00299{margin-left:-18.792000px;}
._22_c00299{margin-left:-17.010000px;}
._c_c00299{margin-left:-15.732000px;}
._a_c00299{margin-left:-13.662000px;}
._8_c00299{margin-left:-12.132000px;}
._21_c00299{margin-left:-10.753200px;}
._19_c00299{margin-left:-9.271200px;}
._14_c00299{margin-left:-8.107200px;}
._1d_c00299{margin-left:-7.055400px;}
._9_c00299{margin-left:-5.908800px;}
._e_c00299{margin-left:-4.347000px;}
._1_c00299{margin-left:-3.150000px;}
._2_c00299{margin-left:-1.245000px;}
._4_c00299{width:1.344000px;}
._0_c00299{width:2.352000px;}
._b_c00299{width:3.603000px;}
._6_c00299{width:5.574000px;}
._f_c00299{width:6.834000px;}
._13_c00299{width:7.881000px;}
._3_c00299{width:9.120000px;}
._7_c00299{width:10.143000px;}
._1b_c00299{width:11.229000px;}
._1c_c00299{width:12.489000px;}
._15_c00299{width:14.326800px;}
._1a_c00299{width:15.397200px;}
._16_c00299{width:16.797000px;}
._1e_c00299{width:17.841000px;}
._11_c00299{width:19.494000px;}
._27_c00299{width:21.012000px;}
._20_c00299{width:22.152000px;}
._28_c00299{width:24.343800px;}
._26_c00299{width:25.734000px;}
._24_c00299{width:26.973000px;}
._1f_c00299{width:28.980000px;}
._25_c00299{width:32.839200px;}
._10_c00299{width:34.152000px;}
._12_c00299{width:39.579000px;}
._d_c00299{width:42.159000px;}
._23_c00299{width:64.609200px;}
._17_c00299{width:99.078000px;}
._5_c00299{width:377.688000px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(128,128,128);}
.fc0_c00299{color:rgb(0,0,0);}
.fs1_c00299{font-size:45.000000px;}
.fs0_c00299{font-size:48.000000px;}
.fs5_c00299{font-size:54.000000px;}
.fs3_c00299{font-size:55.200000px;}
.fs8_c00299{font-size:57.000000px;}
.fs4_c00299{font-size:66.000000px;}
.fs2_c00299{font-size:69.000000px;}
.fs7_c00299{font-size:75.000000px;}
.fs6_c00299{font-size:81.000000px;}
.y0_c00299{bottom:0.000000px;}
.y1e_c00299{bottom:3.105000px;}
.y1d_c00299{bottom:7.228363px;}
.y1c_c00299{bottom:52.350000px;}
.y1b_c00299{bottom:78.300000px;}
.y1a_c00299{bottom:106.200000px;}
.y19_c00299{bottom:130.950000px;}
.y18_c00299{bottom:155.850000px;}
.y17_c00299{bottom:206.850000px;}
.y15_c00299{bottom:258.300000px;}
.y16_c00299{bottom:277.800000px;}
.y14_c00299{bottom:283.200000px;}
.y13_c00299{bottom:308.400000px;}
.y12_c00299{bottom:333.000000px;}
.y11_c00299{bottom:358.200000px;}
.y10_c00299{bottom:383.100000px;}
.yf_c00299{bottom:408.000000px;}
.ye_c00299{bottom:434.400000px;}
.yd_c00299{bottom:458.700000px;}
.yc_c00299{bottom:508.950000px;}
.yb_c00299{bottom:559.950000px;}
.ya_c00299{bottom:583.950000px;}
.y9_c00299{bottom:609.600000px;}
.y8_c00299{bottom:634.200000px;}
.y1_c00299{bottom:647.250000px;}
.y7_c00299{bottom:659.550000px;}
.y6_c00299{bottom:684.750000px;}
.y5_c00299{bottom:709.350000px;}
.y4_c00299{bottom:735.000000px;}
.y3_c00299{bottom:759.600000px;}
.y2_c00299{bottom:785.250000px;}
.h8_c00299{height:13.200074px;}
.h9_c00299{height:43.804688px;}
.h2_c00299{height:60.773438px;}
.h5_c00299{height:68.370117px;}
.h7_c00299{height:72.168457px;}
.h4_c00299{height:80.758301px;}
.h3_c00299{height:87.361816px;}
.h6_c00299{height:94.958496px;}
.h1_c00299{height:827.250000px;}
.h0_c00299{height:827.550000px;}
.w2_c00299{width:104.875500px;}
.w0_c00299{width:572.100000px;}
.w1_c00299{width:572.250000px;}
.x0_c00299{left:0.000000px;}
.xa_c00299{left:39.750000px;}
.x1_c00299{left:43.500000px;}
.x5_c00299{left:60.300000px;}
.x8_c00299{left:83.700000px;}
.xc_c00299{left:102.900000px;}
.x9_c00299{left:106.650000px;}
.x4_c00299{left:109.050000px;}
.x3_c00299{left:110.700000px;}
.x2_c00299{left:117.450000px;}
.xb_c00299{left:128.250000px;}
.x7_c00299{left:130.650000px;}
.xd_c00299{left:138.750000px;}
.x6_c00299{left:152.250000px;}
.xf_c00299{left:237.864258px;}
.xe_c00299{left:519.300000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:5.333333pt;}
.ls3_c00299{letter-spacing:8.000000pt;}
.ls1_c00299{letter-spacing:12.000000pt;}
.ws1_c00299{word-spacing:-39.989333pt;}
.ws2_c00299{word-spacing:-39.130667pt;}
.ws0_c00299{word-spacing:-18.040000pt;}
.ws7_c00299{word-spacing:-14.485333pt;}
.ws3_c00299{word-spacing:-0.245333pt;}
.ws4_c00299{word-spacing:-0.122667pt;}
.ws8_c00299{word-spacing:0.000000pt;}
.ws5_c00299{word-spacing:1.962667pt;}
.ws6_c00299{word-spacing:5.520000pt;}
._18_c00299{margin-left:-16.704000pt;}
._22_c00299{margin-left:-15.120000pt;}
._c_c00299{margin-left:-13.984000pt;}
._a_c00299{margin-left:-12.144000pt;}
._8_c00299{margin-left:-10.784000pt;}
._21_c00299{margin-left:-9.558400pt;}
._19_c00299{margin-left:-8.241067pt;}
._14_c00299{margin-left:-7.206400pt;}
._1d_c00299{margin-left:-6.271467pt;}
._9_c00299{margin-left:-5.252267pt;}
._e_c00299{margin-left:-3.864000pt;}
._1_c00299{margin-left:-2.800000pt;}
._2_c00299{margin-left:-1.106667pt;}
._4_c00299{width:1.194667pt;}
._0_c00299{width:2.090667pt;}
._b_c00299{width:3.202667pt;}
._6_c00299{width:4.954667pt;}
._f_c00299{width:6.074667pt;}
._13_c00299{width:7.005333pt;}
._3_c00299{width:8.106667pt;}
._7_c00299{width:9.016000pt;}
._1b_c00299{width:9.981333pt;}
._1c_c00299{width:11.101333pt;}
._15_c00299{width:12.734933pt;}
._1a_c00299{width:13.686400pt;}
._16_c00299{width:14.930667pt;}
._1e_c00299{width:15.858667pt;}
._11_c00299{width:17.328000pt;}
._27_c00299{width:18.677333pt;}
._20_c00299{width:19.690667pt;}
._28_c00299{width:21.638933pt;}
._26_c00299{width:22.874667pt;}
._24_c00299{width:23.976000pt;}
._1f_c00299{width:25.760000pt;}
._25_c00299{width:29.190400pt;}
._10_c00299{width:30.357333pt;}
._12_c00299{width:35.181333pt;}
._d_c00299{width:37.474667pt;}
._23_c00299{width:57.430400pt;}
._17_c00299{width:88.069333pt;}
._5_c00299{width:335.722667pt;}
.fs1_c00299{font-size:40.000000pt;}
.fs0_c00299{font-size:42.666667pt;}
.fs5_c00299{font-size:48.000000pt;}
.fs3_c00299{font-size:49.066667pt;}
.fs8_c00299{font-size:50.666667pt;}
.fs4_c00299{font-size:58.666667pt;}
.fs2_c00299{font-size:61.333333pt;}
.fs7_c00299{font-size:66.666667pt;}
.fs6_c00299{font-size:72.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y1e_c00299{bottom:2.760000pt;}
.y1d_c00299{bottom:6.425212pt;}
.y1c_c00299{bottom:46.533333pt;}
.y1b_c00299{bottom:69.600000pt;}
.y1a_c00299{bottom:94.400000pt;}
.y19_c00299{bottom:116.400000pt;}
.y18_c00299{bottom:138.533333pt;}
.y17_c00299{bottom:183.866667pt;}
.y15_c00299{bottom:229.600000pt;}
.y16_c00299{bottom:246.933333pt;}
.y14_c00299{bottom:251.733333pt;}
.y13_c00299{bottom:274.133333pt;}
.y12_c00299{bottom:296.000000pt;}
.y11_c00299{bottom:318.400000pt;}
.y10_c00299{bottom:340.533333pt;}
.yf_c00299{bottom:362.666667pt;}
.ye_c00299{bottom:386.133333pt;}
.yd_c00299{bottom:407.733333pt;}
.yc_c00299{bottom:452.400000pt;}
.yb_c00299{bottom:497.733333pt;}
.ya_c00299{bottom:519.066667pt;}
.y9_c00299{bottom:541.866667pt;}
.y8_c00299{bottom:563.733333pt;}
.y1_c00299{bottom:575.333333pt;}
.y7_c00299{bottom:586.266667pt;}
.y6_c00299{bottom:608.666667pt;}
.y5_c00299{bottom:630.533333pt;}
.y4_c00299{bottom:653.333333pt;}
.y3_c00299{bottom:675.200000pt;}
.y2_c00299{bottom:698.000000pt;}
.h8_c00299{height:11.733399pt;}
.h9_c00299{height:38.937500pt;}
.h2_c00299{height:54.020833pt;}
.h5_c00299{height:60.773438pt;}
.h7_c00299{height:64.149740pt;}
.h4_c00299{height:71.785156pt;}
.h3_c00299{height:77.654948pt;}
.h6_c00299{height:84.407552pt;}
.h1_c00299{height:735.333333pt;}
.h0_c00299{height:735.600000pt;}
.w2_c00299{width:93.222667pt;}
.w0_c00299{width:508.533333pt;}
.w1_c00299{width:508.666667pt;}
.x0_c00299{left:0.000000pt;}
.xa_c00299{left:35.333333pt;}
.x1_c00299{left:38.666667pt;}
.x5_c00299{left:53.600000pt;}
.x8_c00299{left:74.400000pt;}
.xc_c00299{left:91.466667pt;}
.x9_c00299{left:94.800000pt;}
.x4_c00299{left:96.933333pt;}
.x3_c00299{left:98.400000pt;}
.x2_c00299{left:104.400000pt;}
.xb_c00299{left:114.000000pt;}
.x7_c00299{left:116.133333pt;}
.xd_c00299{left:123.333333pt;}
.x6_c00299{left:135.333333pt;}
.xf_c00299{left:211.434896pt;}
.xe_c00299{left:461.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_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_6e71343a21dd7547283d1357.woff2')format("woff");}.ff1_c00300{font-family:ff1_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:ff2_c00300;src:url('chunks/assets/font_eccf000ddac9a27415e36914.woff2')format("woff");}.ff2_c00300{font-family:ff2_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:ff3_c00300;src:url('chunks/assets/font_7c834beac1b477b775826e44.woff2')format("woff");}.ff3_c00300{font-family:ff3_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:ff4_c00300;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00300{font-family:ff4_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;}
.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;}
.ls3_c00300{letter-spacing:0.000000px;}
.ls4_c00300{letter-spacing:6.000000px;}
.ls2_c00300{letter-spacing:13.125000px;}
.ls0_c00300{letter-spacing:21.000000px;}
.ls1_c00300{letter-spacing:42.600000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00300{word-spacing:-44.022000px;}
.ws1_c00300{word-spacing:-17.688000px;}
.ws0_c00300{word-spacing:-16.629000px;}
.ws2_c00300{word-spacing:-0.276000px;}
.ws4_c00300{word-spacing:0.000000px;}
._1e_c00300{margin-left:-19.623000px;}
._1f_c00300{margin-left:-15.111000px;}
._11_c00300{margin-left:-12.507000px;}
._22_c00300{margin-left:-11.298000px;}
._14_c00300{margin-left:-10.248000px;}
._3_c00300{margin-left:-8.901000px;}
._1c_c00300{margin-left:-7.773000px;}
._9_c00300{margin-left:-6.762000px;}
._b_c00300{margin-left:-5.175000px;}
._4_c00300{margin-left:-4.029000px;}
._f_c00300{margin-left:-2.691000px;}
._1_c00300{margin-left:-1.656000px;}
._0_c00300{width:1.794000px;}
._8_c00300{width:3.183000px;}
._e_c00300{width:4.281000px;}
._7_c00300{width:5.343000px;}
._12_c00300{width:6.552000px;}
._10_c00300{width:8.556000px;}
._13_c00300{width:10.428000px;}
._6_c00300{width:12.489000px;}
._15_c00300{width:13.593000px;}
._c_c00300{width:15.318000px;}
._a_c00300{width:17.250000px;}
._1d_c00300{width:18.609000px;}
._5_c00300{width:19.803000px;}
._d_c00300{width:21.105000px;}
._20_c00300{width:24.558000px;}
._19_c00300{width:29.028000px;}
._1b_c00300{width:30.249000px;}
._1a_c00300{width:35.796000px;}
._18_c00300{width:39.303000px;}
._16_c00300{width:48.531000px;}
._21_c00300{width:98.508000px;}
._17_c00300{width:106.047000px;}
._2_c00300{width:441.855000px;}
._23_c00300{width:483.291000px;}
.fc2_c00300{color:transparent;}
.fc1_c00300{color:rgb(128,128,128);}
.fc0_c00300{color:rgb(0,0,0);}
.fs2_c00300{font-size:48.000000px;}
.fs1_c00300{font-size:66.000000px;}
.fs0_c00300{font-size:69.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1f_c00300{bottom:3.105000px;}
.y1e_c00300{bottom:7.228371px;}
.y1d_c00300{bottom:66.165000px;}
.y1c_c00300{bottom:117.165000px;}
.y1b_c00300{bottom:141.765000px;}
.y1a_c00300{bottom:165.165000px;}
.y19_c00300{bottom:190.065000px;}
.y18_c00300{bottom:216.765000px;}
.y17_c00300{bottom:241.665000px;}
.y16_c00300{bottom:267.315000px;}
.y15_c00300{bottom:293.265000px;}
.y14_c00300{bottom:317.715000px;}
.y13_c00300{bottom:342.915000px;}
.y12_c00300{bottom:367.665000px;}
.y11_c00300{bottom:392.265000px;}
.y10_c00300{bottom:417.015000px;}
.yf_c00300{bottom:442.215000px;}
.ye_c00300{bottom:467.415000px;}
.yd_c00300{bottom:492.165000px;}
.yc_c00300{bottom:516.465000px;}
.yb_c00300{bottom:541.365000px;}
.ya_c00300{bottom:566.115000px;}
.y9_c00300{bottom:591.315000px;}
.y8_c00300{bottom:616.065000px;}
.y7_c00300{bottom:641.265000px;}
.y6_c00300{bottom:666.315000px;}
.y5_c00300{bottom:691.965000px;}
.y4_c00300{bottom:716.265000px;}
.y3_c00300{bottom:741.465000px;}
.y2_c00300{bottom:766.215000px;}
.y1_c00300{bottom:791.565000px;}
.h3_c00300{height:13.200074px;}
.h4_c00300{height:43.804688px;}
.h2_c00300{height:87.361816px;}
.h1_c00300{height:831.000000px;}
.h0_c00300{height:831.075000px;}
.w2_c00300{width:104.875500px;}
.w0_c00300{width:566.175000px;}
.w1_c00300{width:566.250000px;}
.x0_c00300{left:0.000000px;}
.x5_c00300{left:29.250000px;}
.x4_c00300{left:31.050000px;}
.x2_c00300{left:32.850000px;}
.x3_c00300{left:34.200000px;}
.x1_c00300{left:202.800000px;}
.x6_c00300{left:233.250000px;}
.x7_c00300{left:234.901749px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls3_c00300{letter-spacing:0.000000pt;}
.ls4_c00300{letter-spacing:5.333333pt;}
.ls2_c00300{letter-spacing:11.666667pt;}
.ls0_c00300{letter-spacing:18.666667pt;}
.ls1_c00300{letter-spacing:37.866667pt;}
.ws3_c00300{word-spacing:-39.130667pt;}
.ws1_c00300{word-spacing:-15.722667pt;}
.ws0_c00300{word-spacing:-14.781333pt;}
.ws2_c00300{word-spacing:-0.245333pt;}
.ws4_c00300{word-spacing:0.000000pt;}
._1e_c00300{margin-left:-17.442667pt;}
._1f_c00300{margin-left:-13.432000pt;}
._11_c00300{margin-left:-11.117333pt;}
._22_c00300{margin-left:-10.042667pt;}
._14_c00300{margin-left:-9.109333pt;}
._3_c00300{margin-left:-7.912000pt;}
._1c_c00300{margin-left:-6.909333pt;}
._9_c00300{margin-left:-6.010667pt;}
._b_c00300{margin-left:-4.600000pt;}
._4_c00300{margin-left:-3.581333pt;}
._f_c00300{margin-left:-2.392000pt;}
._1_c00300{margin-left:-1.472000pt;}
._0_c00300{width:1.594667pt;}
._8_c00300{width:2.829333pt;}
._e_c00300{width:3.805333pt;}
._7_c00300{width:4.749333pt;}
._12_c00300{width:5.824000pt;}
._10_c00300{width:7.605333pt;}
._13_c00300{width:9.269333pt;}
._6_c00300{width:11.101333pt;}
._15_c00300{width:12.082667pt;}
._c_c00300{width:13.616000pt;}
._a_c00300{width:15.333333pt;}
._1d_c00300{width:16.541333pt;}
._5_c00300{width:17.602667pt;}
._d_c00300{width:18.760000pt;}
._20_c00300{width:21.829333pt;}
._19_c00300{width:25.802667pt;}
._1b_c00300{width:26.888000pt;}
._1a_c00300{width:31.818667pt;}
._18_c00300{width:34.936000pt;}
._16_c00300{width:43.138667pt;}
._21_c00300{width:87.562667pt;}
._17_c00300{width:94.264000pt;}
._2_c00300{width:392.760000pt;}
._23_c00300{width:429.592000pt;}
.fs2_c00300{font-size:42.666667pt;}
.fs1_c00300{font-size:58.666667pt;}
.fs0_c00300{font-size:61.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y1f_c00300{bottom:2.760000pt;}
.y1e_c00300{bottom:6.425219pt;}
.y1d_c00300{bottom:58.813333pt;}
.y1c_c00300{bottom:104.146667pt;}
.y1b_c00300{bottom:126.013333pt;}
.y1a_c00300{bottom:146.813333pt;}
.y19_c00300{bottom:168.946667pt;}
.y18_c00300{bottom:192.680000pt;}
.y17_c00300{bottom:214.813333pt;}
.y16_c00300{bottom:237.613333pt;}
.y15_c00300{bottom:260.680000pt;}
.y14_c00300{bottom:282.413333pt;}
.y13_c00300{bottom:304.813333pt;}
.y12_c00300{bottom:326.813333pt;}
.y11_c00300{bottom:348.680000pt;}
.y10_c00300{bottom:370.680000pt;}
.yf_c00300{bottom:393.080000pt;}
.ye_c00300{bottom:415.480000pt;}
.yd_c00300{bottom:437.480000pt;}
.yc_c00300{bottom:459.080000pt;}
.yb_c00300{bottom:481.213333pt;}
.ya_c00300{bottom:503.213333pt;}
.y9_c00300{bottom:525.613333pt;}
.y8_c00300{bottom:547.613333pt;}
.y7_c00300{bottom:570.013333pt;}
.y6_c00300{bottom:592.280000pt;}
.y5_c00300{bottom:615.080000pt;}
.y4_c00300{bottom:636.680000pt;}
.y3_c00300{bottom:659.080000pt;}
.y2_c00300{bottom:681.080000pt;}
.y1_c00300{bottom:703.613333pt;}
.h3_c00300{height:11.733399pt;}
.h4_c00300{height:38.937500pt;}
.h2_c00300{height:77.654948pt;}
.h1_c00300{height:738.666667pt;}
.h0_c00300{height:738.733333pt;}
.w2_c00300{width:93.222667pt;}
.w0_c00300{width:503.266667pt;}
.w1_c00300{width:503.333333pt;}
.x0_c00300{left:0.000000pt;}
.x5_c00300{left:26.000000pt;}
.x4_c00300{left:27.600000pt;}
.x2_c00300{left:29.200000pt;}
.x3_c00300{left:30.400000pt;}
.x1_c00300{left:180.266667pt;}
.x6_c00300{left:207.333333pt;}
.x7_c00300{left:208.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_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_00f00336ac051d925a3efde3.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_b265e932a2a76787e95aad5e.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_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.311035;font-style:normal;font-weight:normal;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_3fca7c4b53a80176addb7943.woff2')format("woff");}.ff4_c00301{font-family:ff4_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:ff5_c00301;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:3.000000px;}
.ls3_c00301{letter-spacing:6.000000px;}
.ls1_c00301{letter-spacing:16.406400px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-51.126000px;}
.ws1_c00301{word-spacing:-22.629000px;}
.ws3_c00301{word-spacing:-17.352000px;}
.ws2_c00301{word-spacing:-16.629000px;}
.ws4_c00301{word-spacing:0.000000px;}
._1f_c00301{margin-left:-31.809000px;}
._16_c00301{margin-left:-29.877000px;}
._26_c00301{margin-left:-23.391000px;}
._21_c00301{margin-left:-17.802000px;}
._17_c00301{margin-left:-15.870000px;}
._18_c00301{margin-left:-13.386000px;}
._19_c00301{margin-left:-12.075000px;}
._2a_c00301{margin-left:-10.665000px;}
._22_c00301{margin-left:-9.315000px;}
._1b_c00301{margin-left:-7.728000px;}
._d_c00301{margin-left:-6.693000px;}
._12_c00301{margin-left:-4.692000px;}
._1e_c00301{margin-left:-3.588000px;}
._11_c00301{margin-left:-2.553000px;}
._13_c00301{margin-left:-1.242000px;}
._10_c00301{width:1.587000px;}
._f_c00301{width:2.622000px;}
._14_c00301{width:3.657000px;}
._e_c00301{width:5.106000px;}
._b_c00301{width:6.417000px;}
._9_c00301{width:7.728000px;}
._1c_c00301{width:8.832000px;}
._4_c00301{width:9.867000px;}
._8_c00301{width:11.592000px;}
._a_c00301{width:13.938000px;}
._1d_c00301{width:15.732000px;}
._15_c00301{width:17.871000px;}
._3_c00301{width:18.906000px;}
._0_c00301{width:20.907000px;}
._6_c00301{width:22.356000px;}
._2b_c00301{width:24.150000px;}
._2_c00301{width:25.599000px;}
._1_c00301{width:27.738000px;}
._5_c00301{width:31.119000px;}
._24_c00301{width:32.706000px;}
._c_c00301{width:33.951000px;}
._2e_c00301{width:36.087000px;}
._2c_c00301{width:37.398000px;}
._20_c00301{width:41.538000px;}
._28_c00301{width:45.234000px;}
._29_c00301{width:97.779000px;}
._1a_c00301{width:130.686000px;}
._23_c00301{width:142.209000px;}
._27_c00301{width:152.145000px;}
._7_c00301{width:160.425000px;}
._25_c00301{width:165.669000px;}
._2d_c00301{width:453.906000px;}
.fc2_c00301{color:transparent;}
.fc1_c00301{color:rgb(128,128,128);}
.fc0_c00301{color:rgb(0,0,0);}
.fs4_c00301{font-size:48.000000px;}
.fs2_c00301{font-size:55.200000px;}
.fs1_c00301{font-size:66.000000px;}
.fs0_c00301{font-size:69.000000px;}
.fs3_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y1b_c00301{bottom:3.105000px;}
.y1a_c00301{bottom:7.228363px;}
.y19_c00301{bottom:52.950000px;}
.y18_c00301{bottom:77.700000px;}
.y17_c00301{bottom:103.950000px;}
.y16_c00301{bottom:129.000000px;}
.y15_c00301{bottom:153.000000px;}
.y14_c00301{bottom:181.200000px;}
.y13_c00301{bottom:205.200000px;}
.y12_c00301{bottom:255.450000px;}
.y11_c00301{bottom:306.150000px;}
.y10_c00301{bottom:330.150000px;}
.yf_c00301{bottom:355.350000px;}
.ye_c00301{bottom:380.400000px;}
.yd_c00301{bottom:404.400000px;}
.yc_c00301{bottom:429.750000px;}
.yb_c00301{bottom:454.350000px;}
.ya_c00301{bottom:480.000000px;}
.y9_c00301{bottom:505.950000px;}
.y8_c00301{bottom:529.950000px;}
.y7_c00301{bottom:554.250000px;}
.y6_c00301{bottom:580.950000px;}
.y5_c00301{bottom:606.150000px;}
.y4_c00301{bottom:630.750000px;}
.y3_c00301{bottom:657.000000px;}
.y2_c00301{bottom:681.750000px;}
.y1_c00301{bottom:731.700000px;}
.h5_c00301{height:13.200074px;}
.h6_c00301{height:43.804688px;}
.h3_c00301{height:80.758301px;}
.h2_c00301{height:87.361816px;}
.h4_c00301{height:91.160156px;}
.h1_c00301{height:827.250000px;}
.h0_c00301{height:827.550000px;}
.w2_c00301{width:104.875500px;}
.w0_c00301{width:572.100000px;}
.w1_c00301{width:572.250000px;}
.x0_c00301{left:0.000000px;}
.x10_c00301{left:24.600000px;}
.xe_c00301{left:25.950000px;}
.x7_c00301{left:29.700000px;}
.x5_c00301{left:31.050000px;}
.x8_c00301{left:46.500000px;}
.x6_c00301{left:47.700000px;}
.x4_c00301{left:67.500000px;}
.xd_c00301{left:89.700000px;}
.xf_c00301{left:91.500000px;}
.xa_c00301{left:94.050000px;}
.x9_c00301{left:95.400000px;}
.x3_c00301{left:98.100000px;}
.xc_c00301{left:116.850000px;}
.x2_c00301{left:121.800000px;}
.xb_c00301{left:135.300000px;}
.x1_c00301{left:145.800000px;}
.x12_c00301{left:237.864258px;}
.x11_c00301{left:497.700000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls2_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:2.666667pt;}
.ls3_c00301{letter-spacing:5.333333pt;}
.ls1_c00301{letter-spacing:14.583467pt;}
.ws0_c00301{word-spacing:-45.445333pt;}
.ws1_c00301{word-spacing:-20.114667pt;}
.ws3_c00301{word-spacing:-15.424000pt;}
.ws2_c00301{word-spacing:-14.781333pt;}
.ws4_c00301{word-spacing:0.000000pt;}
._1f_c00301{margin-left:-28.274667pt;}
._16_c00301{margin-left:-26.557333pt;}
._26_c00301{margin-left:-20.792000pt;}
._21_c00301{margin-left:-15.824000pt;}
._17_c00301{margin-left:-14.106667pt;}
._18_c00301{margin-left:-11.898667pt;}
._19_c00301{margin-left:-10.733333pt;}
._2a_c00301{margin-left:-9.480000pt;}
._22_c00301{margin-left:-8.280000pt;}
._1b_c00301{margin-left:-6.869333pt;}
._d_c00301{margin-left:-5.949333pt;}
._12_c00301{margin-left:-4.170667pt;}
._1e_c00301{margin-left:-3.189333pt;}
._11_c00301{margin-left:-2.269333pt;}
._13_c00301{margin-left:-1.104000pt;}
._10_c00301{width:1.410667pt;}
._f_c00301{width:2.330667pt;}
._14_c00301{width:3.250667pt;}
._e_c00301{width:4.538667pt;}
._b_c00301{width:5.704000pt;}
._9_c00301{width:6.869333pt;}
._1c_c00301{width:7.850667pt;}
._4_c00301{width:8.770667pt;}
._8_c00301{width:10.304000pt;}
._a_c00301{width:12.389333pt;}
._1d_c00301{width:13.984000pt;}
._15_c00301{width:15.885333pt;}
._3_c00301{width:16.805333pt;}
._0_c00301{width:18.584000pt;}
._6_c00301{width:19.872000pt;}
._2b_c00301{width:21.466667pt;}
._2_c00301{width:22.754667pt;}
._1_c00301{width:24.656000pt;}
._5_c00301{width:27.661333pt;}
._24_c00301{width:29.072000pt;}
._c_c00301{width:30.178667pt;}
._2e_c00301{width:32.077333pt;}
._2c_c00301{width:33.242667pt;}
._20_c00301{width:36.922667pt;}
._28_c00301{width:40.208000pt;}
._29_c00301{width:86.914667pt;}
._1a_c00301{width:116.165333pt;}
._23_c00301{width:126.408000pt;}
._27_c00301{width:135.240000pt;}
._7_c00301{width:142.600000pt;}
._25_c00301{width:147.261333pt;}
._2d_c00301{width:403.472000pt;}
.fs4_c00301{font-size:42.666667pt;}
.fs2_c00301{font-size:49.066667pt;}
.fs1_c00301{font-size:58.666667pt;}
.fs0_c00301{font-size:61.333333pt;}
.fs3_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y1b_c00301{bottom:2.760000pt;}
.y1a_c00301{bottom:6.425212pt;}
.y19_c00301{bottom:47.066667pt;}
.y18_c00301{bottom:69.066667pt;}
.y17_c00301{bottom:92.400000pt;}
.y16_c00301{bottom:114.666667pt;}
.y15_c00301{bottom:136.000000pt;}
.y14_c00301{bottom:161.066667pt;}
.y13_c00301{bottom:182.400000pt;}
.y12_c00301{bottom:227.066667pt;}
.y11_c00301{bottom:272.133333pt;}
.y10_c00301{bottom:293.466667pt;}
.yf_c00301{bottom:315.866667pt;}
.ye_c00301{bottom:338.133333pt;}
.yd_c00301{bottom:359.466667pt;}
.yc_c00301{bottom:382.000000pt;}
.yb_c00301{bottom:403.866667pt;}
.ya_c00301{bottom:426.666667pt;}
.y9_c00301{bottom:449.733333pt;}
.y8_c00301{bottom:471.066667pt;}
.y7_c00301{bottom:492.666667pt;}
.y6_c00301{bottom:516.400000pt;}
.y5_c00301{bottom:538.800000pt;}
.y4_c00301{bottom:560.666667pt;}
.y3_c00301{bottom:584.000000pt;}
.y2_c00301{bottom:606.000000pt;}
.y1_c00301{bottom:650.400000pt;}
.h5_c00301{height:11.733399pt;}
.h6_c00301{height:38.937500pt;}
.h3_c00301{height:71.785156pt;}
.h2_c00301{height:77.654948pt;}
.h4_c00301{height:81.031250pt;}
.h1_c00301{height:735.333333pt;}
.h0_c00301{height:735.600000pt;}
.w2_c00301{width:93.222667pt;}
.w0_c00301{width:508.533333pt;}
.w1_c00301{width:508.666667pt;}
.x0_c00301{left:0.000000pt;}
.x10_c00301{left:21.866667pt;}
.xe_c00301{left:23.066667pt;}
.x7_c00301{left:26.400000pt;}
.x5_c00301{left:27.600000pt;}
.x8_c00301{left:41.333333pt;}
.x6_c00301{left:42.400000pt;}
.x4_c00301{left:60.000000pt;}
.xd_c00301{left:79.733333pt;}
.xf_c00301{left:81.333333pt;}
.xa_c00301{left:83.600000pt;}
.x9_c00301{left:84.800000pt;}
.x3_c00301{left:87.200000pt;}
.xc_c00301{left:103.866667pt;}
.x2_c00301{left:108.266667pt;}
.xb_c00301{left:120.266667pt;}
.x1_c00301{left:129.600000pt;}
.x12_c00301{left:211.434896pt;}
.x11_c00301{left:442.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66039792b88ad4dbaec0ed07.woff2')format("woff");}.ff1_c00302{font-family:ff1_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:ff2_c00302;src:url('chunks/assets/font_6fa7e9469b524a7d708445b7.woff2')format("woff");}.ff2_c00302{font-family:ff2_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:ff3_c00302;src:url('chunks/assets/font_f84634428c6093fff76bca73.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00302{font-family:ff4_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;}
.ls4_c00302{letter-spacing:0.000000px;}
.ls2_c00302{letter-spacing:0.600000px;}
.ls1_c00302{letter-spacing:6.000000px;}
.ls3_c00302{letter-spacing:15.000000px;}
.ls0_c00302{letter-spacing:26.433000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-22.629000px;}
.ws1_c00302{word-spacing:-16.629000px;}
.ws3_c00302{word-spacing:-0.189000px;}
.ws4_c00302{word-spacing:0.000000px;}
.ws2_c00302{word-spacing:1.311000px;}
._22_c00302{margin-left:-32.499000px;}
._1d_c00302{margin-left:-29.571000px;}
._21_c00302{margin-left:-24.219000px;}
._18_c00302{margin-left:-16.056000px;}
._5_c00302{margin-left:-13.248000px;}
._1b_c00302{margin-left:-10.281000px;}
._19_c00302{margin-left:-8.925000px;}
._11_c00302{margin-left:-7.590000px;}
._12_c00302{margin-left:-6.279000px;}
._6_c00302{margin-left:-4.761000px;}
._7_c00302{margin-left:-3.726000px;}
._2_c00302{margin-left:-2.277000px;}
._3_c00302{margin-left:-1.104000px;}
._0_c00302{width:1.518000px;}
._a_c00302{width:2.691000px;}
._14_c00302{width:3.819000px;}
._10_c00302{width:5.016000px;}
._8_c00302{width:6.417000px;}
._d_c00302{width:7.797000px;}
._c_c00302{width:9.039000px;}
._9_c00302{width:10.074000px;}
._f_c00302{width:11.592000px;}
._1f_c00302{width:12.624000px;}
._1_c00302{width:13.800000px;}
._16_c00302{width:14.973000px;}
._b_c00302{width:16.905000px;}
._17_c00302{width:18.699000px;}
._23_c00302{width:19.866000px;}
._13_c00302{width:20.976000px;}
._27_c00302{width:24.369000px;}
._e_c00302{width:27.156000px;}
._1a_c00302{width:29.349000px;}
._26_c00302{width:30.366000px;}
._1e_c00302{width:34.383000px;}
._20_c00302{width:35.622000px;}
._1c_c00302{width:39.927000px;}
._15_c00302{width:56.073000px;}
._24_c00302{width:93.324000px;}
._4_c00302{width:438.699000px;}
._25_c00302{width:902.391000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(128,128,128);}
.fc0_c00302{color:rgb(0,0,0);}
.fs3_c00302{font-size:48.000000px;}
.fs2_c00302{font-size:54.000000px;}
.fs1_c00302{font-size:66.000000px;}
.fs0_c00302{font-size:69.000000px;}
.y0_c00302{bottom:0.000000px;}
.y1c_c00302{bottom:3.105000px;}
.y1b_c00302{bottom:7.228369px;}
.y1a_c00302{bottom:160.320000px;}
.y19_c00302{bottom:185.670000px;}
.y18_c00302{bottom:211.620000px;}
.y17_c00302{bottom:235.620000px;}
.y16_c00302{bottom:261.870000px;}
.y15_c00302{bottom:285.570000px;}
.y14_c00302{bottom:311.520000px;}
.y13_c00302{bottom:338.220000px;}
.y12_c00302{bottom:361.470000px;}
.y11_c00302{bottom:386.670000px;}
.y10_c00302{bottom:412.020000px;}
.yf_c00302{bottom:436.770000px;}
.ye_c00302{bottom:460.920000px;}
.yd_c00302{bottom:485.370000px;}
.yc_c00302{bottom:511.320000px;}
.yb_c00302{bottom:536.220000px;}
.ya_c00302{bottom:560.820000px;}
.y9_c00302{bottom:585.570000px;}
.y8_c00302{bottom:610.470000px;}
.y7_c00302{bottom:636.120000px;}
.y6_c00302{bottom:660.720000px;}
.y5_c00302{bottom:685.770000px;}
.y4_c00302{bottom:710.820000px;}
.y3_c00302{bottom:736.020000px;}
.y2_c00302{bottom:761.670000px;}
.y1_c00302{bottom:785.670000px;}
.h3_c00302{height:13.200073px;}
.h4_c00302{height:43.804688px;}
.h2_c00302{height:87.361816px;}
.h0_c00302{height:821.850000px;}
.h1_c00302{height:822.000000px;}
.w2_c00302{width:104.875500px;}
.w0_c00302{width:559.425000px;}
.w1_c00302{width:559.500000px;}
.x0_c00302{left:0.000000px;}
.x5_c00302{left:26.400000px;}
.x2_c00302{left:27.750000px;}
.x3_c00302{left:28.950000px;}
.x4_c00302{left:30.000000px;}
.x7_c00302{left:53.250000px;}
.x6_c00302{left:76.500000px;}
.x1_c00302{left:201.150000px;}
.x8_c00302{left:231.526749px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls4_c00302{letter-spacing:0.000000pt;}
.ls2_c00302{letter-spacing:0.533333pt;}
.ls1_c00302{letter-spacing:5.333333pt;}
.ls3_c00302{letter-spacing:13.333333pt;}
.ls0_c00302{letter-spacing:23.496000pt;}
.ws0_c00302{word-spacing:-20.114667pt;}
.ws1_c00302{word-spacing:-14.781333pt;}
.ws3_c00302{word-spacing:-0.168000pt;}
.ws4_c00302{word-spacing:0.000000pt;}
.ws2_c00302{word-spacing:1.165333pt;}
._22_c00302{margin-left:-28.888000pt;}
._1d_c00302{margin-left:-26.285333pt;}
._21_c00302{margin-left:-21.528000pt;}
._18_c00302{margin-left:-14.272000pt;}
._5_c00302{margin-left:-11.776000pt;}
._1b_c00302{margin-left:-9.138667pt;}
._19_c00302{margin-left:-7.933333pt;}
._11_c00302{margin-left:-6.746667pt;}
._12_c00302{margin-left:-5.581333pt;}
._6_c00302{margin-left:-4.232000pt;}
._7_c00302{margin-left:-3.312000pt;}
._2_c00302{margin-left:-2.024000pt;}
._3_c00302{margin-left:-0.981333pt;}
._0_c00302{width:1.349333pt;}
._a_c00302{width:2.392000pt;}
._14_c00302{width:3.394667pt;}
._10_c00302{width:4.458667pt;}
._8_c00302{width:5.704000pt;}
._d_c00302{width:6.930667pt;}
._c_c00302{width:8.034667pt;}
._9_c00302{width:8.954667pt;}
._f_c00302{width:10.304000pt;}
._1f_c00302{width:11.221333pt;}
._1_c00302{width:12.266667pt;}
._16_c00302{width:13.309333pt;}
._b_c00302{width:15.026667pt;}
._17_c00302{width:16.621333pt;}
._23_c00302{width:17.658667pt;}
._13_c00302{width:18.645333pt;}
._27_c00302{width:21.661333pt;}
._e_c00302{width:24.138667pt;}
._1a_c00302{width:26.088000pt;}
._26_c00302{width:26.992000pt;}
._1e_c00302{width:30.562667pt;}
._20_c00302{width:31.664000pt;}
._1c_c00302{width:35.490667pt;}
._15_c00302{width:49.842667pt;}
._24_c00302{width:82.954667pt;}
._4_c00302{width:389.954667pt;}
._25_c00302{width:802.125333pt;}
.fs3_c00302{font-size:42.666667pt;}
.fs2_c00302{font-size:48.000000pt;}
.fs1_c00302{font-size:58.666667pt;}
.fs0_c00302{font-size:61.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y1c_c00302{bottom:2.760000pt;}
.y1b_c00302{bottom:6.425217pt;}
.y1a_c00302{bottom:142.506667pt;}
.y19_c00302{bottom:165.040000pt;}
.y18_c00302{bottom:188.106667pt;}
.y17_c00302{bottom:209.440000pt;}
.y16_c00302{bottom:232.773333pt;}
.y15_c00302{bottom:253.840000pt;}
.y14_c00302{bottom:276.906667pt;}
.y13_c00302{bottom:300.640000pt;}
.y12_c00302{bottom:321.306667pt;}
.y11_c00302{bottom:343.706667pt;}
.y10_c00302{bottom:366.240000pt;}
.yf_c00302{bottom:388.240000pt;}
.ye_c00302{bottom:409.706667pt;}
.yd_c00302{bottom:431.440000pt;}
.yc_c00302{bottom:454.506667pt;}
.yb_c00302{bottom:476.640000pt;}
.ya_c00302{bottom:498.506667pt;}
.y9_c00302{bottom:520.506667pt;}
.y8_c00302{bottom:542.640000pt;}
.y7_c00302{bottom:565.440000pt;}
.y6_c00302{bottom:587.306667pt;}
.y5_c00302{bottom:609.573333pt;}
.y4_c00302{bottom:631.840000pt;}
.y3_c00302{bottom:654.240000pt;}
.y2_c00302{bottom:677.040000pt;}
.y1_c00302{bottom:698.373333pt;}
.h3_c00302{height:11.733399pt;}
.h4_c00302{height:38.937500pt;}
.h2_c00302{height:77.654948pt;}
.h0_c00302{height:730.533333pt;}
.h1_c00302{height:730.666667pt;}
.w2_c00302{width:93.222667pt;}
.w0_c00302{width:497.266667pt;}
.w1_c00302{width:497.333333pt;}
.x0_c00302{left:0.000000pt;}
.x5_c00302{left:23.466667pt;}
.x2_c00302{left:24.666667pt;}
.x3_c00302{left:25.733333pt;}
.x4_c00302{left:26.666667pt;}
.x7_c00302{left:47.333333pt;}
.x6_c00302{left:68.000000pt;}
.x1_c00302{left:178.800000pt;}
.x8_c00302{left:205.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_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_83ded00538a8780b5cc30990.woff2')format("woff");}.ff1_c00303{font-family:ff1_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:ff2_c00303;src:url('chunks/assets/font_53ae2cb24135a0102299a50e.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_cffa94fb09c23e0d8a95fb5e.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_d2fe9116b0cbec9db3943358.woff2')format("woff");}.ff4_c00303{font-family:ff4_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:ff5_c00303;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00303{letter-spacing:0.000000px;}
.ls2_c00303{letter-spacing:1.200000px;}
.ls5_c00303{letter-spacing:3.000000px;}
.ls6_c00303{letter-spacing:6.000000px;}
.ls0_c00303{letter-spacing:30.000000px;}
.ls1_c00303{letter-spacing:36.171000px;}
.ls3_c00303{letter-spacing:37.371000px;}
.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;}
}
.ws7_c00303{word-spacing:-22.629000px;}
.ws3_c00303{word-spacing:-17.478000px;}
.ws1_c00303{word-spacing:-16.629000px;}
.ws2_c00303{word-spacing:-1.152000px;}
.ws4_c00303{word-spacing:-1.098000px;}
.ws8_c00303{word-spacing:0.000000px;}
.ws6_c00303{word-spacing:0.069000px;}
.ws5_c00303{word-spacing:1.104000px;}
.ws0_c00303{word-spacing:3.381000px;}
._24_c00303{margin-left:-26.634000px;}
._12_c00303{margin-left:-15.669000px;}
._15_c00303{margin-left:-12.522000px;}
._18_c00303{margin-left:-11.262000px;}
._d_c00303{margin-left:-9.162000px;}
._10_c00303{margin-left:-7.686000px;}
._c_c00303{margin-left:-6.534000px;}
._11_c00303{margin-left:-5.175000px;}
._b_c00303{margin-left:-3.570000px;}
._a_c00303{margin-left:-2.247000px;}
._14_c00303{margin-left:-1.143000px;}
._4_c00303{width:1.986000px;}
._13_c00303{width:3.036000px;}
._7_c00303{width:4.347000px;}
._2_c00303{width:5.382000px;}
._26_c00303{width:6.417000px;}
._9_c00303{width:7.590000px;}
._1_c00303{width:9.492000px;}
._8_c00303{width:10.644000px;}
._3_c00303{width:12.243000px;}
._6_c00303{width:13.524000px;}
._1a_c00303{width:14.976000px;}
._1c_c00303{width:16.176000px;}
._17_c00303{width:17.283000px;}
._e_c00303{width:18.744000px;}
._1f_c00303{width:20.310000px;}
._f_c00303{width:21.477000px;}
._16_c00303{width:25.239000px;}
._0_c00303{width:26.841000px;}
._1b_c00303{width:29.625000px;}
._1e_c00303{width:31.581000px;}
._1d_c00303{width:34.302000px;}
._22_c00303{width:35.781000px;}
._21_c00303{width:36.942000px;}
._5_c00303{width:39.810000px;}
._27_c00303{width:67.017000px;}
._19_c00303{width:94.494000px;}
._23_c00303{width:169.563000px;}
._20_c00303{width:304.731000px;}
._25_c00303{width:310.461000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(128,128,128);}
.fc0_c00303{color:rgb(0,0,0);}
.fs3_c00303{font-size:48.000000px;}
.fs2_c00303{font-size:57.000000px;}
.fs1_c00303{font-size:66.000000px;}
.fs0_c00303{font-size:69.000000px;}
.y0_c00303{bottom:0.000000px;}
.y1a_c00303{bottom:3.105000px;}
.y19_c00303{bottom:7.228363px;}
.y18_c00303{bottom:67.800000px;}
.y17_c00303{bottom:92.100000px;}
.y16_c00303{bottom:117.750000px;}
.y15_c00303{bottom:142.050000px;}
.y14_c00303{bottom:168.750000px;}
.y13_c00303{bottom:193.800000px;}
.y12_c00303{bottom:218.400000px;}
.y11_c00303{bottom:244.050000px;}
.y10_c00303{bottom:269.100000px;}
.yf_c00303{bottom:319.950000px;}
.ye_c00303{bottom:343.200000px;}
.yd_c00303{bottom:393.750000px;}
.yc_c00303{bottom:443.850000px;}
.yb_c00303{bottom:468.750000px;}
.ya_c00303{bottom:494.400000px;}
.y9_c00303{bottom:520.200000px;}
.y8_c00303{bottom:544.050000px;}
.y7_c00303{bottom:568.650000px;}
.y6_c00303{bottom:594.000000px;}
.y5_c00303{bottom:618.900000px;}
.y4_c00303{bottom:642.900000px;}
.y3_c00303{bottom:669.600000px;}
.y2_c00303{bottom:694.500000px;}
.y1_c00303{bottom:744.450000px;}
.h5_c00303{height:13.200074px;}
.h6_c00303{height:43.804688px;}
.h3_c00303{height:80.758301px;}
.h2_c00303{height:87.361816px;}
.h4_c00303{height:87.961816px;}
.h1_c00303{height:827.250000px;}
.h0_c00303{height:827.550000px;}
.w2_c00303{width:104.875500px;}
.w0_c00303{width:572.100000px;}
.w1_c00303{width:572.250000px;}
.x0_c00303{left:0.000000px;}
.xa_c00303{left:33.750000px;}
.x6_c00303{left:34.800000px;}
.x5_c00303{left:51.300000px;}
.x9_c00303{left:68.250000px;}
.x8_c00303{left:98.250000px;}
.x3_c00303{left:100.950000px;}
.x2_c00303{left:124.200000px;}
.x4_c00303{left:125.850000px;}
.x1_c00303{left:142.200000px;}
.x7_c00303{left:146.400000px;}
.xc_c00303{left:237.864258px;}
.xb_c00303{left:526.500000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls4_c00303{letter-spacing:0.000000pt;}
.ls2_c00303{letter-spacing:1.066667pt;}
.ls5_c00303{letter-spacing:2.666667pt;}
.ls6_c00303{letter-spacing:5.333333pt;}
.ls0_c00303{letter-spacing:26.666667pt;}
.ls1_c00303{letter-spacing:32.152000pt;}
.ls3_c00303{letter-spacing:33.218667pt;}
.ws7_c00303{word-spacing:-20.114667pt;}
.ws3_c00303{word-spacing:-15.536000pt;}
.ws1_c00303{word-spacing:-14.781333pt;}
.ws2_c00303{word-spacing:-1.024000pt;}
.ws4_c00303{word-spacing:-0.976000pt;}
.ws8_c00303{word-spacing:0.000000pt;}
.ws6_c00303{word-spacing:0.061333pt;}
.ws5_c00303{word-spacing:0.981333pt;}
.ws0_c00303{word-spacing:3.005333pt;}
._24_c00303{margin-left:-23.674667pt;}
._12_c00303{margin-left:-13.928000pt;}
._15_c00303{margin-left:-11.130667pt;}
._18_c00303{margin-left:-10.010667pt;}
._d_c00303{margin-left:-8.144000pt;}
._10_c00303{margin-left:-6.832000pt;}
._c_c00303{margin-left:-5.808000pt;}
._11_c00303{margin-left:-4.600000pt;}
._b_c00303{margin-left:-3.173333pt;}
._a_c00303{margin-left:-1.997333pt;}
._14_c00303{margin-left:-1.016000pt;}
._4_c00303{width:1.765333pt;}
._13_c00303{width:2.698667pt;}
._7_c00303{width:3.864000pt;}
._2_c00303{width:4.784000pt;}
._26_c00303{width:5.704000pt;}
._9_c00303{width:6.746667pt;}
._1_c00303{width:8.437333pt;}
._8_c00303{width:9.461333pt;}
._3_c00303{width:10.882667pt;}
._6_c00303{width:12.021333pt;}
._1a_c00303{width:13.312000pt;}
._1c_c00303{width:14.378667pt;}
._17_c00303{width:15.362667pt;}
._e_c00303{width:16.661333pt;}
._1f_c00303{width:18.053333pt;}
._f_c00303{width:19.090667pt;}
._16_c00303{width:22.434667pt;}
._0_c00303{width:23.858667pt;}
._1b_c00303{width:26.333333pt;}
._1e_c00303{width:28.072000pt;}
._1d_c00303{width:30.490667pt;}
._22_c00303{width:31.805333pt;}
._21_c00303{width:32.837333pt;}
._5_c00303{width:35.386667pt;}
._27_c00303{width:59.570667pt;}
._19_c00303{width:83.994667pt;}
._23_c00303{width:150.722667pt;}
._20_c00303{width:270.872000pt;}
._25_c00303{width:275.965333pt;}
.fs3_c00303{font-size:42.666667pt;}
.fs2_c00303{font-size:50.666667pt;}
.fs1_c00303{font-size:58.666667pt;}
.fs0_c00303{font-size:61.333333pt;}
.y0_c00303{bottom:0.000000pt;}
.y1a_c00303{bottom:2.760000pt;}
.y19_c00303{bottom:6.425212pt;}
.y18_c00303{bottom:60.266667pt;}
.y17_c00303{bottom:81.866667pt;}
.y16_c00303{bottom:104.666667pt;}
.y15_c00303{bottom:126.266667pt;}
.y14_c00303{bottom:150.000000pt;}
.y13_c00303{bottom:172.266667pt;}
.y12_c00303{bottom:194.133333pt;}
.y11_c00303{bottom:216.933333pt;}
.y10_c00303{bottom:239.200000pt;}
.yf_c00303{bottom:284.400000pt;}
.ye_c00303{bottom:305.066667pt;}
.yd_c00303{bottom:350.000000pt;}
.yc_c00303{bottom:394.533333pt;}
.yb_c00303{bottom:416.666667pt;}
.ya_c00303{bottom:439.466667pt;}
.y9_c00303{bottom:462.400000pt;}
.y8_c00303{bottom:483.600000pt;}
.y7_c00303{bottom:505.466667pt;}
.y6_c00303{bottom:528.000000pt;}
.y5_c00303{bottom:550.133333pt;}
.y4_c00303{bottom:571.466667pt;}
.y3_c00303{bottom:595.200000pt;}
.y2_c00303{bottom:617.333333pt;}
.y1_c00303{bottom:661.733333pt;}
.h5_c00303{height:11.733399pt;}
.h6_c00303{height:38.937500pt;}
.h3_c00303{height:71.785156pt;}
.h2_c00303{height:77.654948pt;}
.h4_c00303{height:78.188281pt;}
.h1_c00303{height:735.333333pt;}
.h0_c00303{height:735.600000pt;}
.w2_c00303{width:93.222667pt;}
.w0_c00303{width:508.533333pt;}
.w1_c00303{width:508.666667pt;}
.x0_c00303{left:0.000000pt;}
.xa_c00303{left:30.000000pt;}
.x6_c00303{left:30.933333pt;}
.x5_c00303{left:45.600000pt;}
.x9_c00303{left:60.666667pt;}
.x8_c00303{left:87.333333pt;}
.x3_c00303{left:89.733333pt;}
.x2_c00303{left:110.400000pt;}
.x4_c00303{left:111.866667pt;}
.x1_c00303{left:126.400000pt;}
.x7_c00303{left:130.133333pt;}
.xc_c00303{left:211.434896pt;}
.xb_c00303{left:468.000000pt;}
}





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

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_3d3f13fd318b2d260560aae4.woff2')format("woff");}.ff1_c00304{font-family:ff1_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:ff2_c00304;src:url('chunks/assets/font_ca555547b82b9fddecf17ee3.woff2')format("woff");}.ff2_c00304{font-family:ff2_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:ff3_c00304;src:url('chunks/assets/font_679ead43405439ecb9f42c89.woff2')format("woff");}.ff3_c00304{font-family:ff3_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:ff4_c00304;src:url('chunks/assets/font_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff4_c00304{font-family:ff4_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:ff5_c00304;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00304{font-family:ff5_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;}
.ls5_c00304{letter-spacing:0.000000px;}
.ls4_c00304{letter-spacing:1.200000px;}
.ls2_c00304{letter-spacing:3.771000px;}
.ls3_c00304{letter-spacing:6.000000px;}
.ls1_c00304{letter-spacing:26.400000px;}
.ls0_c00304{letter-spacing:29.301000px;}
.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;}
}
.ws3_c00304{word-spacing:-29.040000px;}
.ws7_c00304{word-spacing:-22.629000px;}
.ws0_c00304{word-spacing:-16.629000px;}
.ws6_c00304{word-spacing:-1.104000px;}
.ws5_c00304{word-spacing:-0.138000px;}
.ws2_c00304{word-spacing:-0.063000px;}
.ws8_c00304{word-spacing:0.000000px;}
.ws1_c00304{word-spacing:2.130000px;}
.ws4_c00304{word-spacing:3.519000px;}
._1f_c00304{margin-left:-19.884000px;}
._1c_c00304{margin-left:-15.594000px;}
._16_c00304{margin-left:-13.524000px;}
._18_c00304{margin-left:-11.040000px;}
._15_c00304{margin-left:-8.970000px;}
._1e_c00304{margin-left:-7.659000px;}
._6_c00304{margin-left:-6.486000px;}
._4_c00304{margin-left:-5.175000px;}
._3_c00304{margin-left:-3.450000px;}
._9_c00304{margin-left:-2.346000px;}
._2_c00304{margin-left:-1.311000px;}
._1_c00304{width:1.380000px;}
._0_c00304{width:2.415000px;}
._c_c00304{width:3.657000px;}
._11_c00304{width:4.761000px;}
._b_c00304{width:6.762000px;}
._e_c00304{width:8.280000px;}
._d_c00304{width:9.729000px;}
._1b_c00304{width:10.881000px;}
._a_c00304{width:12.489000px;}
._f_c00304{width:14.007000px;}
._8_c00304{width:15.249000px;}
._7_c00304{width:17.250000px;}
._19_c00304{width:18.561000px;}
._12_c00304{width:20.907000px;}
._22_c00304{width:22.080000px;}
._23_c00304{width:23.460000px;}
._14_c00304{width:28.221000px;}
._13_c00304{width:29.877000px;}
._17_c00304{width:31.878000px;}
._24_c00304{width:32.913000px;}
._25_c00304{width:38.070000px;}
._1a_c00304{width:64.446000px;}
._1d_c00304{width:100.599000px;}
._10_c00304{width:104.634000px;}
._21_c00304{width:164.841000px;}
._20_c00304{width:237.171000px;}
._5_c00304{width:506.367000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(128,128,128);}
.fc0_c00304{color:rgb(0,0,0);}
.fs2_c00304{font-size:48.000000px;}
.fs1_c00304{font-size:66.000000px;}
.fs0_c00304{font-size:69.000000px;}
.y0_c00304{bottom:0.000000px;}
.y1d_c00304{bottom:3.105000px;}
.y1c_c00304{bottom:7.228371px;}
.y1b_c00304{bottom:54.315000px;}
.y1a_c00304{bottom:76.965000px;}
.y19_c00304{bottom:103.665000px;}
.y18_c00304{bottom:127.665000px;}
.y17_c00304{bottom:178.515000px;}
.y16_c00304{bottom:203.565000px;}
.y15_c00304{bottom:253.815000px;}
.y14_c00304{bottom:304.515000px;}
.y13_c00304{bottom:329.415000px;}
.y12_c00304{bottom:354.465000px;}
.y11_c00304{bottom:379.665000px;}
.y10_c00304{bottom:404.415000px;}
.yf_c00304{bottom:429.615000px;}
.ye_c00304{bottom:453.915000px;}
.yd_c00304{bottom:479.265000px;}
.yc_c00304{bottom:504.015000px;}
.yb_c00304{bottom:528.915000px;}
.ya_c00304{bottom:553.815000px;}
.y9_c00304{bottom:578.865000px;}
.y8_c00304{bottom:603.465000px;}
.y7_c00304{bottom:628.215000px;}
.y6_c00304{bottom:653.415000px;}
.y5_c00304{bottom:678.165000px;}
.y4_c00304{bottom:703.365000px;}
.y3_c00304{bottom:729.315000px;}
.y2_c00304{bottom:753.015000px;}
.y1_c00304{bottom:778.065000px;}
.h4_c00304{height:13.200074px;}
.h5_c00304{height:43.804688px;}
.h3_c00304{height:80.758301px;}
.h2_c00304{height:87.361816px;}
.h1_c00304{height:817.500000px;}
.h0_c00304{height:817.575000px;}
.w2_c00304{width:104.875500px;}
.w0_c00304{width:556.200000px;}
.w1_c00304{width:556.500000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:31.350000px;}
.x3_c00304{left:33.000000px;}
.x4_c00304{left:34.650000px;}
.x7_c00304{left:57.600000px;}
.x6_c00304{left:58.650000px;}
.x5_c00304{left:73.500000px;}
.x1_c00304{left:189.450000px;}
.x9_c00304{left:229.914230px;}
.x8_c00304{left:437.400000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls5_c00304{letter-spacing:0.000000pt;}
.ls4_c00304{letter-spacing:1.066667pt;}
.ls2_c00304{letter-spacing:3.352000pt;}
.ls3_c00304{letter-spacing:5.333333pt;}
.ls1_c00304{letter-spacing:23.466667pt;}
.ls0_c00304{letter-spacing:26.045333pt;}
.ws3_c00304{word-spacing:-25.813333pt;}
.ws7_c00304{word-spacing:-20.114667pt;}
.ws0_c00304{word-spacing:-14.781333pt;}
.ws6_c00304{word-spacing:-0.981333pt;}
.ws5_c00304{word-spacing:-0.122667pt;}
.ws2_c00304{word-spacing:-0.056000pt;}
.ws8_c00304{word-spacing:0.000000pt;}
.ws1_c00304{word-spacing:1.893333pt;}
.ws4_c00304{word-spacing:3.128000pt;}
._1f_c00304{margin-left:-17.674667pt;}
._1c_c00304{margin-left:-13.861333pt;}
._16_c00304{margin-left:-12.021333pt;}
._18_c00304{margin-left:-9.813333pt;}
._15_c00304{margin-left:-7.973333pt;}
._1e_c00304{margin-left:-6.808000pt;}
._6_c00304{margin-left:-5.765333pt;}
._4_c00304{margin-left:-4.600000pt;}
._3_c00304{margin-left:-3.066667pt;}
._9_c00304{margin-left:-2.085333pt;}
._2_c00304{margin-left:-1.165333pt;}
._1_c00304{width:1.226667pt;}
._0_c00304{width:2.146667pt;}
._c_c00304{width:3.250667pt;}
._11_c00304{width:4.232000pt;}
._b_c00304{width:6.010667pt;}
._e_c00304{width:7.360000pt;}
._d_c00304{width:8.648000pt;}
._1b_c00304{width:9.672000pt;}
._a_c00304{width:11.101333pt;}
._f_c00304{width:12.450667pt;}
._8_c00304{width:13.554667pt;}
._7_c00304{width:15.333333pt;}
._19_c00304{width:16.498667pt;}
._12_c00304{width:18.584000pt;}
._22_c00304{width:19.626667pt;}
._23_c00304{width:20.853333pt;}
._14_c00304{width:25.085333pt;}
._13_c00304{width:26.557333pt;}
._17_c00304{width:28.336000pt;}
._24_c00304{width:29.256000pt;}
._25_c00304{width:33.840000pt;}
._1a_c00304{width:57.285333pt;}
._1d_c00304{width:89.421333pt;}
._10_c00304{width:93.008000pt;}
._21_c00304{width:146.525333pt;}
._20_c00304{width:210.818667pt;}
._5_c00304{width:450.104000pt;}
.fs2_c00304{font-size:42.666667pt;}
.fs1_c00304{font-size:58.666667pt;}
.fs0_c00304{font-size:61.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y1d_c00304{bottom:2.760000pt;}
.y1c_c00304{bottom:6.425219pt;}
.y1b_c00304{bottom:48.280000pt;}
.y1a_c00304{bottom:68.413333pt;}
.y19_c00304{bottom:92.146667pt;}
.y18_c00304{bottom:113.480000pt;}
.y17_c00304{bottom:158.680000pt;}
.y16_c00304{bottom:180.946667pt;}
.y15_c00304{bottom:225.613333pt;}
.y14_c00304{bottom:270.680000pt;}
.y13_c00304{bottom:292.813333pt;}
.y12_c00304{bottom:315.080000pt;}
.y11_c00304{bottom:337.480000pt;}
.y10_c00304{bottom:359.480000pt;}
.yf_c00304{bottom:381.880000pt;}
.ye_c00304{bottom:403.480000pt;}
.yd_c00304{bottom:426.013333pt;}
.yc_c00304{bottom:448.013333pt;}
.yb_c00304{bottom:470.146667pt;}
.ya_c00304{bottom:492.280000pt;}
.y9_c00304{bottom:514.546667pt;}
.y8_c00304{bottom:536.413333pt;}
.y7_c00304{bottom:558.413333pt;}
.y6_c00304{bottom:580.813333pt;}
.y5_c00304{bottom:602.813333pt;}
.y4_c00304{bottom:625.213333pt;}
.y3_c00304{bottom:648.280000pt;}
.y2_c00304{bottom:669.346667pt;}
.y1_c00304{bottom:691.613333pt;}
.h4_c00304{height:11.733399pt;}
.h5_c00304{height:38.937500pt;}
.h3_c00304{height:71.785156pt;}
.h2_c00304{height:77.654948pt;}
.h1_c00304{height:726.666667pt;}
.h0_c00304{height:726.733333pt;}
.w2_c00304{width:93.222667pt;}
.w0_c00304{width:494.400000pt;}
.w1_c00304{width:494.666667pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:27.866667pt;}
.x3_c00304{left:29.333333pt;}
.x4_c00304{left:30.800000pt;}
.x7_c00304{left:51.200000pt;}
.x6_c00304{left:52.133333pt;}
.x5_c00304{left:65.333333pt;}
.x1_c00304{left:168.400000pt;}
.x9_c00304{left:204.368205pt;}
.x8_c00304{left:388.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_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_9d0e071e99aae5d11240603c.woff2')format("woff");}.ff1_c00305{font-family:ff1_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:ff2_c00305;src:url('chunks/assets/font_0520b60e0347153f6a1e8722.woff2')format("woff");}.ff2_c00305{font-family:ff2_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:ff3_c00305;src:url('chunks/assets/font_714e0cf92ef5a84ac0785f28.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_983498af3ad9adc14d7adb23.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00305{font-family:ff5_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;}
.ls4_c00305{letter-spacing:0.000000px;}
.ls3_c00305{letter-spacing:6.000000px;}
.ls1_c00305{letter-spacing:9.000000px;}
.ls2_c00305{letter-spacing:12.884400px;}
.ls0_c00305{letter-spacing:16.800000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-22.629000px;}
.ws2_c00305{word-spacing:-18.724800px;}
.ws1_c00305{word-spacing:-16.629000px;}
.ws4_c00305{word-spacing:0.000000px;}
.ws3_c00305{word-spacing:1.242000px;}
._1e_c00305{margin-left:-29.373000px;}
._28_c00305{margin-left:-17.343000px;}
._24_c00305{margin-left:-14.766000px;}
._2_c00305{margin-left:-13.455000px;}
._7_c00305{margin-left:-12.351000px;}
._3_c00305{margin-left:-10.947000px;}
._0_c00305{margin-left:-8.901000px;}
._27_c00305{margin-left:-7.797000px;}
._1_c00305{margin-left:-6.693000px;}
._17_c00305{margin-left:-5.451000px;}
._a_c00305{margin-left:-4.416000px;}
._9_c00305{margin-left:-2.691000px;}
._5_c00305{margin-left:-1.242000px;}
._8_c00305{width:1.104000px;}
._6_c00305{width:3.105000px;}
._14_c00305{width:4.416000px;}
._c_c00305{width:5.520000px;}
._12_c00305{width:6.555000px;}
._b_c00305{width:7.590000px;}
._11_c00305{width:9.039000px;}
._18_c00305{width:10.488000px;}
._10_c00305{width:11.868000px;}
._1a_c00305{width:13.386000px;}
._e_c00305{width:14.766000px;}
._15_c00305{width:16.767000px;}
._13_c00305{width:18.078000px;}
._d_c00305{width:19.665000px;}
._23_c00305{width:20.700000px;}
._1c_c00305{width:22.995000px;}
._2c_c00305{width:24.288000px;}
._f_c00305{width:26.289000px;}
._2a_c00305{width:30.600000px;}
._16_c00305{width:32.292000px;}
._26_c00305{width:34.908000px;}
._25_c00305{width:38.931000px;}
._1d_c00305{width:40.386000px;}
._19_c00305{width:46.584000px;}
._2d_c00305{width:49.611000px;}
._20_c00305{width:52.854000px;}
._1f_c00305{width:71.001000px;}
._21_c00305{width:83.079000px;}
._2b_c00305{width:92.409000px;}
._1b_c00305{width:94.023000px;}
._29_c00305{width:267.591000px;}
._22_c00305{width:369.495000px;}
._4_c00305{width:377.088000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(128,128,128);}
.fc0_c00305{color:rgb(0,0,0);}
.fs5_c00305{font-size:48.000000px;}
.fs2_c00305{font-size:52.800000px;}
.fs4_c00305{font-size:54.000000px;}
.fs3_c00305{font-size:63.000000px;}
.fs1_c00305{font-size:66.000000px;}
.fs0_c00305{font-size:69.000000px;}
.y0_c00305{bottom:0.000000px;}
.y1f_c00305{bottom:3.105000px;}
.y1e_c00305{bottom:7.228363px;}
.y1d_c00305{bottom:55.350000px;}
.y1c_c00305{bottom:78.300000px;}
.y1b_c00305{bottom:104.250000px;}
.y1a_c00305{bottom:129.600000px;}
.y19_c00305{bottom:154.800000px;}
.y18_c00305{bottom:181.200000px;}
.y17_c00305{bottom:205.500000px;}
.y16_c00305{bottom:230.850000px;}
.y15_c00305{bottom:255.600000px;}
.y14_c00305{bottom:280.800000px;}
.y13_c00305{bottom:306.450000px;}
.y12_c00305{bottom:330.450000px;}
.y11_c00305{bottom:349.950000px;}
.y10_c00305{bottom:356.850000px;}
.yf_c00305{bottom:381.000000px;}
.ye_c00305{bottom:406.350000px;}
.yd_c00305{bottom:456.600000px;}
.yc_c00305{bottom:506.850000px;}
.yb_c00305{bottom:530.850000px;}
.ya_c00305{bottom:556.950000px;}
.y9_c00305{bottom:581.850000px;}
.y8_c00305{bottom:606.750000px;}
.y7_c00305{bottom:630.750000px;}
.y6_c00305{bottom:657.000000px;}
.y5_c00305{bottom:681.150000px;}
.y4_c00305{bottom:706.500000px;}
.y3_c00305{bottom:731.700000px;}
.y2_c00305{bottom:756.600000px;}
.y1_c00305{bottom:781.950000px;}
.h6_c00305{height:13.200074px;}
.h7_c00305{height:43.804688px;}
.h5_c00305{height:63.202148px;}
.h4_c00305{height:80.758301px;}
.h2_c00305{height:87.361816px;}
.h3_c00305{height:87.961816px;}
.h0_c00305{height:818.100000px;}
.h1_c00305{height:818.250000px;}
.w2_c00305{width:104.875500px;}
.w0_c00305{width:565.350000px;}
.w1_c00305{width:565.500000px;}
.x0_c00305{left:0.000000px;}
.x4_c00305{left:31.650000px;}
.x7_c00305{left:33.450000px;}
.x5_c00305{left:34.650000px;}
.xe_c00305{left:47.250000px;}
.xd_c00305{left:49.950000px;}
.x3_c00305{left:51.300000px;}
.xb_c00305{left:68.100000px;}
.xf_c00305{left:95.850000px;}
.x2_c00305{left:97.800000px;}
.x6_c00305{left:98.850000px;}
.xc_c00305{left:99.900000px;}
.x1_c00305{left:111.750000px;}
.x9_c00305{left:122.400000px;}
.x8_c00305{left:129.900000px;}
.xa_c00305{left:138.000000px;}
.x11_c00305{left:234.489258px;}
.x10_c00305{left:521.400000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls4_c00305{letter-spacing:0.000000pt;}
.ls3_c00305{letter-spacing:5.333333pt;}
.ls1_c00305{letter-spacing:8.000000pt;}
.ls2_c00305{letter-spacing:11.452800pt;}
.ls0_c00305{letter-spacing:14.933333pt;}
.ws0_c00305{word-spacing:-20.114667pt;}
.ws2_c00305{word-spacing:-16.644267pt;}
.ws1_c00305{word-spacing:-14.781333pt;}
.ws4_c00305{word-spacing:0.000000pt;}
.ws3_c00305{word-spacing:1.104000pt;}
._1e_c00305{margin-left:-26.109333pt;}
._28_c00305{margin-left:-15.416000pt;}
._24_c00305{margin-left:-13.125333pt;}
._2_c00305{margin-left:-11.960000pt;}
._7_c00305{margin-left:-10.978667pt;}
._3_c00305{margin-left:-9.730667pt;}
._0_c00305{margin-left:-7.912000pt;}
._27_c00305{margin-left:-6.930667pt;}
._1_c00305{margin-left:-5.949333pt;}
._17_c00305{margin-left:-4.845333pt;}
._a_c00305{margin-left:-3.925333pt;}
._9_c00305{margin-left:-2.392000pt;}
._5_c00305{margin-left:-1.104000pt;}
._8_c00305{width:0.981333pt;}
._6_c00305{width:2.760000pt;}
._14_c00305{width:3.925333pt;}
._c_c00305{width:4.906667pt;}
._12_c00305{width:5.826667pt;}
._b_c00305{width:6.746667pt;}
._11_c00305{width:8.034667pt;}
._18_c00305{width:9.322667pt;}
._10_c00305{width:10.549333pt;}
._1a_c00305{width:11.898667pt;}
._e_c00305{width:13.125333pt;}
._15_c00305{width:14.904000pt;}
._13_c00305{width:16.069333pt;}
._d_c00305{width:17.480000pt;}
._23_c00305{width:18.400000pt;}
._1c_c00305{width:20.440000pt;}
._2c_c00305{width:21.589333pt;}
._f_c00305{width:23.368000pt;}
._2a_c00305{width:27.200000pt;}
._16_c00305{width:28.704000pt;}
._26_c00305{width:31.029333pt;}
._25_c00305{width:34.605333pt;}
._1d_c00305{width:35.898667pt;}
._19_c00305{width:41.408000pt;}
._2d_c00305{width:44.098667pt;}
._20_c00305{width:46.981333pt;}
._1f_c00305{width:63.112000pt;}
._21_c00305{width:73.848000pt;}
._2b_c00305{width:82.141333pt;}
._1b_c00305{width:83.576000pt;}
._29_c00305{width:237.858667pt;}
._22_c00305{width:328.440000pt;}
._4_c00305{width:335.189333pt;}
.fs5_c00305{font-size:42.666667pt;}
.fs2_c00305{font-size:46.933333pt;}
.fs4_c00305{font-size:48.000000pt;}
.fs3_c00305{font-size:56.000000pt;}
.fs1_c00305{font-size:58.666667pt;}
.fs0_c00305{font-size:61.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y1f_c00305{bottom:2.760000pt;}
.y1e_c00305{bottom:6.425212pt;}
.y1d_c00305{bottom:49.200000pt;}
.y1c_c00305{bottom:69.600000pt;}
.y1b_c00305{bottom:92.666667pt;}
.y1a_c00305{bottom:115.200000pt;}
.y19_c00305{bottom:137.600000pt;}
.y18_c00305{bottom:161.066667pt;}
.y17_c00305{bottom:182.666667pt;}
.y16_c00305{bottom:205.200000pt;}
.y15_c00305{bottom:227.200000pt;}
.y14_c00305{bottom:249.600000pt;}
.y13_c00305{bottom:272.400000pt;}
.y12_c00305{bottom:293.733333pt;}
.y11_c00305{bottom:311.066667pt;}
.y10_c00305{bottom:317.200000pt;}
.yf_c00305{bottom:338.666667pt;}
.ye_c00305{bottom:361.200000pt;}
.yd_c00305{bottom:405.866667pt;}
.yc_c00305{bottom:450.533333pt;}
.yb_c00305{bottom:471.866667pt;}
.ya_c00305{bottom:495.066667pt;}
.y9_c00305{bottom:517.200000pt;}
.y8_c00305{bottom:539.333333pt;}
.y7_c00305{bottom:560.666667pt;}
.y6_c00305{bottom:584.000000pt;}
.y5_c00305{bottom:605.466667pt;}
.y4_c00305{bottom:628.000000pt;}
.y3_c00305{bottom:650.400000pt;}
.y2_c00305{bottom:672.533333pt;}
.y1_c00305{bottom:695.066667pt;}
.h6_c00305{height:11.733399pt;}
.h7_c00305{height:38.937500pt;}
.h5_c00305{height:56.179688pt;}
.h4_c00305{height:71.785156pt;}
.h2_c00305{height:77.654948pt;}
.h3_c00305{height:78.188281pt;}
.h0_c00305{height:727.200000pt;}
.h1_c00305{height:727.333333pt;}
.w2_c00305{width:93.222667pt;}
.w0_c00305{width:502.533333pt;}
.w1_c00305{width:502.666667pt;}
.x0_c00305{left:0.000000pt;}
.x4_c00305{left:28.133333pt;}
.x7_c00305{left:29.733333pt;}
.x5_c00305{left:30.800000pt;}
.xe_c00305{left:42.000000pt;}
.xd_c00305{left:44.400000pt;}
.x3_c00305{left:45.600000pt;}
.xb_c00305{left:60.533333pt;}
.xf_c00305{left:85.200000pt;}
.x2_c00305{left:86.933333pt;}
.x6_c00305{left:87.866667pt;}
.xc_c00305{left:88.800000pt;}
.x1_c00305{left:99.333333pt;}
.x9_c00305{left:108.800000pt;}
.x8_c00305{left:115.466667pt;}
.xa_c00305{left:122.666667pt;}
.x11_c00305{left:208.434896pt;}
.x10_c00305{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_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_710da8534c7fe8e978b90942.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_33a7411f097e45b98f9bf265.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.311035;font-style:normal;font-weight:normal;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_6020265734ce9a70cd2da82f.woff2')format("woff");}.ff3_c00306{font-family:ff3_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:ff4_c00306;src:url('chunks/assets/font_af8b819056cc14b705576e4d.woff2')format("woff");}.ff4_c00306{font-family:ff4_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:ff5_c00306;src:url('chunks/assets/font_9035978f0577d0c57634fb10.woff2')format("woff");}.ff5_c00306{font-family:ff5_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:ff6_c00306;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00306{font-family:ff6_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:ff7_c00306;src:url('chunks/assets/font_5cad0145c42cf71ccf7c23d7.woff2')format("woff");}.ff7_c00306{font-family:ff7_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:ff8_c00306;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00306{font-family:ff8_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:0.000000px;}
.ls5_c00306{letter-spacing:3.000000px;}
.ls4_c00306{letter-spacing:6.000000px;}
.ls1_c00306{letter-spacing:6.528000px;}
.ls2_c00306{letter-spacing:11.400000px;}
.ls0_c00306{letter-spacing:18.525000px;}
.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;}
}
.ws7_c00306{word-spacing:-56.235000px;}
.ws1_c00306{word-spacing:-51.126000px;}
.ws0_c00306{word-spacing:-42.100800px;}
.ws2_c00306{word-spacing:-24.075000px;}
.ws8_c00306{word-spacing:-20.967000px;}
.ws3_c00306{word-spacing:-17.250000px;}
.ws5_c00306{word-spacing:-16.629000px;}
.ws4_c00306{word-spacing:-8.967000px;}
.ws9_c00306{word-spacing:0.000000px;}
.ws6_c00306{word-spacing:0.069000px;}
._18_c00306{margin-left:-29.946000px;}
._27_c00306{margin-left:-26.913000px;}
._17_c00306{margin-left:-23.064000px;}
._1e_c00306{margin-left:-16.767000px;}
._19_c00306{margin-left:-14.766000px;}
._26_c00306{margin-left:-12.411000px;}
._11_c00306{margin-left:-10.695000px;}
._13_c00306{margin-left:-9.177000px;}
._14_c00306{margin-left:-7.797000px;}
._16_c00306{margin-left:-6.700800px;}
._12_c00306{margin-left:-4.968000px;}
._d_c00306{margin-left:-3.933000px;}
._7_c00306{margin-left:-2.691000px;}
._8_c00306{margin-left:-1.587000px;}
._4_c00306{width:1.242000px;}
._3_c00306{width:2.346000px;}
._6_c00306{width:4.209000px;}
._10_c00306{width:5.520000px;}
._1d_c00306{width:7.077000px;}
._1_c00306{width:8.142000px;}
._a_c00306{width:9.798000px;}
._f_c00306{width:10.902000px;}
._c_c00306{width:11.937000px;}
._b_c00306{width:13.041000px;}
._2_c00306{width:14.352000px;}
._0_c00306{width:15.939000px;}
._1c_c00306{width:17.115000px;}
._1f_c00306{width:18.567000px;}
._e_c00306{width:19.803000px;}
._22_c00306{width:21.583800px;}
._15_c00306{width:25.899000px;}
._28_c00306{width:29.049000px;}
._21_c00306{width:32.637000px;}
._20_c00306{width:35.085000px;}
._1b_c00306{width:38.289000px;}
._1a_c00306{width:42.153000px;}
._9_c00306{width:50.163000px;}
._25_c00306{width:53.373000px;}
._24_c00306{width:106.182000px;}
._23_c00306{width:220.962000px;}
._5_c00306{width:506.649000px;}
.fc2_c00306{color:transparent;}
.fc1_c00306{color:rgb(128,128,128);}
.fc0_c00306{color:rgb(0,0,0);}
.fs6_c00306{font-size:48.000000px;}
.fs1_c00306{font-size:55.200000px;}
.fs3_c00306{font-size:63.000000px;}
.fs4_c00306{font-size:66.000000px;}
.fs0_c00306{font-size:69.000000px;}
.fs2_c00306{font-size:75.000000px;}
.fs5_c00306{font-size:87.000000px;}
.y0_c00306{bottom:0.000000px;}
.y1d_c00306{bottom:3.105000px;}
.y1c_c00306{bottom:7.228371px;}
.y1b_c00306{bottom:66.465000px;}
.y1a_c00306{bottom:114.465000px;}
.y19_c00306{bottom:140.415000px;}
.y18_c00306{bottom:165.015000px;}
.y17_c00306{bottom:190.665000px;}
.y16_c00306{bottom:215.415000px;}
.y15_c00306{bottom:240.315000px;}
.y14_c00306{bottom:265.665000px;}
.y13_c00306{bottom:290.715000px;}
.y12_c00306{bottom:315.915000px;}
.y11_c00306{bottom:340.965000px;}
.y10_c00306{bottom:365.865000px;}
.yf_c00306{bottom:390.465000px;}
.ye_c00306{bottom:416.115000px;}
.yd_c00306{bottom:440.565000px;}
.yc_c00306{bottom:465.465000px;}
.yb_c00306{bottom:490.815000px;}
.ya_c00306{bottom:515.115000px;}
.y9_c00306{bottom:540.015000px;}
.y8_c00306{bottom:565.065000px;}
.y7_c00306{bottom:614.715000px;}
.y6_c00306{bottom:664.665000px;}
.y5_c00306{bottom:689.865000px;}
.y4_c00306{bottom:714.615000px;}
.y3_c00306{bottom:739.815000px;}
.y2_c00306{bottom:764.415000px;}
.y1_c00306{bottom:790.065000px;}
.h7_c00306{height:13.200074px;}
.h8_c00306{height:43.804688px;}
.h2_c00306{height:69.539062px;}
.h5_c00306{height:80.758301px;}
.h3_c00306{height:87.361816px;}
.h4_c00306{height:87.780762px;}
.h6_c00306{height:110.151855px;}
.h1_c00306{height:831.000000px;}
.h0_c00306{height:831.075000px;}
.w2_c00306{width:104.875500px;}
.w0_c00306{width:566.175000px;}
.w1_c00306{width:566.250000px;}
.x0_c00306{left:0.000000px;}
.x8_c00306{left:34.350000px;}
.x6_c00306{left:35.400000px;}
.x9_c00306{left:36.750000px;}
.x2_c00306{left:37.800000px;}
.x3_c00306{left:38.850000px;}
.x7_c00306{left:58.950000px;}
.x5_c00306{left:60.000000px;}
.x4_c00306{left:83.250000px;}
.x1_c00306{left:194.400000px;}
.xb_c00306{left:234.901749px;}
.xa_c00306{left:286.200000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls3_c00306{letter-spacing:0.000000pt;}
.ls5_c00306{letter-spacing:2.666667pt;}
.ls4_c00306{letter-spacing:5.333333pt;}
.ls1_c00306{letter-spacing:5.802667pt;}
.ls2_c00306{letter-spacing:10.133333pt;}
.ls0_c00306{letter-spacing:16.466667pt;}
.ws7_c00306{word-spacing:-49.986667pt;}
.ws1_c00306{word-spacing:-45.445333pt;}
.ws0_c00306{word-spacing:-37.422933pt;}
.ws2_c00306{word-spacing:-21.400000pt;}
.ws8_c00306{word-spacing:-18.637333pt;}
.ws3_c00306{word-spacing:-15.333333pt;}
.ws5_c00306{word-spacing:-14.781333pt;}
.ws4_c00306{word-spacing:-7.970667pt;}
.ws9_c00306{word-spacing:0.000000pt;}
.ws6_c00306{word-spacing:0.061333pt;}
._18_c00306{margin-left:-26.618667pt;}
._27_c00306{margin-left:-23.922667pt;}
._17_c00306{margin-left:-20.501333pt;}
._1e_c00306{margin-left:-14.904000pt;}
._19_c00306{margin-left:-13.125333pt;}
._26_c00306{margin-left:-11.032000pt;}
._11_c00306{margin-left:-9.506667pt;}
._13_c00306{margin-left:-8.157333pt;}
._14_c00306{margin-left:-6.930667pt;}
._16_c00306{margin-left:-5.956267pt;}
._12_c00306{margin-left:-4.416000pt;}
._d_c00306{margin-left:-3.496000pt;}
._7_c00306{margin-left:-2.392000pt;}
._8_c00306{margin-left:-1.410667pt;}
._4_c00306{width:1.104000pt;}
._3_c00306{width:2.085333pt;}
._6_c00306{width:3.741333pt;}
._10_c00306{width:4.906667pt;}
._1d_c00306{width:6.290667pt;}
._1_c00306{width:7.237333pt;}
._a_c00306{width:8.709333pt;}
._f_c00306{width:9.690667pt;}
._c_c00306{width:10.610667pt;}
._b_c00306{width:11.592000pt;}
._2_c00306{width:12.757333pt;}
._0_c00306{width:14.168000pt;}
._1c_c00306{width:15.213333pt;}
._1f_c00306{width:16.504000pt;}
._e_c00306{width:17.602667pt;}
._22_c00306{width:19.185600pt;}
._15_c00306{width:23.021333pt;}
._28_c00306{width:25.821333pt;}
._21_c00306{width:29.010667pt;}
._20_c00306{width:31.186667pt;}
._1b_c00306{width:34.034667pt;}
._1a_c00306{width:37.469333pt;}
._9_c00306{width:44.589333pt;}
._25_c00306{width:47.442667pt;}
._24_c00306{width:94.384000pt;}
._23_c00306{width:196.410667pt;}
._5_c00306{width:450.354667pt;}
.fs6_c00306{font-size:42.666667pt;}
.fs1_c00306{font-size:49.066667pt;}
.fs3_c00306{font-size:56.000000pt;}
.fs4_c00306{font-size:58.666667pt;}
.fs0_c00306{font-size:61.333333pt;}
.fs2_c00306{font-size:66.666667pt;}
.fs5_c00306{font-size:77.333333pt;}
.y0_c00306{bottom:0.000000pt;}
.y1d_c00306{bottom:2.760000pt;}
.y1c_c00306{bottom:6.425219pt;}
.y1b_c00306{bottom:59.080000pt;}
.y1a_c00306{bottom:101.746667pt;}
.y19_c00306{bottom:124.813333pt;}
.y18_c00306{bottom:146.680000pt;}
.y17_c00306{bottom:169.480000pt;}
.y16_c00306{bottom:191.480000pt;}
.y15_c00306{bottom:213.613333pt;}
.y14_c00306{bottom:236.146667pt;}
.y13_c00306{bottom:258.413333pt;}
.y12_c00306{bottom:280.813333pt;}
.y11_c00306{bottom:303.080000pt;}
.y10_c00306{bottom:325.213333pt;}
.yf_c00306{bottom:347.080000pt;}
.ye_c00306{bottom:369.880000pt;}
.yd_c00306{bottom:391.613333pt;}
.yc_c00306{bottom:413.746667pt;}
.yb_c00306{bottom:436.280000pt;}
.ya_c00306{bottom:457.880000pt;}
.y9_c00306{bottom:480.013333pt;}
.y8_c00306{bottom:502.280000pt;}
.y7_c00306{bottom:546.413333pt;}
.y6_c00306{bottom:590.813333pt;}
.y5_c00306{bottom:613.213333pt;}
.y4_c00306{bottom:635.213333pt;}
.y3_c00306{bottom:657.613333pt;}
.y2_c00306{bottom:679.480000pt;}
.y1_c00306{bottom:702.280000pt;}
.h7_c00306{height:11.733399pt;}
.h8_c00306{height:38.937500pt;}
.h2_c00306{height:61.812500pt;}
.h5_c00306{height:71.785156pt;}
.h3_c00306{height:77.654948pt;}
.h4_c00306{height:78.027344pt;}
.h6_c00306{height:97.912760pt;}
.h1_c00306{height:738.666667pt;}
.h0_c00306{height:738.733333pt;}
.w2_c00306{width:93.222667pt;}
.w0_c00306{width:503.266667pt;}
.w1_c00306{width:503.333333pt;}
.x0_c00306{left:0.000000pt;}
.x8_c00306{left:30.533333pt;}
.x6_c00306{left:31.466667pt;}
.x9_c00306{left:32.666667pt;}
.x2_c00306{left:33.600000pt;}
.x3_c00306{left:34.533333pt;}
.x7_c00306{left:52.400000pt;}
.x5_c00306{left:53.333333pt;}
.x4_c00306{left:74.000000pt;}
.x1_c00306{left:172.800000pt;}
.xb_c00306{left:208.801554pt;}
.xa_c00306{left:254.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a9ed448135e3b6441c77e00.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_ed4e7efef305141111927e0e.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.568848;font-style:normal;font-weight:normal;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_165279c62cc5a49e168454cb.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.437000;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00307{font-family:ff4_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;}
.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;}
.ls0_c00307{letter-spacing:0.000000px;}
.ls1_c00307{letter-spacing:6.000000px;}
.ls2_c00307{letter-spacing:30.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;}
}
.ws3_c00307{word-spacing:-46.629000px;}
.ws2_c00307{word-spacing:-16.629000px;}
.ws1_c00307{word-spacing:-1.173000px;}
.ws4_c00307{word-spacing:-1.113000px;}
.ws6_c00307{word-spacing:0.000000px;}
.ws5_c00307{word-spacing:3.519000px;}
.ws0_c00307{word-spacing:6.831000px;}
._10_c00307{margin-left:-19.764000px;}
._16_c00307{margin-left:-17.319000px;}
._27_c00307{margin-left:-16.152000px;}
._11_c00307{margin-left:-14.352000px;}
._15_c00307{margin-left:-12.351000px;}
._28_c00307{margin-left:-11.085000px;}
._12_c00307{margin-left:-9.729000px;}
._21_c00307{margin-left:-7.662000px;}
._19_c00307{margin-left:-6.003000px;}
._4_c00307{margin-left:-4.347000px;}
._14_c00307{margin-left:-3.243000px;}
._5_c00307{margin-left:-2.139000px;}
._17_c00307{margin-left:-1.104000px;}
._13_c00307{width:1.293000px;}
._1b_c00307{width:3.174000px;}
._e_c00307{width:4.278000px;}
._1c_c00307{width:5.526000px;}
._a_c00307{width:7.038000px;}
._7_c00307{width:8.211000px;}
._1e_c00307{width:9.843000px;}
._f_c00307{width:11.040000px;}
._18_c00307{width:12.765000px;}
._9_c00307{width:14.076000px;}
._1d_c00307{width:16.146000px;}
._c_c00307{width:17.484000px;}
._b_c00307{width:18.630000px;}
._24_c00307{width:19.674000px;}
._d_c00307{width:20.838000px;}
._26_c00307{width:22.413000px;}
._8_c00307{width:23.736000px;}
._0_c00307{width:24.909000px;}
._2_c00307{width:26.010000px;}
._2b_c00307{width:29.268000px;}
._3_c00307{width:31.050000px;}
._6_c00307{width:32.577000px;}
._25_c00307{width:33.888000px;}
._2a_c00307{width:35.169000px;}
._1_c00307{width:36.639000px;}
._23_c00307{width:37.722000px;}
._20_c00307{width:49.395000px;}
._22_c00307{width:92.736000px;}
._1f_c00307{width:97.842000px;}
._29_c00307{width:103.500000px;}
._1a_c00307{width:163.779000px;}
.fc2_c00307{color:transparent;}
.fc1_c00307{color:rgb(128,128,128);}
.fc0_c00307{color:rgb(0,0,0);}
.fs1_c00307{font-size:42.000000px;}
.fs2_c00307{font-size:48.000000px;}
.fs0_c00307{font-size:69.000000px;}
.y0_c00307{bottom:0.000000px;}
.y1a_c00307{bottom:3.105000px;}
.y19_c00307{bottom:7.228363px;}
.y18_c00307{bottom:86.700000px;}
.y17_c00307{bottom:106.650000px;}
.y16_c00307{bottom:131.550000px;}
.y15_c00307{bottom:157.950000px;}
.y14_c00307{bottom:182.250000px;}
.y13_c00307{bottom:206.850000px;}
.y12_c00307{bottom:233.850000px;}
.y11_c00307{bottom:258.750000px;}
.y10_c00307{bottom:308.850000px;}
.yf_c00307{bottom:358.350000px;}
.ye_c00307{bottom:384.300000px;}
.yd_c00307{bottom:408.750000px;}
.yc_c00307{bottom:433.650000px;}
.yb_c00307{bottom:458.700000px;}
.ya_c00307{bottom:483.900000px;}
.y9_c00307{bottom:508.950000px;}
.y8_c00307{bottom:533.550000px;}
.y7_c00307{bottom:558.900000px;}
.y6_c00307{bottom:584.550000px;}
.y5_c00307{bottom:609.150000px;}
.y4_c00307{bottom:633.750000px;}
.y3_c00307{bottom:659.400000px;}
.y2_c00307{bottom:684.150000px;}
.y1_c00307{bottom:733.950000px;}
.h5_c00307{height:13.200074px;}
.h6_c00307{height:43.804688px;}
.h4_c00307{height:44.016000px;}
.h3_c00307{height:80.758301px;}
.h2_c00307{height:87.361816px;}
.h1_c00307{height:827.250000px;}
.h0_c00307{height:827.550000px;}
.w2_c00307{width:104.875500px;}
.w0_c00307{width:572.100000px;}
.w1_c00307{width:572.250000px;}
.x0_c00307{left:0.000000px;}
.x9_c00307{left:34.050000px;}
.x4_c00307{left:38.100000px;}
.xe_c00307{left:47.250000px;}
.x8_c00307{left:51.600000px;}
.xc_c00307{left:95.850000px;}
.xf_c00307{left:96.900000px;}
.x7_c00307{left:100.350000px;}
.x6_c00307{left:101.550000px;}
.x5_c00307{left:103.950000px;}
.x3_c00307{left:105.300000px;}
.xb_c00307{left:122.850000px;}
.x2_c00307{left:130.350000px;}
.xa_c00307{left:132.000000px;}
.xd_c00307{left:136.050000px;}
.x1_c00307{left:151.200000px;}
.x10_c00307{left:172.500000px;}
.x11_c00307{left:237.864258px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ls1_c00307{letter-spacing:5.333333pt;}
.ls2_c00307{letter-spacing:26.666667pt;}
.ws3_c00307{word-spacing:-41.448000pt;}
.ws2_c00307{word-spacing:-14.781333pt;}
.ws1_c00307{word-spacing:-1.042667pt;}
.ws4_c00307{word-spacing:-0.989333pt;}
.ws6_c00307{word-spacing:0.000000pt;}
.ws5_c00307{word-spacing:3.128000pt;}
.ws0_c00307{word-spacing:6.072000pt;}
._10_c00307{margin-left:-17.568000pt;}
._16_c00307{margin-left:-15.394667pt;}
._27_c00307{margin-left:-14.357333pt;}
._11_c00307{margin-left:-12.757333pt;}
._15_c00307{margin-left:-10.978667pt;}
._28_c00307{margin-left:-9.853333pt;}
._12_c00307{margin-left:-8.648000pt;}
._21_c00307{margin-left:-6.810667pt;}
._19_c00307{margin-left:-5.336000pt;}
._4_c00307{margin-left:-3.864000pt;}
._14_c00307{margin-left:-2.882667pt;}
._5_c00307{margin-left:-1.901333pt;}
._17_c00307{margin-left:-0.981333pt;}
._13_c00307{width:1.149333pt;}
._1b_c00307{width:2.821333pt;}
._e_c00307{width:3.802667pt;}
._1c_c00307{width:4.912000pt;}
._a_c00307{width:6.256000pt;}
._7_c00307{width:7.298667pt;}
._1e_c00307{width:8.749333pt;}
._f_c00307{width:9.813333pt;}
._18_c00307{width:11.346667pt;}
._9_c00307{width:12.512000pt;}
._1d_c00307{width:14.352000pt;}
._c_c00307{width:15.541333pt;}
._b_c00307{width:16.560000pt;}
._24_c00307{width:17.488000pt;}
._d_c00307{width:18.522667pt;}
._26_c00307{width:19.922667pt;}
._8_c00307{width:21.098667pt;}
._0_c00307{width:22.141333pt;}
._2_c00307{width:23.120000pt;}
._2b_c00307{width:26.016000pt;}
._3_c00307{width:27.600000pt;}
._6_c00307{width:28.957333pt;}
._25_c00307{width:30.122667pt;}
._2a_c00307{width:31.261333pt;}
._1_c00307{width:32.568000pt;}
._23_c00307{width:33.530667pt;}
._20_c00307{width:43.906667pt;}
._22_c00307{width:82.432000pt;}
._1f_c00307{width:86.970667pt;}
._29_c00307{width:92.000000pt;}
._1a_c00307{width:145.581333pt;}
.fs1_c00307{font-size:37.333333pt;}
.fs2_c00307{font-size:42.666667pt;}
.fs0_c00307{font-size:61.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y1a_c00307{bottom:2.760000pt;}
.y19_c00307{bottom:6.425212pt;}
.y18_c00307{bottom:77.066667pt;}
.y17_c00307{bottom:94.800000pt;}
.y16_c00307{bottom:116.933333pt;}
.y15_c00307{bottom:140.400000pt;}
.y14_c00307{bottom:162.000000pt;}
.y13_c00307{bottom:183.866667pt;}
.y12_c00307{bottom:207.866667pt;}
.y11_c00307{bottom:230.000000pt;}
.y10_c00307{bottom:274.533333pt;}
.yf_c00307{bottom:318.533333pt;}
.ye_c00307{bottom:341.600000pt;}
.yd_c00307{bottom:363.333333pt;}
.yc_c00307{bottom:385.466667pt;}
.yb_c00307{bottom:407.733333pt;}
.ya_c00307{bottom:430.133333pt;}
.y9_c00307{bottom:452.400000pt;}
.y8_c00307{bottom:474.266667pt;}
.y7_c00307{bottom:496.800000pt;}
.y6_c00307{bottom:519.600000pt;}
.y5_c00307{bottom:541.466667pt;}
.y4_c00307{bottom:563.333333pt;}
.y3_c00307{bottom:586.133333pt;}
.y2_c00307{bottom:608.133333pt;}
.y1_c00307{bottom:652.400000pt;}
.h5_c00307{height:11.733399pt;}
.h6_c00307{height:38.937500pt;}
.h4_c00307{height:39.125333pt;}
.h3_c00307{height:71.785156pt;}
.h2_c00307{height:77.654948pt;}
.h1_c00307{height:735.333333pt;}
.h0_c00307{height:735.600000pt;}
.w2_c00307{width:93.222667pt;}
.w0_c00307{width:508.533333pt;}
.w1_c00307{width:508.666667pt;}
.x0_c00307{left:0.000000pt;}
.x9_c00307{left:30.266667pt;}
.x4_c00307{left:33.866667pt;}
.xe_c00307{left:42.000000pt;}
.x8_c00307{left:45.866667pt;}
.xc_c00307{left:85.200000pt;}
.xf_c00307{left:86.133333pt;}
.x7_c00307{left:89.200000pt;}
.x6_c00307{left:90.266667pt;}
.x5_c00307{left:92.400000pt;}
.x3_c00307{left:93.600000pt;}
.xb_c00307{left:109.200000pt;}
.x2_c00307{left:115.866667pt;}
.xa_c00307{left:117.333333pt;}
.xd_c00307{left:120.933333pt;}
.x1_c00307{left:134.400000pt;}
.x10_c00307{left:153.333333pt;}
.x11_c00307{left:211.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_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_a5daad12077b1c9bc681f0f1.woff2')format("woff");}.ff1_c00308{font-family:ff1_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:ff2_c00308;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_8eb40d6b3a36ba0e668c73b8.woff2')format("woff");}.ff3_c00308{font-family:ff3_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:ff4_c00308;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00308{font-family:ff4_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;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:6.000000px;}
.ls1_c00308{letter-spacing:21.525000px;}
.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;}
}
.ws1_c00308{word-spacing:-39.000000px;}
.ws2_c00308{word-spacing:-16.629000px;}
.ws3_c00308{word-spacing:-0.069000px;}
.ws4_c00308{word-spacing:0.000000px;}
.ws0_c00308{word-spacing:4.554000px;}
._1e_c00308{margin-left:-31.518000px;}
._23_c00308{margin-left:-28.773000px;}
._2b_c00308{margin-left:-25.860000px;}
._28_c00308{margin-left:-17.802000px;}
._1c_c00308{margin-left:-16.077000px;}
._17_c00308{margin-left:-14.559000px;}
._2a_c00308{margin-left:-12.630000px;}
._14_c00308{margin-left:-11.385000px;}
._16_c00308{margin-left:-10.143000px;}
._19_c00308{margin-left:-7.980000px;}
._10_c00308{margin-left:-6.693000px;}
._11_c00308{margin-left:-4.899000px;}
._13_c00308{margin-left:-3.312000px;}
._12_c00308{margin-left:-2.070000px;}
._15_c00308{margin-left:-1.035000px;}
._e_c00308{width:1.587000px;}
._2_c00308{width:2.706000px;}
._f_c00308{width:4.539000px;}
._7_c00308{width:5.727000px;}
._3_c00308{width:7.716000px;}
._21_c00308{width:9.807000px;}
._a_c00308{width:10.824000px;}
._b_c00308{width:12.006000px;}
._4_c00308{width:14.007000px;}
._1d_c00308{width:15.027000px;}
._1a_c00308{width:16.077000px;}
._20_c00308{width:17.112000px;}
._9_c00308{width:18.147000px;}
._5_c00308{width:19.458000px;}
._c_c00308{width:21.321000px;}
._1_c00308{width:22.434000px;}
._24_c00308{width:24.027000px;}
._25_c00308{width:26.634000px;}
._0_c00308{width:28.980000px;}
._1f_c00308{width:32.100000px;}
._26_c00308{width:34.155000px;}
._22_c00308{width:36.699000px;}
._d_c00308{width:38.823000px;}
._8_c00308{width:42.363000px;}
._29_c00308{width:48.558000px;}
._6_c00308{width:51.474000px;}
._1b_c00308{width:170.028000px;}
._27_c00308{width:204.447000px;}
._2d_c00308{width:207.276000px;}
._18_c00308{width:322.077000px;}
._2c_c00308{width:437.070000px;}
.fc2_c00308{color:transparent;}
.fc1_c00308{color:rgb(128,128,128);}
.fc0_c00308{color:rgb(0,0,0);}
.fs3_c00308{font-size:48.000000px;}
.fs1_c00308{font-size:66.000000px;}
.fs0_c00308{font-size:69.000000px;}
.fs2_c00308{font-size:75.000000px;}
.y0_c00308{bottom:0.000000px;}
.y19_c00308{bottom:3.105000px;}
.y18_c00308{bottom:7.228371px;}
.y17_c00308{bottom:75.015000px;}
.y16_c00308{bottom:98.565000px;}
.y15_c00308{bottom:124.665000px;}
.y14_c00308{bottom:174.615000px;}
.y13_c00308{bottom:200.115000px;}
.y12_c00308{bottom:225.465000px;}
.y11_c00308{bottom:275.865000px;}
.y10_c00308{bottom:325.665000px;}
.yf_c00308{bottom:351.015000px;}
.ye_c00308{bottom:376.065000px;}
.yd_c00308{bottom:400.665000px;}
.yc_c00308{bottom:426.315000px;}
.yb_c00308{bottom:450.915000px;}
.ya_c00308{bottom:475.515000px;}
.y9_c00308{bottom:499.815000px;}
.y8_c00308{bottom:524.565000px;}
.y7_c00308{bottom:548.865000px;}
.y6_c00308{bottom:573.765000px;}
.y5_c00308{bottom:598.815000px;}
.y4_c00308{bottom:624.765000px;}
.y3_c00308{bottom:672.015000px;}
.y2_c00308{bottom:699.015000px;}
.y1_c00308{bottom:748.965000px;}
.h5_c00308{height:13.200074px;}
.h6_c00308{height:43.804688px;}
.h3_c00308{height:80.758301px;}
.h2_c00308{height:87.361816px;}
.h4_c00308{height:94.958496px;}
.h1_c00308{height:831.000000px;}
.h0_c00308{height:831.075000px;}
.w2_c00308{width:104.875500px;}
.w0_c00308{width:566.175000px;}
.w1_c00308{width:566.250000px;}
.x0_c00308{left:0.000000px;}
.x5_c00308{left:22.200000px;}
.x4_c00308{left:23.550000px;}
.x3_c00308{left:24.600000px;}
.x2_c00308{left:25.650000px;}
.x7_c00308{left:47.250000px;}
.x1_c00308{left:49.200000px;}
.x8_c00308{left:50.550000px;}
.x6_c00308{left:58.650000px;}
.xa_c00308{left:234.901749px;}
.x9_c00308{left:299.400000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:5.333333pt;}
.ls1_c00308{letter-spacing:19.133333pt;}
.ws1_c00308{word-spacing:-34.666667pt;}
.ws2_c00308{word-spacing:-14.781333pt;}
.ws3_c00308{word-spacing:-0.061333pt;}
.ws4_c00308{word-spacing:0.000000pt;}
.ws0_c00308{word-spacing:4.048000pt;}
._1e_c00308{margin-left:-28.016000pt;}
._23_c00308{margin-left:-25.576000pt;}
._2b_c00308{margin-left:-22.986667pt;}
._28_c00308{margin-left:-15.824000pt;}
._1c_c00308{margin-left:-14.290667pt;}
._17_c00308{margin-left:-12.941333pt;}
._2a_c00308{margin-left:-11.226667pt;}
._14_c00308{margin-left:-10.120000pt;}
._16_c00308{margin-left:-9.016000pt;}
._19_c00308{margin-left:-7.093333pt;}
._10_c00308{margin-left:-5.949333pt;}
._11_c00308{margin-left:-4.354667pt;}
._13_c00308{margin-left:-2.944000pt;}
._12_c00308{margin-left:-1.840000pt;}
._15_c00308{margin-left:-0.920000pt;}
._e_c00308{width:1.410667pt;}
._2_c00308{width:2.405333pt;}
._f_c00308{width:4.034667pt;}
._7_c00308{width:5.090667pt;}
._3_c00308{width:6.858667pt;}
._21_c00308{width:8.717333pt;}
._a_c00308{width:9.621333pt;}
._b_c00308{width:10.672000pt;}
._4_c00308{width:12.450667pt;}
._1d_c00308{width:13.357333pt;}
._1a_c00308{width:14.290667pt;}
._20_c00308{width:15.210667pt;}
._9_c00308{width:16.130667pt;}
._5_c00308{width:17.296000pt;}
._c_c00308{width:18.952000pt;}
._1_c00308{width:19.941333pt;}
._24_c00308{width:21.357333pt;}
._25_c00308{width:23.674667pt;}
._0_c00308{width:25.760000pt;}
._1f_c00308{width:28.533333pt;}
._26_c00308{width:30.360000pt;}
._22_c00308{width:32.621333pt;}
._d_c00308{width:34.509333pt;}
._8_c00308{width:37.656000pt;}
._29_c00308{width:43.162667pt;}
._6_c00308{width:45.754667pt;}
._1b_c00308{width:151.136000pt;}
._27_c00308{width:181.730667pt;}
._2d_c00308{width:184.245333pt;}
._18_c00308{width:286.290667pt;}
._2c_c00308{width:388.506667pt;}
.fs3_c00308{font-size:42.666667pt;}
.fs1_c00308{font-size:58.666667pt;}
.fs0_c00308{font-size:61.333333pt;}
.fs2_c00308{font-size:66.666667pt;}
.y0_c00308{bottom:0.000000pt;}
.y19_c00308{bottom:2.760000pt;}
.y18_c00308{bottom:6.425219pt;}
.y17_c00308{bottom:66.680000pt;}
.y16_c00308{bottom:87.613333pt;}
.y15_c00308{bottom:110.813333pt;}
.y14_c00308{bottom:155.213333pt;}
.y13_c00308{bottom:177.880000pt;}
.y12_c00308{bottom:200.413333pt;}
.y11_c00308{bottom:245.213333pt;}
.y10_c00308{bottom:289.480000pt;}
.yf_c00308{bottom:312.013333pt;}
.ye_c00308{bottom:334.280000pt;}
.yd_c00308{bottom:356.146667pt;}
.yc_c00308{bottom:378.946667pt;}
.yb_c00308{bottom:400.813333pt;}
.ya_c00308{bottom:422.680000pt;}
.y9_c00308{bottom:444.280000pt;}
.y8_c00308{bottom:466.280000pt;}
.y7_c00308{bottom:487.880000pt;}
.y6_c00308{bottom:510.013333pt;}
.y5_c00308{bottom:532.280000pt;}
.y4_c00308{bottom:555.346667pt;}
.y3_c00308{bottom:597.346667pt;}
.y2_c00308{bottom:621.346667pt;}
.y1_c00308{bottom:665.746667pt;}
.h5_c00308{height:11.733399pt;}
.h6_c00308{height:38.937500pt;}
.h3_c00308{height:71.785156pt;}
.h2_c00308{height:77.654948pt;}
.h4_c00308{height:84.407552pt;}
.h1_c00308{height:738.666667pt;}
.h0_c00308{height:738.733333pt;}
.w2_c00308{width:93.222667pt;}
.w0_c00308{width:503.266667pt;}
.w1_c00308{width:503.333333pt;}
.x0_c00308{left:0.000000pt;}
.x5_c00308{left:19.733333pt;}
.x4_c00308{left:20.933333pt;}
.x3_c00308{left:21.866667pt;}
.x2_c00308{left:22.800000pt;}
.x7_c00308{left:42.000000pt;}
.x1_c00308{left:43.733333pt;}
.x8_c00308{left:44.933333pt;}
.x6_c00308{left:52.133333pt;}
.xa_c00308{left:208.801554pt;}
.x9_c00308{left:266.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_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_034b78629e9e511a764cbd53.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.568848;font-style:normal;font-weight:normal;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_172801fb092d9b70720ff80f.woff2')format("woff");}.ff2_c00309{font-family:ff2_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:ff3_c00309;src:url('chunks/assets/font_263e6314630d724418c622aa.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_c37e87372377f99637c5af53.woff2')format("woff");}.ff4_c00309{font-family:ff4_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:ff5_c00309;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls6_c00309{letter-spacing:0.000000px;}
.ls5_c00309{letter-spacing:6.000000px;}
.ls0_c00309{letter-spacing:16.125000px;}
.ls1_c00309{letter-spacing:18.000000px;}
.ls2_c00309{letter-spacing:18.165000px;}
.ls4_c00309{letter-spacing:19.725000px;}
.ls3_c00309{letter-spacing:21.600000px;}
.ls7_c00309{letter-spacing:63.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;}
}
.ws3_c00309{word-spacing:-79.629000px;}
.ws1_c00309{word-spacing:-44.988000px;}
.ws2_c00309{word-spacing:-44.022000px;}
.ws7_c00309{word-spacing:-39.000000px;}
.ws4_c00309{word-spacing:-22.629000px;}
.ws0_c00309{word-spacing:-16.629000px;}
.ws6_c00309{word-spacing:-0.339000px;}
.ws8_c00309{word-spacing:0.000000px;}
.ws5_c00309{word-spacing:0.069000px;}
._29_c00309{margin-left:-19.320000px;}
._24_c00309{margin-left:-18.078000px;}
._1a_c00309{margin-left:-16.974000px;}
._27_c00309{margin-left:-15.564000px;}
._10_c00309{margin-left:-14.007000px;}
._25_c00309{margin-left:-12.648000px;}
._1f_c00309{margin-left:-10.971000px;}
._16_c00309{margin-left:-9.246000px;}
._c_c00309{margin-left:-7.314000px;}
._d_c00309{margin-left:-5.934000px;}
._5_c00309{margin-left:-4.347000px;}
._0_c00309{margin-left:-2.553000px;}
._2_c00309{margin-left:-1.242000px;}
._9_c00309{width:1.242000px;}
._4_c00309{width:2.277000px;}
._b_c00309{width:4.209000px;}
._6_c00309{width:5.520000px;}
._8_c00309{width:7.176000px;}
._3_c00309{width:8.280000px;}
._7_c00309{width:9.660000px;}
._13_c00309{width:10.884000px;}
._e_c00309{width:12.075000px;}
._14_c00309{width:13.179000px;}
._a_c00309{width:14.697000px;}
._f_c00309{width:16.905000px;}
._19_c00309{width:18.009000px;}
._1d_c00309{width:19.257000px;}
._15_c00309{width:20.355000px;}
._11_c00309{width:21.459000px;}
._22_c00309{width:25.254000px;}
._21_c00309{width:26.910000px;}
._23_c00309{width:30.015000px;}
._26_c00309{width:35.259000px;}
._17_c00309{width:36.432000px;}
._12_c00309{width:38.622000px;}
._18_c00309{width:39.675000px;}
._1c_c00309{width:92.922000px;}
._20_c00309{width:100.857000px;}
._1e_c00309{width:116.244000px;}
._28_c00309{width:125.718000px;}
._1b_c00309{width:266.409000px;}
._1_c00309{width:382.989000px;}
.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:55.200000px;}
.fs3_c00309{font-size:66.000000px;}
.fs0_c00309{font-size:69.000000px;}
.fs1_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y1e_c00309{bottom:3.105000px;}
.y1d_c00309{bottom:7.228363px;}
.y1c_c00309{bottom:58.050000px;}
.y1b_c00309{bottom:83.700000px;}
.y1a_c00309{bottom:108.750000px;}
.y19_c00309{bottom:135.000000px;}
.y18_c00309{bottom:160.050000px;}
.y17_c00309{bottom:185.400000px;}
.y16_c00309{bottom:210.300000px;}
.y15_c00309{bottom:237.900000px;}
.y14_c00309{bottom:261.600000px;}
.y13_c00309{bottom:311.550000px;}
.y12_c00309{bottom:363.150000px;}
.y11_c00309{bottom:386.550000px;}
.y10_c00309{bottom:410.700000px;}
.yf_c00309{bottom:436.050000px;}
.ye_c00309{bottom:461.700000px;}
.yd_c00309{bottom:486.900000px;}
.yc_c00309{bottom:511.050000px;}
.yb_c00309{bottom:538.650000px;}
.ya_c00309{bottom:561.900000px;}
.y9_c00309{bottom:585.300000px;}
.y8_c00309{bottom:612.150000px;}
.y7_c00309{bottom:635.850000px;}
.y6_c00309{bottom:660.900000px;}
.y5_c00309{bottom:687.150000px;}
.y4_c00309{bottom:711.900000px;}
.y3_c00309{bottom:737.100000px;}
.y2_c00309{bottom:762.000000px;}
.y1_c00309{bottom:787.500000px;}
.h4_c00309{height:13.200074px;}
.h5_c00309{height:43.804688px;}
.h2_c00309{height:87.361816px;}
.h3_c00309{height:91.160156px;}
.h1_c00309{height:827.250000px;}
.h0_c00309{height:827.550000px;}
.w2_c00309{width:104.875500px;}
.w0_c00309{width:572.100000px;}
.w1_c00309{width:572.250000px;}
.x0_c00309{left:0.000000px;}
.xf_c00309{left:30.000000px;}
.xb_c00309{left:33.300000px;}
.x8_c00309{left:34.350000px;}
.x6_c00309{left:36.150000px;}
.x3_c00309{left:39.750000px;}
.x12_c00309{left:41.550000px;}
.x7_c00309{left:52.650000px;}
.xa_c00309{left:54.600000px;}
.x5_c00309{left:71.250000px;}
.xe_c00309{left:92.400000px;}
.x11_c00309{left:93.450000px;}
.x10_c00309{left:94.500000px;}
.xc_c00309{left:100.500000px;}
.x9_c00309{left:102.150000px;}
.x4_c00309{left:104.850000px;}
.x2_c00309{left:107.700000px;}
.x1_c00309{left:122.400000px;}
.xd_c00309{left:123.450000px;}
.x14_c00309{left:237.864258px;}
.x13_c00309{left:506.250000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls6_c00309{letter-spacing:0.000000pt;}
.ls5_c00309{letter-spacing:5.333333pt;}
.ls0_c00309{letter-spacing:14.333333pt;}
.ls1_c00309{letter-spacing:16.000000pt;}
.ls2_c00309{letter-spacing:16.146667pt;}
.ls4_c00309{letter-spacing:17.533333pt;}
.ls3_c00309{letter-spacing:19.200000pt;}
.ls7_c00309{letter-spacing:56.000000pt;}
.ws3_c00309{word-spacing:-70.781333pt;}
.ws1_c00309{word-spacing:-39.989333pt;}
.ws2_c00309{word-spacing:-39.130667pt;}
.ws7_c00309{word-spacing:-34.666667pt;}
.ws4_c00309{word-spacing:-20.114667pt;}
.ws0_c00309{word-spacing:-14.781333pt;}
.ws6_c00309{word-spacing:-0.301333pt;}
.ws8_c00309{word-spacing:0.000000pt;}
.ws5_c00309{word-spacing:0.061333pt;}
._29_c00309{margin-left:-17.173333pt;}
._24_c00309{margin-left:-16.069333pt;}
._1a_c00309{margin-left:-15.088000pt;}
._27_c00309{margin-left:-13.834667pt;}
._10_c00309{margin-left:-12.450667pt;}
._25_c00309{margin-left:-11.242667pt;}
._1f_c00309{margin-left:-9.752000pt;}
._16_c00309{margin-left:-8.218667pt;}
._c_c00309{margin-left:-6.501333pt;}
._d_c00309{margin-left:-5.274667pt;}
._5_c00309{margin-left:-3.864000pt;}
._0_c00309{margin-left:-2.269333pt;}
._2_c00309{margin-left:-1.104000pt;}
._9_c00309{width:1.104000pt;}
._4_c00309{width:2.024000pt;}
._b_c00309{width:3.741333pt;}
._6_c00309{width:4.906667pt;}
._8_c00309{width:6.378667pt;}
._3_c00309{width:7.360000pt;}
._7_c00309{width:8.586667pt;}
._13_c00309{width:9.674667pt;}
._e_c00309{width:10.733333pt;}
._14_c00309{width:11.714667pt;}
._a_c00309{width:13.064000pt;}
._f_c00309{width:15.026667pt;}
._19_c00309{width:16.008000pt;}
._1d_c00309{width:17.117333pt;}
._15_c00309{width:18.093333pt;}
._11_c00309{width:19.074667pt;}
._22_c00309{width:22.448000pt;}
._21_c00309{width:23.920000pt;}
._23_c00309{width:26.680000pt;}
._26_c00309{width:31.341333pt;}
._17_c00309{width:32.384000pt;}
._12_c00309{width:34.330667pt;}
._18_c00309{width:35.266667pt;}
._1c_c00309{width:82.597333pt;}
._20_c00309{width:89.650667pt;}
._1e_c00309{width:103.328000pt;}
._28_c00309{width:111.749333pt;}
._1b_c00309{width:236.808000pt;}
._1_c00309{width:340.434667pt;}
.fs4_c00309{font-size:42.666667pt;}
.fs2_c00309{font-size:49.066667pt;}
.fs3_c00309{font-size:58.666667pt;}
.fs0_c00309{font-size:61.333333pt;}
.fs1_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y1e_c00309{bottom:2.760000pt;}
.y1d_c00309{bottom:6.425212pt;}
.y1c_c00309{bottom:51.600000pt;}
.y1b_c00309{bottom:74.400000pt;}
.y1a_c00309{bottom:96.666667pt;}
.y19_c00309{bottom:120.000000pt;}
.y18_c00309{bottom:142.266667pt;}
.y17_c00309{bottom:164.800000pt;}
.y16_c00309{bottom:186.933333pt;}
.y15_c00309{bottom:211.466667pt;}
.y14_c00309{bottom:232.533333pt;}
.y13_c00309{bottom:276.933333pt;}
.y12_c00309{bottom:322.800000pt;}
.y11_c00309{bottom:343.600000pt;}
.y10_c00309{bottom:365.066667pt;}
.yf_c00309{bottom:387.600000pt;}
.ye_c00309{bottom:410.400000pt;}
.yd_c00309{bottom:432.800000pt;}
.yc_c00309{bottom:454.266667pt;}
.yb_c00309{bottom:478.800000pt;}
.ya_c00309{bottom:499.466667pt;}
.y9_c00309{bottom:520.266667pt;}
.y8_c00309{bottom:544.133333pt;}
.y7_c00309{bottom:565.200000pt;}
.y6_c00309{bottom:587.466667pt;}
.y5_c00309{bottom:610.800000pt;}
.y4_c00309{bottom:632.800000pt;}
.y3_c00309{bottom:655.200000pt;}
.y2_c00309{bottom:677.333333pt;}
.y1_c00309{bottom:700.000000pt;}
.h4_c00309{height:11.733399pt;}
.h5_c00309{height:38.937500pt;}
.h2_c00309{height:77.654948pt;}
.h3_c00309{height:81.031250pt;}
.h1_c00309{height:735.333333pt;}
.h0_c00309{height:735.600000pt;}
.w2_c00309{width:93.222667pt;}
.w0_c00309{width:508.533333pt;}
.w1_c00309{width:508.666667pt;}
.x0_c00309{left:0.000000pt;}
.xf_c00309{left:26.666667pt;}
.xb_c00309{left:29.600000pt;}
.x8_c00309{left:30.533333pt;}
.x6_c00309{left:32.133333pt;}
.x3_c00309{left:35.333333pt;}
.x12_c00309{left:36.933333pt;}
.x7_c00309{left:46.800000pt;}
.xa_c00309{left:48.533333pt;}
.x5_c00309{left:63.333333pt;}
.xe_c00309{left:82.133333pt;}
.x11_c00309{left:83.066667pt;}
.x10_c00309{left:84.000000pt;}
.xc_c00309{left:89.333333pt;}
.x9_c00309{left:90.800000pt;}
.x4_c00309{left:93.200000pt;}
.x2_c00309{left:95.733333pt;}
.x1_c00309{left:108.800000pt;}
.xd_c00309{left:109.733333pt;}
.x14_c00309{left:211.434896pt;}
.x13_c00309{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_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_db7d22dcd02ab571ddef66ae.woff2')format("woff");}.ff1_c00310{font-family:ff1_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:ff2_c00310;src:url('chunks/assets/font_09f45f121885fdf639ee9c8c.woff2')format("woff");}.ff2_c00310{font-family:ff2_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:ff3_c00310;src:url('chunks/assets/font_06678107a3f411f0302d04e2.woff2')format("woff");}.ff3_c00310{font-family:ff3_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:ff4_c00310;src:url('chunks/assets/font_c036404d19993dba1102a3c4.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;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_c00310;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00310{font-family:ff5_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;}
.ls1_c00310{letter-spacing:0.000000px;}
.ls2_c00310{letter-spacing:6.000000px;}
.ls0_c00310{letter-spacing:42.600000px;}
.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;}
}
.ws3_c00310{word-spacing:-22.629000px;}
.ws2_c00310{word-spacing:-16.629000px;}
.ws0_c00310{word-spacing:-1.107000px;}
.ws4_c00310{word-spacing:0.000000px;}
.ws1_c00310{word-spacing:2.001000px;}
._23_c00310{margin-left:-20.148000px;}
._1b_c00310{margin-left:-14.628000px;}
._19_c00310{margin-left:-12.075000px;}
._17_c00310{margin-left:-10.764000px;}
._20_c00310{margin-left:-9.315000px;}
._18_c00310{margin-left:-8.280000px;}
._d_c00310{margin-left:-6.831000px;}
._b_c00310{margin-left:-5.451000px;}
._c_c00310{margin-left:-4.347000px;}
._3_c00310{margin-left:-3.312000px;}
._2_c00310{margin-left:-2.208000px;}
._e_c00310{margin-left:-1.035000px;}
._5_c00310{width:1.104000px;}
._0_c00310{width:2.139000px;}
._a_c00310{width:3.657000px;}
._f_c00310{width:5.244000px;}
._1a_c00310{width:6.348000px;}
._7_c00310{width:7.521000px;}
._15_c00310{width:8.901000px;}
._6_c00310{width:10.557000px;}
._1c_c00310{width:11.730000px;}
._1_c00310{width:13.110000px;}
._8_c00310{width:14.352000px;}
._9_c00310{width:16.422000px;}
._1e_c00310{width:17.802000px;}
._11_c00310{width:19.320000px;}
._12_c00310{width:22.155000px;}
._24_c00310{width:24.702000px;}
._13_c00310{width:28.083000px;}
._10_c00310{width:30.291000px;}
._16_c00310{width:32.853000px;}
._14_c00310{width:34.284000px;}
._21_c00310{width:84.972000px;}
._25_c00310{width:100.620000px;}
._1f_c00310{width:102.207000px;}
._22_c00310{width:177.252000px;}
._1d_c00310{width:238.050000px;}
._4_c00310{width:432.492000px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(128,128,128);}
.fc0_c00310{color:rgb(0,0,0);}
.fs3_c00310{font-size:48.000000px;}
.fs2_c00310{font-size:51.000000px;}
.fs1_c00310{font-size:66.000000px;}
.fs0_c00310{font-size:69.000000px;}
.y0_c00310{bottom:0.000000px;}
.y1c_c00310{bottom:3.105000px;}
.y1b_c00310{bottom:7.228363px;}
.y1a_c00310{bottom:106.650000px;}
.y19_c00310{bottom:131.250000px;}
.y18_c00310{bottom:157.500000px;}
.y17_c00310{bottom:182.250000px;}
.y16_c00310{bottom:207.000000px;}
.y15_c00310{bottom:232.650000px;}
.y14_c00310{bottom:257.100000px;}
.y13_c00310{bottom:282.750000px;}
.y12_c00310{bottom:307.500000px;}
.y11_c00310{bottom:332.550000px;}
.y10_c00310{bottom:357.750000px;}
.yf_c00310{bottom:382.350000px;}
.ye_c00310{bottom:408.000000px;}
.yd_c00310{bottom:432.750000px;}
.yc_c00310{bottom:457.950000px;}
.yb_c00310{bottom:483.000000px;}
.ya_c00310{bottom:507.600000px;}
.y9_c00310{bottom:532.500000px;}
.y8_c00310{bottom:557.100000px;}
.y7_c00310{bottom:607.500000px;}
.y6_c00310{bottom:657.750000px;}
.y5_c00310{bottom:682.500000px;}
.y4_c00310{bottom:707.700000px;}
.y3_c00310{bottom:733.050000px;}
.y2_c00310{bottom:757.950000px;}
.y1_c00310{bottom:782.700000px;}
.h3_c00310{height:13.200074px;}
.h4_c00310{height:43.804688px;}
.h2_c00310{height:80.758301px;}
.h1_c00310{height:87.361816px;}
.h0_c00310{height:823.500000px;}
.w2_c00310{width:104.875500px;}
.w1_c00310{width:560.250000px;}
.w0_c00310{width:560.550000px;}
.x0_c00310{left:0.000000px;}
.x5_c00310{left:34.350000px;}
.x2_c00310{left:35.850000px;}
.x4_c00310{left:59.100000px;}
.x3_c00310{left:67.800000px;}
.x6_c00310{left:81.300000px;}
.x1_c00310{left:201.450000px;}
.x7_c00310{left:232.089249px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls1_c00310{letter-spacing:0.000000pt;}
.ls2_c00310{letter-spacing:5.333333pt;}
.ls0_c00310{letter-spacing:37.866667pt;}
.ws3_c00310{word-spacing:-20.114667pt;}
.ws2_c00310{word-spacing:-14.781333pt;}
.ws0_c00310{word-spacing:-0.984000pt;}
.ws4_c00310{word-spacing:0.000000pt;}
.ws1_c00310{word-spacing:1.778667pt;}
._23_c00310{margin-left:-17.909333pt;}
._1b_c00310{margin-left:-13.002667pt;}
._19_c00310{margin-left:-10.733333pt;}
._17_c00310{margin-left:-9.568000pt;}
._20_c00310{margin-left:-8.280000pt;}
._18_c00310{margin-left:-7.360000pt;}
._d_c00310{margin-left:-6.072000pt;}
._b_c00310{margin-left:-4.845333pt;}
._c_c00310{margin-left:-3.864000pt;}
._3_c00310{margin-left:-2.944000pt;}
._2_c00310{margin-left:-1.962667pt;}
._e_c00310{margin-left:-0.920000pt;}
._5_c00310{width:0.981333pt;}
._0_c00310{width:1.901333pt;}
._a_c00310{width:3.250667pt;}
._f_c00310{width:4.661333pt;}
._1a_c00310{width:5.642667pt;}
._7_c00310{width:6.685333pt;}
._15_c00310{width:7.912000pt;}
._6_c00310{width:9.384000pt;}
._1c_c00310{width:10.426667pt;}
._1_c00310{width:11.653333pt;}
._8_c00310{width:12.757333pt;}
._9_c00310{width:14.597333pt;}
._1e_c00310{width:15.824000pt;}
._11_c00310{width:17.173333pt;}
._12_c00310{width:19.693333pt;}
._24_c00310{width:21.957333pt;}
._13_c00310{width:24.962667pt;}
._10_c00310{width:26.925333pt;}
._16_c00310{width:29.202667pt;}
._14_c00310{width:30.474667pt;}
._21_c00310{width:75.530667pt;}
._25_c00310{width:89.440000pt;}
._1f_c00310{width:90.850667pt;}
._22_c00310{width:157.557333pt;}
._1d_c00310{width:211.600000pt;}
._4_c00310{width:384.437333pt;}
.fs3_c00310{font-size:42.666667pt;}
.fs2_c00310{font-size:45.333333pt;}
.fs1_c00310{font-size:58.666667pt;}
.fs0_c00310{font-size:61.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y1c_c00310{bottom:2.760000pt;}
.y1b_c00310{bottom:6.425212pt;}
.y1a_c00310{bottom:94.800000pt;}
.y19_c00310{bottom:116.666667pt;}
.y18_c00310{bottom:140.000000pt;}
.y17_c00310{bottom:162.000000pt;}
.y16_c00310{bottom:184.000000pt;}
.y15_c00310{bottom:206.800000pt;}
.y14_c00310{bottom:228.533333pt;}
.y13_c00310{bottom:251.333333pt;}
.y12_c00310{bottom:273.333333pt;}
.y11_c00310{bottom:295.600000pt;}
.y10_c00310{bottom:318.000000pt;}
.yf_c00310{bottom:339.866667pt;}
.ye_c00310{bottom:362.666667pt;}
.yd_c00310{bottom:384.666667pt;}
.yc_c00310{bottom:407.066667pt;}
.yb_c00310{bottom:429.333333pt;}
.ya_c00310{bottom:451.200000pt;}
.y9_c00310{bottom:473.333333pt;}
.y8_c00310{bottom:495.200000pt;}
.y7_c00310{bottom:540.000000pt;}
.y6_c00310{bottom:584.666667pt;}
.y5_c00310{bottom:606.666667pt;}
.y4_c00310{bottom:629.066667pt;}
.y3_c00310{bottom:651.600000pt;}
.y2_c00310{bottom:673.733333pt;}
.y1_c00310{bottom:695.733333pt;}
.h3_c00310{height:11.733399pt;}
.h4_c00310{height:38.937500pt;}
.h2_c00310{height:71.785156pt;}
.h1_c00310{height:77.654948pt;}
.h0_c00310{height:732.000000pt;}
.w2_c00310{width:93.222667pt;}
.w1_c00310{width:498.000000pt;}
.w0_c00310{width:498.266667pt;}
.x0_c00310{left:0.000000pt;}
.x5_c00310{left:30.533333pt;}
.x2_c00310{left:31.866667pt;}
.x4_c00310{left:52.533333pt;}
.x3_c00310{left:60.266667pt;}
.x6_c00310{left:72.266667pt;}
.x1_c00310{left:179.066667pt;}
.x7_c00310{left:206.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8d93e0c78e642f46d18302e.woff2')format("woff");}.ff1_c00311{font-family:ff1_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:ff2_c00311;src:url('chunks/assets/font_a2df07cc8f05c194233aaba4.woff2')format("woff");}.ff2_c00311{font-family:ff2_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:ff3_c00311;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00311{font-family:ff3_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;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:6.000000px;}
.ls1_c00311{letter-spacing:11.925000px;}
.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;}
}
.ws3_c00311{word-spacing:-22.629000px;}
.ws2_c00311{word-spacing:-16.629000px;}
.ws0_c00311{word-spacing:-0.207000px;}
.ws4_c00311{word-spacing:0.000000px;}
.ws1_c00311{word-spacing:13.731000px;}
._11_c00311{margin-left:-23.184000px;}
._1c_c00311{margin-left:-20.562000px;}
._15_c00311{margin-left:-12.834000px;}
._18_c00311{margin-left:-9.798000px;}
._d_c00311{margin-left:-7.176000px;}
._f_c00311{margin-left:-5.727000px;}
._10_c00311{margin-left:-3.726000px;}
._e_c00311{margin-left:-1.794000px;}
._4_c00311{width:1.656000px;}
._5_c00311{width:3.243000px;}
._19_c00311{width:4.416000px;}
._12_c00311{width:5.520000px;}
._14_c00311{width:7.314000px;}
._16_c00311{width:8.556000px;}
._13_c00311{width:10.026000px;}
._9_c00311{width:11.661000px;}
._7_c00311{width:13.593000px;}
._17_c00311{width:15.249000px;}
._a_c00311{width:16.353000px;}
._1_c00311{width:18.630000px;}
._0_c00311{width:19.941000px;}
._2_c00311{width:23.805000px;}
._8_c00311{width:26.151000px;}
._1a_c00311{width:27.531000px;}
._b_c00311{width:33.447000px;}
._6_c00311{width:35.715000px;}
._3_c00311{width:39.426000px;}
._c_c00311{width:40.986000px;}
._1b_c00311{width:74.238000px;}
.fc2_c00311{color:transparent;}
.fc1_c00311{color:rgb(128,128,128);}
.fc0_c00311{color:rgb(0,0,0);}
.fs1_c00311{font-size:48.000000px;}
.fs0_c00311{font-size:69.000000px;}
.y0_c00311{bottom:0.000000px;}
.y17_c00311{bottom:3.105000px;}
.y16_c00311{bottom:7.228363px;}
.y15_c00311{bottom:181.800000px;}
.y14_c00311{bottom:206.250000px;}
.y13_c00311{bottom:231.750000px;}
.y12_c00311{bottom:256.800000px;}
.y11_c00311{bottom:282.150000px;}
.y10_c00311{bottom:307.050000px;}
.yf_c00311{bottom:330.750000px;}
.ye_c00311{bottom:355.950000px;}
.yd_c00311{bottom:381.300000px;}
.yc_c00311{bottom:406.350000px;}
.yb_c00311{bottom:431.250000px;}
.ya_c00311{bottom:456.300000px;}
.y9_c00311{bottom:480.900000px;}
.y8_c00311{bottom:505.950000px;}
.y7_c00311{bottom:531.600000px;}
.y6_c00311{bottom:556.200000px;}
.y5_c00311{bottom:581.250000px;}
.y4_c00311{bottom:632.250000px;}
.y3_c00311{bottom:657.150000px;}
.y2_c00311{bottom:681.750000px;}
.y1_c00311{bottom:732.000000px;}
.h3_c00311{height:13.200074px;}
.h4_c00311{height:43.804688px;}
.h2_c00311{height:80.758301px;}
.h1_c00311{height:87.361816px;}
.h0_c00311{height:810.000000px;}
.w2_c00311{width:104.875500px;}
.w0_c00311{width:559.950000px;}
.w1_c00311{width:560.250000px;}
.x0_c00311{left:0.000000px;}
.x7_c00311{left:28.050000px;}
.x3_c00311{left:72.000000px;}
.x6_c00311{left:73.200000px;}
.x4_c00311{left:75.000000px;}
.x5_c00311{left:97.650000px;}
.x2_c00311{left:99.300000px;}
.x1_c00311{left:109.050000px;}
.x8_c00311{left:137.100000px;}
.x9_c00311{left:231.789230px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:5.333333pt;}
.ls1_c00311{letter-spacing:10.600000pt;}
.ws3_c00311{word-spacing:-20.114667pt;}
.ws2_c00311{word-spacing:-14.781333pt;}
.ws0_c00311{word-spacing:-0.184000pt;}
.ws4_c00311{word-spacing:0.000000pt;}
.ws1_c00311{word-spacing:12.205333pt;}
._11_c00311{margin-left:-20.608000pt;}
._1c_c00311{margin-left:-18.277333pt;}
._15_c00311{margin-left:-11.408000pt;}
._18_c00311{margin-left:-8.709333pt;}
._d_c00311{margin-left:-6.378667pt;}
._f_c00311{margin-left:-5.090667pt;}
._10_c00311{margin-left:-3.312000pt;}
._e_c00311{margin-left:-1.594667pt;}
._4_c00311{width:1.472000pt;}
._5_c00311{width:2.882667pt;}
._19_c00311{width:3.925333pt;}
._12_c00311{width:4.906667pt;}
._14_c00311{width:6.501333pt;}
._16_c00311{width:7.605333pt;}
._13_c00311{width:8.912000pt;}
._9_c00311{width:10.365333pt;}
._7_c00311{width:12.082667pt;}
._17_c00311{width:13.554667pt;}
._a_c00311{width:14.536000pt;}
._1_c00311{width:16.560000pt;}
._0_c00311{width:17.725333pt;}
._2_c00311{width:21.160000pt;}
._8_c00311{width:23.245333pt;}
._1a_c00311{width:24.472000pt;}
._b_c00311{width:29.730667pt;}
._6_c00311{width:31.746667pt;}
._3_c00311{width:35.045333pt;}
._c_c00311{width:36.432000pt;}
._1b_c00311{width:65.989333pt;}
.fs1_c00311{font-size:42.666667pt;}
.fs0_c00311{font-size:61.333333pt;}
.y0_c00311{bottom:0.000000pt;}
.y17_c00311{bottom:2.760000pt;}
.y16_c00311{bottom:6.425212pt;}
.y15_c00311{bottom:161.600000pt;}
.y14_c00311{bottom:183.333333pt;}
.y13_c00311{bottom:206.000000pt;}
.y12_c00311{bottom:228.266667pt;}
.y11_c00311{bottom:250.800000pt;}
.y10_c00311{bottom:272.933333pt;}
.yf_c00311{bottom:294.000000pt;}
.ye_c00311{bottom:316.400000pt;}
.yd_c00311{bottom:338.933333pt;}
.yc_c00311{bottom:361.200000pt;}
.yb_c00311{bottom:383.333333pt;}
.ya_c00311{bottom:405.600000pt;}
.y9_c00311{bottom:427.466667pt;}
.y8_c00311{bottom:449.733333pt;}
.y7_c00311{bottom:472.533333pt;}
.y6_c00311{bottom:494.400000pt;}
.y5_c00311{bottom:516.666667pt;}
.y4_c00311{bottom:562.000000pt;}
.y3_c00311{bottom:584.133333pt;}
.y2_c00311{bottom:606.000000pt;}
.y1_c00311{bottom:650.666667pt;}
.h3_c00311{height:11.733399pt;}
.h4_c00311{height:38.937500pt;}
.h2_c00311{height:71.785156pt;}
.h1_c00311{height:77.654948pt;}
.h0_c00311{height:720.000000pt;}
.w2_c00311{width:93.222667pt;}
.w0_c00311{width:497.733333pt;}
.w1_c00311{width:498.000000pt;}
.x0_c00311{left:0.000000pt;}
.x7_c00311{left:24.933333pt;}
.x3_c00311{left:64.000000pt;}
.x6_c00311{left:65.066667pt;}
.x4_c00311{left:66.666667pt;}
.x5_c00311{left:86.800000pt;}
.x2_c00311{left:88.266667pt;}
.x1_c00311{left:96.933333pt;}
.x8_c00311{left:121.866667pt;}
.x9_c00311{left:206.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6981da9ceec977e45f1eb161.woff2')format("woff");}.ff1_c00312{font-family:ff1_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:ff2_c00312;src:url('chunks/assets/font_b07460c74b4d312aa732bc28.woff2')format("woff");}.ff2_c00312{font-family:ff2_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:ff3_c00312;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00312{font-family:ff3_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;}
.ls1_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:6.000000px;}
.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;}
}
.ws3_c00312{word-spacing:-16.629000px;}
.ws2_c00312{word-spacing:-1.173000px;}
.ws0_c00312{word-spacing:-0.483000px;}
.ws4_c00312{word-spacing:0.000000px;}
.ws1_c00312{word-spacing:5.313000px;}
._13_c00312{margin-left:-17.940000px;}
._15_c00312{margin-left:-15.663000px;}
._14_c00312{margin-left:-14.490000px;}
._12_c00312{margin-left:-12.144000px;}
._10_c00312{margin-left:-10.074000px;}
._18_c00312{margin-left:-8.280000px;}
._d_c00312{margin-left:-7.245000px;}
._b_c00312{margin-left:-6.003000px;}
._c_c00312{margin-left:-4.623000px;}
._f_c00312{margin-left:-3.381000px;}
._e_c00312{margin-left:-1.518000px;}
._9_c00312{width:1.242000px;}
._19_c00312{width:2.484000px;}
._5_c00312{width:3.588000px;}
._1a_c00312{width:4.623000px;}
._a_c00312{width:6.003000px;}
._11_c00312{width:7.008000px;}
._1f_c00312{width:8.217000px;}
._17_c00312{width:9.246000px;}
._1c_c00312{width:10.488000px;}
._7_c00312{width:11.604000px;}
._1b_c00312{width:13.596000px;}
._0_c00312{width:14.904000px;}
._22_c00312{width:16.152000px;}
._3_c00312{width:17.244000px;}
._2_c00312{width:18.285000px;}
._16_c00312{width:19.527000px;}
._1_c00312{width:20.562000px;}
._6_c00312{width:31.839000px;}
._1e_c00312{width:33.537000px;}
._23_c00312{width:36.594000px;}
._8_c00312{width:39.792000px;}
._4_c00312{width:43.401000px;}
._20_c00312{width:52.794000px;}
._21_c00312{width:155.373000px;}
._1d_c00312{width:227.658000px;}
.fc2_c00312{color:transparent;}
.fc1_c00312{color:rgb(128,128,128);}
.fc0_c00312{color:rgb(0,0,0);}
.fs1_c00312{font-size:48.000000px;}
.fs0_c00312{font-size:69.000000px;}
.y0_c00312{bottom:0.000000px;}
.y19_c00312{bottom:3.105000px;}
.y18_c00312{bottom:7.228371px;}
.y16_c00312{bottom:70.965000px;}
.y15_c00312{bottom:196.065000px;}
.y14_c00312{bottom:221.715000px;}
.y13_c00312{bottom:247.065000px;}
.y12_c00312{bottom:272.115000px;}
.y11_c00312{bottom:297.015000px;}
.y17_c00312{bottom:314.865000px;}
.y10_c00312{bottom:321.765000px;}
.yf_c00312{bottom:346.965000px;}
.ye_c00312{bottom:371.715000px;}
.yd_c00312{bottom:396.915000px;}
.yc_c00312{bottom:421.665000px;}
.yb_c00312{bottom:446.865000px;}
.ya_c00312{bottom:471.615000px;}
.y9_c00312{bottom:496.515000px;}
.y8_c00312{bottom:521.415000px;}
.y7_c00312{bottom:545.865000px;}
.y6_c00312{bottom:571.065000px;}
.y5_c00312{bottom:595.815000px;}
.y4_c00312{bottom:645.765000px;}
.y3_c00312{bottom:671.415000px;}
.y2_c00312{bottom:697.065000px;}
.y1_c00312{bottom:747.015000px;}
.h4_c00312{height:13.200074px;}
.h5_c00312{height:43.804688px;}
.h3_c00312{height:80.758301px;}
.h2_c00312{height:87.361816px;}
.h1_c00312{height:831.000000px;}
.h0_c00312{height:831.075000px;}
.w2_c00312{width:104.875500px;}
.w0_c00312{width:566.175000px;}
.w1_c00312{width:566.250000px;}
.x0_c00312{left:0.000000px;}
.x5_c00312{left:32.400000px;}
.x3_c00312{left:33.750000px;}
.x2_c00312{left:56.400000px;}
.x4_c00312{left:57.600000px;}
.x1_c00312{left:63.000000px;}
.x8_c00312{left:234.901749px;}
.x6_c00312{left:409.050000px;}
.x7_c00312{left:497.400000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls1_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:5.333333pt;}
.ws3_c00312{word-spacing:-14.781333pt;}
.ws2_c00312{word-spacing:-1.042667pt;}
.ws0_c00312{word-spacing:-0.429333pt;}
.ws4_c00312{word-spacing:0.000000pt;}
.ws1_c00312{word-spacing:4.722667pt;}
._13_c00312{margin-left:-15.946667pt;}
._15_c00312{margin-left:-13.922667pt;}
._14_c00312{margin-left:-12.880000pt;}
._12_c00312{margin-left:-10.794667pt;}
._10_c00312{margin-left:-8.954667pt;}
._18_c00312{margin-left:-7.360000pt;}
._d_c00312{margin-left:-6.440000pt;}
._b_c00312{margin-left:-5.336000pt;}
._c_c00312{margin-left:-4.109333pt;}
._f_c00312{margin-left:-3.005333pt;}
._e_c00312{margin-left:-1.349333pt;}
._9_c00312{width:1.104000pt;}
._19_c00312{width:2.208000pt;}
._5_c00312{width:3.189333pt;}
._1a_c00312{width:4.109333pt;}
._a_c00312{width:5.336000pt;}
._11_c00312{width:6.229333pt;}
._1f_c00312{width:7.304000pt;}
._17_c00312{width:8.218667pt;}
._1c_c00312{width:9.322667pt;}
._7_c00312{width:10.314667pt;}
._1b_c00312{width:12.085333pt;}
._0_c00312{width:13.248000pt;}
._22_c00312{width:14.357333pt;}
._3_c00312{width:15.328000pt;}
._2_c00312{width:16.253333pt;}
._16_c00312{width:17.357333pt;}
._1_c00312{width:18.277333pt;}
._6_c00312{width:28.301333pt;}
._1e_c00312{width:29.810667pt;}
._23_c00312{width:32.528000pt;}
._8_c00312{width:35.370667pt;}
._4_c00312{width:38.578667pt;}
._20_c00312{width:46.928000pt;}
._21_c00312{width:138.109333pt;}
._1d_c00312{width:202.362667pt;}
.fs1_c00312{font-size:42.666667pt;}
.fs0_c00312{font-size:61.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y19_c00312{bottom:2.760000pt;}
.y18_c00312{bottom:6.425219pt;}
.y16_c00312{bottom:63.080000pt;}
.y15_c00312{bottom:174.280000pt;}
.y14_c00312{bottom:197.080000pt;}
.y13_c00312{bottom:219.613333pt;}
.y12_c00312{bottom:241.880000pt;}
.y11_c00312{bottom:264.013333pt;}
.y17_c00312{bottom:279.880000pt;}
.y10_c00312{bottom:286.013333pt;}
.yf_c00312{bottom:308.413333pt;}
.ye_c00312{bottom:330.413333pt;}
.yd_c00312{bottom:352.813333pt;}
.yc_c00312{bottom:374.813333pt;}
.yb_c00312{bottom:397.213333pt;}
.ya_c00312{bottom:419.213333pt;}
.y9_c00312{bottom:441.346667pt;}
.y8_c00312{bottom:463.480000pt;}
.y7_c00312{bottom:485.213333pt;}
.y6_c00312{bottom:507.613333pt;}
.y5_c00312{bottom:529.613333pt;}
.y4_c00312{bottom:574.013333pt;}
.y3_c00312{bottom:596.813333pt;}
.y2_c00312{bottom:619.613333pt;}
.y1_c00312{bottom:664.013333pt;}
.h4_c00312{height:11.733399pt;}
.h5_c00312{height:38.937500pt;}
.h3_c00312{height:71.785156pt;}
.h2_c00312{height:77.654948pt;}
.h1_c00312{height:738.666667pt;}
.h0_c00312{height:738.733333pt;}
.w2_c00312{width:93.222667pt;}
.w0_c00312{width:503.266667pt;}
.w1_c00312{width:503.333333pt;}
.x0_c00312{left:0.000000pt;}
.x5_c00312{left:28.800000pt;}
.x3_c00312{left:30.000000pt;}
.x2_c00312{left:50.133333pt;}
.x4_c00312{left:51.200000pt;}
.x1_c00312{left:56.000000pt;}
.x8_c00312{left:208.801554pt;}
.x6_c00312{left:363.600000pt;}
.x7_c00312{left:442.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_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_7b1776c295b0e8300ccd5c3e.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_6f089d61f5ae15ba9f5c54b3.woff2')format("woff");}.ff2_c00313{font-family:ff2_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:ff3_c00313;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00313{font-family:ff3_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;}
.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;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:6.000000px;}
.ls1_c00313{letter-spacing:11.925000px;}
.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:-16.629000px;}
.ws3_c00313{word-spacing:-0.345000px;}
.ws6_c00313{word-spacing:0.000000px;}
.ws5_c00313{word-spacing:0.069000px;}
.ws4_c00313{word-spacing:0.483000px;}
.ws0_c00313{word-spacing:3.450000px;}
.ws2_c00313{word-spacing:4.899000px;}
._24_c00313{margin-left:-27.807000px;}
._29_c00313{margin-left:-21.045000px;}
._26_c00313{margin-left:-15.801000px;}
._10_c00313{margin-left:-14.559000px;}
._22_c00313{margin-left:-13.386000px;}
._e_c00313{margin-left:-12.075000px;}
._21_c00313{margin-left:-10.005000px;}
._14_c00313{margin-left:-8.901000px;}
._17_c00313{margin-left:-7.107000px;}
._d_c00313{margin-left:-6.003000px;}
._11_c00313{margin-left:-4.623000px;}
._c_c00313{margin-left:-3.174000px;}
._f_c00313{margin-left:-2.139000px;}
._13_c00313{margin-left:-1.035000px;}
._5_c00313{width:1.242000px;}
._a_c00313{width:2.898000px;}
._8_c00313{width:4.209000px;}
._7_c00313{width:6.210000px;}
._9_c00313{width:8.211000px;}
._12_c00313{width:9.246000px;}
._18_c00313{width:10.419000px;}
._1d_c00313{width:11.523000px;}
._15_c00313{width:12.696000px;}
._0_c00313{width:14.076000px;}
._19_c00313{width:15.870000px;}
._1b_c00313{width:16.884000px;}
._1a_c00313{width:18.975000px;}
._28_c00313{width:20.196000px;}
._2_c00313{width:22.839000px;}
._1_c00313{width:25.668000px;}
._3_c00313{width:29.325000px;}
._16_c00313{width:32.154000px;}
._6_c00313{width:33.609000px;}
._4_c00313{width:35.211000px;}
._1e_c00313{width:38.847000px;}
._b_c00313{width:41.535000px;}
._2a_c00313{width:51.336000px;}
._27_c00313{width:55.614000px;}
._1c_c00313{width:88.941000px;}
._20_c00313{width:143.106000px;}
._1f_c00313{width:168.705000px;}
._25_c00313{width:179.607000px;}
._23_c00313{width:288.777000px;}
.fc2_c00313{color:transparent;}
.fc1_c00313{color:rgb(128,128,128);}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:48.000000px;}
.fs0_c00313{font-size:69.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1e_c00313{bottom:3.105000px;}
.y1d_c00313{bottom:7.228355px;}
.y1b_c00313{bottom:49.485000px;}
.y1a_c00313{bottom:72.435000px;}
.y19_c00313{bottom:99.135000px;}
.y18_c00313{bottom:124.485000px;}
.y17_c00313{bottom:149.385000px;}
.y1c_c00313{bottom:161.535000px;}
.y16_c00313{bottom:174.735000px;}
.y15_c00313{bottom:199.485000px;}
.y14_c00313{bottom:224.685000px;}
.y13_c00313{bottom:250.035000px;}
.y12_c00313{bottom:274.935000px;}
.y11_c00313{bottom:299.385000px;}
.y10_c00313{bottom:325.035000px;}
.yf_c00313{bottom:349.335000px;}
.ye_c00313{bottom:374.835000px;}
.yd_c00313{bottom:400.185000px;}
.yc_c00313{bottom:424.935000px;}
.yb_c00313{bottom:450.135000px;}
.ya_c00313{bottom:475.485000px;}
.y9_c00313{bottom:500.385000px;}
.y8_c00313{bottom:525.735000px;}
.y7_c00313{bottom:550.485000px;}
.y6_c00313{bottom:575.685000px;}
.y5_c00313{bottom:600.735000px;}
.y4_c00313{bottom:626.085000px;}
.y3_c00313{bottom:651.585000px;}
.y2_c00313{bottom:676.335000px;}
.y1_c00313{bottom:726.285000px;}
.h4_c00313{height:13.200074px;}
.h5_c00313{height:43.804688px;}
.h3_c00313{height:80.758301px;}
.h2_c00313{height:87.361816px;}
.h0_c00313{height:815.925000px;}
.h1_c00313{height:816.000000px;}
.w2_c00313{width:104.875500px;}
.w0_c00313{width:563.775000px;}
.w1_c00313{width:564.000000px;}
.x0_c00313{left:0.000000px;}
.x7_c00313{left:21.150000px;}
.x8_c00313{left:23.850000px;}
.x5_c00313{left:40.500000px;}
.x6_c00313{left:85.500000px;}
.x4_c00313{left:86.700000px;}
.x3_c00313{left:87.750000px;}
.x9_c00313{left:89.100000px;}
.x2_c00313{left:112.650000px;}
.x1_c00313{left:124.200000px;}
.xb_c00313{left:233.701767px;}
.xa_c00313{left:461.100000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:5.333333pt;}
.ls1_c00313{letter-spacing:10.600000pt;}
.ws1_c00313{word-spacing:-14.781333pt;}
.ws3_c00313{word-spacing:-0.306667pt;}
.ws6_c00313{word-spacing:0.000000pt;}
.ws5_c00313{word-spacing:0.061333pt;}
.ws4_c00313{word-spacing:0.429333pt;}
.ws0_c00313{word-spacing:3.066667pt;}
.ws2_c00313{word-spacing:4.354667pt;}
._24_c00313{margin-left:-24.717333pt;}
._29_c00313{margin-left:-18.706667pt;}
._26_c00313{margin-left:-14.045333pt;}
._10_c00313{margin-left:-12.941333pt;}
._22_c00313{margin-left:-11.898667pt;}
._e_c00313{margin-left:-10.733333pt;}
._21_c00313{margin-left:-8.893333pt;}
._14_c00313{margin-left:-7.912000pt;}
._17_c00313{margin-left:-6.317333pt;}
._d_c00313{margin-left:-5.336000pt;}
._11_c00313{margin-left:-4.109333pt;}
._c_c00313{margin-left:-2.821333pt;}
._f_c00313{margin-left:-1.901333pt;}
._13_c00313{margin-left:-0.920000pt;}
._5_c00313{width:1.104000pt;}
._a_c00313{width:2.576000pt;}
._8_c00313{width:3.741333pt;}
._7_c00313{width:5.520000pt;}
._9_c00313{width:7.298667pt;}
._12_c00313{width:8.218667pt;}
._18_c00313{width:9.261333pt;}
._1d_c00313{width:10.242667pt;}
._15_c00313{width:11.285333pt;}
._0_c00313{width:12.512000pt;}
._19_c00313{width:14.106667pt;}
._1b_c00313{width:15.008000pt;}
._1a_c00313{width:16.866667pt;}
._28_c00313{width:17.952000pt;}
._2_c00313{width:20.301333pt;}
._1_c00313{width:22.816000pt;}
._3_c00313{width:26.066667pt;}
._16_c00313{width:28.581333pt;}
._6_c00313{width:29.874667pt;}
._4_c00313{width:31.298667pt;}
._1e_c00313{width:34.530667pt;}
._b_c00313{width:36.920000pt;}
._2a_c00313{width:45.632000pt;}
._27_c00313{width:49.434667pt;}
._1c_c00313{width:79.058667pt;}
._20_c00313{width:127.205333pt;}
._1f_c00313{width:149.960000pt;}
._25_c00313{width:159.650667pt;}
._23_c00313{width:256.690667pt;}
.fs1_c00313{font-size:42.666667pt;}
.fs0_c00313{font-size:61.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y1e_c00313{bottom:2.760000pt;}
.y1d_c00313{bottom:6.425204pt;}
.y1b_c00313{bottom:43.986667pt;}
.y1a_c00313{bottom:64.386667pt;}
.y19_c00313{bottom:88.120000pt;}
.y18_c00313{bottom:110.653333pt;}
.y17_c00313{bottom:132.786667pt;}
.y1c_c00313{bottom:143.586667pt;}
.y16_c00313{bottom:155.320000pt;}
.y15_c00313{bottom:177.320000pt;}
.y14_c00313{bottom:199.720000pt;}
.y13_c00313{bottom:222.253333pt;}
.y12_c00313{bottom:244.386667pt;}
.y11_c00313{bottom:266.120000pt;}
.y10_c00313{bottom:288.920000pt;}
.yf_c00313{bottom:310.520000pt;}
.ye_c00313{bottom:333.186667pt;}
.yd_c00313{bottom:355.720000pt;}
.yc_c00313{bottom:377.720000pt;}
.yb_c00313{bottom:400.120000pt;}
.ya_c00313{bottom:422.653333pt;}
.y9_c00313{bottom:444.786667pt;}
.y8_c00313{bottom:467.320000pt;}
.y7_c00313{bottom:489.320000pt;}
.y6_c00313{bottom:511.720000pt;}
.y5_c00313{bottom:533.986667pt;}
.y4_c00313{bottom:556.520000pt;}
.y3_c00313{bottom:579.186667pt;}
.y2_c00313{bottom:601.186667pt;}
.y1_c00313{bottom:645.586667pt;}
.h4_c00313{height:11.733399pt;}
.h5_c00313{height:38.937500pt;}
.h3_c00313{height:71.785156pt;}
.h2_c00313{height:77.654948pt;}
.h0_c00313{height:725.266667pt;}
.h1_c00313{height:725.333333pt;}
.w2_c00313{width:93.222667pt;}
.w0_c00313{width:501.133333pt;}
.w1_c00313{width:501.333333pt;}
.x0_c00313{left:0.000000pt;}
.x7_c00313{left:18.800000pt;}
.x8_c00313{left:21.200000pt;}
.x5_c00313{left:36.000000pt;}
.x6_c00313{left:76.000000pt;}
.x4_c00313{left:77.066667pt;}
.x3_c00313{left:78.000000pt;}
.x9_c00313{left:79.200000pt;}
.x2_c00313{left:100.133333pt;}
.x1_c00313{left:110.400000pt;}
.xb_c00313{left:207.734904pt;}
.xa_c00313{left:409.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_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_aaefda9169eca66006a11008.woff2')format("woff");}.ff1_c00314{font-family:ff1_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:ff2_c00314;src:url('chunks/assets/font_979001e39c2af6eb5444ce7a.woff2')format("woff");}.ff2_c00314{font-family:ff2_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:ff3_c00314;src:url('chunks/assets/font_e33fb7fd26de7042cf2c7b4a.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;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_c00314;src:url('chunks/assets/font_94782d862fb3b27d88000dd1.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_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00314{font-family:ff6_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:0.000000px;}
.ls4_c00314{letter-spacing:3.000000px;}
.ls1_c00314{letter-spacing:4.200000px;}
.ls3_c00314{letter-spacing:6.000000px;}
.ls0_c00314{letter-spacing:11.529600px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-63.570000px;}
.ws2_c00314{word-spacing:-22.629000px;}
.ws3_c00314{word-spacing:-18.798000px;}
.ws1_c00314{word-spacing:-16.629000px;}
.ws4_c00314{word-spacing:0.000000px;}
._10_c00314{margin-left:-15.756000px;}
._6_c00314{margin-left:-14.742000px;}
._11_c00314{margin-left:-13.698000px;}
._15_c00314{margin-left:-12.012000px;}
._e_c00314{margin-left:-10.842000px;}
._c_c00314{margin-left:-9.828000px;}
._d_c00314{margin-left:-8.112000px;}
._5_c00314{margin-left:-6.630000px;}
._f_c00314{margin-left:-5.616000px;}
._b_c00314{margin-left:-4.602000px;}
._14_c00314{margin-left:-2.574000px;}
._13_c00314{margin-left:-1.560000px;}
._16_c00314{width:1.002000px;}
._1d_c00314{width:2.289000px;}
._8_c00314{width:3.354000px;}
._17_c00314{width:4.527000px;}
._2_c00314{width:5.616000px;}
._9_c00314{width:6.630000px;}
._0_c00314{width:8.424000px;}
._1_c00314{width:10.218000px;}
._19_c00314{width:12.069000px;}
._3_c00314{width:13.542000px;}
._12_c00314{width:15.054000px;}
._20_c00314{width:16.341000px;}
._1e_c00314{width:17.616000px;}
._1c_c00314{width:18.819000px;}
._23_c00314{width:20.031000px;}
._18_c00314{width:21.546000px;}
._1a_c00314{width:24.180000px;}
._1b_c00314{width:26.289000px;}
._a_c00314{width:32.253000px;}
._21_c00314{width:33.819000px;}
._22_c00314{width:35.097000px;}
._7_c00314{width:40.560000px;}
._4_c00314{width:46.878000px;}
._1f_c00314{width:92.553000px;}
._24_c00314{width:170.046000px;}
._25_c00314{width:201.798000px;}
._26_c00314{width:419.499000px;}
.fc2_c00314{color:transparent;}
.fc1_c00314{color:rgb(128,128,128);}
.fc0_c00314{color:rgb(0,0,0);}
.fs5_c00314{font-size:48.000000px;}
.fs1_c00314{font-size:62.400000px;}
.fs4_c00314{font-size:63.000000px;}
.fs3_c00314{font-size:66.000000px;}
.fs2_c00314{font-size:69.000000px;}
.fs0_c00314{font-size:78.000000px;}
.y0_c00314{bottom:0.000000px;}
.y1e_c00314{bottom:3.105000px;}
.y1d_c00314{bottom:7.228371px;}
.y1c_c00314{bottom:72.015000px;}
.y1b_c00314{bottom:96.615000px;}
.y1a_c00314{bottom:121.515000px;}
.y19_c00314{bottom:146.865000px;}
.y18_c00314{bottom:171.765000px;}
.y17_c00314{bottom:196.815000px;}
.y16_c00314{bottom:221.865000px;}
.y15_c00314{bottom:247.365000px;}
.y14_c00314{bottom:272.415000px;}
.y13_c00314{bottom:297.315000px;}
.y12_c00314{bottom:322.365000px;}
.y11_c00314{bottom:346.965000px;}
.y10_c00314{bottom:372.015000px;}
.yf_c00314{bottom:396.915000px;}
.ye_c00314{bottom:421.665000px;}
.yd_c00314{bottom:446.565000px;}
.yc_c00314{bottom:471.615000px;}
.yb_c00314{bottom:495.915000px;}
.ya_c00314{bottom:520.815000px;}
.y9_c00314{bottom:545.415000px;}
.y8_c00314{bottom:570.465000px;}
.y7_c00314{bottom:595.365000px;}
.y6_c00314{bottom:620.115000px;}
.y5_c00314{bottom:644.715000px;}
.y4_c00314{bottom:670.665000px;}
.y3_c00314{bottom:695.565000px;}
.y2_c00314{bottom:720.615000px;}
.y1_c00314{bottom:745.665000px;}
.h5_c00314{height:13.200074px;}
.h6_c00314{height:43.804688px;}
.h4_c00314{height:87.361816px;}
.h2_c00314{height:91.291992px;}
.h3_c00314{height:98.756836px;}
.h1_c00314{height:831.000000px;}
.h0_c00314{height:831.075000px;}
.w2_c00314{width:104.875500px;}
.w0_c00314{width:566.175000px;}
.w1_c00314{width:566.250000px;}
.x0_c00314{left:0.000000px;}
.x3_c00314{left:21.300000px;}
.x5_c00314{left:22.950000px;}
.x7_c00314{left:24.600000px;}
.x6_c00314{left:26.400000px;}
.x4_c00314{left:48.600000px;}
.x2_c00314{left:49.950000px;}
.x1_c00314{left:56.700000px;}
.x9_c00314{left:234.901749px;}
.x8_c00314{left:263.550000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.ls4_c00314{letter-spacing:2.666667pt;}
.ls1_c00314{letter-spacing:3.733333pt;}
.ls3_c00314{letter-spacing:5.333333pt;}
.ls0_c00314{letter-spacing:10.248533pt;}
.ws0_c00314{word-spacing:-56.506667pt;}
.ws2_c00314{word-spacing:-20.114667pt;}
.ws3_c00314{word-spacing:-16.709333pt;}
.ws1_c00314{word-spacing:-14.781333pt;}
.ws4_c00314{word-spacing:0.000000pt;}
._10_c00314{margin-left:-14.005333pt;}
._6_c00314{margin-left:-13.104000pt;}
._11_c00314{margin-left:-12.176000pt;}
._15_c00314{margin-left:-10.677333pt;}
._e_c00314{margin-left:-9.637333pt;}
._c_c00314{margin-left:-8.736000pt;}
._d_c00314{margin-left:-7.210667pt;}
._5_c00314{margin-left:-5.893333pt;}
._f_c00314{margin-left:-4.992000pt;}
._b_c00314{margin-left:-4.090667pt;}
._14_c00314{margin-left:-2.288000pt;}
._13_c00314{margin-left:-1.386667pt;}
._16_c00314{width:0.890667pt;}
._1d_c00314{width:2.034667pt;}
._8_c00314{width:2.981333pt;}
._17_c00314{width:4.024000pt;}
._2_c00314{width:4.992000pt;}
._9_c00314{width:5.893333pt;}
._0_c00314{width:7.488000pt;}
._1_c00314{width:9.082667pt;}
._19_c00314{width:10.728000pt;}
._3_c00314{width:12.037333pt;}
._12_c00314{width:13.381333pt;}
._20_c00314{width:14.525333pt;}
._1e_c00314{width:15.658667pt;}
._1c_c00314{width:16.728000pt;}
._23_c00314{width:17.805333pt;}
._18_c00314{width:19.152000pt;}
._1a_c00314{width:21.493333pt;}
._1b_c00314{width:23.368000pt;}
._a_c00314{width:28.669333pt;}
._21_c00314{width:30.061333pt;}
._22_c00314{width:31.197333pt;}
._7_c00314{width:36.053333pt;}
._4_c00314{width:41.669333pt;}
._1f_c00314{width:82.269333pt;}
._24_c00314{width:151.152000pt;}
._25_c00314{width:179.376000pt;}
._26_c00314{width:372.888000pt;}
.fs5_c00314{font-size:42.666667pt;}
.fs1_c00314{font-size:55.466667pt;}
.fs4_c00314{font-size:56.000000pt;}
.fs3_c00314{font-size:58.666667pt;}
.fs2_c00314{font-size:61.333333pt;}
.fs0_c00314{font-size:69.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y1e_c00314{bottom:2.760000pt;}
.y1d_c00314{bottom:6.425219pt;}
.y1c_c00314{bottom:64.013333pt;}
.y1b_c00314{bottom:85.880000pt;}
.y1a_c00314{bottom:108.013333pt;}
.y19_c00314{bottom:130.546667pt;}
.y18_c00314{bottom:152.680000pt;}
.y17_c00314{bottom:174.946667pt;}
.y16_c00314{bottom:197.213333pt;}
.y15_c00314{bottom:219.880000pt;}
.y14_c00314{bottom:242.146667pt;}
.y13_c00314{bottom:264.280000pt;}
.y12_c00314{bottom:286.546667pt;}
.y11_c00314{bottom:308.413333pt;}
.y10_c00314{bottom:330.680000pt;}
.yf_c00314{bottom:352.813333pt;}
.ye_c00314{bottom:374.813333pt;}
.yd_c00314{bottom:396.946667pt;}
.yc_c00314{bottom:419.213333pt;}
.yb_c00314{bottom:440.813333pt;}
.ya_c00314{bottom:462.946667pt;}
.y9_c00314{bottom:484.813333pt;}
.y8_c00314{bottom:507.080000pt;}
.y7_c00314{bottom:529.213333pt;}
.y6_c00314{bottom:551.213333pt;}
.y5_c00314{bottom:573.080000pt;}
.y4_c00314{bottom:596.146667pt;}
.y3_c00314{bottom:618.280000pt;}
.y2_c00314{bottom:640.546667pt;}
.y1_c00314{bottom:662.813333pt;}
.h5_c00314{height:11.733399pt;}
.h6_c00314{height:38.937500pt;}
.h4_c00314{height:77.654948pt;}
.h2_c00314{height:81.148438pt;}
.h3_c00314{height:87.783854pt;}
.h1_c00314{height:738.666667pt;}
.h0_c00314{height:738.733333pt;}
.w2_c00314{width:93.222667pt;}
.w0_c00314{width:503.266667pt;}
.w1_c00314{width:503.333333pt;}
.x0_c00314{left:0.000000pt;}
.x3_c00314{left:18.933333pt;}
.x5_c00314{left:20.400000pt;}
.x7_c00314{left:21.866667pt;}
.x6_c00314{left:23.466667pt;}
.x4_c00314{left:43.200000pt;}
.x2_c00314{left:44.400000pt;}
.x1_c00314{left:50.400000pt;}
.x9_c00314{left:208.801554pt;}
.x8_c00314{left:234.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_da3ad89f7ed31aef93ca6d07.woff2')format("woff");}.ff1_c00315{font-family:ff1_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:ff2_c00315;src:url('chunks/assets/font_ee6a754dadf493f4e5c34187.woff2')format("woff");}.ff2_c00315{font-family:ff2_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:ff3_c00315;src:url('chunks/assets/font_4c168b2204dd0b93c6c909e1.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;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_c00315;src:url('chunks/assets/font_6ad45fe89a86e4eb6394c6a7.woff2')format("woff");}.ff4_c00315{font-family:ff4_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:ff5_c00315;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00315{font-family:ff5_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:ff6_c00315;src:url('chunks/assets/font_2dd34af88f28e2f2ba793bd5.woff2')format("woff");}.ff6_c00315{font-family:ff6_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:ff7_c00315;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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:0.000000px;}
.ls3_c00315{letter-spacing:3.000000px;}
.ls2_c00315{letter-spacing:3.312000px;}
.ls4_c00315{letter-spacing:6.000000px;}
.ls1_c00315{letter-spacing:24.384000px;}
.ls0_c00315{letter-spacing:25.104000px;}
.ls5_c00315{letter-spacing:51.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-67.629000px;}
.ws2_c00315{word-spacing:-17.250000px;}
.ws1_c00315{word-spacing:-16.629000px;}
.ws3_c00315{word-spacing:0.000000px;}
._10_c00315{margin-left:-28.842000px;}
._2c_c00315{margin-left:-22.701000px;}
._f_c00315{margin-left:-21.252000px;}
._1b_c00315{margin-left:-19.044000px;}
._8_c00315{margin-left:-16.629000px;}
._5_c00315{margin-left:-14.697000px;}
._1e_c00315{margin-left:-13.593000px;}
._1c_c00315{margin-left:-10.971000px;}
._a_c00315{margin-left:-8.763000px;}
._e_c00315{margin-left:-7.521000px;}
._c_c00315{margin-left:-6.210000px;}
._4_c00315{margin-left:-4.209000px;}
._0_c00315{margin-left:-2.415000px;}
._1_c00315{margin-left:-1.035000px;}
._b_c00315{width:1.242000px;}
._9_c00315{width:2.346000px;}
._3_c00315{width:3.795000px;}
._17_c00315{width:5.127000px;}
._2_c00315{width:6.210000px;}
._18_c00315{width:7.383000px;}
._6_c00315{width:8.487000px;}
._11_c00315{width:9.798000px;}
._7_c00315{width:11.868000px;}
._15_c00315{width:13.908000px;}
._16_c00315{width:15.198000px;}
._14_c00315{width:18.492000px;}
._21_c00315{width:19.791000px;}
._12_c00315{width:21.528000px;}
._28_c00315{width:22.659000px;}
._d_c00315{width:24.564000px;}
._23_c00315{width:25.776000px;}
._13_c00315{width:31.164000px;}
._24_c00315{width:69.759000px;}
._1a_c00315{width:72.420000px;}
._2a_c00315{width:80.763000px;}
._20_c00315{width:87.600000px;}
._19_c00315{width:90.528000px;}
._1d_c00315{width:91.962000px;}
._22_c00315{width:93.633000px;}
._29_c00315{width:120.726000px;}
._1f_c00315{width:157.173000px;}
._25_c00315{width:223.404000px;}
._27_c00315{width:342.033000px;}
._26_c00315{width:437.400000px;}
._2d_c00315{width:455.262000px;}
._2b_c00315{width:477.333000px;}
.fc2_c00315{color:transparent;}
.fc1_c00315{color:rgb(128,128,128);}
.fc0_c00315{color:rgb(0,0,0);}
.fs1_c00315{font-size:48.000000px;}
.fs0_c00315{font-size:69.000000px;}
.fs2_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1c_c00315{bottom:3.105000px;}
.y1b_c00315{bottom:7.228363px;}
.y1a_c00315{bottom:74.550000px;}
.y19_c00315{bottom:98.250000px;}
.y18_c00315{bottom:124.650000px;}
.y17_c00315{bottom:150.450000px;}
.y16_c00315{bottom:174.450000px;}
.y15_c00315{bottom:199.500000px;}
.y14_c00315{bottom:228.900000px;}
.y13_c00315{bottom:251.100000px;}
.y12_c00315{bottom:275.850000px;}
.y11_c00315{bottom:301.350000px;}
.y10_c00315{bottom:324.750000px;}
.yf_c00315{bottom:350.400000px;}
.ye_c00315{bottom:381.000000px;}
.yd_c00315{bottom:400.050000px;}
.yc_c00315{bottom:425.550000px;}
.yb_c00315{bottom:451.350000px;}
.ya_c00315{bottom:475.650000px;}
.y9_c00315{bottom:500.250000px;}
.y8_c00315{bottom:525.600000px;}
.y7_c00315{bottom:551.100000px;}
.y6_c00315{bottom:575.550000px;}
.y5_c00315{bottom:601.050000px;}
.y4_c00315{bottom:625.500000px;}
.y3_c00315{bottom:650.700000px;}
.y2_c00315{bottom:676.350000px;}
.y1_c00315{bottom:726.000000px;}
.h8_c00315{height:13.200074px;}
.h9_c00315{height:43.804688px;}
.h6_c00315{height:67.686035px;}
.h5_c00315{height:67.719727px;}
.h4_c00315{height:69.539062px;}
.h7_c00315{height:72.562500px;}
.h2_c00315{height:80.758301px;}
.h3_c00315{height:87.361816px;}
.h0_c00315{height:818.100000px;}
.h1_c00315{height:818.250000px;}
.w2_c00315{width:104.875500px;}
.w0_c00315{width:565.350000px;}
.w1_c00315{width:565.500000px;}
.x0_c00315{left:0.000000px;}
.xc_c00315{left:19.350000px;}
.xe_c00315{left:21.900000px;}
.x9_c00315{left:23.250000px;}
.xb_c00315{left:38.850000px;}
.x8_c00315{left:41.850000px;}
.x7_c00315{left:85.800000px;}
.xa_c00315{left:87.150000px;}
.x5_c00315{left:88.350000px;}
.x6_c00315{left:89.850000px;}
.x3_c00315{left:90.900000px;}
.x4_c00315{left:92.550000px;}
.x10_c00315{left:103.350000px;}
.xf_c00315{left:111.150000px;}
.xd_c00315{left:113.100000px;}
.x2_c00315{left:116.550000px;}
.x1_c00315{left:226.500000px;}
.x11_c00315{left:234.489258px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls6_c00315{letter-spacing:0.000000pt;}
.ls3_c00315{letter-spacing:2.666667pt;}
.ls2_c00315{letter-spacing:2.944000pt;}
.ls4_c00315{letter-spacing:5.333333pt;}
.ls1_c00315{letter-spacing:21.674667pt;}
.ls0_c00315{letter-spacing:22.314667pt;}
.ls5_c00315{letter-spacing:45.333333pt;}
.ws0_c00315{word-spacing:-60.114667pt;}
.ws2_c00315{word-spacing:-15.333333pt;}
.ws1_c00315{word-spacing:-14.781333pt;}
.ws3_c00315{word-spacing:0.000000pt;}
._10_c00315{margin-left:-25.637333pt;}
._2c_c00315{margin-left:-20.178667pt;}
._f_c00315{margin-left:-18.890667pt;}
._1b_c00315{margin-left:-16.928000pt;}
._8_c00315{margin-left:-14.781333pt;}
._5_c00315{margin-left:-13.064000pt;}
._1e_c00315{margin-left:-12.082667pt;}
._1c_c00315{margin-left:-9.752000pt;}
._a_c00315{margin-left:-7.789333pt;}
._e_c00315{margin-left:-6.685333pt;}
._c_c00315{margin-left:-5.520000pt;}
._4_c00315{margin-left:-3.741333pt;}
._0_c00315{margin-left:-2.146667pt;}
._1_c00315{margin-left:-0.920000pt;}
._b_c00315{width:1.104000pt;}
._9_c00315{width:2.085333pt;}
._3_c00315{width:3.373333pt;}
._17_c00315{width:4.557333pt;}
._2_c00315{width:5.520000pt;}
._18_c00315{width:6.562667pt;}
._6_c00315{width:7.544000pt;}
._11_c00315{width:8.709333pt;}
._7_c00315{width:10.549333pt;}
._15_c00315{width:12.362667pt;}
._16_c00315{width:13.509333pt;}
._14_c00315{width:16.437333pt;}
._21_c00315{width:17.592000pt;}
._12_c00315{width:19.136000pt;}
._28_c00315{width:20.141333pt;}
._d_c00315{width:21.834667pt;}
._23_c00315{width:22.912000pt;}
._13_c00315{width:27.701333pt;}
._24_c00315{width:62.008000pt;}
._1a_c00315{width:64.373333pt;}
._2a_c00315{width:71.789333pt;}
._20_c00315{width:77.866667pt;}
._19_c00315{width:80.469333pt;}
._1d_c00315{width:81.744000pt;}
._22_c00315{width:83.229333pt;}
._29_c00315{width:107.312000pt;}
._1f_c00315{width:139.709333pt;}
._25_c00315{width:198.581333pt;}
._27_c00315{width:304.029333pt;}
._26_c00315{width:388.800000pt;}
._2d_c00315{width:404.677333pt;}
._2b_c00315{width:424.296000pt;}
.fs1_c00315{font-size:42.666667pt;}
.fs0_c00315{font-size:61.333333pt;}
.fs2_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y1c_c00315{bottom:2.760000pt;}
.y1b_c00315{bottom:6.425212pt;}
.y1a_c00315{bottom:66.266667pt;}
.y19_c00315{bottom:87.333333pt;}
.y18_c00315{bottom:110.800000pt;}
.y17_c00315{bottom:133.733333pt;}
.y16_c00315{bottom:155.066667pt;}
.y15_c00315{bottom:177.333333pt;}
.y14_c00315{bottom:203.466667pt;}
.y13_c00315{bottom:223.200000pt;}
.y12_c00315{bottom:245.200000pt;}
.y11_c00315{bottom:267.866667pt;}
.y10_c00315{bottom:288.666667pt;}
.yf_c00315{bottom:311.466667pt;}
.ye_c00315{bottom:338.666667pt;}
.yd_c00315{bottom:355.600000pt;}
.yc_c00315{bottom:378.266667pt;}
.yb_c00315{bottom:401.200000pt;}
.ya_c00315{bottom:422.800000pt;}
.y9_c00315{bottom:444.666667pt;}
.y8_c00315{bottom:467.200000pt;}
.y7_c00315{bottom:489.866667pt;}
.y6_c00315{bottom:511.600000pt;}
.y5_c00315{bottom:534.266667pt;}
.y4_c00315{bottom:556.000000pt;}
.y3_c00315{bottom:578.400000pt;}
.y2_c00315{bottom:601.200000pt;}
.y1_c00315{bottom:645.333333pt;}
.h8_c00315{height:11.733399pt;}
.h9_c00315{height:38.937500pt;}
.h6_c00315{height:60.165365pt;}
.h5_c00315{height:60.195312pt;}
.h4_c00315{height:61.812500pt;}
.h7_c00315{height:64.500000pt;}
.h2_c00315{height:71.785156pt;}
.h3_c00315{height:77.654948pt;}
.h0_c00315{height:727.200000pt;}
.h1_c00315{height:727.333333pt;}
.w2_c00315{width:93.222667pt;}
.w0_c00315{width:502.533333pt;}
.w1_c00315{width:502.666667pt;}
.x0_c00315{left:0.000000pt;}
.xc_c00315{left:17.200000pt;}
.xe_c00315{left:19.466667pt;}
.x9_c00315{left:20.666667pt;}
.xb_c00315{left:34.533333pt;}
.x8_c00315{left:37.200000pt;}
.x7_c00315{left:76.266667pt;}
.xa_c00315{left:77.466667pt;}
.x5_c00315{left:78.533333pt;}
.x6_c00315{left:79.866667pt;}
.x3_c00315{left:80.800000pt;}
.x4_c00315{left:82.266667pt;}
.x10_c00315{left:91.866667pt;}
.xf_c00315{left:98.800000pt;}
.xd_c00315{left:100.533333pt;}
.x2_c00315{left:103.600000pt;}
.x1_c00315{left:201.333333pt;}
.x11_c00315{left:208.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_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_e81b442c01b71f6b89e4b99d.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_eb8b1e808d65c53d1b9efba6.woff2')format("woff");}.ff2_c00316{font-family:ff2_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:ff3_c00316;src:url('chunks/assets/font_8f30cbe69be006e2f3fa9865.woff2')format("woff");}.ff3_c00316{font-family:ff3_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:ff4_c00316;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00316{font-family:ff4_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:ff5_c00316;src:url('chunks/assets/font_8a2ff0dd7daeb3d21017882f.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_9b858e6a92401ee547e87556.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;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_c00316;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00316{font-family:ff7_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;}
.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;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:6.000000px;}
.ls3_c00316{letter-spacing:12.000000px;}
.ls1_c00316{letter-spacing:27.294000px;}
.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:-23.250000px;}
.ws2_c00316{word-spacing:-17.250000px;}
.ws0_c00316{word-spacing:-15.906000px;}
.ws4_c00316{word-spacing:0.000000px;}
.ws3_c00316{word-spacing:12.768000px;}
._16_c00316{margin-left:-17.733000px;}
._1a_c00316{margin-left:-16.353000px;}
._12_c00316{margin-left:-14.628000px;}
._17_c00316{margin-left:-13.179000px;}
._1e_c00316{margin-left:-11.523000px;}
._14_c00316{margin-left:-10.374000px;}
._c_c00316{margin-left:-8.556000px;}
._f_c00316{margin-left:-6.486000px;}
._b_c00316{margin-left:-5.451000px;}
._10_c00316{margin-left:-3.864000px;}
._1_c00316{margin-left:-2.622000px;}
._3_c00316{margin-left:-1.173000px;}
._11_c00316{width:1.035000px;}
._0_c00316{width:2.139000px;}
._5_c00316{width:3.726000px;}
._4_c00316{width:5.244000px;}
._9_c00316{width:6.693000px;}
._e_c00316{width:8.073000px;}
._d_c00316{width:9.177000px;}
._8_c00316{width:10.212000px;}
._a_c00316{width:12.351000px;}
._18_c00316{width:13.593000px;}
._6_c00316{width:15.663000px;}
._1c_c00316{width:18.285000px;}
._7_c00316{width:20.010000px;}
._1d_c00316{width:22.011000px;}
._1b_c00316{width:23.322000px;}
._20_c00316{width:26.784000px;}
._13_c00316{width:29.142000px;}
._15_c00316{width:34.032000px;}
._19_c00316{width:38.151000px;}
._1f_c00316{width:176.019000px;}
._21_c00316{width:409.953000px;}
._2_c00316{width:511.599000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(128,128,128);}
.fc0_c00316{color:rgb(0,0,0);}
.fs2_c00316{font-size:48.000000px;}
.fs1_c00316{font-size:66.000000px;}
.fs0_c00316{font-size:69.000000px;}
.y0_c00316{bottom:0.000000px;}
.y20_c00316{bottom:3.105000px;}
.y1f_c00316{bottom:7.228355px;}
.y1e_c00316{bottom:64.785000px;}
.y1d_c00316{bottom:87.285000px;}
.y1c_c00316{bottom:112.935000px;}
.y1b_c00316{bottom:138.585000px;}
.y1a_c00316{bottom:160.935000px;}
.y19_c00316{bottom:187.635000px;}
.y18_c00316{bottom:213.585000px;}
.y17_c00316{bottom:238.935000px;}
.y16_c00316{bottom:263.835000px;}
.y15_c00316{bottom:288.885000px;}
.y14_c00316{bottom:314.535000px;}
.y13_c00316{bottom:339.735000px;}
.y12_c00316{bottom:364.035000px;}
.y11_c00316{bottom:389.385000px;}
.y10_c00316{bottom:414.435000px;}
.yf_c00316{bottom:439.785000px;}
.ye_c00316{bottom:464.385000px;}
.yd_c00316{bottom:489.585000px;}
.yc_c00316{bottom:514.035000px;}
.yb_c00316{bottom:538.635000px;}
.ya_c00316{bottom:562.935000px;}
.y9_c00316{bottom:588.585000px;}
.y8_c00316{bottom:613.785000px;}
.y7_c00316{bottom:639.135000px;}
.y6_c00316{bottom:662.535000px;}
.y5_c00316{bottom:688.485000px;}
.y4_c00316{bottom:713.835000px;}
.y3_c00316{bottom:739.035000px;}
.y2_c00316{bottom:763.785000px;}
.y1_c00316{bottom:788.685000px;}
.h8_c00316{height:13.200074px;}
.h9_c00316{height:43.804688px;}
.h5_c00316{height:67.686035px;}
.h3_c00316{height:67.719727px;}
.h4_c00316{height:69.539062px;}
.h7_c00316{height:77.247070px;}
.h6_c00316{height:83.563477px;}
.h2_c00316{height:87.361816px;}
.h0_c00316{height:815.925000px;}
.h1_c00316{height:816.000000px;}
.w2_c00316{width:104.875500px;}
.w1_c00316{width:562.500000px;}
.w0_c00316{width:562.650000px;}
.x0_c00316{left:0.000000px;}
.x8_c00316{left:26.700000px;}
.xa_c00316{left:28.050000px;}
.x6_c00316{left:29.100000px;}
.x5_c00316{left:30.750000px;}
.x3_c00316{left:31.800000px;}
.x4_c00316{left:32.850000px;}
.x9_c00316{left:53.700000px;}
.x7_c00316{left:54.750000px;}
.x2_c00316{left:55.950000px;}
.x1_c00316{left:186.300000px;}
.xc_c00316{left:233.139267px;}
.xb_c00316{left:296.100000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:5.333333pt;}
.ls3_c00316{letter-spacing:10.666667pt;}
.ls1_c00316{letter-spacing:24.261333pt;}
.ws1_c00316{word-spacing:-20.666667pt;}
.ws2_c00316{word-spacing:-15.333333pt;}
.ws0_c00316{word-spacing:-14.138667pt;}
.ws4_c00316{word-spacing:0.000000pt;}
.ws3_c00316{word-spacing:11.349333pt;}
._16_c00316{margin-left:-15.762667pt;}
._1a_c00316{margin-left:-14.536000pt;}
._12_c00316{margin-left:-13.002667pt;}
._17_c00316{margin-left:-11.714667pt;}
._1e_c00316{margin-left:-10.242667pt;}
._14_c00316{margin-left:-9.221333pt;}
._c_c00316{margin-left:-7.605333pt;}
._f_c00316{margin-left:-5.765333pt;}
._b_c00316{margin-left:-4.845333pt;}
._10_c00316{margin-left:-3.434667pt;}
._1_c00316{margin-left:-2.330667pt;}
._3_c00316{margin-left:-1.042667pt;}
._11_c00316{width:0.920000pt;}
._0_c00316{width:1.901333pt;}
._5_c00316{width:3.312000pt;}
._4_c00316{width:4.661333pt;}
._9_c00316{width:5.949333pt;}
._e_c00316{width:7.176000pt;}
._d_c00316{width:8.157333pt;}
._8_c00316{width:9.077333pt;}
._a_c00316{width:10.978667pt;}
._18_c00316{width:12.082667pt;}
._6_c00316{width:13.922667pt;}
._1c_c00316{width:16.253333pt;}
._7_c00316{width:17.786667pt;}
._1d_c00316{width:19.565333pt;}
._1b_c00316{width:20.730667pt;}
._20_c00316{width:23.808000pt;}
._13_c00316{width:25.904000pt;}
._15_c00316{width:30.250667pt;}
._19_c00316{width:33.912000pt;}
._1f_c00316{width:156.461333pt;}
._21_c00316{width:364.402667pt;}
._2_c00316{width:454.754667pt;}
.fs2_c00316{font-size:42.666667pt;}
.fs1_c00316{font-size:58.666667pt;}
.fs0_c00316{font-size:61.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y20_c00316{bottom:2.760000pt;}
.y1f_c00316{bottom:6.425204pt;}
.y1e_c00316{bottom:57.586667pt;}
.y1d_c00316{bottom:77.586667pt;}
.y1c_c00316{bottom:100.386667pt;}
.y1b_c00316{bottom:123.186667pt;}
.y1a_c00316{bottom:143.053333pt;}
.y19_c00316{bottom:166.786667pt;}
.y18_c00316{bottom:189.853333pt;}
.y17_c00316{bottom:212.386667pt;}
.y16_c00316{bottom:234.520000pt;}
.y15_c00316{bottom:256.786667pt;}
.y14_c00316{bottom:279.586667pt;}
.y13_c00316{bottom:301.986667pt;}
.y12_c00316{bottom:323.586667pt;}
.y11_c00316{bottom:346.120000pt;}
.y10_c00316{bottom:368.386667pt;}
.yf_c00316{bottom:390.920000pt;}
.ye_c00316{bottom:412.786667pt;}
.yd_c00316{bottom:435.186667pt;}
.yc_c00316{bottom:456.920000pt;}
.yb_c00316{bottom:478.786667pt;}
.ya_c00316{bottom:500.386667pt;}
.y9_c00316{bottom:523.186667pt;}
.y8_c00316{bottom:545.586667pt;}
.y7_c00316{bottom:568.120000pt;}
.y6_c00316{bottom:588.920000pt;}
.y5_c00316{bottom:611.986667pt;}
.y4_c00316{bottom:634.520000pt;}
.y3_c00316{bottom:656.920000pt;}
.y2_c00316{bottom:678.920000pt;}
.y1_c00316{bottom:701.053333pt;}
.h8_c00316{height:11.733399pt;}
.h9_c00316{height:38.937500pt;}
.h5_c00316{height:60.165365pt;}
.h3_c00316{height:60.195312pt;}
.h4_c00316{height:61.812500pt;}
.h7_c00316{height:68.664062pt;}
.h6_c00316{height:74.278646pt;}
.h2_c00316{height:77.654948pt;}
.h0_c00316{height:725.266667pt;}
.h1_c00316{height:725.333333pt;}
.w2_c00316{width:93.222667pt;}
.w1_c00316{width:500.000000pt;}
.w0_c00316{width:500.133333pt;}
.x0_c00316{left:0.000000pt;}
.x8_c00316{left:23.733333pt;}
.xa_c00316{left:24.933333pt;}
.x6_c00316{left:25.866667pt;}
.x5_c00316{left:27.333333pt;}
.x3_c00316{left:28.266667pt;}
.x4_c00316{left:29.200000pt;}
.x9_c00316{left:47.733333pt;}
.x7_c00316{left:48.666667pt;}
.x2_c00316{left:49.733333pt;}
.x1_c00316{left:165.600000pt;}
.xc_c00316{left:207.234904pt;}
.xb_c00316{left:263.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_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_c29f7f5b7ca814db6662e3c1.woff2')format("woff");}.ff1_c00317{font-family:ff1_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:ff2_c00317;src:url('chunks/assets/font_197c10e7b67a2bfe23b3ff91.woff2')format("woff");}.ff2_c00317{font-family:ff2_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:ff3_c00317;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00317{font-family:ff3_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;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:6.000000px;}
.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;}
}
.ws5_c00317{word-spacing:-22.629000px;}
.ws0_c00317{word-spacing:-16.629000px;}
.ws6_c00317{word-spacing:-13.737000px;}
.ws3_c00317{word-spacing:-1.242000px;}
.ws7_c00317{word-spacing:0.000000px;}
.ws1_c00317{word-spacing:0.069000px;}
.ws2_c00317{word-spacing:6.210000px;}
.ws4_c00317{word-spacing:20.769000px;}
._25_c00317{margin-left:-22.356000px;}
._1a_c00317{margin-left:-15.759000px;}
._9_c00317{margin-left:-14.178000px;}
._b_c00317{margin-left:-12.213000px;}
._8_c00317{margin-left:-11.076000px;}
._7_c00317{margin-left:-8.901000px;}
._5_c00317{margin-left:-6.693000px;}
._c_c00317{margin-left:-5.553000px;}
._3_c00317{margin-left:-4.278000px;}
._4_c00317{margin-left:-2.898000px;}
._0_c00317{margin-left:-1.656000px;}
._11_c00317{width:1.446000px;}
._6_c00317{width:3.036000px;}
._a_c00317{width:4.968000px;}
._2_c00317{width:6.969000px;}
._e_c00317{width:8.625000px;}
._17_c00317{width:9.660000px;}
._1b_c00317{width:10.800000px;}
._10_c00317{width:12.108000px;}
._1e_c00317{width:13.158000px;}
._d_c00317{width:14.352000px;}
._1c_c00317{width:15.390000px;}
._1d_c00317{width:17.250000px;}
._13_c00317{width:18.423000px;}
._12_c00317{width:20.739000px;}
._14_c00317{width:21.873000px;}
._19_c00317{width:23.460000px;}
._1f_c00317{width:28.356000px;}
._16_c00317{width:34.431000px;}
._22_c00317{width:36.120000px;}
._15_c00317{width:37.950000px;}
._18_c00317{width:40.977000px;}
._24_c00317{width:51.060000px;}
._23_c00317{width:116.196000px;}
._20_c00317{width:160.995000px;}
._f_c00317{width:189.750000px;}
._21_c00317{width:362.772000px;}
._1_c00317{width:371.043000px;}
.fc2_c00317{color:transparent;}
.fc1_c00317{color:rgb(128,128,128);}
.fc0_c00317{color:rgb(0,0,0);}
.fs2_c00317{font-size:48.000000px;}
.fs1_c00317{font-size:57.000000px;}
.fs0_c00317{font-size:69.000000px;}
.y0_c00317{bottom:0.000000px;}
.y21_c00317{bottom:3.105000px;}
.y20_c00317{bottom:7.228371px;}
.y1e_c00317{bottom:48.915000px;}
.y1d_c00317{bottom:72.615000px;}
.y1c_c00317{bottom:97.965000px;}
.y1b_c00317{bottom:123.615000px;}
.y1a_c00317{bottom:148.815000px;}
.y19_c00317{bottom:173.865000px;}
.y18_c00317{bottom:199.515000px;}
.y17_c00317{bottom:223.815000px;}
.y16_c00317{bottom:249.165000px;}
.y15_c00317{bottom:275.415000px;}
.y14_c00317{bottom:299.415000px;}
.y1f_c00317{bottom:314.265000px;}
.y13_c00317{bottom:324.015000px;}
.y12_c00317{bottom:348.615000px;}
.y11_c00317{bottom:374.265000px;}
.y10_c00317{bottom:398.715000px;}
.yf_c00317{bottom:423.615000px;}
.ye_c00317{bottom:448.515000px;}
.yd_c00317{bottom:473.865000px;}
.yc_c00317{bottom:497.865000px;}
.yb_c00317{bottom:523.815000px;}
.ya_c00317{bottom:549.465000px;}
.y9_c00317{bottom:574.515000px;}
.y8_c00317{bottom:599.715000px;}
.y7_c00317{bottom:624.015000px;}
.y6_c00317{bottom:649.665000px;}
.y5_c00317{bottom:674.715000px;}
.y4_c00317{bottom:699.765000px;}
.y3_c00317{bottom:724.665000px;}
.y2_c00317{bottom:749.715000px;}
.y1_c00317{bottom:774.615000px;}
.h5_c00317{height:13.200074px;}
.h6_c00317{height:43.804688px;}
.h4_c00317{height:72.168457px;}
.h3_c00317{height:80.758301px;}
.h2_c00317{height:87.361816px;}
.h0_c00317{height:812.175000px;}
.h1_c00317{height:812.250000px;}
.w2_c00317{width:104.875500px;}
.w1_c00317{width:561.000000px;}
.w0_c00317{width:561.075000px;}
.x0_c00317{left:0.000000px;}
.xb_c00317{left:16.500000px;}
.x8_c00317{left:17.550000px;}
.x7_c00317{left:33.750000px;}
.xc_c00317{left:64.350000px;}
.xa_c00317{left:81.450000px;}
.x9_c00317{left:82.650000px;}
.x3_c00317{left:84.150000px;}
.x2_c00317{left:87.150000px;}
.x1_c00317{left:101.250000px;}
.x6_c00317{left:109.050000px;}
.x5_c00317{left:111.450000px;}
.x4_c00317{left:119.250000px;}
.xe_c00317{left:232.351730px;}
.xd_c00317{left:486.300000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:5.333333pt;}
.ws5_c00317{word-spacing:-20.114667pt;}
.ws0_c00317{word-spacing:-14.781333pt;}
.ws6_c00317{word-spacing:-12.210667pt;}
.ws3_c00317{word-spacing:-1.104000pt;}
.ws7_c00317{word-spacing:0.000000pt;}
.ws1_c00317{word-spacing:0.061333pt;}
.ws2_c00317{word-spacing:5.520000pt;}
.ws4_c00317{word-spacing:18.461333pt;}
._25_c00317{margin-left:-19.872000pt;}
._1a_c00317{margin-left:-14.008000pt;}
._9_c00317{margin-left:-12.602667pt;}
._b_c00317{margin-left:-10.856000pt;}
._8_c00317{margin-left:-9.845333pt;}
._7_c00317{margin-left:-7.912000pt;}
._5_c00317{margin-left:-5.949333pt;}
._c_c00317{margin-left:-4.936000pt;}
._3_c00317{margin-left:-3.802667pt;}
._4_c00317{margin-left:-2.576000pt;}
._0_c00317{margin-left:-1.472000pt;}
._11_c00317{width:1.285333pt;}
._6_c00317{width:2.698667pt;}
._a_c00317{width:4.416000pt;}
._2_c00317{width:6.194667pt;}
._e_c00317{width:7.666667pt;}
._17_c00317{width:8.586667pt;}
._1b_c00317{width:9.600000pt;}
._10_c00317{width:10.762667pt;}
._1e_c00317{width:11.696000pt;}
._d_c00317{width:12.757333pt;}
._1c_c00317{width:13.680000pt;}
._1d_c00317{width:15.333333pt;}
._13_c00317{width:16.376000pt;}
._12_c00317{width:18.434667pt;}
._14_c00317{width:19.442667pt;}
._19_c00317{width:20.853333pt;}
._1f_c00317{width:25.205333pt;}
._16_c00317{width:30.605333pt;}
._22_c00317{width:32.106667pt;}
._15_c00317{width:33.733333pt;}
._18_c00317{width:36.424000pt;}
._24_c00317{width:45.386667pt;}
._23_c00317{width:103.285333pt;}
._20_c00317{width:143.106667pt;}
._f_c00317{width:168.666667pt;}
._21_c00317{width:322.464000pt;}
._1_c00317{width:329.816000pt;}
.fs2_c00317{font-size:42.666667pt;}
.fs1_c00317{font-size:50.666667pt;}
.fs0_c00317{font-size:61.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y21_c00317{bottom:2.760000pt;}
.y20_c00317{bottom:6.425219pt;}
.y1e_c00317{bottom:43.480000pt;}
.y1d_c00317{bottom:64.546667pt;}
.y1c_c00317{bottom:87.080000pt;}
.y1b_c00317{bottom:109.880000pt;}
.y1a_c00317{bottom:132.280000pt;}
.y19_c00317{bottom:154.546667pt;}
.y18_c00317{bottom:177.346667pt;}
.y17_c00317{bottom:198.946667pt;}
.y16_c00317{bottom:221.480000pt;}
.y15_c00317{bottom:244.813333pt;}
.y14_c00317{bottom:266.146667pt;}
.y1f_c00317{bottom:279.346667pt;}
.y13_c00317{bottom:288.013333pt;}
.y12_c00317{bottom:309.880000pt;}
.y11_c00317{bottom:332.680000pt;}
.y10_c00317{bottom:354.413333pt;}
.yf_c00317{bottom:376.546667pt;}
.ye_c00317{bottom:398.680000pt;}
.yd_c00317{bottom:421.213333pt;}
.yc_c00317{bottom:442.546667pt;}
.yb_c00317{bottom:465.613333pt;}
.ya_c00317{bottom:488.413333pt;}
.y9_c00317{bottom:510.680000pt;}
.y8_c00317{bottom:533.080000pt;}
.y7_c00317{bottom:554.680000pt;}
.y6_c00317{bottom:577.480000pt;}
.y5_c00317{bottom:599.746667pt;}
.y4_c00317{bottom:622.013333pt;}
.y3_c00317{bottom:644.146667pt;}
.y2_c00317{bottom:666.413333pt;}
.y1_c00317{bottom:688.546667pt;}
.h5_c00317{height:11.733399pt;}
.h6_c00317{height:38.937500pt;}
.h4_c00317{height:64.149740pt;}
.h3_c00317{height:71.785156pt;}
.h2_c00317{height:77.654948pt;}
.h0_c00317{height:721.933333pt;}
.h1_c00317{height:722.000000pt;}
.w2_c00317{width:93.222667pt;}
.w1_c00317{width:498.666667pt;}
.w0_c00317{width:498.733333pt;}
.x0_c00317{left:0.000000pt;}
.xb_c00317{left:14.666667pt;}
.x8_c00317{left:15.600000pt;}
.x7_c00317{left:30.000000pt;}
.xc_c00317{left:57.200000pt;}
.xa_c00317{left:72.400000pt;}
.x9_c00317{left:73.466667pt;}
.x3_c00317{left:74.800000pt;}
.x2_c00317{left:77.466667pt;}
.x1_c00317{left:90.000000pt;}
.x6_c00317{left:96.933333pt;}
.x5_c00317{left:99.066667pt;}
.x4_c00317{left:106.000000pt;}
.xe_c00317{left:206.534871pt;}
.xd_c00317{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_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_ea6b338d2bd482aea5d8e864.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;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_c00318;src:url('chunks/assets/font_37e90a1e8e73062752910097.woff2')format("woff");}.ff2_c00318{font-family:ff2_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:ff3_c00318;src:url('chunks/assets/font_fdc2e8a00fa80b5813a77f4d.woff2')format("woff");}.ff3_c00318{font-family:ff3_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:ff4_c00318;src:url('chunks/assets/font_1acb3eac81c7c940d0e07c41.woff2')format("woff");}.ff4_c00318{font-family:ff4_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:ff5_c00318;src:url('chunks/assets/font_75c46232ef4a2a433e256161.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_980412dac48161ef498bf3b7.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_8928f98f87c3132e1cc3f21f.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;}
.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;}
.v1_c00318{vertical-align:18.600000px;}
.ls3_c00318{letter-spacing:0.000000px;}
.ls5_c00318{letter-spacing:3.000000px;}
.ls2_c00318{letter-spacing:6.000000px;}
.ls1_c00318{letter-spacing:10.650000px;}
.ls4_c00318{letter-spacing:15.000000px;}
.ls0_c00318{letter-spacing:16.269000px;}
.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;}
}
.ws7_c00318{word-spacing:-42.021000px;}
.ws4_c00318{word-spacing:-29.568000px;}
.ws3_c00318{word-spacing:-22.629000px;}
.ws6_c00318{word-spacing:-18.750000px;}
.ws0_c00318{word-spacing:-16.629000px;}
.ws1_c00318{word-spacing:-1.233000px;}
.ws8_c00318{word-spacing:0.000000px;}
.ws2_c00318{word-spacing:6.498000px;}
.ws5_c00318{word-spacing:9.108000px;}
._29_c00318{margin-left:-50.382000px;}
._23_c00318{margin-left:-29.460000px;}
._31_c00318{margin-left:-24.300000px;}
._8_c00318{margin-left:-20.160000px;}
._25_c00318{margin-left:-18.216000px;}
._32_c00318{margin-left:-17.115000px;}
._6_c00318{margin-left:-15.792000px;}
._4_c00318{margin-left:-14.784000px;}
._5_c00318{margin-left:-13.440000px;}
._9_c00318{margin-left:-12.432000px;}
._7_c00318{margin-left:-11.088000px;}
._12_c00318{margin-left:-9.138000px;}
._2_c00318{margin-left:-7.560000px;}
._0_c00318{margin-left:-6.300000px;}
._3_c00318{margin-left:-5.292000px;}
._19_c00318{margin-left:-4.245000px;}
._1_c00318{margin-left:-3.192000px;}
._e_c00318{margin-left:-1.362000px;}
._c_c00318{width:1.863000px;}
._b_c00318{width:3.174000px;}
._d_c00318{width:4.899000px;}
._16_c00318{width:6.135000px;}
._13_c00318{width:7.728000px;}
._1b_c00318{width:9.177000px;}
._14_c00318{width:10.344000px;}
._10_c00318{width:12.213000px;}
._15_c00318{width:13.329000px;}
._f_c00318{width:14.715000px;}
._11_c00318{width:16.746000px;}
._1d_c00318{width:18.999000px;}
._1e_c00318{width:20.514000px;}
._1a_c00318{width:21.516000px;}
._30_c00318{width:23.769000px;}
._1f_c00318{width:24.849000px;}
._26_c00318{width:27.675000px;}
._2e_c00318{width:28.845000px;}
._2f_c00318{width:30.840000px;}
._22_c00318{width:32.733000px;}
._24_c00318{width:34.431000px;}
._17_c00318{width:36.519000px;}
._2c_c00318{width:42.504000px;}
._27_c00318{width:91.536000px;}
._2a_c00318{width:97.008000px;}
._18_c00318{width:103.053000px;}
._21_c00318{width:113.508000px;}
._2d_c00318{width:142.992000px;}
._20_c00318{width:195.159000px;}
._1c_c00318{width:306.177000px;}
._a_c00318{width:335.880000px;}
._2b_c00318{width:878.616000px;}
._28_c00318{width:1001.103000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(128,128,128);}
.fc0_c00318{color:rgb(0,0,0);}
.fs3_c00318{font-size:24.000000px;}
.fs8_c00318{font-size:48.000000px;}
.fs4_c00318{font-size:54.000000px;}
.fs6_c00318{font-size:63.000000px;}
.fs2_c00318{font-size:69.000000px;}
.fs1_c00318{font-size:72.000000px;}
.fs5_c00318{font-size:75.000000px;}
.fs7_c00318{font-size:81.000000px;}
.fs0_c00318{font-size:84.000000px;}
.y0_c00318{bottom:0.000000px;}
.y21_c00318{bottom:3.105000px;}
.y20_c00318{bottom:7.228371px;}
.y1f_c00318{bottom:58.665000px;}
.y1e_c00318{bottom:82.965000px;}
.y1d_c00318{bottom:109.065000px;}
.y1c_c00318{bottom:133.665000px;}
.y1b_c00318{bottom:158.265000px;}
.y1a_c00318{bottom:183.315000px;}
.y19_c00318{bottom:208.815000px;}
.y18_c00318{bottom:234.165000px;}
.y17_c00318{bottom:259.515000px;}
.y16_c00318{bottom:284.565000px;}
.y15_c00318{bottom:308.415000px;}
.y14_c00318{bottom:320.565000px;}
.y13_c00318{bottom:334.815000px;}
.y12_c00318{bottom:359.715000px;}
.y11_c00318{bottom:384.765000px;}
.y10_c00318{bottom:410.715000px;}
.yf_c00318{bottom:435.015000px;}
.ye_c00318{bottom:470.565000px;}
.yd_c00318{bottom:495.765000px;}
.yc_c00318{bottom:520.065000px;}
.yb_c00318{bottom:544.665000px;}
.ya_c00318{bottom:569.715000px;}
.y9_c00318{bottom:594.765000px;}
.y8_c00318{bottom:619.665000px;}
.y7_c00318{bottom:644.715000px;}
.y6_c00318{bottom:669.615000px;}
.y5_c00318{bottom:694.665000px;}
.y4_c00318{bottom:719.565000px;}
.y3_c00318{bottom:744.315000px;}
.y2_c00318{bottom:770.265000px;}
.y1_c00318{bottom:794.115000px;}
.h8_c00318{height:13.200074px;}
.h9_c00318{height:43.804688px;}
.h5_c00318{height:68.370117px;}
.h3_c00318{height:87.361816px;}
.h6_c00318{height:91.056000px;}
.h2_c00318{height:91.160156px;}
.h7_c00318{height:102.555176px;}
.h4_c00318{height:105.961816px;}
.h1_c00318{height:831.000000px;}
.h0_c00318{height:831.075000px;}
.w2_c00318{width:104.875500px;}
.w0_c00318{width:573.450000px;}
.w1_c00318{width:573.750000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:28.050000px;}
.x3_c00318{left:29.400000px;}
.x4_c00318{left:30.450000px;}
.x5_c00318{left:31.500000px;}
.x8_c00318{left:33.450000px;}
.xa_c00318{left:55.050000px;}
.x9_c00318{left:56.400000px;}
.x7_c00318{left:66.900000px;}
.xb_c00318{left:104.250000px;}
.x6_c00318{left:118.500000px;}
.x1_c00318{left:201.450000px;}
.xd_c00318{left:238.539230px;}
.xc_c00318{left:429.000000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.v1_c00318{vertical-align:16.533333pt;}
.ls3_c00318{letter-spacing:0.000000pt;}
.ls5_c00318{letter-spacing:2.666667pt;}
.ls2_c00318{letter-spacing:5.333333pt;}
.ls1_c00318{letter-spacing:9.466667pt;}
.ls4_c00318{letter-spacing:13.333333pt;}
.ls0_c00318{letter-spacing:14.461333pt;}
.ws7_c00318{word-spacing:-37.352000pt;}
.ws4_c00318{word-spacing:-26.282667pt;}
.ws3_c00318{word-spacing:-20.114667pt;}
.ws6_c00318{word-spacing:-16.666667pt;}
.ws0_c00318{word-spacing:-14.781333pt;}
.ws1_c00318{word-spacing:-1.096000pt;}
.ws8_c00318{word-spacing:0.000000pt;}
.ws2_c00318{word-spacing:5.776000pt;}
.ws5_c00318{word-spacing:8.096000pt;}
._29_c00318{margin-left:-44.784000pt;}
._23_c00318{margin-left:-26.186667pt;}
._31_c00318{margin-left:-21.600000pt;}
._8_c00318{margin-left:-17.920000pt;}
._25_c00318{margin-left:-16.192000pt;}
._32_c00318{margin-left:-15.213333pt;}
._6_c00318{margin-left:-14.037333pt;}
._4_c00318{margin-left:-13.141333pt;}
._5_c00318{margin-left:-11.946667pt;}
._9_c00318{margin-left:-11.050667pt;}
._7_c00318{margin-left:-9.856000pt;}
._12_c00318{margin-left:-8.122667pt;}
._2_c00318{margin-left:-6.720000pt;}
._0_c00318{margin-left:-5.600000pt;}
._3_c00318{margin-left:-4.704000pt;}
._19_c00318{margin-left:-3.773333pt;}
._1_c00318{margin-left:-2.837333pt;}
._e_c00318{margin-left:-1.210667pt;}
._c_c00318{width:1.656000pt;}
._b_c00318{width:2.821333pt;}
._d_c00318{width:4.354667pt;}
._16_c00318{width:5.453333pt;}
._13_c00318{width:6.869333pt;}
._1b_c00318{width:8.157333pt;}
._14_c00318{width:9.194667pt;}
._10_c00318{width:10.856000pt;}
._15_c00318{width:11.848000pt;}
._f_c00318{width:13.080000pt;}
._11_c00318{width:14.885333pt;}
._1d_c00318{width:16.888000pt;}
._1e_c00318{width:18.234667pt;}
._1a_c00318{width:19.125333pt;}
._30_c00318{width:21.128000pt;}
._1f_c00318{width:22.088000pt;}
._26_c00318{width:24.600000pt;}
._2e_c00318{width:25.640000pt;}
._2f_c00318{width:27.413333pt;}
._22_c00318{width:29.096000pt;}
._24_c00318{width:30.605333pt;}
._17_c00318{width:32.461333pt;}
._2c_c00318{width:37.781333pt;}
._27_c00318{width:81.365333pt;}
._2a_c00318{width:86.229333pt;}
._18_c00318{width:91.602667pt;}
._21_c00318{width:100.896000pt;}
._2d_c00318{width:127.104000pt;}
._20_c00318{width:173.474667pt;}
._1c_c00318{width:272.157333pt;}
._a_c00318{width:298.560000pt;}
._2b_c00318{width:780.992000pt;}
._28_c00318{width:889.869333pt;}
.fs3_c00318{font-size:21.333333pt;}
.fs8_c00318{font-size:42.666667pt;}
.fs4_c00318{font-size:48.000000pt;}
.fs6_c00318{font-size:56.000000pt;}
.fs2_c00318{font-size:61.333333pt;}
.fs1_c00318{font-size:64.000000pt;}
.fs5_c00318{font-size:66.666667pt;}
.fs7_c00318{font-size:72.000000pt;}
.fs0_c00318{font-size:74.666667pt;}
.y0_c00318{bottom:0.000000pt;}
.y21_c00318{bottom:2.760000pt;}
.y20_c00318{bottom:6.425219pt;}
.y1f_c00318{bottom:52.146667pt;}
.y1e_c00318{bottom:73.746667pt;}
.y1d_c00318{bottom:96.946667pt;}
.y1c_c00318{bottom:118.813333pt;}
.y1b_c00318{bottom:140.680000pt;}
.y1a_c00318{bottom:162.946667pt;}
.y19_c00318{bottom:185.613333pt;}
.y18_c00318{bottom:208.146667pt;}
.y17_c00318{bottom:230.680000pt;}
.y16_c00318{bottom:252.946667pt;}
.y15_c00318{bottom:274.146667pt;}
.y14_c00318{bottom:284.946667pt;}
.y13_c00318{bottom:297.613333pt;}
.y12_c00318{bottom:319.746667pt;}
.y11_c00318{bottom:342.013333pt;}
.y10_c00318{bottom:365.080000pt;}
.yf_c00318{bottom:386.680000pt;}
.ye_c00318{bottom:418.280000pt;}
.yd_c00318{bottom:440.680000pt;}
.yc_c00318{bottom:462.280000pt;}
.yb_c00318{bottom:484.146667pt;}
.ya_c00318{bottom:506.413333pt;}
.y9_c00318{bottom:528.680000pt;}
.y8_c00318{bottom:550.813333pt;}
.y7_c00318{bottom:573.080000pt;}
.y6_c00318{bottom:595.213333pt;}
.y5_c00318{bottom:617.480000pt;}
.y4_c00318{bottom:639.613333pt;}
.y3_c00318{bottom:661.613333pt;}
.y2_c00318{bottom:684.680000pt;}
.y1_c00318{bottom:705.880000pt;}
.h8_c00318{height:11.733399pt;}
.h9_c00318{height:38.937500pt;}
.h5_c00318{height:60.773438pt;}
.h3_c00318{height:77.654948pt;}
.h6_c00318{height:80.938667pt;}
.h2_c00318{height:81.031250pt;}
.h7_c00318{height:91.160156pt;}
.h4_c00318{height:94.188281pt;}
.h1_c00318{height:738.666667pt;}
.h0_c00318{height:738.733333pt;}
.w2_c00318{width:93.222667pt;}
.w0_c00318{width:509.733333pt;}
.w1_c00318{width:510.000000pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:24.933333pt;}
.x3_c00318{left:26.133333pt;}
.x4_c00318{left:27.066667pt;}
.x5_c00318{left:28.000000pt;}
.x8_c00318{left:29.733333pt;}
.xa_c00318{left:48.933333pt;}
.x9_c00318{left:50.133333pt;}
.x7_c00318{left:59.466667pt;}
.xb_c00318{left:92.666667pt;}
.x6_c00318{left:105.333333pt;}
.x1_c00318{left:179.066667pt;}
.xd_c00318{left:212.034871pt;}
.xc_c00318{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_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_9f7b2d3b13e6fca05101cc32.woff2')format("woff");}.ff1_c00319{font-family:ff1_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:ff2_c00319;src:url('chunks/assets/font_07409c65cd7a57a316bff0de.woff2')format("woff");}.ff2_c00319{font-family:ff2_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:ff3_c00319;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.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_c030291db21a8321c2600209.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;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_c00319;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00319{font-family:ff5_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;}
.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;}
.ls2_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:3.600000px;}
.ls1_c00319{letter-spacing:6.000000px;}
.ls3_c00319{letter-spacing:51.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;}
}
.ws4_c00319{word-spacing:-67.629000px;}
.ws1_c00319{word-spacing:-22.629000px;}
.ws0_c00319{word-spacing:-16.629000px;}
.ws2_c00319{word-spacing:-0.690000px;}
.ws3_c00319{word-spacing:-0.552000px;}
.ws5_c00319{word-spacing:0.000000px;}
._25_c00319{margin-left:-21.234000px;}
._11_c00319{margin-left:-18.648000px;}
._22_c00319{margin-left:-15.318000px;}
._26_c00319{margin-left:-13.938000px;}
._29_c00319{margin-left:-12.696000px;}
._0_c00319{margin-left:-11.661000px;}
._1_c00319{margin-left:-9.729000px;}
._2_c00319{margin-left:-8.004000px;}
._3_c00319{margin-left:-6.417000px;}
._e_c00319{margin-left:-5.313000px;}
._13_c00319{margin-left:-4.140000px;}
._10_c00319{margin-left:-3.036000px;}
._4_c00319{margin-left:-1.794000px;}
._14_c00319{width:1.656000px;}
._6_c00319{width:3.312000px;}
._c_c00319{width:5.451000px;}
._b_c00319{width:7.452000px;}
._9_c00319{width:9.315000px;}
._8_c00319{width:10.626000px;}
._f_c00319{width:11.661000px;}
._a_c00319{width:12.834000px;}
._d_c00319{width:13.938000px;}
._17_c00319{width:15.801000px;}
._15_c00319{width:17.319000px;}
._18_c00319{width:19.527000px;}
._1c_c00319{width:21.321000px;}
._19_c00319{width:23.805000px;}
._21_c00319{width:25.116000px;}
._1a_c00319{width:27.531000px;}
._2a_c00319{width:28.911000px;}
._20_c00319{width:31.050000px;}
._24_c00319{width:33.189000px;}
._1b_c00319{width:34.224000px;}
._12_c00319{width:61.686000px;}
._1f_c00319{width:90.045000px;}
._7_c00319{width:95.583000px;}
._1d_c00319{width:107.433000px;}
._1e_c00319{width:129.306000px;}
._23_c00319{width:215.004000px;}
._27_c00319{width:246.813000px;}
._16_c00319{width:347.553000px;}
._5_c00319{width:368.214000px;}
._28_c00319{width:405.411000px;}
._2b_c00319{width:1808.070000px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(128,128,128);}
.fc0_c00319{color:rgb(0,0,0);}
.fs2_c00319{font-size:42.000000px;}
.fs3_c00319{font-size:48.000000px;}
.fs1_c00319{font-size:66.000000px;}
.fs0_c00319{font-size:69.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1e_c00319{bottom:3.105000px;}
.y1d_c00319{bottom:7.228363px;}
.y1c_c00319{bottom:53.250000px;}
.y1b_c00319{bottom:75.300000px;}
.y1a_c00319{bottom:128.250000px;}
.y19_c00319{bottom:177.750000px;}
.y18_c00319{bottom:203.400000px;}
.y17_c00319{bottom:228.450000px;}
.y16_c00319{bottom:254.400000px;}
.y15_c00319{bottom:279.150000px;}
.y14_c00319{bottom:304.050000px;}
.y13_c00319{bottom:328.350000px;}
.y12_c00319{bottom:353.250000px;}
.y11_c00319{bottom:378.300000px;}
.y10_c00319{bottom:403.350000px;}
.yf_c00319{bottom:428.850000px;}
.ye_c00319{bottom:453.600000px;}
.yd_c00319{bottom:477.900000px;}
.yc_c00319{bottom:504.150000px;}
.yb_c00319{bottom:528.900000px;}
.ya_c00319{bottom:554.100000px;}
.y9_c00319{bottom:578.850000px;}
.y8_c00319{bottom:603.750000px;}
.y7_c00319{bottom:628.650000px;}
.y6_c00319{bottom:654.000000px;}
.y5_c00319{bottom:678.750000px;}
.y4_c00319{bottom:703.350000px;}
.y3_c00319{bottom:729.000000px;}
.y2_c00319{bottom:753.000000px;}
.y1_c00319{bottom:778.650000px;}
.h4_c00319{height:13.200074px;}
.h5_c00319{height:43.804688px;}
.h3_c00319{height:80.758301px;}
.h2_c00319{height:87.361816px;}
.h0_c00319{height:818.100000px;}
.h1_c00319{height:818.250000px;}
.w2_c00319{width:104.875500px;}
.w0_c00319{width:565.350000px;}
.w1_c00319{width:565.500000px;}
.x0_c00319{left:0.000000px;}
.x9_c00319{left:19.650000px;}
.x4_c00319{left:21.150000px;}
.x7_c00319{left:22.950000px;}
.x2_c00319{left:37.350000px;}
.x3_c00319{left:39.150000px;}
.x8_c00319{left:40.800000px;}
.xc_c00319{left:61.800000px;}
.xa_c00319{left:86.100000px;}
.x6_c00319{left:87.150000px;}
.x5_c00319{left:88.350000px;}
.x1_c00319{left:101.550000px;}
.xb_c00319{left:220.500000px;}
.xd_c00319{left:234.489258px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls2_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:3.200000pt;}
.ls1_c00319{letter-spacing:5.333333pt;}
.ls3_c00319{letter-spacing:45.333333pt;}
.ws4_c00319{word-spacing:-60.114667pt;}
.ws1_c00319{word-spacing:-20.114667pt;}
.ws0_c00319{word-spacing:-14.781333pt;}
.ws2_c00319{word-spacing:-0.613333pt;}
.ws3_c00319{word-spacing:-0.490667pt;}
.ws5_c00319{word-spacing:0.000000pt;}
._25_c00319{margin-left:-18.874667pt;}
._11_c00319{margin-left:-16.576000pt;}
._22_c00319{margin-left:-13.616000pt;}
._26_c00319{margin-left:-12.389333pt;}
._29_c00319{margin-left:-11.285333pt;}
._0_c00319{margin-left:-10.365333pt;}
._1_c00319{margin-left:-8.648000pt;}
._2_c00319{margin-left:-7.114667pt;}
._3_c00319{margin-left:-5.704000pt;}
._e_c00319{margin-left:-4.722667pt;}
._13_c00319{margin-left:-3.680000pt;}
._10_c00319{margin-left:-2.698667pt;}
._4_c00319{margin-left:-1.594667pt;}
._14_c00319{width:1.472000pt;}
._6_c00319{width:2.944000pt;}
._c_c00319{width:4.845333pt;}
._b_c00319{width:6.624000pt;}
._9_c00319{width:8.280000pt;}
._8_c00319{width:9.445333pt;}
._f_c00319{width:10.365333pt;}
._a_c00319{width:11.408000pt;}
._d_c00319{width:12.389333pt;}
._17_c00319{width:14.045333pt;}
._15_c00319{width:15.394667pt;}
._18_c00319{width:17.357333pt;}
._1c_c00319{width:18.952000pt;}
._19_c00319{width:21.160000pt;}
._21_c00319{width:22.325333pt;}
._1a_c00319{width:24.472000pt;}
._2a_c00319{width:25.698667pt;}
._20_c00319{width:27.600000pt;}
._24_c00319{width:29.501333pt;}
._1b_c00319{width:30.421333pt;}
._12_c00319{width:54.832000pt;}
._1f_c00319{width:80.040000pt;}
._7_c00319{width:84.962667pt;}
._1d_c00319{width:95.496000pt;}
._1e_c00319{width:114.938667pt;}
._23_c00319{width:191.114667pt;}
._27_c00319{width:219.389333pt;}
._16_c00319{width:308.936000pt;}
._5_c00319{width:327.301333pt;}
._28_c00319{width:360.365333pt;}
._2b_c00319{width:1607.173333pt;}
.fs2_c00319{font-size:37.333333pt;}
.fs3_c00319{font-size:42.666667pt;}
.fs1_c00319{font-size:58.666667pt;}
.fs0_c00319{font-size:61.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y1e_c00319{bottom:2.760000pt;}
.y1d_c00319{bottom:6.425212pt;}
.y1c_c00319{bottom:47.333333pt;}
.y1b_c00319{bottom:66.933333pt;}
.y1a_c00319{bottom:114.000000pt;}
.y19_c00319{bottom:158.000000pt;}
.y18_c00319{bottom:180.800000pt;}
.y17_c00319{bottom:203.066667pt;}
.y16_c00319{bottom:226.133333pt;}
.y15_c00319{bottom:248.133333pt;}
.y14_c00319{bottom:270.266667pt;}
.y13_c00319{bottom:291.866667pt;}
.y12_c00319{bottom:314.000000pt;}
.y11_c00319{bottom:336.266667pt;}
.y10_c00319{bottom:358.533333pt;}
.yf_c00319{bottom:381.200000pt;}
.ye_c00319{bottom:403.200000pt;}
.yd_c00319{bottom:424.800000pt;}
.yc_c00319{bottom:448.133333pt;}
.yb_c00319{bottom:470.133333pt;}
.ya_c00319{bottom:492.533333pt;}
.y9_c00319{bottom:514.533333pt;}
.y8_c00319{bottom:536.666667pt;}
.y7_c00319{bottom:558.800000pt;}
.y6_c00319{bottom:581.333333pt;}
.y5_c00319{bottom:603.333333pt;}
.y4_c00319{bottom:625.200000pt;}
.y3_c00319{bottom:648.000000pt;}
.y2_c00319{bottom:669.333333pt;}
.y1_c00319{bottom:692.133333pt;}
.h4_c00319{height:11.733399pt;}
.h5_c00319{height:38.937500pt;}
.h3_c00319{height:71.785156pt;}
.h2_c00319{height:77.654948pt;}
.h0_c00319{height:727.200000pt;}
.h1_c00319{height:727.333333pt;}
.w2_c00319{width:93.222667pt;}
.w0_c00319{width:502.533333pt;}
.w1_c00319{width:502.666667pt;}
.x0_c00319{left:0.000000pt;}
.x9_c00319{left:17.466667pt;}
.x4_c00319{left:18.800000pt;}
.x7_c00319{left:20.400000pt;}
.x2_c00319{left:33.200000pt;}
.x3_c00319{left:34.800000pt;}
.x8_c00319{left:36.266667pt;}
.xc_c00319{left:54.933333pt;}
.xa_c00319{left:76.533333pt;}
.x6_c00319{left:77.466667pt;}
.x5_c00319{left:78.533333pt;}
.x1_c00319{left:90.266667pt;}
.xb_c00319{left:196.000000pt;}
.xd_c00319{left:208.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_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_feeff029fb20e09d34e6ba8c.woff2')format("woff");}.ff1_c00320{font-family:ff1_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:ff2_c00320;src:url('chunks/assets/font_90240bab6f08868de40ffa1b.woff2')format("woff");}.ff2_c00320{font-family:ff2_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:ff3_c00320;src:url('chunks/assets/font_7cdc80f7762ae1b2fa63e309.woff2')format("woff");}.ff3_c00320{font-family:ff3_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:ff4_c00320;src:url('chunks/assets/font_accc22f639bd1ff1ed8612a4.woff2')format("woff");}.ff4_c00320{font-family:ff4_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:ff5_c00320;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00320{font-family:ff6_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;}
.m1_c00320{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_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00320{vertical-align:-95.400000px;}
.v0_c00320{vertical-align:0.000000px;}
.ls3_c00320{letter-spacing:0.000000px;}
.ls4_c00320{letter-spacing:3.000000px;}
.ls2_c00320{letter-spacing:4.725000px;}
.ls1_c00320{letter-spacing:6.000000px;}
.ls0_c00320{letter-spacing:6.120000px;}
.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:-54.900000px;}
.ws2_c00320{word-spacing:-44.022000px;}
.ws5_c00320{word-spacing:-21.288000px;}
.ws1_c00320{word-spacing:-16.629000px;}
.ws4_c00320{word-spacing:-0.276000px;}
.ws6_c00320{word-spacing:0.000000px;}
.ws3_c00320{word-spacing:2.898000px;}
._1d_c00320{margin-left:-29.391000px;}
._24_c00320{margin-left:-23.943000px;}
._27_c00320{margin-left:-22.218000px;}
._13_c00320{margin-left:-19.458000px;}
._1e_c00320{margin-left:-16.353000px;}
._7_c00320{margin-left:-14.904000px;}
._2d_c00320{margin-left:-13.731000px;}
._1a_c00320{margin-left:-12.696000px;}
._29_c00320{margin-left:-11.592000px;}
._14_c00320{margin-left:-10.281000px;}
._d_c00320{margin-left:-9.246000px;}
._a_c00320{margin-left:-7.797000px;}
._c_c00320{margin-left:-6.279000px;}
._5_c00320{margin-left:-4.623000px;}
._3_c00320{margin-left:-3.243000px;}
._1_c00320{margin-left:-1.863000px;}
._0_c00320{width:1.794000px;}
._4_c00320{width:2.829000px;}
._8_c00320{width:4.485000px;}
._6_c00320{width:5.865000px;}
._21_c00320{width:7.383000px;}
._f_c00320{width:8.556000px;}
._e_c00320{width:10.350000px;}
._15_c00320{width:11.799000px;}
._9_c00320{width:13.110000px;}
._11_c00320{width:14.835000px;}
._17_c00320{width:18.630000px;}
._b_c00320{width:20.079000px;}
._18_c00320{width:21.804000px;}
._2a_c00320{width:23.046000px;}
._25_c00320{width:25.254000px;}
._22_c00320{width:26.289000px;}
._32_c00320{width:28.221000px;}
._33_c00320{width:29.376000px;}
._31_c00320{width:31.257000px;}
._2c_c00320{width:32.547000px;}
._16_c00320{width:33.948000px;}
._1f_c00320{width:35.070000px;}
._28_c00320{width:42.573000px;}
._20_c00320{width:46.023000px;}
._12_c00320{width:69.267000px;}
._2f_c00320{width:95.646000px;}
._2b_c00320{width:101.826000px;}
._10_c00320{width:107.571000px;}
._23_c00320{width:128.754000px;}
._1b_c00320{width:152.628000px;}
._19_c00320{width:169.263000px;}
._30_c00320{width:176.847000px;}
._1c_c00320{width:184.920000px;}
._2e_c00320{width:207.081000px;}
._26_c00320{width:212.037000px;}
._34_c00320{width:307.683000px;}
._2_c00320{width:420.450000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(128,128,128);}
.fc0_c00320{color:rgb(0,0,0);}
.fs1_c00320{font-size:48.000000px;}
.fs3_c00320{font-size:51.000000px;}
.fs5_c00320{font-size:57.000000px;}
.fs2_c00320{font-size:60.000000px;}
.fs4_c00320{font-size:66.000000px;}
.fs0_c00320{font-size:69.000000px;}
.fs6_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y1d_c00320{bottom:3.105000px;}
.y1c_c00320{bottom:7.228371px;}
.y1b_c00320{bottom:93.165000px;}
.y1a_c00320{bottom:118.215000px;}
.y19_c00320{bottom:167.415000px;}
.y18_c00320{bottom:217.065000px;}
.y17_c00320{bottom:243.315000px;}
.y16_c00320{bottom:268.365000px;}
.y15_c00320{bottom:293.415000px;}
.y14_c00320{bottom:318.915000px;}
.y13_c00320{bottom:343.965000px;}
.y12_c00320{bottom:369.315000px;}
.y11_c00320{bottom:394.215000px;}
.y10_c00320{bottom:419.265000px;}
.yf_c00320{bottom:444.165000px;}
.ye_c00320{bottom:469.815000px;}
.yd_c00320{bottom:494.565000px;}
.yc_c00320{bottom:519.465000px;}
.yb_c00320{bottom:544.065000px;}
.ya_c00320{bottom:569.115000px;}
.y9_c00320{bottom:594.465000px;}
.y8_c00320{bottom:619.665000px;}
.y7_c00320{bottom:644.715000px;}
.y6_c00320{bottom:669.915000px;}
.y5_c00320{bottom:694.665000px;}
.y4_c00320{bottom:719.865000px;}
.y3_c00320{bottom:745.215000px;}
.y2_c00320{bottom:770.265000px;}
.y1_c00320{bottom:795.165000px;}
.h5_c00320{height:13.200074px;}
.h6_c00320{height:43.804688px;}
.h4_c00320{height:66.713379px;}
.h3_c00320{height:80.758301px;}
.h2_c00320{height:87.361816px;}
.h1_c00320{height:831.000000px;}
.h0_c00320{height:831.075000px;}
.w2_c00320{width:104.875500px;}
.w0_c00320{width:573.450000px;}
.w1_c00320{width:573.750000px;}
.x0_c00320{left:0.000000px;}
.x3_c00320{left:27.600000px;}
.x4_c00320{left:29.400000px;}
.x2_c00320{left:31.650000px;}
.x5_c00320{left:33.300000px;}
.x6_c00320{left:34.800000px;}
.xb_c00320{left:37.050000px;}
.xa_c00320{left:60.450000px;}
.x9_c00320{left:66.750000px;}
.x7_c00320{left:73.950000px;}
.x8_c00320{left:84.300000px;}
.x1_c00320{left:201.450000px;}
.xc_c00320{left:238.539230px;}
@media print{
.v1_c00320{vertical-align:-84.800000pt;}
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:0.000000pt;}
.ls4_c00320{letter-spacing:2.666667pt;}
.ls2_c00320{letter-spacing:4.200000pt;}
.ls1_c00320{letter-spacing:5.333333pt;}
.ls0_c00320{letter-spacing:5.440000pt;}
.ws0_c00320{word-spacing:-48.800000pt;}
.ws2_c00320{word-spacing:-39.130667pt;}
.ws5_c00320{word-spacing:-18.922667pt;}
.ws1_c00320{word-spacing:-14.781333pt;}
.ws4_c00320{word-spacing:-0.245333pt;}
.ws6_c00320{word-spacing:0.000000pt;}
.ws3_c00320{word-spacing:2.576000pt;}
._1d_c00320{margin-left:-26.125333pt;}
._24_c00320{margin-left:-21.282667pt;}
._27_c00320{margin-left:-19.749333pt;}
._13_c00320{margin-left:-17.296000pt;}
._1e_c00320{margin-left:-14.536000pt;}
._7_c00320{margin-left:-13.248000pt;}
._2d_c00320{margin-left:-12.205333pt;}
._1a_c00320{margin-left:-11.285333pt;}
._29_c00320{margin-left:-10.304000pt;}
._14_c00320{margin-left:-9.138667pt;}
._d_c00320{margin-left:-8.218667pt;}
._a_c00320{margin-left:-6.930667pt;}
._c_c00320{margin-left:-5.581333pt;}
._5_c00320{margin-left:-4.109333pt;}
._3_c00320{margin-left:-2.882667pt;}
._1_c00320{margin-left:-1.656000pt;}
._0_c00320{width:1.594667pt;}
._4_c00320{width:2.514667pt;}
._8_c00320{width:3.986667pt;}
._6_c00320{width:5.213333pt;}
._21_c00320{width:6.562667pt;}
._f_c00320{width:7.605333pt;}
._e_c00320{width:9.200000pt;}
._15_c00320{width:10.488000pt;}
._9_c00320{width:11.653333pt;}
._11_c00320{width:13.186667pt;}
._17_c00320{width:16.560000pt;}
._b_c00320{width:17.848000pt;}
._18_c00320{width:19.381333pt;}
._2a_c00320{width:20.485333pt;}
._25_c00320{width:22.448000pt;}
._22_c00320{width:23.368000pt;}
._32_c00320{width:25.085333pt;}
._33_c00320{width:26.112000pt;}
._31_c00320{width:27.784000pt;}
._2c_c00320{width:28.930667pt;}
._16_c00320{width:30.176000pt;}
._1f_c00320{width:31.173333pt;}
._28_c00320{width:37.842667pt;}
._20_c00320{width:40.909333pt;}
._12_c00320{width:61.570667pt;}
._2f_c00320{width:85.018667pt;}
._2b_c00320{width:90.512000pt;}
._10_c00320{width:95.618667pt;}
._23_c00320{width:114.448000pt;}
._1b_c00320{width:135.669333pt;}
._19_c00320{width:150.456000pt;}
._30_c00320{width:157.197333pt;}
._1c_c00320{width:164.373333pt;}
._2e_c00320{width:184.072000pt;}
._26_c00320{width:188.477333pt;}
._34_c00320{width:273.496000pt;}
._2_c00320{width:373.733333pt;}
.fs1_c00320{font-size:42.666667pt;}
.fs3_c00320{font-size:45.333333pt;}
.fs5_c00320{font-size:50.666667pt;}
.fs2_c00320{font-size:53.333333pt;}
.fs4_c00320{font-size:58.666667pt;}
.fs0_c00320{font-size:61.333333pt;}
.fs6_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y1d_c00320{bottom:2.760000pt;}
.y1c_c00320{bottom:6.425219pt;}
.y1b_c00320{bottom:82.813333pt;}
.y1a_c00320{bottom:105.080000pt;}
.y19_c00320{bottom:148.813333pt;}
.y18_c00320{bottom:192.946667pt;}
.y17_c00320{bottom:216.280000pt;}
.y16_c00320{bottom:238.546667pt;}
.y15_c00320{bottom:260.813333pt;}
.y14_c00320{bottom:283.480000pt;}
.y13_c00320{bottom:305.746667pt;}
.y12_c00320{bottom:328.280000pt;}
.y11_c00320{bottom:350.413333pt;}
.y10_c00320{bottom:372.680000pt;}
.yf_c00320{bottom:394.813333pt;}
.ye_c00320{bottom:417.613333pt;}
.yd_c00320{bottom:439.613333pt;}
.yc_c00320{bottom:461.746667pt;}
.yb_c00320{bottom:483.613333pt;}
.ya_c00320{bottom:505.880000pt;}
.y9_c00320{bottom:528.413333pt;}
.y8_c00320{bottom:550.813333pt;}
.y7_c00320{bottom:573.080000pt;}
.y6_c00320{bottom:595.480000pt;}
.y5_c00320{bottom:617.480000pt;}
.y4_c00320{bottom:639.880000pt;}
.y3_c00320{bottom:662.413333pt;}
.y2_c00320{bottom:684.680000pt;}
.y1_c00320{bottom:706.813333pt;}
.h5_c00320{height:11.733399pt;}
.h6_c00320{height:38.937500pt;}
.h4_c00320{height:59.300781pt;}
.h3_c00320{height:71.785156pt;}
.h2_c00320{height:77.654948pt;}
.h1_c00320{height:738.666667pt;}
.h0_c00320{height:738.733333pt;}
.w2_c00320{width:93.222667pt;}
.w0_c00320{width:509.733333pt;}
.w1_c00320{width:510.000000pt;}
.x0_c00320{left:0.000000pt;}
.x3_c00320{left:24.533333pt;}
.x4_c00320{left:26.133333pt;}
.x2_c00320{left:28.133333pt;}
.x5_c00320{left:29.600000pt;}
.x6_c00320{left:30.933333pt;}
.xb_c00320{left:32.933333pt;}
.xa_c00320{left:53.733333pt;}
.x9_c00320{left:59.333333pt;}
.x7_c00320{left:65.733333pt;}
.x8_c00320{left:74.933333pt;}
.x1_c00320{left:179.066667pt;}
.xc_c00320{left:212.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d37460a1cd162b59af7ec85.woff2')format("woff");}.ff1_c00321{font-family:ff1_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:ff2_c00321;src:url('chunks/assets/font_bc5bce8ce60b0b0e6604d62a.woff2')format("woff");}.ff2_c00321{font-family:ff2_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:ff3_c00321;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00321{font-family:ff3_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;}
.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;}
.ls0_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:6.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;}
}
.ws4_c00321{word-spacing:-22.629000px;}
.ws0_c00321{word-spacing:-16.629000px;}
.ws5_c00321{word-spacing:0.000000px;}
.ws1_c00321{word-spacing:1.587000px;}
.ws3_c00321{word-spacing:2.070000px;}
.ws2_c00321{word-spacing:3.036000px;}
._16_c00321{margin-left:-30.705000px;}
._22_c00321{margin-left:-24.426000px;}
._20_c00321{margin-left:-20.286000px;}
._2b_c00321{margin-left:-15.879000px;}
._1e_c00321{margin-left:-14.214000px;}
._1f_c00321{margin-left:-12.903000px;}
._1a_c00321{margin-left:-11.247000px;}
._30_c00321{margin-left:-10.005000px;}
._14_c00321{margin-left:-8.556000px;}
._e_c00321{margin-left:-6.969000px;}
._18_c00321{margin-left:-5.934000px;}
._9_c00321{margin-left:-4.899000px;}
._a_c00321{margin-left:-3.726000px;}
._4_c00321{margin-left:-2.208000px;}
._c_c00321{margin-left:-1.035000px;}
._5_c00321{width:1.518000px;}
._7_c00321{width:3.036000px;}
._1_c00321{width:5.106000px;}
._2_c00321{width:6.417000px;}
._0_c00321{width:7.866000px;}
._d_c00321{width:10.143000px;}
._b_c00321{width:11.868000px;}
._11_c00321{width:12.903000px;}
._6_c00321{width:14.007000px;}
._24_c00321{width:15.594000px;}
._10_c00321{width:16.767000px;}
._2a_c00321{width:18.078000px;}
._f_c00321{width:19.389000px;}
._29_c00321{width:21.279000px;}
._32_c00321{width:23.943000px;}
._1c_c00321{width:25.461000px;}
._2e_c00321{width:30.231000px;}
._2d_c00321{width:32.283000px;}
._19_c00321{width:34.431000px;}
._25_c00321{width:36.432000px;}
._8_c00321{width:42.621000px;}
._28_c00321{width:43.884000px;}
._12_c00321{width:47.196000px;}
._1b_c00321{width:53.475000px;}
._21_c00321{width:70.035000px;}
._23_c00321{width:92.874000px;}
._27_c00321{width:94.944000px;}
._2c_c00321{width:142.779000px;}
._13_c00321{width:170.775000px;}
._2f_c00321{width:197.760000px;}
._1d_c00321{width:205.965000px;}
._15_c00321{width:212.796000px;}
._17_c00321{width:221.283000px;}
._26_c00321{width:322.023000px;}
._33_c00321{width:333.651000px;}
._31_c00321{width:367.770000px;}
._3_c00321{width:381.363000px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(128,128,128);}
.fc0_c00321{color:rgb(0,0,0);}
.fs1_c00321{font-size:48.000000px;}
.fs0_c00321{font-size:69.000000px;}
.y0_c00321{bottom:0.000000px;}
.y20_c00321{bottom:3.105000px;}
.y1f_c00321{bottom:7.228369px;}
.y1e_c00321{bottom:55.620000px;}
.y1d_c00321{bottom:85.320000px;}
.y1c_c00321{bottom:110.670000px;}
.y1b_c00321{bottom:136.020000px;}
.y1a_c00321{bottom:161.220000px;}
.y19_c00321{bottom:186.870000px;}
.y18_c00321{bottom:210.570000px;}
.y17_c00321{bottom:236.520000px;}
.y16_c00321{bottom:261.570000px;}
.y15_c00321{bottom:285.420000px;}
.y14_c00321{bottom:311.820000px;}
.y13_c00321{bottom:335.520000px;}
.y12_c00321{bottom:360.720000px;}
.y11_c00321{bottom:385.770000px;}
.y10_c00321{bottom:410.670000px;}
.yf_c00321{bottom:435.270000px;}
.ye_c00321{bottom:461.070000px;}
.yd_c00321{bottom:485.220000px;}
.yc_c00321{bottom:511.020000px;}
.yb_c00321{bottom:535.620000px;}
.ya_c00321{bottom:560.970000px;}
.y9_c00321{bottom:585.570000px;}
.y8_c00321{bottom:610.170000px;}
.y7_c00321{bottom:635.520000px;}
.y6_c00321{bottom:660.420000px;}
.y5_c00321{bottom:685.470000px;}
.y4_c00321{bottom:709.770000px;}
.y3_c00321{bottom:735.720000px;}
.y2_c00321{bottom:759.420000px;}
.y1_c00321{bottom:785.370000px;}
.h4_c00321{height:13.200073px;}
.h5_c00321{height:43.804688px;}
.h2_c00321{height:80.758301px;}
.h3_c00321{height:87.361816px;}
.h0_c00321{height:821.850000px;}
.h1_c00321{height:822.000000px;}
.w2_c00321{width:104.875500px;}
.w1_c00321{width:567.750000px;}
.w0_c00321{width:568.050000px;}
.x0_c00321{left:0.000000px;}
.x3_c00321{left:27.300000px;}
.x7_c00321{left:28.950000px;}
.x8_c00321{left:46.800000px;}
.xa_c00321{left:63.000000px;}
.x9_c00321{left:67.800000px;}
.x5_c00321{left:79.200000px;}
.x4_c00321{left:94.500000px;}
.x6_c00321{left:95.850000px;}
.xd_c00321{left:97.200000px;}
.x1_c00321{left:108.300000px;}
.xc_c00321{left:109.350000px;}
.x2_c00321{left:119.700000px;}
.xb_c00321{left:146.100000px;}
.xf_c00321{left:235.839249px;}
.xe_c00321{left:520.350000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:5.333333pt;}
.ws4_c00321{word-spacing:-20.114667pt;}
.ws0_c00321{word-spacing:-14.781333pt;}
.ws5_c00321{word-spacing:0.000000pt;}
.ws1_c00321{word-spacing:1.410667pt;}
.ws3_c00321{word-spacing:1.840000pt;}
.ws2_c00321{word-spacing:2.698667pt;}
._16_c00321{margin-left:-27.293333pt;}
._22_c00321{margin-left:-21.712000pt;}
._20_c00321{margin-left:-18.032000pt;}
._2b_c00321{margin-left:-14.114667pt;}
._1e_c00321{margin-left:-12.634667pt;}
._1f_c00321{margin-left:-11.469333pt;}
._1a_c00321{margin-left:-9.997333pt;}
._30_c00321{margin-left:-8.893333pt;}
._14_c00321{margin-left:-7.605333pt;}
._e_c00321{margin-left:-6.194667pt;}
._18_c00321{margin-left:-5.274667pt;}
._9_c00321{margin-left:-4.354667pt;}
._a_c00321{margin-left:-3.312000pt;}
._4_c00321{margin-left:-1.962667pt;}
._c_c00321{margin-left:-0.920000pt;}
._5_c00321{width:1.349333pt;}
._7_c00321{width:2.698667pt;}
._1_c00321{width:4.538667pt;}
._2_c00321{width:5.704000pt;}
._0_c00321{width:6.992000pt;}
._d_c00321{width:9.016000pt;}
._b_c00321{width:10.549333pt;}
._11_c00321{width:11.469333pt;}
._6_c00321{width:12.450667pt;}
._24_c00321{width:13.861333pt;}
._10_c00321{width:14.904000pt;}
._2a_c00321{width:16.069333pt;}
._f_c00321{width:17.234667pt;}
._29_c00321{width:18.914667pt;}
._32_c00321{width:21.282667pt;}
._1c_c00321{width:22.632000pt;}
._2e_c00321{width:26.872000pt;}
._2d_c00321{width:28.696000pt;}
._19_c00321{width:30.605333pt;}
._25_c00321{width:32.384000pt;}
._8_c00321{width:37.885333pt;}
._28_c00321{width:39.008000pt;}
._12_c00321{width:41.952000pt;}
._1b_c00321{width:47.533333pt;}
._21_c00321{width:62.253333pt;}
._23_c00321{width:82.554667pt;}
._27_c00321{width:84.394667pt;}
._2c_c00321{width:126.914667pt;}
._13_c00321{width:151.800000pt;}
._2f_c00321{width:175.786667pt;}
._1d_c00321{width:183.080000pt;}
._15_c00321{width:189.152000pt;}
._17_c00321{width:196.696000pt;}
._26_c00321{width:286.242667pt;}
._33_c00321{width:296.578667pt;}
._31_c00321{width:326.906667pt;}
._3_c00321{width:338.989333pt;}
.fs1_c00321{font-size:42.666667pt;}
.fs0_c00321{font-size:61.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y20_c00321{bottom:2.760000pt;}
.y1f_c00321{bottom:6.425217pt;}
.y1e_c00321{bottom:49.440000pt;}
.y1d_c00321{bottom:75.840000pt;}
.y1c_c00321{bottom:98.373333pt;}
.y1b_c00321{bottom:120.906667pt;}
.y1a_c00321{bottom:143.306667pt;}
.y19_c00321{bottom:166.106667pt;}
.y18_c00321{bottom:187.173333pt;}
.y17_c00321{bottom:210.240000pt;}
.y16_c00321{bottom:232.506667pt;}
.y15_c00321{bottom:253.706667pt;}
.y14_c00321{bottom:277.173333pt;}
.y13_c00321{bottom:298.240000pt;}
.y12_c00321{bottom:320.640000pt;}
.y11_c00321{bottom:342.906667pt;}
.y10_c00321{bottom:365.040000pt;}
.yf_c00321{bottom:386.906667pt;}
.ye_c00321{bottom:409.840000pt;}
.yd_c00321{bottom:431.306667pt;}
.yc_c00321{bottom:454.240000pt;}
.yb_c00321{bottom:476.106667pt;}
.ya_c00321{bottom:498.640000pt;}
.y9_c00321{bottom:520.506667pt;}
.y8_c00321{bottom:542.373333pt;}
.y7_c00321{bottom:564.906667pt;}
.y6_c00321{bottom:587.040000pt;}
.y5_c00321{bottom:609.306667pt;}
.y4_c00321{bottom:630.906667pt;}
.y3_c00321{bottom:653.973333pt;}
.y2_c00321{bottom:675.040000pt;}
.y1_c00321{bottom:698.106667pt;}
.h4_c00321{height:11.733399pt;}
.h5_c00321{height:38.937500pt;}
.h2_c00321{height:71.785156pt;}
.h3_c00321{height:77.654948pt;}
.h0_c00321{height:730.533333pt;}
.h1_c00321{height:730.666667pt;}
.w2_c00321{width:93.222667pt;}
.w1_c00321{width:504.666667pt;}
.w0_c00321{width:504.933333pt;}
.x0_c00321{left:0.000000pt;}
.x3_c00321{left:24.266667pt;}
.x7_c00321{left:25.733333pt;}
.x8_c00321{left:41.600000pt;}
.xa_c00321{left:56.000000pt;}
.x9_c00321{left:60.266667pt;}
.x5_c00321{left:70.400000pt;}
.x4_c00321{left:84.000000pt;}
.x6_c00321{left:85.200000pt;}
.xd_c00321{left:86.400000pt;}
.x1_c00321{left:96.266667pt;}
.xc_c00321{left:97.200000pt;}
.x2_c00321{left:106.400000pt;}
.xb_c00321{left:129.866667pt;}
.xf_c00321{left:209.634888pt;}
.xe_c00321{left:462.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_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_1f85ca2134be1779aa197596.woff2')format("woff");}.ff1_c00322{font-family:ff1_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:ff2_c00322;src:url('chunks/assets/font_a1ff208656d870810e14253c.woff2')format("woff");}.ff2_c00322{font-family:ff2_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:ff3_c00322;src:url('chunks/assets/font_75ba70db413959cf8893e62c.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00322{font-family:ff4_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;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls4_c00322{letter-spacing:0.000000px;}
.ls2_c00322{letter-spacing:1.233000px;}
.ls5_c00322{letter-spacing:6.000000px;}
.ls3_c00322{letter-spacing:11.400000px;}
.ls1_c00322{letter-spacing:21.000000px;}
.ls0_c00322{letter-spacing:514.371000px;}
.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:-44.022000px;}
.ws0_c00322{word-spacing:-16.629000px;}
.ws2_c00322{word-spacing:-0.948000px;}
.ws3_c00322{word-spacing:0.000000px;}
._24_c00322{margin-left:-34.254000px;}
._1f_c00322{margin-left:-18.702000px;}
._1d_c00322{margin-left:-15.570000px;}
._b_c00322{margin-left:-13.593000px;}
._10_c00322{margin-left:-11.661000px;}
._1e_c00322{margin-left:-10.074000px;}
._14_c00322{margin-left:-8.166000px;}
._1_c00322{margin-left:-6.624000px;}
._e_c00322{margin-left:-5.451000px;}
._3_c00322{margin-left:-4.071000px;}
._2_c00322{margin-left:-2.622000px;}
._4_c00322{margin-left:-1.173000px;}
._0_c00322{width:1.794000px;}
._6_c00322{width:2.898000px;}
._7_c00322{width:4.347000px;}
._12_c00322{width:5.451000px;}
._11_c00322{width:6.693000px;}
._5_c00322{width:8.142000px;}
._13_c00322{width:9.522000px;}
._1a_c00322{width:10.626000px;}
._d_c00322{width:12.282000px;}
._9_c00322{width:13.938000px;}
._22_c00322{width:15.072000px;}
._8_c00322{width:16.215000px;}
._16_c00322{width:17.664000px;}
._17_c00322{width:19.803000px;}
._15_c00322{width:21.528000px;}
._1c_c00322{width:23.736000px;}
._18_c00322{width:25.944000px;}
._20_c00322{width:27.588000px;}
._21_c00322{width:29.808000px;}
._f_c00322{width:31.119000px;}
._1b_c00322{width:35.376000px;}
._19_c00322{width:39.537000px;}
._a_c00322{width:89.355000px;}
._26_c00322{width:90.483000px;}
._23_c00322{width:99.123000px;}
._c_c00322{width:152.076000px;}
._25_c00322{width:320.919000px;}
._28_c00322{width:492.522000px;}
._27_c00322{width:759.003000px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(128,128,128);}
.fc0_c00322{color:rgb(0,0,0);}
.fs2_c00322{font-size:48.000000px;}
.fs1_c00322{font-size:66.000000px;}
.fs0_c00322{font-size:69.000000px;}
.y0_c00322{bottom:0.000000px;}
.y1e_c00322{bottom:3.105000px;}
.y1d_c00322{bottom:7.228371px;}
.y1c_c00322{bottom:70.665000px;}
.y1b_c00322{bottom:95.565000px;}
.y1a_c00322{bottom:120.465000px;}
.y19_c00322{bottom:143.565000px;}
.y18_c00322{bottom:168.165000px;}
.y17_c00322{bottom:193.815000px;}
.y16_c00322{bottom:218.415000px;}
.y15_c00322{bottom:243.465000px;}
.y14_c00322{bottom:268.365000px;}
.y13_c00322{bottom:292.965000px;}
.y12_c00322{bottom:317.565000px;}
.y11_c00322{bottom:342.315000px;}
.y10_c00322{bottom:367.215000px;}
.yf_c00322{bottom:391.815000px;}
.ye_c00322{bottom:416.265000px;}
.yd_c00322{bottom:441.465000px;}
.yc_c00322{bottom:465.765000px;}
.yb_c00322{bottom:490.065000px;}
.ya_c00322{bottom:515.115000px;}
.y9_c00322{bottom:539.115000px;}
.y8_c00322{bottom:589.065000px;}
.y7_c00322{bottom:638.865000px;}
.y6_c00322{bottom:663.165000px;}
.y5_c00322{bottom:687.915000px;}
.y4_c00322{bottom:712.815000px;}
.y3_c00322{bottom:737.415000px;}
.y2_c00322{bottom:761.865000px;}
.y1_c00322{bottom:785.415000px;}
.h4_c00322{height:13.200074px;}
.h5_c00322{height:43.804688px;}
.h3_c00322{height:80.758301px;}
.h2_c00322{height:87.361816px;}
.h1_c00322{height:831.000000px;}
.h0_c00322{height:831.075000px;}
.w2_c00322{width:104.875500px;}
.w0_c00322{width:573.450000px;}
.w1_c00322{width:573.750000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:36.900000px;}
.x4_c00322{left:38.550000px;}
.x3_c00322{left:39.900000px;}
.x8_c00322{left:41.250000px;}
.x7_c00322{left:62.850000px;}
.x5_c00322{left:70.800000px;}
.x6_c00322{left:74.550000px;}
.x9_c00322{left:82.650000px;}
.x1_c00322{left:194.100000px;}
.xa_c00322{left:238.539230px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls4_c00322{letter-spacing:0.000000pt;}
.ls2_c00322{letter-spacing:1.096000pt;}
.ls5_c00322{letter-spacing:5.333333pt;}
.ls3_c00322{letter-spacing:10.133333pt;}
.ls1_c00322{letter-spacing:18.666667pt;}
.ls0_c00322{letter-spacing:457.218667pt;}
.ws1_c00322{word-spacing:-39.130667pt;}
.ws0_c00322{word-spacing:-14.781333pt;}
.ws2_c00322{word-spacing:-0.842667pt;}
.ws3_c00322{word-spacing:0.000000pt;}
._24_c00322{margin-left:-30.448000pt;}
._1f_c00322{margin-left:-16.624000pt;}
._1d_c00322{margin-left:-13.840000pt;}
._b_c00322{margin-left:-12.082667pt;}
._10_c00322{margin-left:-10.365333pt;}
._1e_c00322{margin-left:-8.954667pt;}
._14_c00322{margin-left:-7.258667pt;}
._1_c00322{margin-left:-5.888000pt;}
._e_c00322{margin-left:-4.845333pt;}
._3_c00322{margin-left:-3.618667pt;}
._2_c00322{margin-left:-2.330667pt;}
._4_c00322{margin-left:-1.042667pt;}
._0_c00322{width:1.594667pt;}
._6_c00322{width:2.576000pt;}
._7_c00322{width:3.864000pt;}
._12_c00322{width:4.845333pt;}
._11_c00322{width:5.949333pt;}
._5_c00322{width:7.237333pt;}
._13_c00322{width:8.464000pt;}
._1a_c00322{width:9.445333pt;}
._d_c00322{width:10.917333pt;}
._9_c00322{width:12.389333pt;}
._22_c00322{width:13.397333pt;}
._8_c00322{width:14.413333pt;}
._16_c00322{width:15.701333pt;}
._17_c00322{width:17.602667pt;}
._15_c00322{width:19.136000pt;}
._1c_c00322{width:21.098667pt;}
._18_c00322{width:23.061333pt;}
._20_c00322{width:24.522667pt;}
._21_c00322{width:26.496000pt;}
._f_c00322{width:27.661333pt;}
._1b_c00322{width:31.445333pt;}
._19_c00322{width:35.144000pt;}
._a_c00322{width:79.426667pt;}
._26_c00322{width:80.429333pt;}
._23_c00322{width:88.109333pt;}
._c_c00322{width:135.178667pt;}
._25_c00322{width:285.261333pt;}
._28_c00322{width:437.797333pt;}
._27_c00322{width:674.669333pt;}
.fs2_c00322{font-size:42.666667pt;}
.fs1_c00322{font-size:58.666667pt;}
.fs0_c00322{font-size:61.333333pt;}
.y0_c00322{bottom:0.000000pt;}
.y1e_c00322{bottom:2.760000pt;}
.y1d_c00322{bottom:6.425219pt;}
.y1c_c00322{bottom:62.813333pt;}
.y1b_c00322{bottom:84.946667pt;}
.y1a_c00322{bottom:107.080000pt;}
.y19_c00322{bottom:127.613333pt;}
.y18_c00322{bottom:149.480000pt;}
.y17_c00322{bottom:172.280000pt;}
.y16_c00322{bottom:194.146667pt;}
.y15_c00322{bottom:216.413333pt;}
.y14_c00322{bottom:238.546667pt;}
.y13_c00322{bottom:260.413333pt;}
.y12_c00322{bottom:282.280000pt;}
.y11_c00322{bottom:304.280000pt;}
.y10_c00322{bottom:326.413333pt;}
.yf_c00322{bottom:348.280000pt;}
.ye_c00322{bottom:370.013333pt;}
.yd_c00322{bottom:392.413333pt;}
.yc_c00322{bottom:414.013333pt;}
.yb_c00322{bottom:435.613333pt;}
.ya_c00322{bottom:457.880000pt;}
.y9_c00322{bottom:479.213333pt;}
.y8_c00322{bottom:523.613333pt;}
.y7_c00322{bottom:567.880000pt;}
.y6_c00322{bottom:589.480000pt;}
.y5_c00322{bottom:611.480000pt;}
.y4_c00322{bottom:633.613333pt;}
.y3_c00322{bottom:655.480000pt;}
.y2_c00322{bottom:677.213333pt;}
.y1_c00322{bottom:698.146667pt;}
.h4_c00322{height:11.733399pt;}
.h5_c00322{height:38.937500pt;}
.h3_c00322{height:71.785156pt;}
.h2_c00322{height:77.654948pt;}
.h1_c00322{height:738.666667pt;}
.h0_c00322{height:738.733333pt;}
.w2_c00322{width:93.222667pt;}
.w0_c00322{width:509.733333pt;}
.w1_c00322{width:510.000000pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:32.800000pt;}
.x4_c00322{left:34.266667pt;}
.x3_c00322{left:35.466667pt;}
.x8_c00322{left:36.666667pt;}
.x7_c00322{left:55.866667pt;}
.x5_c00322{left:62.933333pt;}
.x6_c00322{left:66.266667pt;}
.x9_c00322{left:73.466667pt;}
.x1_c00322{left:172.533333pt;}
.xa_c00322{left:212.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cd83ebad101f924b779b88b.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_d23e6f535d6b0eb7cc092a6d.woff2')format("woff");}.ff2_c00323{font-family:ff2_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:ff3_c00323;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.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_e8a32d5b2fa88b125a8aedbc.woff2')format("woff");}.ff4_c00323{font-family:ff4_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:ff5_c00323;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls2_c00323{letter-spacing:6.000000px;}
.ls0_c00323{letter-spacing:15.246000px;}
.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:-16.629000px;}
.ws1_c00323{word-spacing:-11.568000px;}
.ws2_c00323{word-spacing:0.000000px;}
._1a_c00323{margin-left:-15.660000px;}
._1d_c00323{margin-left:-11.556000px;}
._13_c00323{margin-left:-9.246000px;}
._18_c00323{margin-left:-8.211000px;}
._7_c00323{margin-left:-7.176000px;}
._5_c00323{margin-left:-5.658000px;}
._6_c00323{margin-left:-3.726000px;}
._1_c00323{margin-left:-2.553000px;}
._0_c00323{margin-left:-1.242000px;}
._4_c00323{width:1.104000px;}
._3_c00323{width:2.277000px;}
._c_c00323{width:4.002000px;}
._2_c00323{width:6.003000px;}
._9_c00323{width:7.866000px;}
._e_c00323{width:9.108000px;}
._10_c00323{width:10.212000px;}
._17_c00323{width:11.661000px;}
._a_c00323{width:13.386000px;}
._14_c00323{width:15.111000px;}
._8_c00323{width:16.284000px;}
._16_c00323{width:18.285000px;}
._b_c00323{width:19.941000px;}
._15_c00323{width:21.528000px;}
._1e_c00323{width:22.839000px;}
._12_c00323{width:25.806000px;}
._11_c00323{width:32.430000px;}
._1b_c00323{width:40.908000px;}
._1c_c00323{width:90.984000px;}
._19_c00323{width:97.911000px;}
._f_c00323{width:205.551000px;}
._d_c00323{width:244.743000px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(128,128,128);}
.fc0_c00323{color:rgb(0,0,0);}
.fs3_c00323{font-size:45.000000px;}
.fs1_c00323{font-size:48.000000px;}
.fs2_c00323{font-size:51.000000px;}
.fs4_c00323{font-size:57.000000px;}
.fs0_c00323{font-size:69.000000px;}
.y0_c00323{bottom:0.000000px;}
.y17_c00323{bottom:3.105000px;}
.y16_c00323{bottom:7.228363px;}
.y15_c00323{bottom:278.400000px;}
.y14_c00323{bottom:315.150000px;}
.y13_c00323{bottom:339.450000px;}
.y12_c00323{bottom:365.400000px;}
.y11_c00323{bottom:390.750000px;}
.y10_c00323{bottom:414.000000px;}
.yf_c00323{bottom:438.750000px;}
.ye_c00323{bottom:462.750000px;}
.yd_c00323{bottom:488.400000px;}
.yc_c00323{bottom:513.300000px;}
.yb_c00323{bottom:537.600000px;}
.ya_c00323{bottom:562.500000px;}
.y9_c00323{bottom:586.950000px;}
.y8_c00323{bottom:612.450000px;}
.y7_c00323{bottom:636.900000px;}
.y6_c00323{bottom:661.200000px;}
.y5_c00323{bottom:686.250000px;}
.y4_c00323{bottom:710.400000px;}
.y3_c00323{bottom:735.150000px;}
.y2_c00323{bottom:760.500000px;}
.y1_c00323{bottom:784.950000px;}
.h4_c00323{height:13.200074px;}
.h5_c00323{height:43.804688px;}
.h3_c00323{height:66.713379px;}
.h2_c00323{height:87.361816px;}
.h1_c00323{height:827.250000px;}
.h0_c00323{height:827.550000px;}
.w2_c00323{width:104.875500px;}
.w0_c00323{width:572.100000px;}
.w1_c00323{width:572.250000px;}
.x0_c00323{left:0.000000px;}
.x7_c00323{left:34.500000px;}
.x6_c00323{left:50.250000px;}
.x8_c00323{left:98.550000px;}
.xa_c00323{left:100.200000px;}
.x5_c00323{left:102.600000px;}
.x4_c00323{left:104.400000px;}
.x2_c00323{left:105.750000px;}
.x3_c00323{left:107.100000px;}
.x9_c00323{left:124.800000px;}
.xc_c00323{left:237.864258px;}
.xb_c00323{left:248.400000px;}
.x1_c00323{left:258.450000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls2_c00323{letter-spacing:5.333333pt;}
.ls0_c00323{letter-spacing:13.552000pt;}
.ws0_c00323{word-spacing:-14.781333pt;}
.ws1_c00323{word-spacing:-10.282667pt;}
.ws2_c00323{word-spacing:0.000000pt;}
._1a_c00323{margin-left:-13.920000pt;}
._1d_c00323{margin-left:-10.272000pt;}
._13_c00323{margin-left:-8.218667pt;}
._18_c00323{margin-left:-7.298667pt;}
._7_c00323{margin-left:-6.378667pt;}
._5_c00323{margin-left:-5.029333pt;}
._6_c00323{margin-left:-3.312000pt;}
._1_c00323{margin-left:-2.269333pt;}
._0_c00323{margin-left:-1.104000pt;}
._4_c00323{width:0.981333pt;}
._3_c00323{width:2.024000pt;}
._c_c00323{width:3.557333pt;}
._2_c00323{width:5.336000pt;}
._9_c00323{width:6.992000pt;}
._e_c00323{width:8.096000pt;}
._10_c00323{width:9.077333pt;}
._17_c00323{width:10.365333pt;}
._a_c00323{width:11.898667pt;}
._14_c00323{width:13.432000pt;}
._8_c00323{width:14.474667pt;}
._16_c00323{width:16.253333pt;}
._b_c00323{width:17.725333pt;}
._15_c00323{width:19.136000pt;}
._1e_c00323{width:20.301333pt;}
._12_c00323{width:22.938667pt;}
._11_c00323{width:28.826667pt;}
._1b_c00323{width:36.362667pt;}
._1c_c00323{width:80.874667pt;}
._19_c00323{width:87.032000pt;}
._f_c00323{width:182.712000pt;}
._d_c00323{width:217.549333pt;}
.fs3_c00323{font-size:40.000000pt;}
.fs1_c00323{font-size:42.666667pt;}
.fs2_c00323{font-size:45.333333pt;}
.fs4_c00323{font-size:50.666667pt;}
.fs0_c00323{font-size:61.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y17_c00323{bottom:2.760000pt;}
.y16_c00323{bottom:6.425212pt;}
.y15_c00323{bottom:247.466667pt;}
.y14_c00323{bottom:280.133333pt;}
.y13_c00323{bottom:301.733333pt;}
.y12_c00323{bottom:324.800000pt;}
.y11_c00323{bottom:347.333333pt;}
.y10_c00323{bottom:368.000000pt;}
.yf_c00323{bottom:390.000000pt;}
.ye_c00323{bottom:411.333333pt;}
.yd_c00323{bottom:434.133333pt;}
.yc_c00323{bottom:456.266667pt;}
.yb_c00323{bottom:477.866667pt;}
.ya_c00323{bottom:500.000000pt;}
.y9_c00323{bottom:521.733333pt;}
.y8_c00323{bottom:544.400000pt;}
.y7_c00323{bottom:566.133333pt;}
.y6_c00323{bottom:587.733333pt;}
.y5_c00323{bottom:610.000000pt;}
.y4_c00323{bottom:631.466667pt;}
.y3_c00323{bottom:653.466667pt;}
.y2_c00323{bottom:676.000000pt;}
.y1_c00323{bottom:697.733333pt;}
.h4_c00323{height:11.733399pt;}
.h5_c00323{height:38.937500pt;}
.h3_c00323{height:59.300781pt;}
.h2_c00323{height:77.654948pt;}
.h1_c00323{height:735.333333pt;}
.h0_c00323{height:735.600000pt;}
.w2_c00323{width:93.222667pt;}
.w0_c00323{width:508.533333pt;}
.w1_c00323{width:508.666667pt;}
.x0_c00323{left:0.000000pt;}
.x7_c00323{left:30.666667pt;}
.x6_c00323{left:44.666667pt;}
.x8_c00323{left:87.600000pt;}
.xa_c00323{left:89.066667pt;}
.x5_c00323{left:91.200000pt;}
.x4_c00323{left:92.800000pt;}
.x2_c00323{left:94.000000pt;}
.x3_c00323{left:95.200000pt;}
.x9_c00323{left:110.933333pt;}
.xc_c00323{left:211.434896pt;}
.xb_c00323{left:220.800000pt;}
.x1_c00323{left:229.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_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_d8f1f2db6538546f8fe604e1.woff2')format("woff");}.ff1_c00324{font-family:ff1_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:ff2_c00324;src:url('chunks/assets/font_6acb0ffcbd5399c982839978.woff2')format("woff");}.ff2_c00324{font-family:ff2_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:ff3_c00324;src:url('chunks/assets/font_754a21a127ffc5a84fb35975.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_729288c552a7c59407853a65.woff2')format("woff");}.ff4_c00324{font-family:ff4_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:ff5_c00324;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00324{font-family:ff5_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;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:4.200000px;}
.ls2_c00324{letter-spacing:6.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00324{word-spacing:-22.629000px;}
.ws2_c00324{word-spacing:-16.629000px;}
.ws4_c00324{word-spacing:0.000000px;}
.ws0_c00324{word-spacing:2.208000px;}
.ws1_c00324{word-spacing:5.865000px;}
._27_c00324{margin-left:-29.256000px;}
._26_c00324{margin-left:-25.668000px;}
._28_c00324{margin-left:-19.389000px;}
._13_c00324{margin-left:-16.698000px;}
._11_c00324{margin-left:-15.525000px;}
._1b_c00324{margin-left:-12.834000px;}
._12_c00324{margin-left:-10.902000px;}
._1c_c00324{margin-left:-9.384000px;}
._16_c00324{margin-left:-7.866000px;}
._15_c00324{margin-left:-6.693000px;}
._14_c00324{margin-left:-5.106000px;}
._19_c00324{margin-left:-4.002000px;}
._c_c00324{margin-left:-2.967000px;}
._2_c00324{margin-left:-1.587000px;}
._6_c00324{width:1.449000px;}
._1_c00324{width:3.036000px;}
._3_c00324{width:4.209000px;}
._0_c00324{width:5.727000px;}
._4_c00324{width:7.383000px;}
._8_c00324{width:8.970000px;}
._17_c00324{width:10.419000px;}
._9_c00324{width:11.730000px;}
._7_c00324{width:13.110000px;}
._a_c00324{width:14.166000px;}
._22_c00324{width:15.525000px;}
._18_c00324{width:16.629000px;}
._f_c00324{width:18.078000px;}
._e_c00324{width:19.527000px;}
._10_c00324{width:21.240000px;}
._24_c00324{width:23.874000px;}
._21_c00324{width:24.888000px;}
._25_c00324{width:26.130000px;}
._23_c00324{width:27.945000px;}
._b_c00324{width:29.256000px;}
._d_c00324{width:33.225000px;}
._1f_c00324{width:38.322000px;}
._20_c00324{width:42.642000px;}
._1a_c00324{width:94.701000px;}
._1d_c00324{width:111.504000px;}
._1e_c00324{width:195.249000px;}
._2a_c00324{width:476.583000px;}
._5_c00324{width:500.961000px;}
._29_c00324{width:900.726000px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(128,128,128);}
.fc0_c00324{color:rgb(0,0,0);}
.fs3_c00324{font-size:48.000000px;}
.fs1_c00324{font-size:54.000000px;}
.fs2_c00324{font-size:66.000000px;}
.fs0_c00324{font-size:69.000000px;}
.y0_c00324{bottom:0.000000px;}
.y1e_c00324{bottom:3.105000px;}
.y1d_c00324{bottom:7.228371px;}
.y1c_c00324{bottom:74.265000px;}
.y1b_c00324{bottom:99.315000px;}
.y1a_c00324{bottom:124.965000px;}
.y19_c00324{bottom:149.265000px;}
.y18_c00324{bottom:172.515000px;}
.y17_c00324{bottom:198.915000px;}
.y16_c00324{bottom:223.215000px;}
.y15_c00324{bottom:248.715000px;}
.y14_c00324{bottom:272.415000px;}
.y13_c00324{bottom:298.365000px;}
.y12_c00324{bottom:322.965000px;}
.y11_c00324{bottom:347.265000px;}
.y10_c00324{bottom:370.365000px;}
.yf_c00324{bottom:395.865000px;}
.ye_c00324{bottom:421.215000px;}
.yd_c00324{bottom:445.815000px;}
.yc_c00324{bottom:470.565000px;}
.yb_c00324{bottom:495.165000px;}
.ya_c00324{bottom:519.465000px;}
.y9_c00324{bottom:543.765000px;}
.y8_c00324{bottom:568.365000px;}
.y7_c00324{bottom:593.415000px;}
.y6_c00324{bottom:617.265000px;}
.y5_c00324{bottom:670.665000px;}
.y4_c00324{bottom:695.265000px;}
.y3_c00324{bottom:744.915000px;}
.y2_c00324{bottom:772.215000px;}
.y1_c00324{bottom:794.115000px;}
.h7_c00324{height:13.200074px;}
.h8_c00324{height:43.804688px;}
.h5_c00324{height:67.686035px;}
.h3_c00324{height:68.370117px;}
.h2_c00324{height:69.539062px;}
.h6_c00324{height:80.758301px;}
.h4_c00324{height:87.361816px;}
.h1_c00324{height:831.000000px;}
.h0_c00324{height:831.075000px;}
.w2_c00324{width:104.875500px;}
.w0_c00324{width:582.375000px;}
.w1_c00324{width:582.750000px;}
.x0_c00324{left:0.000000px;}
.x8_c00324{left:42.900000px;}
.x9_c00324{left:43.950000px;}
.x7_c00324{left:45.600000px;}
.x5_c00324{left:47.250000px;}
.x6_c00324{left:71.250000px;}
.x4_c00324{left:72.300000px;}
.x3_c00324{left:91.200000px;}
.x1_c00324{left:205.200000px;}
.xa_c00324{left:243.001740px;}
.x2_c00324{left:423.600000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:3.733333pt;}
.ls2_c00324{letter-spacing:5.333333pt;}
.ws3_c00324{word-spacing:-20.114667pt;}
.ws2_c00324{word-spacing:-14.781333pt;}
.ws4_c00324{word-spacing:0.000000pt;}
.ws0_c00324{word-spacing:1.962667pt;}
.ws1_c00324{word-spacing:5.213333pt;}
._27_c00324{margin-left:-26.005333pt;}
._26_c00324{margin-left:-22.816000pt;}
._28_c00324{margin-left:-17.234667pt;}
._13_c00324{margin-left:-14.842667pt;}
._11_c00324{margin-left:-13.800000pt;}
._1b_c00324{margin-left:-11.408000pt;}
._12_c00324{margin-left:-9.690667pt;}
._1c_c00324{margin-left:-8.341333pt;}
._16_c00324{margin-left:-6.992000pt;}
._15_c00324{margin-left:-5.949333pt;}
._14_c00324{margin-left:-4.538667pt;}
._19_c00324{margin-left:-3.557333pt;}
._c_c00324{margin-left:-2.637333pt;}
._2_c00324{margin-left:-1.410667pt;}
._6_c00324{width:1.288000pt;}
._1_c00324{width:2.698667pt;}
._3_c00324{width:3.741333pt;}
._0_c00324{width:5.090667pt;}
._4_c00324{width:6.562667pt;}
._8_c00324{width:7.973333pt;}
._17_c00324{width:9.261333pt;}
._9_c00324{width:10.426667pt;}
._7_c00324{width:11.653333pt;}
._a_c00324{width:12.592000pt;}
._22_c00324{width:13.800000pt;}
._18_c00324{width:14.781333pt;}
._f_c00324{width:16.069333pt;}
._e_c00324{width:17.357333pt;}
._10_c00324{width:18.880000pt;}
._24_c00324{width:21.221333pt;}
._21_c00324{width:22.122667pt;}
._25_c00324{width:23.226667pt;}
._23_c00324{width:24.840000pt;}
._b_c00324{width:26.005333pt;}
._d_c00324{width:29.533333pt;}
._1f_c00324{width:34.064000pt;}
._20_c00324{width:37.904000pt;}
._1a_c00324{width:84.178667pt;}
._1d_c00324{width:99.114667pt;}
._1e_c00324{width:173.554667pt;}
._2a_c00324{width:423.629333pt;}
._5_c00324{width:445.298667pt;}
._29_c00324{width:800.645333pt;}
.fs3_c00324{font-size:42.666667pt;}
.fs1_c00324{font-size:48.000000pt;}
.fs2_c00324{font-size:58.666667pt;}
.fs0_c00324{font-size:61.333333pt;}
.y0_c00324{bottom:0.000000pt;}
.y1e_c00324{bottom:2.760000pt;}
.y1d_c00324{bottom:6.425219pt;}
.y1c_c00324{bottom:66.013333pt;}
.y1b_c00324{bottom:88.280000pt;}
.y1a_c00324{bottom:111.080000pt;}
.y19_c00324{bottom:132.680000pt;}
.y18_c00324{bottom:153.346667pt;}
.y17_c00324{bottom:176.813333pt;}
.y16_c00324{bottom:198.413333pt;}
.y15_c00324{bottom:221.080000pt;}
.y14_c00324{bottom:242.146667pt;}
.y13_c00324{bottom:265.213333pt;}
.y12_c00324{bottom:287.080000pt;}
.y11_c00324{bottom:308.680000pt;}
.y10_c00324{bottom:329.213333pt;}
.yf_c00324{bottom:351.880000pt;}
.ye_c00324{bottom:374.413333pt;}
.yd_c00324{bottom:396.280000pt;}
.yc_c00324{bottom:418.280000pt;}
.yb_c00324{bottom:440.146667pt;}
.ya_c00324{bottom:461.746667pt;}
.y9_c00324{bottom:483.346667pt;}
.y8_c00324{bottom:505.213333pt;}
.y7_c00324{bottom:527.480000pt;}
.y6_c00324{bottom:548.680000pt;}
.y5_c00324{bottom:596.146667pt;}
.y4_c00324{bottom:618.013333pt;}
.y3_c00324{bottom:662.146667pt;}
.y2_c00324{bottom:686.413333pt;}
.y1_c00324{bottom:705.880000pt;}
.h7_c00324{height:11.733399pt;}
.h8_c00324{height:38.937500pt;}
.h5_c00324{height:60.165365pt;}
.h3_c00324{height:60.773438pt;}
.h2_c00324{height:61.812500pt;}
.h6_c00324{height:71.785156pt;}
.h4_c00324{height:77.654948pt;}
.h1_c00324{height:738.666667pt;}
.h0_c00324{height:738.733333pt;}
.w2_c00324{width:93.222667pt;}
.w0_c00324{width:517.666667pt;}
.w1_c00324{width:518.000000pt;}
.x0_c00324{left:0.000000pt;}
.x8_c00324{left:38.133333pt;}
.x9_c00324{left:39.066667pt;}
.x7_c00324{left:40.533333pt;}
.x5_c00324{left:42.000000pt;}
.x6_c00324{left:63.333333pt;}
.x4_c00324{left:64.266667pt;}
.x3_c00324{left:81.066667pt;}
.x1_c00324{left:182.400000pt;}
.xa_c00324{left:216.001546pt;}
.x2_c00324{left:376.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_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_3b982abae6dcd0eac561ce19.woff2')format("woff");}.ff1_c00325{font-family:ff1_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:ff2_c00325;src:url('chunks/assets/font_6d9f57fc78f777ba5af15689.woff2')format("woff");}.ff2_c00325{font-family:ff2_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:ff3_c00325;src:url('chunks/assets/font_a6e0f5a97fd605904364ab5c.woff2')format("woff");}.ff3_c00325{font-family:ff3_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:ff4_c00325;src:url('chunks/assets/font_7528fb37141c78406547574b.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_8568a8cdfb8e943e5686fb97.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00325{font-family:ff6_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;}
.ls4_c00325{letter-spacing:0.000000px;}
.ls5_c00325{letter-spacing:3.000000px;}
.ls0_c00325{letter-spacing:4.413000px;}
.ls3_c00325{letter-spacing:6.000000px;}
.ls2_c00325{letter-spacing:27.750000px;}
.ls1_c00325{letter-spacing:37.350000px;}
.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;}
}
.ws2_c00325{word-spacing:-44.943000px;}
.ws3_c00325{word-spacing:-25.812000px;}
.ws1_c00325{word-spacing:-22.629000px;}
.ws0_c00325{word-spacing:-16.629000px;}
.ws4_c00325{word-spacing:-16.500000px;}
.ws5_c00325{word-spacing:0.000000px;}
._27_c00325{margin-left:-35.619000px;}
._1_c00325{margin-left:-32.637000px;}
._31_c00325{margin-left:-25.806000px;}
._1c_c00325{margin-left:-24.564000px;}
._30_c00325{margin-left:-20.424000px;}
._20_c00325{margin-left:-18.975000px;}
._2b_c00325{margin-left:-17.037000px;}
._4_c00325{margin-left:-15.387000px;}
._c_c00325{margin-left:-14.007000px;}
._a_c00325{margin-left:-12.075000px;}
._3_c00325{margin-left:-10.764000px;}
._32_c00325{margin-left:-9.660000px;}
._2_c00325{margin-left:-8.556000px;}
._24_c00325{margin-left:-7.548000px;}
._18_c00325{margin-left:-6.486000px;}
._b_c00325{margin-left:-5.382000px;}
._d_c00325{margin-left:-4.347000px;}
._10_c00325{margin-left:-3.036000px;}
._8_c00325{margin-left:-1.863000px;}
._0_c00325{width:1.173000px;}
._6_c00325{width:2.484000px;}
._7_c00325{width:3.657000px;}
._34_c00325{width:4.692000px;}
._11_c00325{width:5.934000px;}
._e_c00325{width:7.452000px;}
._f_c00325{width:8.556000px;}
._9_c00325{width:9.660000px;}
._13_c00325{width:10.833000px;}
._16_c00325{width:12.213000px;}
._17_c00325{width:13.317000px;}
._12_c00325{width:14.352000px;}
._1b_c00325{width:17.043000px;}
._26_c00325{width:18.561000px;}
._1f_c00325{width:19.872000px;}
._23_c00325{width:20.907000px;}
._35_c00325{width:27.048000px;}
._2a_c00325{width:31.410000px;}
._33_c00325{width:32.676000px;}
._14_c00325{width:35.427000px;}
._2c_c00325{width:36.930000px;}
._1a_c00325{width:38.709000px;}
._25_c00325{width:59.547000px;}
._1d_c00325{width:61.755000px;}
._21_c00325{width:85.905000px;}
._19_c00325{width:93.288000px;}
._28_c00325{width:109.677000px;}
._29_c00325{width:113.901000px;}
._22_c00325{width:132.687000px;}
._2f_c00325{width:181.665000px;}
._1e_c00325{width:271.929000px;}
._2d_c00325{width:285.642000px;}
._5_c00325{width:379.518000px;}
._15_c00325{width:549.516000px;}
._2e_c00325{width:785.451000px;}
._36_c00325{width:1575.201000px;}
.fc2_c00325{color:transparent;}
.fc1_c00325{color:rgb(128,128,128);}
.fc0_c00325{color:rgb(0,0,0);}
.fs1_c00325{font-size:45.000000px;}
.fs6_c00325{font-size:48.000000px;}
.fs4_c00325{font-size:51.000000px;}
.fs5_c00325{font-size:66.000000px;}
.fs0_c00325{font-size:69.000000px;}
.fs3_c00325{font-size:78.000000px;}
.fs2_c00325{font-size:93.000000px;}
.y0_c00325{bottom:0.000000px;}
.y1f_c00325{bottom:3.105000px;}
.y1e_c00325{bottom:7.228363px;}
.y1d_c00325{bottom:59.850000px;}
.y1c_c00325{bottom:89.100000px;}
.y1b_c00325{bottom:115.200000px;}
.y1a_c00325{bottom:139.500000px;}
.y19_c00325{bottom:164.700000px;}
.y18_c00325{bottom:188.700000px;}
.y17_c00325{bottom:214.050000px;}
.y16_c00325{bottom:239.250000px;}
.y15_c00325{bottom:264.000000px;}
.y14_c00325{bottom:289.200000px;}
.y13_c00325{bottom:313.650000px;}
.y12_c00325{bottom:337.500000px;}
.y11_c00325{bottom:363.150000px;}
.y10_c00325{bottom:387.900000px;}
.yf_c00325{bottom:408.750000px;}
.ye_c00325{bottom:437.100000px;}
.yd_c00325{bottom:486.750000px;}
.yc_c00325{bottom:512.100000px;}
.yb_c00325{bottom:536.700000px;}
.ya_c00325{bottom:561.300000px;}
.y9_c00325{bottom:586.950000px;}
.y8_c00325{bottom:610.950000px;}
.y7_c00325{bottom:635.850000px;}
.y6_c00325{bottom:660.600000px;}
.y5_c00325{bottom:686.250000px;}
.y4_c00325{bottom:709.800000px;}
.y3_c00325{bottom:733.500000px;}
.y2_c00325{bottom:759.150000px;}
.y1_c00325{bottom:784.350000px;}
.h5_c00325{height:13.200074px;}
.h6_c00325{height:43.804688px;}
.h4_c00325{height:64.571777px;}
.h2_c00325{height:87.361816px;}
.h3_c00325{height:108.848145px;}
.h1_c00325{height:827.250000px;}
.h0_c00325{height:827.550000px;}
.w2_c00325{width:104.875500px;}
.w0_c00325{width:572.100000px;}
.w1_c00325{width:572.250000px;}
.x0_c00325{left:0.000000px;}
.xe_c00325{left:45.600000px;}
.x5_c00325{left:46.950000px;}
.x3_c00325{left:61.800000px;}
.x6_c00325{left:65.250000px;}
.x4_c00325{left:66.600000px;}
.xc_c00325{left:70.200000px;}
.x8_c00325{left:88.500000px;}
.xd_c00325{left:107.400000px;}
.xb_c00325{left:108.450000px;}
.xf_c00325{left:110.100000px;}
.x7_c00325{left:112.050000px;}
.x2_c00325{left:113.100000px;}
.x10_c00325{left:122.850000px;}
.x1_c00325{left:123.900000px;}
.xa_c00325{left:134.700000px;}
.x11_c00325{left:237.864258px;}
.x9_c00325{left:261.000000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls4_c00325{letter-spacing:0.000000pt;}
.ls5_c00325{letter-spacing:2.666667pt;}
.ls0_c00325{letter-spacing:3.922667pt;}
.ls3_c00325{letter-spacing:5.333333pt;}
.ls2_c00325{letter-spacing:24.666667pt;}
.ls1_c00325{letter-spacing:33.200000pt;}
.ws2_c00325{word-spacing:-39.949333pt;}
.ws3_c00325{word-spacing:-22.944000pt;}
.ws1_c00325{word-spacing:-20.114667pt;}
.ws0_c00325{word-spacing:-14.781333pt;}
.ws4_c00325{word-spacing:-14.666667pt;}
.ws5_c00325{word-spacing:0.000000pt;}
._27_c00325{margin-left:-31.661333pt;}
._1_c00325{margin-left:-29.010667pt;}
._31_c00325{margin-left:-22.938667pt;}
._1c_c00325{margin-left:-21.834667pt;}
._30_c00325{margin-left:-18.154667pt;}
._20_c00325{margin-left:-16.866667pt;}
._2b_c00325{margin-left:-15.144000pt;}
._4_c00325{margin-left:-13.677333pt;}
._c_c00325{margin-left:-12.450667pt;}
._a_c00325{margin-left:-10.733333pt;}
._3_c00325{margin-left:-9.568000pt;}
._32_c00325{margin-left:-8.586667pt;}
._2_c00325{margin-left:-7.605333pt;}
._24_c00325{margin-left:-6.709333pt;}
._18_c00325{margin-left:-5.765333pt;}
._b_c00325{margin-left:-4.784000pt;}
._d_c00325{margin-left:-3.864000pt;}
._10_c00325{margin-left:-2.698667pt;}
._8_c00325{margin-left:-1.656000pt;}
._0_c00325{width:1.042667pt;}
._6_c00325{width:2.208000pt;}
._7_c00325{width:3.250667pt;}
._34_c00325{width:4.170667pt;}
._11_c00325{width:5.274667pt;}
._e_c00325{width:6.624000pt;}
._f_c00325{width:7.605333pt;}
._9_c00325{width:8.586667pt;}
._13_c00325{width:9.629333pt;}
._16_c00325{width:10.856000pt;}
._17_c00325{width:11.837333pt;}
._12_c00325{width:12.757333pt;}
._1b_c00325{width:15.149333pt;}
._26_c00325{width:16.498667pt;}
._1f_c00325{width:17.664000pt;}
._23_c00325{width:18.584000pt;}
._35_c00325{width:24.042667pt;}
._2a_c00325{width:27.920000pt;}
._33_c00325{width:29.045333pt;}
._14_c00325{width:31.490667pt;}
._2c_c00325{width:32.826667pt;}
._1a_c00325{width:34.408000pt;}
._25_c00325{width:52.930667pt;}
._1d_c00325{width:54.893333pt;}
._21_c00325{width:76.360000pt;}
._19_c00325{width:82.922667pt;}
._28_c00325{width:97.490667pt;}
._29_c00325{width:101.245333pt;}
._22_c00325{width:117.944000pt;}
._2f_c00325{width:161.480000pt;}
._1e_c00325{width:241.714667pt;}
._2d_c00325{width:253.904000pt;}
._5_c00325{width:337.349333pt;}
._15_c00325{width:488.458667pt;}
._2e_c00325{width:698.178667pt;}
._36_c00325{width:1400.178667pt;}
.fs1_c00325{font-size:40.000000pt;}
.fs6_c00325{font-size:42.666667pt;}
.fs4_c00325{font-size:45.333333pt;}
.fs5_c00325{font-size:58.666667pt;}
.fs0_c00325{font-size:61.333333pt;}
.fs3_c00325{font-size:69.333333pt;}
.fs2_c00325{font-size:82.666667pt;}
.y0_c00325{bottom:0.000000pt;}
.y1f_c00325{bottom:2.760000pt;}
.y1e_c00325{bottom:6.425212pt;}
.y1d_c00325{bottom:53.200000pt;}
.y1c_c00325{bottom:79.200000pt;}
.y1b_c00325{bottom:102.400000pt;}
.y1a_c00325{bottom:124.000000pt;}
.y19_c00325{bottom:146.400000pt;}
.y18_c00325{bottom:167.733333pt;}
.y17_c00325{bottom:190.266667pt;}
.y16_c00325{bottom:212.666667pt;}
.y15_c00325{bottom:234.666667pt;}
.y14_c00325{bottom:257.066667pt;}
.y13_c00325{bottom:278.800000pt;}
.y12_c00325{bottom:300.000000pt;}
.y11_c00325{bottom:322.800000pt;}
.y10_c00325{bottom:344.800000pt;}
.yf_c00325{bottom:363.333333pt;}
.ye_c00325{bottom:388.533333pt;}
.yd_c00325{bottom:432.666667pt;}
.yc_c00325{bottom:455.200000pt;}
.yb_c00325{bottom:477.066667pt;}
.ya_c00325{bottom:498.933333pt;}
.y9_c00325{bottom:521.733333pt;}
.y8_c00325{bottom:543.066667pt;}
.y7_c00325{bottom:565.200000pt;}
.y6_c00325{bottom:587.200000pt;}
.y5_c00325{bottom:610.000000pt;}
.y4_c00325{bottom:630.933333pt;}
.y3_c00325{bottom:652.000000pt;}
.y2_c00325{bottom:674.800000pt;}
.y1_c00325{bottom:697.200000pt;}
.h5_c00325{height:11.733399pt;}
.h6_c00325{height:38.937500pt;}
.h4_c00325{height:57.397135pt;}
.h2_c00325{height:77.654948pt;}
.h3_c00325{height:96.753906pt;}
.h1_c00325{height:735.333333pt;}
.h0_c00325{height:735.600000pt;}
.w2_c00325{width:93.222667pt;}
.w0_c00325{width:508.533333pt;}
.w1_c00325{width:508.666667pt;}
.x0_c00325{left:0.000000pt;}
.xe_c00325{left:40.533333pt;}
.x5_c00325{left:41.733333pt;}
.x3_c00325{left:54.933333pt;}
.x6_c00325{left:58.000000pt;}
.x4_c00325{left:59.200000pt;}
.xc_c00325{left:62.400000pt;}
.x8_c00325{left:78.666667pt;}
.xd_c00325{left:95.466667pt;}
.xb_c00325{left:96.400000pt;}
.xf_c00325{left:97.866667pt;}
.x7_c00325{left:99.600000pt;}
.x2_c00325{left:100.533333pt;}
.x10_c00325{left:109.200000pt;}
.x1_c00325{left:110.133333pt;}
.xa_c00325{left:119.733333pt;}
.x11_c00325{left:211.434896pt;}
.x9_c00325{left:232.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_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_c3ca1e73b72ca77be2e62182.woff2')format("woff");}.ff1_c00326{font-family:ff1_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:ff2_c00326;src:url('chunks/assets/font_45db47afcd98aab5ac1de110.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_2bf8c7d98a40fb5e241b8da6.woff2')format("woff");}.ff3_c00326{font-family:ff3_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:ff4_c00326;src:url('chunks/assets/font_6148760e9eb815e47d9d3382.woff2')format("woff");}.ff4_c00326{font-family:ff4_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:ff5_c00326;src:url('chunks/assets/font_f3510a80e3e65b5f2723324c.woff2')format("woff");}.ff5_c00326{font-family:ff5_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:ff6_c00326;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls6_c00326{letter-spacing:0.000000px;}
.ls3_c00326{letter-spacing:1.125000px;}
.ls4_c00326{letter-spacing:1.800000px;}
.ls7_c00326{letter-spacing:3.000000px;}
.ls2_c00326{letter-spacing:5.472000px;}
.ls0_c00326{letter-spacing:6.000000px;}
.ls1_c00326{letter-spacing:11.325000px;}
.ls5_c00326{letter-spacing:14.046000px;}
.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;}
}
.ws2_c00326{word-spacing:-56.235000px;}
.ws6_c00326{word-spacing:-39.120000px;}
.ws7_c00326{word-spacing:-31.296000px;}
.ws4_c00326{word-spacing:-22.629000px;}
.ws3_c00326{word-spacing:-16.629000px;}
.ws5_c00326{word-spacing:-0.465000px;}
.ws9_c00326{word-spacing:0.000000px;}
.ws1_c00326{word-spacing:0.138000px;}
.ws0_c00326{word-spacing:3.450000px;}
.ws8_c00326{word-spacing:6.624000px;}
._1e_c00326{margin-left:-16.260000px;}
._25_c00326{margin-left:-13.524000px;}
._1a_c00326{margin-left:-12.213000px;}
._12_c00326{margin-left:-10.056000px;}
._16_c00326{margin-left:-8.970000px;}
._7_c00326{margin-left:-7.038000px;}
._6_c00326{margin-left:-6.003000px;}
._a_c00326{margin-left:-4.416000px;}
._f_c00326{margin-left:-3.105000px;}
._3_c00326{margin-left:-2.070000px;}
._2_c00326{margin-left:-1.035000px;}
._0_c00326{width:1.242000px;}
._8_c00326{width:3.243000px;}
._9_c00326{width:5.244000px;}
._13_c00326{width:6.348000px;}
._14_c00326{width:7.383000px;}
._b_c00326{width:8.901000px;}
._5_c00326{width:9.936000px;}
._d_c00326{width:11.316000px;}
._1_c00326{width:12.834000px;}
._10_c00326{width:14.616000px;}
._29_c00326{width:15.663000px;}
._17_c00326{width:17.007000px;}
._19_c00326{width:18.492000px;}
._21_c00326{width:20.586000px;}
._23_c00326{width:23.892000px;}
._28_c00326{width:25.726200px;}
._24_c00326{width:28.203000px;}
._c_c00326{width:30.498000px;}
._11_c00326{width:31.947000px;}
._1c_c00326{width:33.585000px;}
._18_c00326{width:35.823000px;}
._22_c00326{width:37.065000px;}
._e_c00326{width:38.157000px;}
._27_c00326{width:88.929000px;}
._15_c00326{width:91.770000px;}
._1f_c00326{width:95.541000px;}
._1b_c00326{width:147.798000px;}
._26_c00326{width:165.186000px;}
._1d_c00326{width:228.765000px;}
._4_c00326{width:418.959000px;}
._20_c00326{width:566.145000px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(128,128,128);}
.fc0_c00326{color:rgb(0,0,0);}
.fs5_c00326{font-size:38.400000px;}
.fs4_c00326{font-size:48.000000px;}
.fs6_c00326{font-size:51.000000px;}
.fs2_c00326{font-size:55.200000px;}
.fs1_c00326{font-size:63.000000px;}
.fs3_c00326{font-size:66.000000px;}
.fs0_c00326{font-size:69.000000px;}
.y0_c00326{bottom:0.000000px;}
.y20_c00326{bottom:3.105000px;}
.y1f_c00326{bottom:7.228371px;}
.y1e_c00326{bottom:83.115000px;}
.y1d_c00326{bottom:104.715000px;}
.y1c_c00326{bottom:129.315000px;}
.y1b_c00326{bottom:155.265000px;}
.y1a_c00326{bottom:178.215000px;}
.y19_c00326{bottom:202.815000px;}
.y18_c00326{bottom:227.865000px;}
.y17_c00326{bottom:252.765000px;}
.y12_c00326{bottom:264.015000px;}
.y16_c00326{bottom:277.515000px;}
.y15_c00326{bottom:302.415000px;}
.y11_c00326{bottom:315.015000px;}
.y14_c00326{bottom:328.065000px;}
.y13_c00326{bottom:352.065000px;}
.y10_c00326{bottom:400.965000px;}
.yf_c00326{bottom:450.315000px;}
.ye_c00326{bottom:474.915000px;}
.yd_c00326{bottom:499.815000px;}
.yc_c00326{bottom:523.515000px;}
.yb_c00326{bottom:547.515000px;}
.ya_c00326{bottom:572.715000px;}
.y9_c00326{bottom:597.315000px;}
.y8_c00326{bottom:621.465000px;}
.y7_c00326{bottom:645.615000px;}
.y6_c00326{bottom:671.265000px;}
.y5_c00326{bottom:695.565000px;}
.y4_c00326{bottom:719.565000px;}
.y3_c00326{bottom:744.915000px;}
.y2_c00326{bottom:769.515000px;}
.y1_c00326{bottom:793.215000px;}
.h4_c00326{height:13.200074px;}
.h5_c00326{height:43.804688px;}
.h3_c00326{height:80.758301px;}
.h2_c00326{height:87.361816px;}
.h1_c00326{height:831.000000px;}
.h0_c00326{height:831.075000px;}
.w2_c00326{width:104.875500px;}
.w0_c00326{width:582.375000px;}
.w1_c00326{width:582.750000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:43.200000px;}
.x3_c00326{left:44.550000px;}
.x4_c00326{left:45.900000px;}
.x5_c00326{left:47.250000px;}
.xc_c00326{left:51.750000px;}
.xd_c00326{left:53.100000px;}
.x9_c00326{left:74.550000px;}
.xa_c00326{left:75.600000px;}
.x6_c00326{left:80.400000px;}
.xb_c00326{left:100.950000px;}
.x1_c00326{left:215.700000px;}
.xf_c00326{left:243.001740px;}
.xe_c00326{left:467.100000px;}
.x7_c00326{left:509.400000px;}
.x8_c00326{left:526.800000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls6_c00326{letter-spacing:0.000000pt;}
.ls3_c00326{letter-spacing:1.000000pt;}
.ls4_c00326{letter-spacing:1.600000pt;}
.ls7_c00326{letter-spacing:2.666667pt;}
.ls2_c00326{letter-spacing:4.864000pt;}
.ls0_c00326{letter-spacing:5.333333pt;}
.ls1_c00326{letter-spacing:10.066667pt;}
.ls5_c00326{letter-spacing:12.485333pt;}
.ws2_c00326{word-spacing:-49.986667pt;}
.ws6_c00326{word-spacing:-34.773333pt;}
.ws7_c00326{word-spacing:-27.818667pt;}
.ws4_c00326{word-spacing:-20.114667pt;}
.ws3_c00326{word-spacing:-14.781333pt;}
.ws5_c00326{word-spacing:-0.413333pt;}
.ws9_c00326{word-spacing:0.000000pt;}
.ws1_c00326{word-spacing:0.122667pt;}
.ws0_c00326{word-spacing:3.066667pt;}
.ws8_c00326{word-spacing:5.888000pt;}
._1e_c00326{margin-left:-14.453333pt;}
._25_c00326{margin-left:-12.021333pt;}
._1a_c00326{margin-left:-10.856000pt;}
._12_c00326{margin-left:-8.938667pt;}
._16_c00326{margin-left:-7.973333pt;}
._7_c00326{margin-left:-6.256000pt;}
._6_c00326{margin-left:-5.336000pt;}
._a_c00326{margin-left:-3.925333pt;}
._f_c00326{margin-left:-2.760000pt;}
._3_c00326{margin-left:-1.840000pt;}
._2_c00326{margin-left:-0.920000pt;}
._0_c00326{width:1.104000pt;}
._8_c00326{width:2.882667pt;}
._9_c00326{width:4.661333pt;}
._13_c00326{width:5.642667pt;}
._14_c00326{width:6.562667pt;}
._b_c00326{width:7.912000pt;}
._5_c00326{width:8.832000pt;}
._d_c00326{width:10.058667pt;}
._1_c00326{width:11.408000pt;}
._10_c00326{width:12.992000pt;}
._29_c00326{width:13.922667pt;}
._17_c00326{width:15.117333pt;}
._19_c00326{width:16.437333pt;}
._21_c00326{width:18.298667pt;}
._23_c00326{width:21.237333pt;}
._28_c00326{width:22.867733pt;}
._24_c00326{width:25.069333pt;}
._c_c00326{width:27.109333pt;}
._11_c00326{width:28.397333pt;}
._1c_c00326{width:29.853333pt;}
._18_c00326{width:31.842667pt;}
._22_c00326{width:32.946667pt;}
._e_c00326{width:33.917333pt;}
._27_c00326{width:79.048000pt;}
._15_c00326{width:81.573333pt;}
._1f_c00326{width:84.925333pt;}
._1b_c00326{width:131.376000pt;}
._26_c00326{width:146.832000pt;}
._1d_c00326{width:203.346667pt;}
._4_c00326{width:372.408000pt;}
._20_c00326{width:503.240000pt;}
.fs5_c00326{font-size:34.133333pt;}
.fs4_c00326{font-size:42.666667pt;}
.fs6_c00326{font-size:45.333333pt;}
.fs2_c00326{font-size:49.066667pt;}
.fs1_c00326{font-size:56.000000pt;}
.fs3_c00326{font-size:58.666667pt;}
.fs0_c00326{font-size:61.333333pt;}
.y0_c00326{bottom:0.000000pt;}
.y20_c00326{bottom:2.760000pt;}
.y1f_c00326{bottom:6.425219pt;}
.y1e_c00326{bottom:73.880000pt;}
.y1d_c00326{bottom:93.080000pt;}
.y1c_c00326{bottom:114.946667pt;}
.y1b_c00326{bottom:138.013333pt;}
.y1a_c00326{bottom:158.413333pt;}
.y19_c00326{bottom:180.280000pt;}
.y18_c00326{bottom:202.546667pt;}
.y17_c00326{bottom:224.680000pt;}
.y12_c00326{bottom:234.680000pt;}
.y16_c00326{bottom:246.680000pt;}
.y15_c00326{bottom:268.813333pt;}
.y11_c00326{bottom:280.013333pt;}
.y14_c00326{bottom:291.613333pt;}
.y13_c00326{bottom:312.946667pt;}
.y10_c00326{bottom:356.413333pt;}
.yf_c00326{bottom:400.280000pt;}
.ye_c00326{bottom:422.146667pt;}
.yd_c00326{bottom:444.280000pt;}
.yc_c00326{bottom:465.346667pt;}
.yb_c00326{bottom:486.680000pt;}
.ya_c00326{bottom:509.080000pt;}
.y9_c00326{bottom:530.946667pt;}
.y8_c00326{bottom:552.413333pt;}
.y7_c00326{bottom:573.880000pt;}
.y6_c00326{bottom:596.680000pt;}
.y5_c00326{bottom:618.280000pt;}
.y4_c00326{bottom:639.613333pt;}
.y3_c00326{bottom:662.146667pt;}
.y2_c00326{bottom:684.013333pt;}
.y1_c00326{bottom:705.080000pt;}
.h4_c00326{height:11.733399pt;}
.h5_c00326{height:38.937500pt;}
.h3_c00326{height:71.785156pt;}
.h2_c00326{height:77.654948pt;}
.h1_c00326{height:738.666667pt;}
.h0_c00326{height:738.733333pt;}
.w2_c00326{width:93.222667pt;}
.w0_c00326{width:517.666667pt;}
.w1_c00326{width:518.000000pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:38.400000pt;}
.x3_c00326{left:39.600000pt;}
.x4_c00326{left:40.800000pt;}
.x5_c00326{left:42.000000pt;}
.xc_c00326{left:46.000000pt;}
.xd_c00326{left:47.200000pt;}
.x9_c00326{left:66.266667pt;}
.xa_c00326{left:67.200000pt;}
.x6_c00326{left:71.466667pt;}
.xb_c00326{left:89.733333pt;}
.x1_c00326{left:191.733333pt;}
.xf_c00326{left:216.001546pt;}
.xe_c00326{left:415.200000pt;}
.x7_c00326{left:452.800000pt;}
.x8_c00326{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_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_c0cfe3e62fa74ec590cd852a.woff2')format("woff");}.ff1_c00327{font-family:ff1_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:ff2_c00327;src:url('chunks/assets/font_feb4f80b810b16e96adc79ff.woff2')format("woff");}.ff2_c00327{font-family:ff2_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:ff3_c00327;src:url('chunks/assets/font_6f2b58aa3164bb66fec87e99.woff2')format("woff");}.ff3_c00327{font-family:ff3_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:ff4_c00327;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00327{font-family:ff4_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:0.000000px;}
.ls0_c00327{letter-spacing:6.000000px;}
.ls2_c00327{letter-spacing:9.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;}
}
.ws5_c00327{word-spacing:-37.752000px;}
.ws0_c00327{word-spacing:-16.629000px;}
.ws6_c00327{word-spacing:0.000000px;}
.ws1_c00327{word-spacing:0.345000px;}
.ws2_c00327{word-spacing:1.863000px;}
.ws3_c00327{word-spacing:2.502000px;}
.ws4_c00327{word-spacing:12.825000px;}
._0_c00327{margin-left:-18.699000px;}
._1_c00327{margin-left:-16.974000px;}
._20_c00327{margin-left:-15.456000px;}
._1e_c00327{margin-left:-13.593000px;}
._23_c00327{margin-left:-10.893000px;}
._2_c00327{margin-left:-9.729000px;}
._1f_c00327{margin-left:-8.556000px;}
._3_c00327{margin-left:-7.521000px;}
._10_c00327{margin-left:-5.934000px;}
._21_c00327{margin-left:-4.899000px;}
._8_c00327{margin-left:-3.864000px;}
._5_c00327{margin-left:-1.863000px;}
._12_c00327{width:1.173000px;}
._7_c00327{width:2.346000px;}
._e_c00327{width:3.450000px;}
._14_c00327{width:5.175000px;}
._f_c00327{width:6.210000px;}
._6_c00327{width:7.659000px;}
._9_c00327{width:8.832000px;}
._17_c00327{width:10.005000px;}
._d_c00327{width:11.592000px;}
._15_c00327{width:12.627000px;}
._a_c00327{width:13.662000px;}
._b_c00327{width:15.042000px;}
._11_c00327{width:16.353000px;}
._1a_c00327{width:17.595000px;}
._18_c00327{width:18.768000px;}
._13_c00327{width:20.562000px;}
._1b_c00327{width:23.253000px;}
._16_c00327{width:26.496000px;}
._27_c00327{width:30.885000px;}
._25_c00327{width:32.394000px;}
._1c_c00327{width:34.107000px;}
._1d_c00327{width:35.418000px;}
._c_c00327{width:37.950000px;}
._19_c00327{width:89.562000px;}
._24_c00327{width:97.359000px;}
._26_c00327{width:238.947000px;}
._4_c00327{width:371.562000px;}
._22_c00327{width:375.438000px;}
.fc2_c00327{color:transparent;}
.fc1_c00327{color:rgb(128,128,128);}
.fc0_c00327{color:rgb(0,0,0);}
.fs3_c00327{font-size:48.000000px;}
.fs2_c00327{font-size:66.000000px;}
.fs0_c00327{font-size:69.000000px;}
.fs1_c00327{font-size:75.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1e_c00327{bottom:3.105000px;}
.y1d_c00327{bottom:7.228355px;}
.y1c_c00327{bottom:58.335000px;}
.y1b_c00327{bottom:84.285000px;}
.y1a_c00327{bottom:109.335000px;}
.y19_c00327{bottom:134.985000px;}
.y18_c00327{bottom:159.585000px;}
.y17_c00327{bottom:184.185000px;}
.y16_c00327{bottom:208.785000px;}
.y15_c00327{bottom:231.135000px;}
.y14_c00327{bottom:258.435000px;}
.y13_c00327{bottom:281.685000px;}
.y12_c00327{bottom:307.035000px;}
.y11_c00327{bottom:328.935000px;}
.y10_c00327{bottom:356.085000px;}
.yf_c00327{bottom:380.235000px;}
.ye_c00327{bottom:404.685000px;}
.yd_c00327{bottom:453.885000px;}
.yc_c00327{bottom:506.835000px;}
.yb_c00327{bottom:531.135000px;}
.ya_c00327{bottom:555.885000px;}
.y9_c00327{bottom:580.185000px;}
.y8_c00327{bottom:604.485000px;}
.y7_c00327{bottom:629.235000px;}
.y6_c00327{bottom:653.985000px;}
.y5_c00327{bottom:678.735000px;}
.y4_c00327{bottom:703.335000px;}
.y3_c00327{bottom:727.935000px;}
.y2_c00327{bottom:752.835000px;}
.y1_c00327{bottom:777.135000px;}
.h5_c00327{height:13.200074px;}
.h6_c00327{height:43.804688px;}
.h4_c00327{height:83.563477px;}
.h2_c00327{height:87.361816px;}
.h3_c00327{height:94.958496px;}
.h0_c00327{height:815.925000px;}
.h1_c00327{height:816.000000px;}
.w2_c00327{width:104.875500px;}
.w0_c00327{width:563.775000px;}
.w1_c00327{width:564.000000px;}
.x0_c00327{left:0.000000px;}
.x9_c00327{left:33.450000px;}
.xd_c00327{left:46.800000px;}
.x4_c00327{left:49.650000px;}
.xb_c00327{left:69.300000px;}
.xc_c00327{left:94.050000px;}
.xa_c00327{left:95.250000px;}
.x8_c00327{left:96.450000px;}
.x2_c00327{left:97.650000px;}
.x5_c00327{left:99.450000px;}
.x1_c00327{left:113.700000px;}
.x7_c00327{left:121.500000px;}
.x6_c00327{left:128.850000px;}
.x3_c00327{left:181.200000px;}
.xe_c00327{left:211.650000px;}
.x10_c00327{left:233.701767px;}
.xf_c00327{left:508.200000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls1_c00327{letter-spacing:0.000000pt;}
.ls0_c00327{letter-spacing:5.333333pt;}
.ls2_c00327{letter-spacing:8.000000pt;}
.ws5_c00327{word-spacing:-33.557333pt;}
.ws0_c00327{word-spacing:-14.781333pt;}
.ws6_c00327{word-spacing:0.000000pt;}
.ws1_c00327{word-spacing:0.306667pt;}
.ws2_c00327{word-spacing:1.656000pt;}
.ws3_c00327{word-spacing:2.224000pt;}
.ws4_c00327{word-spacing:11.400000pt;}
._0_c00327{margin-left:-16.621333pt;}
._1_c00327{margin-left:-15.088000pt;}
._20_c00327{margin-left:-13.738667pt;}
._1e_c00327{margin-left:-12.082667pt;}
._23_c00327{margin-left:-9.682667pt;}
._2_c00327{margin-left:-8.648000pt;}
._1f_c00327{margin-left:-7.605333pt;}
._3_c00327{margin-left:-6.685333pt;}
._10_c00327{margin-left:-5.274667pt;}
._21_c00327{margin-left:-4.354667pt;}
._8_c00327{margin-left:-3.434667pt;}
._5_c00327{margin-left:-1.656000pt;}
._12_c00327{width:1.042667pt;}
._7_c00327{width:2.085333pt;}
._e_c00327{width:3.066667pt;}
._14_c00327{width:4.600000pt;}
._f_c00327{width:5.520000pt;}
._6_c00327{width:6.808000pt;}
._9_c00327{width:7.850667pt;}
._17_c00327{width:8.893333pt;}
._d_c00327{width:10.304000pt;}
._15_c00327{width:11.224000pt;}
._a_c00327{width:12.144000pt;}
._b_c00327{width:13.370667pt;}
._11_c00327{width:14.536000pt;}
._1a_c00327{width:15.640000pt;}
._18_c00327{width:16.682667pt;}
._13_c00327{width:18.277333pt;}
._1b_c00327{width:20.669333pt;}
._16_c00327{width:23.552000pt;}
._27_c00327{width:27.453333pt;}
._25_c00327{width:28.794667pt;}
._1c_c00327{width:30.317333pt;}
._1d_c00327{width:31.482667pt;}
._c_c00327{width:33.733333pt;}
._19_c00327{width:79.610667pt;}
._24_c00327{width:86.541333pt;}
._26_c00327{width:212.397333pt;}
._4_c00327{width:330.277333pt;}
._22_c00327{width:333.722667pt;}
.fs3_c00327{font-size:42.666667pt;}
.fs2_c00327{font-size:58.666667pt;}
.fs0_c00327{font-size:61.333333pt;}
.fs1_c00327{font-size:66.666667pt;}
.y0_c00327{bottom:0.000000pt;}
.y1e_c00327{bottom:2.760000pt;}
.y1d_c00327{bottom:6.425204pt;}
.y1c_c00327{bottom:51.853333pt;}
.y1b_c00327{bottom:74.920000pt;}
.y1a_c00327{bottom:97.186667pt;}
.y19_c00327{bottom:119.986667pt;}
.y18_c00327{bottom:141.853333pt;}
.y17_c00327{bottom:163.720000pt;}
.y16_c00327{bottom:185.586667pt;}
.y15_c00327{bottom:205.453333pt;}
.y14_c00327{bottom:229.720000pt;}
.y13_c00327{bottom:250.386667pt;}
.y12_c00327{bottom:272.920000pt;}
.y11_c00327{bottom:292.386667pt;}
.y10_c00327{bottom:316.520000pt;}
.yf_c00327{bottom:337.986667pt;}
.ye_c00327{bottom:359.720000pt;}
.yd_c00327{bottom:403.453333pt;}
.yc_c00327{bottom:450.520000pt;}
.yb_c00327{bottom:472.120000pt;}
.ya_c00327{bottom:494.120000pt;}
.y9_c00327{bottom:515.720000pt;}
.y8_c00327{bottom:537.320000pt;}
.y7_c00327{bottom:559.320000pt;}
.y6_c00327{bottom:581.320000pt;}
.y5_c00327{bottom:603.320000pt;}
.y4_c00327{bottom:625.186667pt;}
.y3_c00327{bottom:647.053333pt;}
.y2_c00327{bottom:669.186667pt;}
.y1_c00327{bottom:690.786667pt;}
.h5_c00327{height:11.733399pt;}
.h6_c00327{height:38.937500pt;}
.h4_c00327{height:74.278646pt;}
.h2_c00327{height:77.654948pt;}
.h3_c00327{height:84.407552pt;}
.h0_c00327{height:725.266667pt;}
.h1_c00327{height:725.333333pt;}
.w2_c00327{width:93.222667pt;}
.w0_c00327{width:501.133333pt;}
.w1_c00327{width:501.333333pt;}
.x0_c00327{left:0.000000pt;}
.x9_c00327{left:29.733333pt;}
.xd_c00327{left:41.600000pt;}
.x4_c00327{left:44.133333pt;}
.xb_c00327{left:61.600000pt;}
.xc_c00327{left:83.600000pt;}
.xa_c00327{left:84.666667pt;}
.x8_c00327{left:85.733333pt;}
.x2_c00327{left:86.800000pt;}
.x5_c00327{left:88.400000pt;}
.x1_c00327{left:101.066667pt;}
.x7_c00327{left:108.000000pt;}
.x6_c00327{left:114.533333pt;}
.x3_c00327{left:161.066667pt;}
.xe_c00327{left:188.133333pt;}
.x10_c00327{left:207.734904pt;}
.xf_c00327{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_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_3e6b6f9790002f6c40a3a6ff.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.480469;font-style:normal;font-weight:normal;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_1ad81519e7c2b8df9dc3da28.woff2')format("woff");}.ff2_c00328{font-family:ff2_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:ff3_c00328;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00328{font-family:ff3_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;}
.ls5_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:5.160000px;}
.ls2_c00328{letter-spacing:6.000000px;}
.ls3_c00328{letter-spacing:13.125000px;}
.ls0_c00328{letter-spacing:14.325000px;}
.ls4_c00328{letter-spacing:15.525000px;}
.ls6_c00328{letter-spacing:51.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;}
}
.ws2_c00328{word-spacing:-67.629000px;}
.ws0_c00328{word-spacing:-16.629000px;}
.ws4_c00328{word-spacing:0.000000px;}
.ws1_c00328{word-spacing:0.759000px;}
.ws3_c00328{word-spacing:1.863000px;}
._12_c00328{margin-left:-26.703000px;}
._26_c00328{margin-left:-15.945000px;}
._1f_c00328{margin-left:-14.805000px;}
._9_c00328{margin-left:-13.248000px;}
._24_c00328{margin-left:-11.862000px;}
._a_c00328{margin-left:-9.708000px;}
._1e_c00328{margin-left:-8.034000px;}
._1a_c00328{margin-left:-6.525000px;}
._17_c00328{margin-left:-4.968000px;}
._b_c00328{margin-left:-3.657000px;}
._14_c00328{margin-left:-2.607000px;}
._6_c00328{margin-left:-1.602000px;}
._4_c00328{width:1.035000px;}
._5_c00328{width:2.760000px;}
._1_c00328{width:3.795000px;}
._13_c00328{width:5.271000px;}
._2_c00328{width:6.279000px;}
._0_c00328{width:8.142000px;}
._8_c00328{width:10.005000px;}
._3_c00328{width:11.178000px;}
._16_c00328{width:12.465000px;}
._18_c00328{width:13.884000px;}
._f_c00328{width:15.084000px;}
._1c_c00328{width:16.809000px;}
._e_c00328{width:18.147000px;}
._20_c00328{width:20.652000px;}
._22_c00328{width:22.839000px;}
._21_c00328{width:24.150000px;}
._10_c00328{width:25.440000px;}
._15_c00328{width:27.942000px;}
._11_c00328{width:29.187000px;}
._23_c00328{width:30.831000px;}
._1b_c00328{width:32.913000px;}
._25_c00328{width:34.200000px;}
._28_c00328{width:36.018000px;}
._27_c00328{width:48.477000px;}
._2a_c00328{width:67.383000px;}
._d_c00328{width:89.472000px;}
._29_c00328{width:116.886000px;}
._19_c00328{width:141.864000px;}
._c_c00328{width:207.633000px;}
._1d_c00328{width:303.849000px;}
._7_c00328{width:385.089000px;}
._2b_c00328{width:1403.991000px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(128,128,128);}
.fc0_c00328{color:rgb(0,0,0);}
.fs1_c00328{font-size:48.000000px;}
.fs0_c00328{font-size:69.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1c_c00328{bottom:3.105000px;}
.y1b_c00328{bottom:7.228371px;}
.y1a_c00328{bottom:81.465000px;}
.y19_c00328{bottom:103.665000px;}
.y18_c00328{bottom:128.265000px;}
.y17_c00328{bottom:153.315000px;}
.y16_c00328{bottom:177.915000px;}
.y15_c00328{bottom:203.565000px;}
.y14_c00328{bottom:228.165000px;}
.y13_c00328{bottom:252.915000px;}
.y12_c00328{bottom:301.815000px;}
.y11_c00328{bottom:352.665000px;}
.y10_c00328{bottom:375.315000px;}
.yf_c00328{bottom:400.665000px;}
.ye_c00328{bottom:449.565000px;}
.yd_c00328{bottom:499.815000px;}
.yc_c00328{bottom:522.465000px;}
.yb_c00328{bottom:546.765000px;}
.ya_c00328{bottom:571.065000px;}
.y9_c00328{bottom:595.665000px;}
.y8_c00328{bottom:619.665000px;}
.y7_c00328{bottom:643.965000px;}
.y6_c00328{bottom:669.615000px;}
.y5_c00328{bottom:693.915000px;}
.y4_c00328{bottom:718.215000px;}
.y3_c00328{bottom:742.965000px;}
.y2_c00328{bottom:767.565000px;}
.y1_c00328{bottom:791.565000px;}
.h4_c00328{height:13.200074px;}
.h5_c00328{height:43.804688px;}
.h3_c00328{height:80.758301px;}
.h2_c00328{height:87.361816px;}
.h1_c00328{height:831.000000px;}
.h0_c00328{height:831.075000px;}
.w2_c00328{width:104.875500px;}
.w0_c00328{width:582.375000px;}
.w1_c00328{width:582.750000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:43.650000px;}
.x3_c00328{left:45.000000px;}
.x8_c00328{left:46.800000px;}
.x7_c00328{left:70.800000px;}
.x6_c00328{left:78.000000px;}
.x5_c00328{left:82.650000px;}
.x4_c00328{left:178.500000px;}
.x1_c00328{left:215.100000px;}
.x9_c00328{left:243.001740px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls5_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:4.586667pt;}
.ls2_c00328{letter-spacing:5.333333pt;}
.ls3_c00328{letter-spacing:11.666667pt;}
.ls0_c00328{letter-spacing:12.733333pt;}
.ls4_c00328{letter-spacing:13.800000pt;}
.ls6_c00328{letter-spacing:45.333333pt;}
.ws2_c00328{word-spacing:-60.114667pt;}
.ws0_c00328{word-spacing:-14.781333pt;}
.ws4_c00328{word-spacing:0.000000pt;}
.ws1_c00328{word-spacing:0.674667pt;}
.ws3_c00328{word-spacing:1.656000pt;}
._12_c00328{margin-left:-23.736000pt;}
._26_c00328{margin-left:-14.173333pt;}
._1f_c00328{margin-left:-13.160000pt;}
._9_c00328{margin-left:-11.776000pt;}
._24_c00328{margin-left:-10.544000pt;}
._a_c00328{margin-left:-8.629333pt;}
._1e_c00328{margin-left:-7.141333pt;}
._1a_c00328{margin-left:-5.800000pt;}
._17_c00328{margin-left:-4.416000pt;}
._b_c00328{margin-left:-3.250667pt;}
._14_c00328{margin-left:-2.317333pt;}
._6_c00328{margin-left:-1.424000pt;}
._4_c00328{width:0.920000pt;}
._5_c00328{width:2.453333pt;}
._1_c00328{width:3.373333pt;}
._13_c00328{width:4.685333pt;}
._2_c00328{width:5.581333pt;}
._0_c00328{width:7.237333pt;}
._8_c00328{width:8.893333pt;}
._3_c00328{width:9.936000pt;}
._16_c00328{width:11.080000pt;}
._18_c00328{width:12.341333pt;}
._f_c00328{width:13.408000pt;}
._1c_c00328{width:14.941333pt;}
._e_c00328{width:16.130667pt;}
._20_c00328{width:18.357333pt;}
._22_c00328{width:20.301333pt;}
._21_c00328{width:21.466667pt;}
._10_c00328{width:22.613333pt;}
._15_c00328{width:24.837333pt;}
._11_c00328{width:25.944000pt;}
._23_c00328{width:27.405333pt;}
._1b_c00328{width:29.256000pt;}
._25_c00328{width:30.400000pt;}
._28_c00328{width:32.016000pt;}
._27_c00328{width:43.090667pt;}
._2a_c00328{width:59.896000pt;}
._d_c00328{width:79.530667pt;}
._29_c00328{width:103.898667pt;}
._19_c00328{width:126.101333pt;}
._c_c00328{width:184.562667pt;}
._1d_c00328{width:270.088000pt;}
._7_c00328{width:342.301333pt;}
._2b_c00328{width:1247.992000pt;}
.fs1_c00328{font-size:42.666667pt;}
.fs0_c00328{font-size:61.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y1c_c00328{bottom:2.760000pt;}
.y1b_c00328{bottom:6.425219pt;}
.y1a_c00328{bottom:72.413333pt;}
.y19_c00328{bottom:92.146667pt;}
.y18_c00328{bottom:114.013333pt;}
.y17_c00328{bottom:136.280000pt;}
.y16_c00328{bottom:158.146667pt;}
.y15_c00328{bottom:180.946667pt;}
.y14_c00328{bottom:202.813333pt;}
.y13_c00328{bottom:224.813333pt;}
.y12_c00328{bottom:268.280000pt;}
.y11_c00328{bottom:313.480000pt;}
.y10_c00328{bottom:333.613333pt;}
.yf_c00328{bottom:356.146667pt;}
.ye_c00328{bottom:399.613333pt;}
.yd_c00328{bottom:444.280000pt;}
.yc_c00328{bottom:464.413333pt;}
.yb_c00328{bottom:486.013333pt;}
.ya_c00328{bottom:507.613333pt;}
.y9_c00328{bottom:529.480000pt;}
.y8_c00328{bottom:550.813333pt;}
.y7_c00328{bottom:572.413333pt;}
.y6_c00328{bottom:595.213333pt;}
.y5_c00328{bottom:616.813333pt;}
.y4_c00328{bottom:638.413333pt;}
.y3_c00328{bottom:660.413333pt;}
.y2_c00328{bottom:682.280000pt;}
.y1_c00328{bottom:703.613333pt;}
.h4_c00328{height:11.733399pt;}
.h5_c00328{height:38.937500pt;}
.h3_c00328{height:71.785156pt;}
.h2_c00328{height:77.654948pt;}
.h1_c00328{height:738.666667pt;}
.h0_c00328{height:738.733333pt;}
.w2_c00328{width:93.222667pt;}
.w0_c00328{width:517.666667pt;}
.w1_c00328{width:518.000000pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:38.800000pt;}
.x3_c00328{left:40.000000pt;}
.x8_c00328{left:41.600000pt;}
.x7_c00328{left:62.933333pt;}
.x6_c00328{left:69.333333pt;}
.x5_c00328{left:73.466667pt;}
.x4_c00328{left:158.666667pt;}
.x1_c00328{left:191.200000pt;}
.x9_c00328{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59877b10048f093bd4aa9f8e.woff2')format("woff");}.ff1_c00329{font-family:ff1_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:ff2_c00329;src:url('chunks/assets/font_49c3808725cd883f72f5d663.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_06678107a3f411f0302d04e2.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.311035;font-style:normal;font-weight:normal;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_6a3fce9d8644a8e20ed3721d.woff2')format("woff");}.ff4_c00329{font-family:ff4_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:ff5_c00329;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00329{font-family:ff5_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;}
.ls4_c00329{letter-spacing:0.000000px;}
.ls3_c00329{letter-spacing:6.000000px;}
.ls2_c00329{letter-spacing:12.525000px;}
.ls1_c00329{letter-spacing:39.760800px;}
.ls0_c00329{letter-spacing:43.800000px;}
.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;}
}
.ws3_c00329{word-spacing:-56.235000px;}
.ws2_c00329{word-spacing:-22.629000px;}
.ws0_c00329{word-spacing:-16.629000px;}
.ws5_c00329{word-spacing:-0.897000px;}
.ws4_c00329{word-spacing:-0.552000px;}
.ws7_c00329{word-spacing:0.000000px;}
.ws1_c00329{word-spacing:1.155000px;}
.ws6_c00329{word-spacing:3.381000px;}
._19_c00329{margin-left:-19.467000px;}
._26_c00329{margin-left:-17.112000px;}
._8_c00329{margin-left:-15.870000px;}
._1f_c00329{margin-left:-13.179000px;}
._20_c00329{margin-left:-11.700000px;}
._18_c00329{margin-left:-10.449000px;}
._2e_c00329{margin-left:-9.246000px;}
._21_c00329{margin-left:-7.866000px;}
._3_c00329{margin-left:-6.762000px;}
._e_c00329{margin-left:-5.382000px;}
._4_c00329{margin-left:-3.795000px;}
._0_c00329{margin-left:-2.001000px;}
._1_c00329{width:1.311000px;}
._2_c00329{width:2.346000px;}
._f_c00329{width:3.588000px;}
._c_c00329{width:4.605000px;}
._b_c00329{width:6.021000px;}
._a_c00329{width:7.452000px;}
._10_c00329{width:8.940000px;}
._6_c00329{width:10.488000px;}
._5_c00329{width:12.351000px;}
._17_c00329{width:13.455000px;}
._11_c00329{width:14.775000px;}
._12_c00329{width:16.560000px;}
._23_c00329{width:18.561000px;}
._1d_c00329{width:20.799000px;}
._9_c00329{width:22.080000px;}
._14_c00329{width:24.702000px;}
._1c_c00329{width:25.893000px;}
._15_c00329{width:28.359000px;}
._1a_c00329{width:31.968000px;}
._30_c00329{width:33.771000px;}
._1b_c00329{width:35.838000px;}
._16_c00329{width:37.329000px;}
._27_c00329{width:40.632000px;}
._2c_c00329{width:43.392000px;}
._2d_c00329{width:46.644000px;}
._2b_c00329{width:50.517000px;}
._2f_c00329{width:98.532000px;}
._1e_c00329{width:102.033000px;}
._7_c00329{width:156.426000px;}
._24_c00329{width:172.185000px;}
._25_c00329{width:183.957000px;}
._29_c00329{width:195.684000px;}
._2a_c00329{width:258.957000px;}
._22_c00329{width:264.132000px;}
._d_c00329{width:309.741000px;}
._13_c00329{width:389.616000px;}
._28_c00329{width:633.765000px;}
.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:55.200000px;}
.fs1_c00329{font-size:66.000000px;}
.fs0_c00329{font-size:69.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1e_c00329{bottom:3.105000px;}
.y1d_c00329{bottom:7.228363px;}
.y1c_c00329{bottom:102.000000px;}
.y1b_c00329{bottom:126.300000px;}
.y1a_c00329{bottom:151.650000px;}
.y19_c00329{bottom:175.200000px;}
.y18_c00329{bottom:201.600000px;}
.y17_c00329{bottom:225.450000px;}
.y16_c00329{bottom:250.500000px;}
.y15_c00329{bottom:274.050000px;}
.y14_c00329{bottom:300.000000px;}
.y13_c00329{bottom:324.000000px;}
.y12_c00329{bottom:348.300000px;}
.y11_c00329{bottom:373.050000px;}
.y10_c00329{bottom:397.950000px;}
.yf_c00329{bottom:422.550000px;}
.ye_c00329{bottom:447.750000px;}
.yd_c00329{bottom:471.150000px;}
.yc_c00329{bottom:495.900000px;}
.yb_c00329{bottom:520.650000px;}
.ya_c00329{bottom:545.100000px;}
.y9_c00329{bottom:568.650000px;}
.y8_c00329{bottom:593.700000px;}
.y7_c00329{bottom:618.900000px;}
.y6_c00329{bottom:643.050000px;}
.y5_c00329{bottom:667.950000px;}
.y4_c00329{bottom:692.550000px;}
.y3_c00329{bottom:717.150000px;}
.y2_c00329{bottom:739.500000px;}
.y1_c00329{bottom:765.150000px;}
.h3_c00329{height:13.200074px;}
.h4_c00329{height:43.804688px;}
.h2_c00329{height:87.361816px;}
.h1_c00329{height:827.250000px;}
.h0_c00329{height:827.550000px;}
.w2_c00329{width:104.875500px;}
.w0_c00329{width:572.100000px;}
.w1_c00329{width:572.250000px;}
.x0_c00329{left:0.000000px;}
.x8_c00329{left:40.200000px;}
.x7_c00329{left:41.400000px;}
.xb_c00329{left:45.600000px;}
.xd_c00329{left:52.950000px;}
.x6_c00329{left:55.650000px;}
.x9_c00329{left:57.000000px;}
.x5_c00329{left:102.300000px;}
.xa_c00329{left:103.950000px;}
.x1_c00329{left:105.000000px;}
.x3_c00329{left:106.200000px;}
.x4_c00329{left:107.550000px;}
.xc_c00329{left:161.550000px;}
.xe_c00329{left:237.864258px;}
.x2_c00329{left:240.600000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls4_c00329{letter-spacing:0.000000pt;}
.ls3_c00329{letter-spacing:5.333333pt;}
.ls2_c00329{letter-spacing:11.133333pt;}
.ls1_c00329{letter-spacing:35.342933pt;}
.ls0_c00329{letter-spacing:38.933333pt;}
.ws3_c00329{word-spacing:-49.986667pt;}
.ws2_c00329{word-spacing:-20.114667pt;}
.ws0_c00329{word-spacing:-14.781333pt;}
.ws5_c00329{word-spacing:-0.797333pt;}
.ws4_c00329{word-spacing:-0.490667pt;}
.ws7_c00329{word-spacing:0.000000pt;}
.ws1_c00329{word-spacing:1.026667pt;}
.ws6_c00329{word-spacing:3.005333pt;}
._19_c00329{margin-left:-17.304000pt;}
._26_c00329{margin-left:-15.210667pt;}
._8_c00329{margin-left:-14.106667pt;}
._1f_c00329{margin-left:-11.714667pt;}
._20_c00329{margin-left:-10.400000pt;}
._18_c00329{margin-left:-9.288000pt;}
._2e_c00329{margin-left:-8.218667pt;}
._21_c00329{margin-left:-6.992000pt;}
._3_c00329{margin-left:-6.010667pt;}
._e_c00329{margin-left:-4.784000pt;}
._4_c00329{margin-left:-3.373333pt;}
._0_c00329{margin-left:-1.778667pt;}
._1_c00329{width:1.165333pt;}
._2_c00329{width:2.085333pt;}
._f_c00329{width:3.189333pt;}
._c_c00329{width:4.093333pt;}
._b_c00329{width:5.352000pt;}
._a_c00329{width:6.624000pt;}
._10_c00329{width:7.946667pt;}
._6_c00329{width:9.322667pt;}
._5_c00329{width:10.978667pt;}
._17_c00329{width:11.960000pt;}
._11_c00329{width:13.133333pt;}
._12_c00329{width:14.720000pt;}
._23_c00329{width:16.498667pt;}
._1d_c00329{width:18.488000pt;}
._9_c00329{width:19.626667pt;}
._14_c00329{width:21.957333pt;}
._1c_c00329{width:23.016000pt;}
._15_c00329{width:25.208000pt;}
._1a_c00329{width:28.416000pt;}
._30_c00329{width:30.018667pt;}
._1b_c00329{width:31.856000pt;}
._16_c00329{width:33.181333pt;}
._27_c00329{width:36.117333pt;}
._2c_c00329{width:38.570667pt;}
._2d_c00329{width:41.461333pt;}
._2b_c00329{width:44.904000pt;}
._2f_c00329{width:87.584000pt;}
._1e_c00329{width:90.696000pt;}
._7_c00329{width:139.045333pt;}
._24_c00329{width:153.053333pt;}
._25_c00329{width:163.517333pt;}
._29_c00329{width:173.941333pt;}
._2a_c00329{width:230.184000pt;}
._22_c00329{width:234.784000pt;}
._d_c00329{width:275.325333pt;}
._13_c00329{width:346.325333pt;}
._28_c00329{width:563.346667pt;}
.fs3_c00329{font-size:42.666667pt;}
.fs2_c00329{font-size:49.066667pt;}
.fs1_c00329{font-size:58.666667pt;}
.fs0_c00329{font-size:61.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y1e_c00329{bottom:2.760000pt;}
.y1d_c00329{bottom:6.425212pt;}
.y1c_c00329{bottom:90.666667pt;}
.y1b_c00329{bottom:112.266667pt;}
.y1a_c00329{bottom:134.800000pt;}
.y19_c00329{bottom:155.733333pt;}
.y18_c00329{bottom:179.200000pt;}
.y17_c00329{bottom:200.400000pt;}
.y16_c00329{bottom:222.666667pt;}
.y15_c00329{bottom:243.600000pt;}
.y14_c00329{bottom:266.666667pt;}
.y13_c00329{bottom:288.000000pt;}
.y12_c00329{bottom:309.600000pt;}
.y11_c00329{bottom:331.600000pt;}
.y10_c00329{bottom:353.733333pt;}
.yf_c00329{bottom:375.600000pt;}
.ye_c00329{bottom:398.000000pt;}
.yd_c00329{bottom:418.800000pt;}
.yc_c00329{bottom:440.800000pt;}
.yb_c00329{bottom:462.800000pt;}
.ya_c00329{bottom:484.533333pt;}
.y9_c00329{bottom:505.466667pt;}
.y8_c00329{bottom:527.733333pt;}
.y7_c00329{bottom:550.133333pt;}
.y6_c00329{bottom:571.600000pt;}
.y5_c00329{bottom:593.733333pt;}
.y4_c00329{bottom:615.600000pt;}
.y3_c00329{bottom:637.466667pt;}
.y2_c00329{bottom:657.333333pt;}
.y1_c00329{bottom:680.133333pt;}
.h3_c00329{height:11.733399pt;}
.h4_c00329{height:38.937500pt;}
.h2_c00329{height:77.654948pt;}
.h1_c00329{height:735.333333pt;}
.h0_c00329{height:735.600000pt;}
.w2_c00329{width:93.222667pt;}
.w0_c00329{width:508.533333pt;}
.w1_c00329{width:508.666667pt;}
.x0_c00329{left:0.000000pt;}
.x8_c00329{left:35.733333pt;}
.x7_c00329{left:36.800000pt;}
.xb_c00329{left:40.533333pt;}
.xd_c00329{left:47.066667pt;}
.x6_c00329{left:49.466667pt;}
.x9_c00329{left:50.666667pt;}
.x5_c00329{left:90.933333pt;}
.xa_c00329{left:92.400000pt;}
.x1_c00329{left:93.333333pt;}
.x3_c00329{left:94.400000pt;}
.x4_c00329{left:95.600000pt;}
.xc_c00329{left:143.600000pt;}
.xe_c00329{left:211.434896pt;}
.x2_c00329{left:213.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_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_197cccd4f57c013c651b0637.woff2')format("woff");}.ff1_c00330{font-family:ff1_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:ff2_c00330;src:url('chunks/assets/font_e7cdaef927458de7456c8655.woff2')format("woff");}.ff2_c00330{font-family:ff2_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:ff3_c00330;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00330{font-family:ff3_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:ff4_c00330;src:url('chunks/assets/font_79b7b23df26e75a9e237e4fb.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00330{font-family:ff5_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;}
.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:0.000000px;}
.ls2_c00330{letter-spacing:0.206400px;}
.ls1_c00330{letter-spacing:3.102000px;}
.ls4_c00330{letter-spacing:6.000000px;}
.ls0_c00330{letter-spacing:9.300000px;}
.ls5_c00330{letter-spacing:51.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:-67.629000px;}
.ws3_c00330{word-spacing:-51.126000px;}
.ws1_c00330{word-spacing:-16.629000px;}
.ws4_c00330{word-spacing:0.000000px;}
.ws2_c00330{word-spacing:3.933000px;}
._1a_c00330{margin-left:-22.149000px;}
._1b_c00330{margin-left:-20.841000px;}
._19_c00330{margin-left:-19.389000px;}
._d_c00330{margin-left:-16.791000px;}
._26_c00330{margin-left:-15.663000px;}
._18_c00330{margin-left:-13.800000px;}
._14_c00330{margin-left:-11.661000px;}
._13_c00330{margin-left:-9.657000px;}
._11_c00330{margin-left:-8.613000px;}
._3_c00330{margin-left:-6.969000px;}
._2_c00330{margin-left:-5.520000px;}
._a_c00330{margin-left:-3.792000px;}
._4_c00330{margin-left:-2.553000px;}
._9_c00330{margin-left:-1.020000px;}
._6_c00330{width:1.242000px;}
._1_c00330{width:2.898000px;}
._8_c00330{width:4.071000px;}
._0_c00330{width:6.003000px;}
._15_c00330{width:7.623000px;}
._e_c00330{width:8.970000px;}
._16_c00330{width:10.095000px;}
._10_c00330{width:11.658000px;}
._12_c00330{width:12.777000px;}
._c_c00330{width:14.130000px;}
._f_c00330{width:16.206000px;}
._b_c00330{width:17.796000px;}
._22_c00330{width:18.858000px;}
._1f_c00330{width:20.115000px;}
._7_c00330{width:21.528000px;}
._20_c00330{width:23.280000px;}
._17_c00330{width:27.804000px;}
._27_c00330{width:34.755000px;}
._21_c00330{width:36.777000px;}
._1d_c00330{width:37.821000px;}
._1e_c00330{width:40.503000px;}
._29_c00330{width:58.128000px;}
._23_c00330{width:63.525000px;}
._28_c00330{width:101.304000px;}
._1c_c00330{width:111.909000px;}
._2a_c00330{width:133.995000px;}
._25_c00330{width:141.912000px;}
._24_c00330{width:391.917000px;}
._2b_c00330{width:424.836000px;}
._5_c00330{width:509.214000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(128,128,128);}
.fc0_c00330{color:rgb(0,0,0);}
.fs3_c00330{font-size:48.000000px;}
.fs2_c00330{font-size:55.200000px;}
.fs1_c00330{font-size:66.000000px;}
.fs0_c00330{font-size:69.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1c_c00330{bottom:3.105000px;}
.y1b_c00330{bottom:7.228371px;}
.y1a_c00330{bottom:73.365000px;}
.y19_c00330{bottom:97.965000px;}
.y18_c00330{bottom:123.315000px;}
.y17_c00330{bottom:147.615000px;}
.y16_c00330{bottom:172.515000px;}
.y15_c00330{bottom:197.415000px;}
.y14_c00330{bottom:222.765000px;}
.y13_c00330{bottom:248.115000px;}
.y12_c00330{bottom:272.715000px;}
.y11_c00330{bottom:298.065000px;}
.y10_c00330{bottom:323.415000px;}
.yf_c00330{bottom:347.715000px;}
.ye_c00330{bottom:397.215000px;}
.yd_c00330{bottom:447.315000px;}
.yc_c00330{bottom:472.215000px;}
.yb_c00330{bottom:496.815000px;}
.ya_c00330{bottom:521.415000px;}
.y9_c00330{bottom:545.415000px;}
.y8_c00330{bottom:570.465000px;}
.y7_c00330{bottom:595.365000px;}
.y6_c00330{bottom:619.665000px;}
.y5_c00330{bottom:645.015000px;}
.y4_c00330{bottom:695.265000px;}
.y3_c00330{bottom:744.165000px;}
.y2_c00330{bottom:768.915000px;}
.y1_c00330{bottom:794.115000px;}
.h4_c00330{height:13.200074px;}
.h5_c00330{height:43.804688px;}
.h3_c00330{height:80.758301px;}
.h2_c00330{height:87.361816px;}
.h1_c00330{height:831.000000px;}
.h0_c00330{height:831.075000px;}
.w2_c00330{width:104.875500px;}
.w0_c00330{width:582.375000px;}
.w1_c00330{width:582.750000px;}
.x0_c00330{left:0.000000px;}
.x8_c00330{left:35.400000px;}
.x6_c00330{left:36.900000px;}
.x7_c00330{left:39.150000px;}
.x2_c00330{left:41.550000px;}
.x5_c00330{left:42.900000px;}
.xb_c00330{left:50.400000px;}
.xa_c00330{left:61.200000px;}
.x9_c00330{left:68.850000px;}
.x4_c00330{left:72.900000px;}
.x3_c00330{left:174.450000px;}
.x1_c00330{left:203.400000px;}
.xd_c00330{left:243.001740px;}
.xc_c00330{left:304.050000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls3_c00330{letter-spacing:0.000000pt;}
.ls2_c00330{letter-spacing:0.183467pt;}
.ls1_c00330{letter-spacing:2.757333pt;}
.ls4_c00330{letter-spacing:5.333333pt;}
.ls0_c00330{letter-spacing:8.266667pt;}
.ls5_c00330{letter-spacing:45.333333pt;}
.ws0_c00330{word-spacing:-60.114667pt;}
.ws3_c00330{word-spacing:-45.445333pt;}
.ws1_c00330{word-spacing:-14.781333pt;}
.ws4_c00330{word-spacing:0.000000pt;}
.ws2_c00330{word-spacing:3.496000pt;}
._1a_c00330{margin-left:-19.688000pt;}
._1b_c00330{margin-left:-18.525333pt;}
._19_c00330{margin-left:-17.234667pt;}
._d_c00330{margin-left:-14.925333pt;}
._26_c00330{margin-left:-13.922667pt;}
._18_c00330{margin-left:-12.266667pt;}
._14_c00330{margin-left:-10.365333pt;}
._13_c00330{margin-left:-8.584000pt;}
._11_c00330{margin-left:-7.656000pt;}
._3_c00330{margin-left:-6.194667pt;}
._2_c00330{margin-left:-4.906667pt;}
._a_c00330{margin-left:-3.370667pt;}
._4_c00330{margin-left:-2.269333pt;}
._9_c00330{margin-left:-0.906667pt;}
._6_c00330{width:1.104000pt;}
._1_c00330{width:2.576000pt;}
._8_c00330{width:3.618667pt;}
._0_c00330{width:5.336000pt;}
._15_c00330{width:6.776000pt;}
._e_c00330{width:7.973333pt;}
._16_c00330{width:8.973333pt;}
._10_c00330{width:10.362667pt;}
._12_c00330{width:11.357333pt;}
._c_c00330{width:12.560000pt;}
._f_c00330{width:14.405333pt;}
._b_c00330{width:15.818667pt;}
._22_c00330{width:16.762667pt;}
._1f_c00330{width:17.880000pt;}
._7_c00330{width:19.136000pt;}
._20_c00330{width:20.693333pt;}
._17_c00330{width:24.714667pt;}
._27_c00330{width:30.893333pt;}
._21_c00330{width:32.690667pt;}
._1d_c00330{width:33.618667pt;}
._1e_c00330{width:36.002667pt;}
._29_c00330{width:51.669333pt;}
._23_c00330{width:56.466667pt;}
._28_c00330{width:90.048000pt;}
._1c_c00330{width:99.474667pt;}
._2a_c00330{width:119.106667pt;}
._25_c00330{width:126.144000pt;}
._24_c00330{width:348.370667pt;}
._2b_c00330{width:377.632000pt;}
._5_c00330{width:452.634667pt;}
.fs3_c00330{font-size:42.666667pt;}
.fs2_c00330{font-size:49.066667pt;}
.fs1_c00330{font-size:58.666667pt;}
.fs0_c00330{font-size:61.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y1c_c00330{bottom:2.760000pt;}
.y1b_c00330{bottom:6.425219pt;}
.y1a_c00330{bottom:65.213333pt;}
.y19_c00330{bottom:87.080000pt;}
.y18_c00330{bottom:109.613333pt;}
.y17_c00330{bottom:131.213333pt;}
.y16_c00330{bottom:153.346667pt;}
.y15_c00330{bottom:175.480000pt;}
.y14_c00330{bottom:198.013333pt;}
.y13_c00330{bottom:220.546667pt;}
.y12_c00330{bottom:242.413333pt;}
.y11_c00330{bottom:264.946667pt;}
.y10_c00330{bottom:287.480000pt;}
.yf_c00330{bottom:309.080000pt;}
.ye_c00330{bottom:353.080000pt;}
.yd_c00330{bottom:397.613333pt;}
.yc_c00330{bottom:419.746667pt;}
.yb_c00330{bottom:441.613333pt;}
.ya_c00330{bottom:463.480000pt;}
.y9_c00330{bottom:484.813333pt;}
.y8_c00330{bottom:507.080000pt;}
.y7_c00330{bottom:529.213333pt;}
.y6_c00330{bottom:550.813333pt;}
.y5_c00330{bottom:573.346667pt;}
.y4_c00330{bottom:618.013333pt;}
.y3_c00330{bottom:661.480000pt;}
.y2_c00330{bottom:683.480000pt;}
.y1_c00330{bottom:705.880000pt;}
.h4_c00330{height:11.733399pt;}
.h5_c00330{height:38.937500pt;}
.h3_c00330{height:71.785156pt;}
.h2_c00330{height:77.654948pt;}
.h1_c00330{height:738.666667pt;}
.h0_c00330{height:738.733333pt;}
.w2_c00330{width:93.222667pt;}
.w0_c00330{width:517.666667pt;}
.w1_c00330{width:518.000000pt;}
.x0_c00330{left:0.000000pt;}
.x8_c00330{left:31.466667pt;}
.x6_c00330{left:32.800000pt;}
.x7_c00330{left:34.800000pt;}
.x2_c00330{left:36.933333pt;}
.x5_c00330{left:38.133333pt;}
.xb_c00330{left:44.800000pt;}
.xa_c00330{left:54.400000pt;}
.x9_c00330{left:61.200000pt;}
.x4_c00330{left:64.800000pt;}
.x3_c00330{left:155.066667pt;}
.x1_c00330{left:180.800000pt;}
.xd_c00330{left:216.001546pt;}
.xc_c00330{left:270.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_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_86af04a83b41472cf423dca4.woff2')format("woff");}.ff1_c00331{font-family:ff1_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:ff2_c00331;src:url('chunks/assets/font_8081646b597791bb0e3afd18.woff2')format("woff");}.ff2_c00331{font-family:ff2_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:ff3_c00331;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_dfe8bf89edf687815d5e8e2b.woff2')format("woff");}.ff4_c00331{font-family:ff4_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:ff5_c00331;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00331{font-family:ff5_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;}
.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;}
.ls6_c00331{letter-spacing:0.000000px;}
.ls2_c00331{letter-spacing:6.000000px;}
.ls4_c00331{letter-spacing:7.872000px;}
.ls5_c00331{letter-spacing:12.000000px;}
.ls0_c00331{letter-spacing:20.400000px;}
.ls1_c00331{letter-spacing:30.525000px;}
.ls3_c00331{letter-spacing:44.691000px;}
.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;}
}
.ws3_c00331{word-spacing:-44.988000px;}
.ws0_c00331{word-spacing:-22.629000px;}
.ws1_c00331{word-spacing:-16.629000px;}
.ws2_c00331{word-spacing:-0.069000px;}
.ws5_c00331{word-spacing:0.000000px;}
.ws4_c00331{word-spacing:6.693000px;}
._1e_c00331{margin-left:-14.007000px;}
._1_c00331{margin-left:-11.937000px;}
._11_c00331{margin-left:-10.695000px;}
._0_c00331{margin-left:-9.660000px;}
._12_c00331{margin-left:-7.797000px;}
._9_c00331{margin-left:-6.417000px;}
._6_c00331{margin-left:-5.175000px;}
._1b_c00331{margin-left:-4.140000px;}
._8_c00331{margin-left:-3.105000px;}
._4_c00331{margin-left:-1.587000px;}
._2_c00331{width:1.380000px;}
._a_c00331{width:2.484000px;}
._7_c00331{width:4.416000px;}
._5_c00331{width:6.210000px;}
._f_c00331{width:7.728000px;}
._1a_c00331{width:8.832000px;}
._b_c00331{width:10.143000px;}
._c_c00331{width:11.178000px;}
._17_c00331{width:12.627000px;}
._18_c00331{width:14.076000px;}
._21_c00331{width:15.558000px;}
._e_c00331{width:16.560000px;}
._10_c00331{width:18.009000px;}
._14_c00331{width:19.389000px;}
._16_c00331{width:20.424000px;}
._15_c00331{width:21.459000px;}
._20_c00331{width:22.908000px;}
._19_c00331{width:25.116000px;}
._d_c00331{width:27.669000px;}
._1f_c00331{width:30.624000px;}
._13_c00331{width:33.879000px;}
._25_c00331{width:55.614000px;}
._24_c00331{width:65.343000px;}
._1c_c00331{width:93.426000px;}
._23_c00331{width:97.798200px;}
._22_c00331{width:194.235000px;}
._1d_c00331{width:265.200000px;}
._3_c00331{width:370.047000px;}
._26_c00331{width:1116.990000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(128,128,128);}
.fc0_c00331{color:rgb(0,0,0);}
.fs4_c00331{font-size:48.000000px;}
.fs3_c00331{font-size:55.200000px;}
.fs2_c00331{font-size:66.000000px;}
.fs0_c00331{font-size:69.000000px;}
.fs1_c00331{font-size:78.000000px;}
.y0_c00331{bottom:0.000000px;}
.y21_c00331{bottom:3.105000px;}
.y20_c00331{bottom:7.228363px;}
.y1f_c00331{bottom:65.100000px;}
.y1e_c00331{bottom:89.700000px;}
.y1d_c00331{bottom:115.200000px;}
.y1c_c00331{bottom:140.700000px;}
.y1b_c00331{bottom:165.450000px;}
.y1a_c00331{bottom:190.800000px;}
.y19_c00331{bottom:215.700000px;}
.y18_c00331{bottom:240.600000px;}
.y17_c00331{bottom:265.650000px;}
.y16_c00331{bottom:291.300000px;}
.y15_c00331{bottom:315.900000px;}
.y14_c00331{bottom:340.500000px;}
.y13_c00331{bottom:364.800000px;}
.y12_c00331{bottom:389.550000px;}
.y11_c00331{bottom:414.150000px;}
.y10_c00331{bottom:440.100000px;}
.yf_c00331{bottom:465.450000px;}
.ye_c00331{bottom:490.650000px;}
.yd_c00331{bottom:515.400000px;}
.yc_c00331{bottom:540.000000px;}
.yb_c00331{bottom:564.900000px;}
.ya_c00331{bottom:589.650000px;}
.y9_c00331{bottom:614.850000px;}
.y8_c00331{bottom:639.600000px;}
.y7_c00331{bottom:664.500000px;}
.y6_c00331{bottom:689.250000px;}
.y1_c00331{bottom:703.650000px;}
.y5_c00331{bottom:713.850000px;}
.y4_c00331{bottom:738.750000px;}
.y3_c00331{bottom:763.800000px;}
.y2_c00331{bottom:789.000000px;}
.h5_c00331{height:13.200074px;}
.h6_c00331{height:43.804688px;}
.h4_c00331{height:80.758301px;}
.h2_c00331{height:87.361816px;}
.h3_c00331{height:98.756836px;}
.h1_c00331{height:827.250000px;}
.h0_c00331{height:827.550000px;}
.w2_c00331{width:104.875500px;}
.w0_c00331{width:572.100000px;}
.w1_c00331{width:572.250000px;}
.x0_c00331{left:0.000000px;}
.x7_c00331{left:26.550000px;}
.x5_c00331{left:29.400000px;}
.x6_c00331{left:44.250000px;}
.x1_c00331{left:49.500000px;}
.xa_c00331{left:67.800000px;}
.xb_c00331{left:90.450000px;}
.x8_c00331{left:91.800000px;}
.x4_c00331{left:92.850000px;}
.x3_c00331{left:94.500000px;}
.x2_c00331{left:107.550000px;}
.x9_c00331{left:117.150000px;}
.xc_c00331{left:237.864258px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.ls2_c00331{letter-spacing:5.333333pt;}
.ls4_c00331{letter-spacing:6.997333pt;}
.ls5_c00331{letter-spacing:10.666667pt;}
.ls0_c00331{letter-spacing:18.133333pt;}
.ls1_c00331{letter-spacing:27.133333pt;}
.ls3_c00331{letter-spacing:39.725333pt;}
.ws3_c00331{word-spacing:-39.989333pt;}
.ws0_c00331{word-spacing:-20.114667pt;}
.ws1_c00331{word-spacing:-14.781333pt;}
.ws2_c00331{word-spacing:-0.061333pt;}
.ws5_c00331{word-spacing:0.000000pt;}
.ws4_c00331{word-spacing:5.949333pt;}
._1e_c00331{margin-left:-12.450667pt;}
._1_c00331{margin-left:-10.610667pt;}
._11_c00331{margin-left:-9.506667pt;}
._0_c00331{margin-left:-8.586667pt;}
._12_c00331{margin-left:-6.930667pt;}
._9_c00331{margin-left:-5.704000pt;}
._6_c00331{margin-left:-4.600000pt;}
._1b_c00331{margin-left:-3.680000pt;}
._8_c00331{margin-left:-2.760000pt;}
._4_c00331{margin-left:-1.410667pt;}
._2_c00331{width:1.226667pt;}
._a_c00331{width:2.208000pt;}
._7_c00331{width:3.925333pt;}
._5_c00331{width:5.520000pt;}
._f_c00331{width:6.869333pt;}
._1a_c00331{width:7.850667pt;}
._b_c00331{width:9.016000pt;}
._c_c00331{width:9.936000pt;}
._17_c00331{width:11.224000pt;}
._18_c00331{width:12.512000pt;}
._21_c00331{width:13.829333pt;}
._e_c00331{width:14.720000pt;}
._10_c00331{width:16.008000pt;}
._14_c00331{width:17.234667pt;}
._16_c00331{width:18.154667pt;}
._15_c00331{width:19.074667pt;}
._20_c00331{width:20.362667pt;}
._19_c00331{width:22.325333pt;}
._d_c00331{width:24.594667pt;}
._1f_c00331{width:27.221333pt;}
._13_c00331{width:30.114667pt;}
._25_c00331{width:49.434667pt;}
._24_c00331{width:58.082667pt;}
._1c_c00331{width:83.045333pt;}
._23_c00331{width:86.931733pt;}
._22_c00331{width:172.653333pt;}
._1d_c00331{width:235.733333pt;}
._3_c00331{width:328.930667pt;}
._26_c00331{width:992.880000pt;}
.fs4_c00331{font-size:42.666667pt;}
.fs3_c00331{font-size:49.066667pt;}
.fs2_c00331{font-size:58.666667pt;}
.fs0_c00331{font-size:61.333333pt;}
.fs1_c00331{font-size:69.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y21_c00331{bottom:2.760000pt;}
.y20_c00331{bottom:6.425212pt;}
.y1f_c00331{bottom:57.866667pt;}
.y1e_c00331{bottom:79.733333pt;}
.y1d_c00331{bottom:102.400000pt;}
.y1c_c00331{bottom:125.066667pt;}
.y1b_c00331{bottom:147.066667pt;}
.y1a_c00331{bottom:169.600000pt;}
.y19_c00331{bottom:191.733333pt;}
.y18_c00331{bottom:213.866667pt;}
.y17_c00331{bottom:236.133333pt;}
.y16_c00331{bottom:258.933333pt;}
.y15_c00331{bottom:280.800000pt;}
.y14_c00331{bottom:302.666667pt;}
.y13_c00331{bottom:324.266667pt;}
.y12_c00331{bottom:346.266667pt;}
.y11_c00331{bottom:368.133333pt;}
.y10_c00331{bottom:391.200000pt;}
.yf_c00331{bottom:413.733333pt;}
.ye_c00331{bottom:436.133333pt;}
.yd_c00331{bottom:458.133333pt;}
.yc_c00331{bottom:480.000000pt;}
.yb_c00331{bottom:502.133333pt;}
.ya_c00331{bottom:524.133333pt;}
.y9_c00331{bottom:546.533333pt;}
.y8_c00331{bottom:568.533333pt;}
.y7_c00331{bottom:590.666667pt;}
.y6_c00331{bottom:612.666667pt;}
.y1_c00331{bottom:625.466667pt;}
.y5_c00331{bottom:634.533333pt;}
.y4_c00331{bottom:656.666667pt;}
.y3_c00331{bottom:678.933333pt;}
.y2_c00331{bottom:701.333333pt;}
.h5_c00331{height:11.733399pt;}
.h6_c00331{height:38.937500pt;}
.h4_c00331{height:71.785156pt;}
.h2_c00331{height:77.654948pt;}
.h3_c00331{height:87.783854pt;}
.h1_c00331{height:735.333333pt;}
.h0_c00331{height:735.600000pt;}
.w2_c00331{width:93.222667pt;}
.w0_c00331{width:508.533333pt;}
.w1_c00331{width:508.666667pt;}
.x0_c00331{left:0.000000pt;}
.x7_c00331{left:23.600000pt;}
.x5_c00331{left:26.133333pt;}
.x6_c00331{left:39.333333pt;}
.x1_c00331{left:44.000000pt;}
.xa_c00331{left:60.266667pt;}
.xb_c00331{left:80.400000pt;}
.x8_c00331{left:81.600000pt;}
.x4_c00331{left:82.533333pt;}
.x3_c00331{left:84.000000pt;}
.x2_c00331{left:95.600000pt;}
.x9_c00331{left:104.133333pt;}
.xc_c00331{left:211.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_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_aca1aa60339e6d3729198d65.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_ad9a741f7d5ae3f97ad95553.woff2')format("woff");}.ff2_c00332{font-family:ff2_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:ff3_c00332;src:url('chunks/assets/font_825f0a1bd0928aa1a591378d.woff2')format("woff");}.ff3_c00332{font-family:ff3_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:ff4_c00332;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00332{font-family:ff4_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);}
.v0_c00332{vertical-align:0.000000px;}
.ls2_c00332{letter-spacing:0.000000px;}
.ls3_c00332{letter-spacing:6.000000px;}
.ls0_c00332{letter-spacing:14.160000px;}
.ls1_c00332{letter-spacing:51.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-67.629000px;}
.ws2_c00332{word-spacing:-44.988000px;}
.ws1_c00332{word-spacing:-16.629000px;}
.ws3_c00332{word-spacing:0.000000px;}
._1f_c00332{margin-left:-18.222000px;}
._1b_c00332{margin-left:-15.657000px;}
._5_c00332{margin-left:-13.593000px;}
._f_c00332{margin-left:-11.523000px;}
._e_c00332{margin-left:-10.074000px;}
._8_c00332{margin-left:-7.935000px;}
._a_c00332{margin-left:-6.762000px;}
._9_c00332{margin-left:-5.382000px;}
._15_c00332{margin-left:-4.347000px;}
._7_c00332{margin-left:-3.312000px;}
._6_c00332{margin-left:-2.001000px;}
._d_c00332{width:1.587000px;}
._b_c00332{width:2.760000px;}
._0_c00332{width:3.864000px;}
._1_c00332{width:5.727000px;}
._13_c00332{width:7.383000px;}
._12_c00332{width:8.556000px;}
._3_c00332{width:9.798000px;}
._11_c00332{width:11.721000px;}
._4_c00332{width:13.731000px;}
._10_c00332{width:14.835000px;}
._19_c00332{width:16.122000px;}
._14_c00332{width:17.871000px;}
._16_c00332{width:19.113000px;}
._c_c00332{width:20.769000px;}
._1c_c00332{width:22.563000px;}
._1e_c00332{width:23.667000px;}
._21_c00332{width:26.082000px;}
._1a_c00332{width:30.231000px;}
._17_c00332{width:35.535000px;}
._20_c00332{width:36.708000px;}
._1d_c00332{width:38.916000px;}
._2_c00332{width:45.108000px;}
._18_c00332{width:56.388000px;}
._23_c00332{width:66.438000px;}
._22_c00332{width:72.933000px;}
._24_c00332{width:483.999000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(128,128,128);}
.fc0_c00332{color:rgb(0,0,0);}
.fs3_c00332{font-size:48.000000px;}
.fs1_c00332{font-size:55.200000px;}
.fs0_c00332{font-size:69.000000px;}
.fs2_c00332{font-size:75.000000px;}
.y0_c00332{bottom:0.000000px;}
.y19_c00332{bottom:3.105000px;}
.y18_c00332{bottom:7.228371px;}
.y17_c00332{bottom:93.615000px;}
.y16_c00332{bottom:119.565000px;}
.y15_c00332{bottom:144.765000px;}
.y14_c00332{bottom:169.815000px;}
.y13_c00332{bottom:194.715000px;}
.y12_c00332{bottom:218.715000px;}
.y11_c00332{bottom:244.815000px;}
.y10_c00332{bottom:269.715000px;}
.yf_c00332{bottom:294.615000px;}
.ye_c00332{bottom:319.365000px;}
.yd_c00332{bottom:344.565000px;}
.yc_c00332{bottom:368.265000px;}
.yb_c00332{bottom:392.865000px;}
.ya_c00332{bottom:442.815000px;}
.y9_c00332{bottom:467.865000px;}
.y8_c00332{bottom:493.065000px;}
.y7_c00332{bottom:540.765000px;}
.y6_c00332{bottom:590.265000px;}
.y5_c00332{bottom:615.615000px;}
.y4_c00332{bottom:640.365000px;}
.y3_c00332{bottom:665.265000px;}
.y2_c00332{bottom:690.315000px;}
.y1_c00332{bottom:738.465000px;}
.h5_c00332{height:13.200074px;}
.h6_c00332{height:43.804688px;}
.h2_c00332{height:80.758301px;}
.h3_c00332{height:87.361816px;}
.h4_c00332{height:94.958496px;}
.h1_c00332{height:831.000000px;}
.h0_c00332{height:831.075000px;}
.w2_c00332{width:104.875500px;}
.w0_c00332{width:582.375000px;}
.w1_c00332{width:582.750000px;}
.x0_c00332{left:0.000000px;}
.x4_c00332{left:28.350000px;}
.x5_c00332{left:31.350000px;}
.x3_c00332{left:32.700000px;}
.x7_c00332{left:55.650000px;}
.x2_c00332{left:57.150000px;}
.x6_c00332{left:148.800000px;}
.x1_c00332{left:154.200000px;}
.x9_c00332{left:243.001740px;}
.x8_c00332{left:271.650000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls2_c00332{letter-spacing:0.000000pt;}
.ls3_c00332{letter-spacing:5.333333pt;}
.ls0_c00332{letter-spacing:12.586667pt;}
.ls1_c00332{letter-spacing:45.333333pt;}
.ws0_c00332{word-spacing:-60.114667pt;}
.ws2_c00332{word-spacing:-39.989333pt;}
.ws1_c00332{word-spacing:-14.781333pt;}
.ws3_c00332{word-spacing:0.000000pt;}
._1f_c00332{margin-left:-16.197333pt;}
._1b_c00332{margin-left:-13.917333pt;}
._5_c00332{margin-left:-12.082667pt;}
._f_c00332{margin-left:-10.242667pt;}
._e_c00332{margin-left:-8.954667pt;}
._8_c00332{margin-left:-7.053333pt;}
._a_c00332{margin-left:-6.010667pt;}
._9_c00332{margin-left:-4.784000pt;}
._15_c00332{margin-left:-3.864000pt;}
._7_c00332{margin-left:-2.944000pt;}
._6_c00332{margin-left:-1.778667pt;}
._d_c00332{width:1.410667pt;}
._b_c00332{width:2.453333pt;}
._0_c00332{width:3.434667pt;}
._1_c00332{width:5.090667pt;}
._13_c00332{width:6.562667pt;}
._12_c00332{width:7.605333pt;}
._3_c00332{width:8.709333pt;}
._11_c00332{width:10.418667pt;}
._4_c00332{width:12.205333pt;}
._10_c00332{width:13.186667pt;}
._19_c00332{width:14.330667pt;}
._14_c00332{width:15.885333pt;}
._16_c00332{width:16.989333pt;}
._c_c00332{width:18.461333pt;}
._1c_c00332{width:20.056000pt;}
._1e_c00332{width:21.037333pt;}
._21_c00332{width:23.184000pt;}
._1a_c00332{width:26.872000pt;}
._17_c00332{width:31.586667pt;}
._20_c00332{width:32.629333pt;}
._1d_c00332{width:34.592000pt;}
._2_c00332{width:40.096000pt;}
._18_c00332{width:50.122667pt;}
._23_c00332{width:59.056000pt;}
._22_c00332{width:64.829333pt;}
._24_c00332{width:430.221333pt;}
.fs3_c00332{font-size:42.666667pt;}
.fs1_c00332{font-size:49.066667pt;}
.fs0_c00332{font-size:61.333333pt;}
.fs2_c00332{font-size:66.666667pt;}
.y0_c00332{bottom:0.000000pt;}
.y19_c00332{bottom:2.760000pt;}
.y18_c00332{bottom:6.425219pt;}
.y17_c00332{bottom:83.213333pt;}
.y16_c00332{bottom:106.280000pt;}
.y15_c00332{bottom:128.680000pt;}
.y14_c00332{bottom:150.946667pt;}
.y13_c00332{bottom:173.080000pt;}
.y12_c00332{bottom:194.413333pt;}
.y11_c00332{bottom:217.613333pt;}
.y10_c00332{bottom:239.746667pt;}
.yf_c00332{bottom:261.880000pt;}
.ye_c00332{bottom:283.880000pt;}
.yd_c00332{bottom:306.280000pt;}
.yc_c00332{bottom:327.346667pt;}
.yb_c00332{bottom:349.213333pt;}
.ya_c00332{bottom:393.613333pt;}
.y9_c00332{bottom:415.880000pt;}
.y8_c00332{bottom:438.280000pt;}
.y7_c00332{bottom:480.680000pt;}
.y6_c00332{bottom:524.680000pt;}
.y5_c00332{bottom:547.213333pt;}
.y4_c00332{bottom:569.213333pt;}
.y3_c00332{bottom:591.346667pt;}
.y2_c00332{bottom:613.613333pt;}
.y1_c00332{bottom:656.413333pt;}
.h5_c00332{height:11.733399pt;}
.h6_c00332{height:38.937500pt;}
.h2_c00332{height:71.785156pt;}
.h3_c00332{height:77.654948pt;}
.h4_c00332{height:84.407552pt;}
.h1_c00332{height:738.666667pt;}
.h0_c00332{height:738.733333pt;}
.w2_c00332{width:93.222667pt;}
.w0_c00332{width:517.666667pt;}
.w1_c00332{width:518.000000pt;}
.x0_c00332{left:0.000000pt;}
.x4_c00332{left:25.200000pt;}
.x5_c00332{left:27.866667pt;}
.x3_c00332{left:29.066667pt;}
.x7_c00332{left:49.466667pt;}
.x2_c00332{left:50.800000pt;}
.x6_c00332{left:132.266667pt;}
.x1_c00332{left:137.066667pt;}
.x9_c00332{left:216.001546pt;}
.x8_c00332{left:241.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_b3c6511973cc63c39e1f76fe.woff2')format("woff");}.ff1_c00333{font-family:ff1_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:ff2_c00333;src:url('chunks/assets/font_43c8ed95fdcde6a578a11cbe.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.311035;font-style:normal;font-weight:normal;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_b4b0d35d81ba593eba6fd7e1.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_4c0bab56035bfed350b231e8.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_05f2d5fd1aad41e8eb280ab2.woff2')format("woff");}.ff5_c00333{font-family:ff5_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:ff6_c00333;src:url('chunks/assets/font_c31ecc457b4ceb7f9bb87984.woff2')format("woff");}.ff6_c00333{font-family:ff6_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:ff7_c00333;src:url('chunks/assets/font_a63d1a2a7d2116a87f3610de.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;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_c00333;src:url('chunks/assets/font_339682c7de1db4a0cefb8a35.woff2')format("woff");}.ff8_c00333{font-family:ff8_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:ff9_c00333;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00333{font-family:ff9_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;}
.lsa_c00333{letter-spacing:-6.000000px;}
.ls8_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:0.600000px;}
.ls3_c00333{letter-spacing:4.971000px;}
.ls7_c00333{letter-spacing:6.000000px;}
.ls1_c00333{letter-spacing:6.771000px;}
.ls4_c00333{letter-spacing:8.571000px;}
.ls9_c00333{letter-spacing:9.000000px;}
.ls2_c00333{letter-spacing:30.618000px;}
.ls6_c00333{letter-spacing:37.971000px;}
.ls5_c00333{letter-spacing:38.571000px;}
.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;}
}
.ws0_c00333{word-spacing:-44.022000px;}
.ws1_c00333{word-spacing:-39.000000px;}
.ws7_c00333{word-spacing:-27.825000px;}
.ws3_c00333{word-spacing:-25.629000px;}
.ws6_c00333{word-spacing:-24.288000px;}
.ws2_c00333{word-spacing:-16.629000px;}
.ws4_c00333{word-spacing:-0.552000px;}
.ws8_c00333{word-spacing:0.000000px;}
.ws5_c00333{word-spacing:5.244000px;}
._27_c00333{margin-left:-22.392000px;}
._16_c00333{margin-left:-19.356000px;}
._c_c00333{margin-left:-18.045000px;}
._d_c00333{margin-left:-16.491000px;}
._17_c00333{margin-left:-15.477000px;}
._14_c00333{margin-left:-14.397000px;}
._12_c00333{margin-left:-12.939000px;}
._e_c00333{margin-left:-10.902000px;}
._20_c00333{margin-left:-9.783000px;}
._0_c00333{margin-left:-8.694000px;}
._10_c00333{margin-left:-7.167000px;}
._2_c00333{margin-left:-6.000000px;}
._3_c00333{margin-left:-4.362000px;}
._5_c00333{margin-left:-2.484000px;}
._1_c00333{margin-left:-1.056000px;}
._6_c00333{width:1.581000px;}
._8_c00333{width:2.967000px;}
._9_c00333{width:4.899000px;}
._11_c00333{width:6.372000px;}
._7_c00333{width:7.866000px;}
._a_c00333{width:8.901000px;}
._25_c00333{width:10.008000px;}
._b_c00333{width:11.316000px;}
._28_c00333{width:13.110000px;}
._13_c00333{width:14.664000px;}
._19_c00333{width:16.014000px;}
._23_c00333{width:17.907000px;}
._1f_c00333{width:18.924000px;}
._1b_c00333{width:20.076000px;}
._f_c00333{width:21.105000px;}
._1c_c00333{width:23.085000px;}
._18_c00333{width:25.008000px;}
._21_c00333{width:26.295000px;}
._15_c00333{width:27.942000px;}
._24_c00333{width:30.258000px;}
._1e_c00333{width:32.778000px;}
._22_c00333{width:36.936000px;}
._1d_c00333{width:43.683000px;}
._26_c00333{width:91.830000px;}
._1a_c00333{width:93.747000px;}
._29_c00333{width:155.664000px;}
._4_c00333{width:382.698000px;}
.fc2_c00333{color:transparent;}
.fc1_c00333{color:rgb(128,128,128);}
.fc0_c00333{color:rgb(0,0,0);}
.fs3_c00333{font-size:48.000000px;}
.fs1_c00333{font-size:66.000000px;}
.fs0_c00333{font-size:69.000000px;}
.fs2_c00333{font-size:75.000000px;}
.y0_c00333{bottom:0.000000px;}
.y1c_c00333{bottom:3.105000px;}
.y1b_c00333{bottom:7.228363px;}
.y1a_c00333{bottom:69.750000px;}
.y19_c00333{bottom:95.550000px;}
.y18_c00333{bottom:146.850000px;}
.y17_c00333{bottom:172.350000px;}
.y16_c00333{bottom:222.300000px;}
.y15_c00333{bottom:272.700000px;}
.y14_c00333{bottom:298.050000px;}
.y13_c00333{bottom:322.350000px;}
.y12_c00333{bottom:347.250000px;}
.y11_c00333{bottom:372.300000px;}
.y10_c00333{bottom:397.200000px;}
.yf_c00333{bottom:422.250000px;}
.ye_c00333{bottom:447.750000px;}
.yd_c00333{bottom:472.500000px;}
.yc_c00333{bottom:497.850000px;}
.yb_c00333{bottom:522.900000px;}
.ya_c00333{bottom:548.100000px;}
.y9_c00333{bottom:572.700000px;}
.y8_c00333{bottom:597.750000px;}
.y7_c00333{bottom:623.250000px;}
.y6_c00333{bottom:648.000000px;}
.y5_c00333{bottom:673.200000px;}
.y4_c00333{bottom:697.950000px;}
.y3_c00333{bottom:723.000000px;}
.y2_c00333{bottom:748.200000px;}
.y1_c00333{bottom:772.200000px;}
.h5_c00333{height:13.200074px;}
.h6_c00333{height:43.804688px;}
.h3_c00333{height:80.758301px;}
.h2_c00333{height:87.361816px;}
.h4_c00333{height:94.958496px;}
.h0_c00333{height:818.100000px;}
.h1_c00333{height:818.250000px;}
.w2_c00333{width:104.875500px;}
.w0_c00333{width:565.350000px;}
.w1_c00333{width:565.500000px;}
.x0_c00333{left:0.000000px;}
.xa_c00333{left:29.700000px;}
.xb_c00333{left:92.100000px;}
.x9_c00333{left:95.100000px;}
.x5_c00333{left:97.800000px;}
.x3_c00333{left:99.600000px;}
.x4_c00333{left:102.300000px;}
.x2_c00333{left:103.500000px;}
.x1_c00333{left:117.450000px;}
.x8_c00333{left:120.450000px;}
.x6_c00333{left:126.450000px;}
.x7_c00333{left:127.800000px;}
.xc_c00333{left:234.489258px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.lsa_c00333{letter-spacing:-5.333333pt;}
.ls8_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:0.533333pt;}
.ls3_c00333{letter-spacing:4.418667pt;}
.ls7_c00333{letter-spacing:5.333333pt;}
.ls1_c00333{letter-spacing:6.018667pt;}
.ls4_c00333{letter-spacing:7.618667pt;}
.ls9_c00333{letter-spacing:8.000000pt;}
.ls2_c00333{letter-spacing:27.216000pt;}
.ls6_c00333{letter-spacing:33.752000pt;}
.ls5_c00333{letter-spacing:34.285333pt;}
.ws0_c00333{word-spacing:-39.130667pt;}
.ws1_c00333{word-spacing:-34.666667pt;}
.ws7_c00333{word-spacing:-24.733333pt;}
.ws3_c00333{word-spacing:-22.781333pt;}
.ws6_c00333{word-spacing:-21.589333pt;}
.ws2_c00333{word-spacing:-14.781333pt;}
.ws4_c00333{word-spacing:-0.490667pt;}
.ws8_c00333{word-spacing:0.000000pt;}
.ws5_c00333{word-spacing:4.661333pt;}
._27_c00333{margin-left:-19.904000pt;}
._16_c00333{margin-left:-17.205333pt;}
._c_c00333{margin-left:-16.040000pt;}
._d_c00333{margin-left:-14.658667pt;}
._17_c00333{margin-left:-13.757333pt;}
._14_c00333{margin-left:-12.797333pt;}
._12_c00333{margin-left:-11.501333pt;}
._e_c00333{margin-left:-9.690667pt;}
._20_c00333{margin-left:-8.696000pt;}
._0_c00333{margin-left:-7.728000pt;}
._10_c00333{margin-left:-6.370667pt;}
._2_c00333{margin-left:-5.333333pt;}
._3_c00333{margin-left:-3.877333pt;}
._5_c00333{margin-left:-2.208000pt;}
._1_c00333{margin-left:-0.938667pt;}
._6_c00333{width:1.405333pt;}
._8_c00333{width:2.637333pt;}
._9_c00333{width:4.354667pt;}
._11_c00333{width:5.664000pt;}
._7_c00333{width:6.992000pt;}
._a_c00333{width:7.912000pt;}
._25_c00333{width:8.896000pt;}
._b_c00333{width:10.058667pt;}
._28_c00333{width:11.653333pt;}
._13_c00333{width:13.034667pt;}
._19_c00333{width:14.234667pt;}
._23_c00333{width:15.917333pt;}
._1f_c00333{width:16.821333pt;}
._1b_c00333{width:17.845333pt;}
._f_c00333{width:18.760000pt;}
._1c_c00333{width:20.520000pt;}
._18_c00333{width:22.229333pt;}
._21_c00333{width:23.373333pt;}
._15_c00333{width:24.837333pt;}
._24_c00333{width:26.896000pt;}
._1e_c00333{width:29.136000pt;}
._22_c00333{width:32.832000pt;}
._1d_c00333{width:38.829333pt;}
._26_c00333{width:81.626667pt;}
._1a_c00333{width:83.330667pt;}
._29_c00333{width:138.368000pt;}
._4_c00333{width:340.176000pt;}
.fs3_c00333{font-size:42.666667pt;}
.fs1_c00333{font-size:58.666667pt;}
.fs0_c00333{font-size:61.333333pt;}
.fs2_c00333{font-size:66.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y1c_c00333{bottom:2.760000pt;}
.y1b_c00333{bottom:6.425212pt;}
.y1a_c00333{bottom:62.000000pt;}
.y19_c00333{bottom:84.933333pt;}
.y18_c00333{bottom:130.533333pt;}
.y17_c00333{bottom:153.200000pt;}
.y16_c00333{bottom:197.600000pt;}
.y15_c00333{bottom:242.400000pt;}
.y14_c00333{bottom:264.933333pt;}
.y13_c00333{bottom:286.533333pt;}
.y12_c00333{bottom:308.666667pt;}
.y11_c00333{bottom:330.933333pt;}
.y10_c00333{bottom:353.066667pt;}
.yf_c00333{bottom:375.333333pt;}
.ye_c00333{bottom:398.000000pt;}
.yd_c00333{bottom:420.000000pt;}
.yc_c00333{bottom:442.533333pt;}
.yb_c00333{bottom:464.800000pt;}
.ya_c00333{bottom:487.200000pt;}
.y9_c00333{bottom:509.066667pt;}
.y8_c00333{bottom:531.333333pt;}
.y7_c00333{bottom:554.000000pt;}
.y6_c00333{bottom:576.000000pt;}
.y5_c00333{bottom:598.400000pt;}
.y4_c00333{bottom:620.400000pt;}
.y3_c00333{bottom:642.666667pt;}
.y2_c00333{bottom:665.066667pt;}
.y1_c00333{bottom:686.400000pt;}
.h5_c00333{height:11.733399pt;}
.h6_c00333{height:38.937500pt;}
.h3_c00333{height:71.785156pt;}
.h2_c00333{height:77.654948pt;}
.h4_c00333{height:84.407552pt;}
.h0_c00333{height:727.200000pt;}
.h1_c00333{height:727.333333pt;}
.w2_c00333{width:93.222667pt;}
.w0_c00333{width:502.533333pt;}
.w1_c00333{width:502.666667pt;}
.x0_c00333{left:0.000000pt;}
.xa_c00333{left:26.400000pt;}
.xb_c00333{left:81.866667pt;}
.x9_c00333{left:84.533333pt;}
.x5_c00333{left:86.933333pt;}
.x3_c00333{left:88.533333pt;}
.x4_c00333{left:90.933333pt;}
.x2_c00333{left:92.000000pt;}
.x1_c00333{left:104.400000pt;}
.x8_c00333{left:107.066667pt;}
.x6_c00333{left:112.400000pt;}
.x7_c00333{left:113.600000pt;}
.xc_c00333{left:208.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_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_181e222d874a427f03397ce8.woff2')format("woff");}.ff1_c00334{font-family:ff1_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:ff2_c00334;src:url('chunks/assets/font_96073fd60bf5e56c6ddf05e4.woff2')format("woff");}.ff2_c00334{font-family:ff2_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:ff3_c00334;src:url('chunks/assets/font_06678107a3f411f0302d04e2.woff2')format("woff");}.ff3_c00334{font-family:ff3_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:ff4_c00334;src:url('chunks/assets/font_38d7d27e736ec6fd5e2a1744.woff2')format("woff");}.ff4_c00334{font-family:ff4_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:ff5_c00334;src:url('chunks/assets/font_a93637d2fcbcaabaf90e88ad.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_1d70ad17ade1037142833e34.woff2')format("woff");}.ff6_c00334{font-family:ff6_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:ff7_c00334;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00334{font-family:ff7_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);}
.v1_c00334{vertical-align:-99.000000px;}
.v0_c00334{vertical-align:0.000000px;}
.ls5_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:6.000000px;}
.ls4_c00334{letter-spacing:9.252000px;}
.ls1_c00334{letter-spacing:14.925000px;}
.ls3_c00334{letter-spacing:42.600000px;}
.ls2_c00334{letter-spacing:48.000000px;}
.ls6_c00334{letter-spacing:51.000000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00334{word-spacing:-67.629000px;}
.ws2_c00334{word-spacing:0.000000px;}
.ws0_c00334{word-spacing:170.865000px;}
._1a_c00334{margin-left:-23.805000px;}
._11_c00334{margin-left:-19.458000px;}
._26_c00334{margin-left:-18.213000px;}
._27_c00334{margin-left:-16.989000px;}
._12_c00334{margin-left:-15.594000px;}
._22_c00334{margin-left:-14.400000px;}
._13_c00334{margin-left:-12.351000px;}
._19_c00334{margin-left:-11.211000px;}
._15_c00334{margin-left:-9.108000px;}
._d_c00334{margin-left:-6.969000px;}
._3_c00334{margin-left:-5.589000px;}
._e_c00334{margin-left:-3.588000px;}
._2_c00334{margin-left:-2.553000px;}
._4_c00334{margin-left:-1.536000px;}
._0_c00334{width:1.518000px;}
._b_c00334{width:2.760000px;}
._c_c00334{width:3.780000px;}
._9_c00334{width:5.520000px;}
._7_c00334{width:6.813000px;}
._17_c00334{width:8.103000px;}
._8_c00334{width:10.143000px;}
._a_c00334{width:11.937000px;}
._6_c00334{width:13.335000px;}
._1_c00334{width:14.697000px;}
._1c_c00334{width:15.732000px;}
._f_c00334{width:16.992000px;}
._16_c00334{width:20.340000px;}
._24_c00334{width:22.218000px;}
._1e_c00334{width:29.892000px;}
._1b_c00334{width:31.638000px;}
._1f_c00334{width:32.841000px;}
._18_c00334{width:35.607000px;}
._20_c00334{width:39.192000px;}
._21_c00334{width:44.724000px;}
._25_c00334{width:55.773000px;}
._28_c00334{width:96.087000px;}
._10_c00334{width:99.426000px;}
._23_c00334{width:146.139000px;}
._29_c00334{width:147.465000px;}
._1d_c00334{width:152.817000px;}
._14_c00334{width:158.850000px;}
._2a_c00334{width:188.100000px;}
._5_c00334{width:424.695000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(128,128,128);}
.fc0_c00334{color:rgb(0,0,0);}
.fs3_c00334{font-size:42.000000px;}
.fs4_c00334{font-size:45.000000px;}
.fs5_c00334{font-size:48.000000px;}
.fs2_c00334{font-size:51.000000px;}
.fs1_c00334{font-size:66.000000px;}
.fs0_c00334{font-size:69.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1c_c00334{bottom:3.105000px;}
.y1b_c00334{bottom:7.228371px;}
.y1a_c00334{bottom:82.065000px;}
.y19_c00334{bottom:91.515000px;}
.y18_c00334{bottom:117.165000px;}
.y17_c00334{bottom:141.465000px;}
.y16_c00334{bottom:167.115000px;}
.y15_c00334{bottom:190.365000px;}
.y14_c00334{bottom:241.065000px;}
.y13_c00334{bottom:291.615000px;}
.y12_c00334{bottom:316.665000px;}
.y11_c00334{bottom:341.565000px;}
.y10_c00334{bottom:366.315000px;}
.yf_c00334{bottom:440.865000px;}
.ye_c00334{bottom:464.865000px;}
.yd_c00334{bottom:490.815000px;}
.yc_c00334{bottom:515.115000px;}
.yb_c00334{bottom:539.715000px;}
.ya_c00334{bottom:564.615000px;}
.y9_c00334{bottom:589.365000px;}
.y8_c00334{bottom:613.965000px;}
.y7_c00334{bottom:639.315000px;}
.y6_c00334{bottom:663.915000px;}
.y5_c00334{bottom:688.815000px;}
.y4_c00334{bottom:713.865000px;}
.y3_c00334{bottom:738.915000px;}
.y2_c00334{bottom:763.515000px;}
.y1_c00334{bottom:788.415000px;}
.h5_c00334{height:13.200074px;}
.h6_c00334{height:43.804688px;}
.h4_c00334{height:45.528000px;}
.h3_c00334{height:80.758301px;}
.h2_c00334{height:87.361816px;}
.h1_c00334{height:831.000000px;}
.h0_c00334{height:831.075000px;}
.w2_c00334{width:104.875500px;}
.w0_c00334{width:582.375000px;}
.w1_c00334{width:582.750000px;}
.x0_c00334{left:0.000000px;}
.x7_c00334{left:30.750000px;}
.xb_c00334{left:31.950000px;}
.x2_c00334{left:33.450000px;}
.x3_c00334{left:34.800000px;}
.x4_c00334{left:36.750000px;}
.xa_c00334{left:56.700000px;}
.x9_c00334{left:58.050000px;}
.x6_c00334{left:59.700000px;}
.x5_c00334{left:96.900000px;}
.x8_c00334{left:152.100000px;}
.x1_c00334{left:205.500000px;}
.xc_c00334{left:243.001740px;}
@media print{
.v1_c00334{vertical-align:-88.000000pt;}
.v0_c00334{vertical-align:0.000000pt;}
.ls5_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:5.333333pt;}
.ls4_c00334{letter-spacing:8.224000pt;}
.ls1_c00334{letter-spacing:13.266667pt;}
.ls3_c00334{letter-spacing:37.866667pt;}
.ls2_c00334{letter-spacing:42.666667pt;}
.ls6_c00334{letter-spacing:45.333333pt;}
.ws1_c00334{word-spacing:-60.114667pt;}
.ws2_c00334{word-spacing:0.000000pt;}
.ws0_c00334{word-spacing:151.880000pt;}
._1a_c00334{margin-left:-21.160000pt;}
._11_c00334{margin-left:-17.296000pt;}
._26_c00334{margin-left:-16.189333pt;}
._27_c00334{margin-left:-15.101333pt;}
._12_c00334{margin-left:-13.861333pt;}
._22_c00334{margin-left:-12.800000pt;}
._13_c00334{margin-left:-10.978667pt;}
._19_c00334{margin-left:-9.965333pt;}
._15_c00334{margin-left:-8.096000pt;}
._d_c00334{margin-left:-6.194667pt;}
._3_c00334{margin-left:-4.968000pt;}
._e_c00334{margin-left:-3.189333pt;}
._2_c00334{margin-left:-2.269333pt;}
._4_c00334{margin-left:-1.365333pt;}
._0_c00334{width:1.349333pt;}
._b_c00334{width:2.453333pt;}
._c_c00334{width:3.360000pt;}
._9_c00334{width:4.906667pt;}
._7_c00334{width:6.056000pt;}
._17_c00334{width:7.202667pt;}
._8_c00334{width:9.016000pt;}
._a_c00334{width:10.610667pt;}
._6_c00334{width:11.853333pt;}
._1_c00334{width:13.064000pt;}
._1c_c00334{width:13.984000pt;}
._f_c00334{width:15.104000pt;}
._16_c00334{width:18.080000pt;}
._24_c00334{width:19.749333pt;}
._1e_c00334{width:26.570667pt;}
._1b_c00334{width:28.122667pt;}
._1f_c00334{width:29.192000pt;}
._18_c00334{width:31.650667pt;}
._20_c00334{width:34.837333pt;}
._21_c00334{width:39.754667pt;}
._25_c00334{width:49.576000pt;}
._28_c00334{width:85.410667pt;}
._10_c00334{width:88.378667pt;}
._23_c00334{width:129.901333pt;}
._29_c00334{width:131.080000pt;}
._1d_c00334{width:135.837333pt;}
._14_c00334{width:141.200000pt;}
._2a_c00334{width:167.200000pt;}
._5_c00334{width:377.506667pt;}
.fs3_c00334{font-size:37.333333pt;}
.fs4_c00334{font-size:40.000000pt;}
.fs5_c00334{font-size:42.666667pt;}
.fs2_c00334{font-size:45.333333pt;}
.fs1_c00334{font-size:58.666667pt;}
.fs0_c00334{font-size:61.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y1c_c00334{bottom:2.760000pt;}
.y1b_c00334{bottom:6.425219pt;}
.y1a_c00334{bottom:72.946667pt;}
.y19_c00334{bottom:81.346667pt;}
.y18_c00334{bottom:104.146667pt;}
.y17_c00334{bottom:125.746667pt;}
.y16_c00334{bottom:148.546667pt;}
.y15_c00334{bottom:169.213333pt;}
.y14_c00334{bottom:214.280000pt;}
.y13_c00334{bottom:259.213333pt;}
.y12_c00334{bottom:281.480000pt;}
.y11_c00334{bottom:303.613333pt;}
.y10_c00334{bottom:325.613333pt;}
.yf_c00334{bottom:391.880000pt;}
.ye_c00334{bottom:413.213333pt;}
.yd_c00334{bottom:436.280000pt;}
.yc_c00334{bottom:457.880000pt;}
.yb_c00334{bottom:479.746667pt;}
.ya_c00334{bottom:501.880000pt;}
.y9_c00334{bottom:523.880000pt;}
.y8_c00334{bottom:545.746667pt;}
.y7_c00334{bottom:568.280000pt;}
.y6_c00334{bottom:590.146667pt;}
.y5_c00334{bottom:612.280000pt;}
.y4_c00334{bottom:634.546667pt;}
.y3_c00334{bottom:656.813333pt;}
.y2_c00334{bottom:678.680000pt;}
.y1_c00334{bottom:700.813333pt;}
.h5_c00334{height:11.733399pt;}
.h6_c00334{height:38.937500pt;}
.h4_c00334{height:40.469333pt;}
.h3_c00334{height:71.785156pt;}
.h2_c00334{height:77.654948pt;}
.h1_c00334{height:738.666667pt;}
.h0_c00334{height:738.733333pt;}
.w2_c00334{width:93.222667pt;}
.w0_c00334{width:517.666667pt;}
.w1_c00334{width:518.000000pt;}
.x0_c00334{left:0.000000pt;}
.x7_c00334{left:27.333333pt;}
.xb_c00334{left:28.400000pt;}
.x2_c00334{left:29.733333pt;}
.x3_c00334{left:30.933333pt;}
.x4_c00334{left:32.666667pt;}
.xa_c00334{left:50.400000pt;}
.x9_c00334{left:51.600000pt;}
.x6_c00334{left:53.066667pt;}
.x5_c00334{left:86.133333pt;}
.x8_c00334{left:135.200000pt;}
.x1_c00334{left:182.666667pt;}
.xc_c00334{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da6ff99757c4460c61912c6d.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.568848;font-style:normal;font-weight:normal;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_b2795f6688a5df3423b718ad.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_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00335{font-family:ff3_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:ff4_c00335;src:url('chunks/assets/font_15e4356888444240d1cbf012.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00335{font-family:ff5_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;}
.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;}
.ls2_c00335{letter-spacing:0.000000px;}
.ls1_c00335{letter-spacing:6.000000px;}
.ls3_c00335{letter-spacing:9.000000px;}
.ls0_c00335{letter-spacing:18.600000px;}
.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;}
}
.ws4_c00335{word-spacing:-25.629000px;}
.ws3_c00335{word-spacing:-16.629000px;}
.ws0_c00335{word-spacing:-10.845000px;}
.ws1_c00335{word-spacing:-0.804000px;}
.ws5_c00335{word-spacing:0.000000px;}
.ws2_c00335{word-spacing:1.656000px;}
._1a_c00335{margin-left:-10.404000px;}
._d_c00335{margin-left:-9.177000px;}
._a_c00335{margin-left:-7.176000px;}
._6_c00335{margin-left:-5.244000px;}
._5_c00335{margin-left:-3.312000px;}
._3_c00335{margin-left:-1.863000px;}
._4_c00335{width:1.794000px;}
._1_c00335{width:2.967000px;}
._0_c00335{width:4.347000px;}
._e_c00335{width:5.403000px;}
._7_c00335{width:6.831000px;}
._f_c00335{width:8.265000px;}
._8_c00335{width:9.453000px;}
._1d_c00335{width:10.695000px;}
._1c_c00335{width:11.823000px;}
._19_c00335{width:12.963000px;}
._14_c00335{width:14.145000px;}
._12_c00335{width:15.348000px;}
._13_c00335{width:16.392000px;}
._9_c00335{width:17.871000px;}
._17_c00335{width:19.596000px;}
._15_c00335{width:20.637000px;}
._c_c00335{width:21.873000px;}
._20_c00335{width:23.643000px;}
._b_c00335{width:24.909000px;}
._11_c00335{width:32.841000px;}
._16_c00335{width:36.156000px;}
._1b_c00335{width:39.744000px;}
._1f_c00335{width:51.675000px;}
._10_c00335{width:79.023000px;}
._21_c00335{width:89.409000px;}
._1e_c00335{width:101.637000px;}
._18_c00335{width:164.013000px;}
._2_c00335{width:373.977000px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(128,128,128);}
.fc0_c00335{color:rgb(0,0,0);}
.fs5_c00335{font-size:24.000000px;}
.fs1_c00335{font-size:45.000000px;}
.fs2_c00335{font-size:48.000000px;}
.fs3_c00335{font-size:60.000000px;}
.fs4_c00335{font-size:66.000000px;}
.fs0_c00335{font-size:69.000000px;}
.y0_c00335{bottom:0.000000px;}
.y1d_c00335{bottom:3.105000px;}
.y1c_c00335{bottom:7.228363px;}
.y1b_c00335{bottom:58.500000px;}
.y1a_c00335{bottom:81.750000px;}
.y19_c00335{bottom:109.800000px;}
.y18_c00335{bottom:135.300000px;}
.y17_c00335{bottom:160.050000px;}
.y16_c00335{bottom:185.250000px;}
.y15_c00335{bottom:210.300000px;}
.y14_c00335{bottom:234.600000px;}
.y13_c00335{bottom:259.950000px;}
.y12_c00335{bottom:285.150000px;}
.y11_c00335{bottom:309.900000px;}
.y10_c00335{bottom:334.200000px;}
.yf_c00335{bottom:359.400000px;}
.ye_c00335{bottom:383.850000px;}
.yd_c00335{bottom:408.450000px;}
.yc_c00335{bottom:433.650000px;}
.yb_c00335{bottom:458.400000px;}
.ya_c00335{bottom:485.700000px;}
.y9_c00335{bottom:508.650000px;}
.y8_c00335{bottom:534.150000px;}
.y7_c00335{bottom:596.400000px;}
.y6_c00335{bottom:656.100000px;}
.y5_c00335{bottom:674.250000px;}
.y4_c00335{bottom:691.650000px;}
.y3_c00335{bottom:736.500000px;}
.y2_c00335{bottom:761.700000px;}
.y1_c00335{bottom:786.750000px;}
.h7_c00335{height:13.200074px;}
.h6_c00335{height:30.386719px;}
.h8_c00335{height:43.804688px;}
.h4_c00335{height:56.975098px;}
.h5_c00335{height:70.224609px;}
.h3_c00335{height:80.758301px;}
.h2_c00335{height:87.361816px;}
.h1_c00335{height:827.250000px;}
.h0_c00335{height:827.550000px;}
.w2_c00335{width:104.875500px;}
.w0_c00335{width:572.100000px;}
.w1_c00335{width:572.250000px;}
.x0_c00335{left:0.000000px;}
.x9_c00335{left:26.250000px;}
.xb_c00335{left:42.150000px;}
.xd_c00335{left:44.550000px;}
.x7_c00335{left:88.350000px;}
.x2_c00335{left:89.550000px;}
.x3_c00335{left:90.750000px;}
.xa_c00335{left:92.700000px;}
.x1_c00335{left:104.550000px;}
.x4_c00335{left:107.700000px;}
.x6_c00335{left:115.050000px;}
.x5_c00335{left:120.450000px;}
.xc_c00335{left:132.000000px;}
.xf_c00335{left:237.864258px;}
.xe_c00335{left:516.750000px;}
.x8_c00335{left:535.200000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls2_c00335{letter-spacing:0.000000pt;}
.ls1_c00335{letter-spacing:5.333333pt;}
.ls3_c00335{letter-spacing:8.000000pt;}
.ls0_c00335{letter-spacing:16.533333pt;}
.ws4_c00335{word-spacing:-22.781333pt;}
.ws3_c00335{word-spacing:-14.781333pt;}
.ws0_c00335{word-spacing:-9.640000pt;}
.ws1_c00335{word-spacing:-0.714667pt;}
.ws5_c00335{word-spacing:0.000000pt;}
.ws2_c00335{word-spacing:1.472000pt;}
._1a_c00335{margin-left:-9.248000pt;}
._d_c00335{margin-left:-8.157333pt;}
._a_c00335{margin-left:-6.378667pt;}
._6_c00335{margin-left:-4.661333pt;}
._5_c00335{margin-left:-2.944000pt;}
._3_c00335{margin-left:-1.656000pt;}
._4_c00335{width:1.594667pt;}
._1_c00335{width:2.637333pt;}
._0_c00335{width:3.864000pt;}
._e_c00335{width:4.802667pt;}
._7_c00335{width:6.072000pt;}
._f_c00335{width:7.346667pt;}
._8_c00335{width:8.402667pt;}
._1d_c00335{width:9.506667pt;}
._1c_c00335{width:10.509333pt;}
._19_c00335{width:11.522667pt;}
._14_c00335{width:12.573333pt;}
._12_c00335{width:13.642667pt;}
._13_c00335{width:14.570667pt;}
._9_c00335{width:15.885333pt;}
._17_c00335{width:17.418667pt;}
._15_c00335{width:18.344000pt;}
._c_c00335{width:19.442667pt;}
._20_c00335{width:21.016000pt;}
._b_c00335{width:22.141333pt;}
._11_c00335{width:29.192000pt;}
._16_c00335{width:32.138667pt;}
._1b_c00335{width:35.328000pt;}
._1f_c00335{width:45.933333pt;}
._10_c00335{width:70.242667pt;}
._21_c00335{width:79.474667pt;}
._1e_c00335{width:90.344000pt;}
._18_c00335{width:145.789333pt;}
._2_c00335{width:332.424000pt;}
.fs5_c00335{font-size:21.333333pt;}
.fs1_c00335{font-size:40.000000pt;}
.fs2_c00335{font-size:42.666667pt;}
.fs3_c00335{font-size:53.333333pt;}
.fs4_c00335{font-size:58.666667pt;}
.fs0_c00335{font-size:61.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y1d_c00335{bottom:2.760000pt;}
.y1c_c00335{bottom:6.425212pt;}
.y1b_c00335{bottom:52.000000pt;}
.y1a_c00335{bottom:72.666667pt;}
.y19_c00335{bottom:97.600000pt;}
.y18_c00335{bottom:120.266667pt;}
.y17_c00335{bottom:142.266667pt;}
.y16_c00335{bottom:164.666667pt;}
.y15_c00335{bottom:186.933333pt;}
.y14_c00335{bottom:208.533333pt;}
.y13_c00335{bottom:231.066667pt;}
.y12_c00335{bottom:253.466667pt;}
.y11_c00335{bottom:275.466667pt;}
.y10_c00335{bottom:297.066667pt;}
.yf_c00335{bottom:319.466667pt;}
.ye_c00335{bottom:341.200000pt;}
.yd_c00335{bottom:363.066667pt;}
.yc_c00335{bottom:385.466667pt;}
.yb_c00335{bottom:407.466667pt;}
.ya_c00335{bottom:431.733333pt;}
.y9_c00335{bottom:452.133333pt;}
.y8_c00335{bottom:474.800000pt;}
.y7_c00335{bottom:530.133333pt;}
.y6_c00335{bottom:583.200000pt;}
.y5_c00335{bottom:599.333333pt;}
.y4_c00335{bottom:614.800000pt;}
.y3_c00335{bottom:654.666667pt;}
.y2_c00335{bottom:677.066667pt;}
.y1_c00335{bottom:699.333333pt;}
.h7_c00335{height:11.733399pt;}
.h6_c00335{height:27.010417pt;}
.h8_c00335{height:38.937500pt;}
.h4_c00335{height:50.644531pt;}
.h5_c00335{height:62.421875pt;}
.h3_c00335{height:71.785156pt;}
.h2_c00335{height:77.654948pt;}
.h1_c00335{height:735.333333pt;}
.h0_c00335{height:735.600000pt;}
.w2_c00335{width:93.222667pt;}
.w0_c00335{width:508.533333pt;}
.w1_c00335{width:508.666667pt;}
.x0_c00335{left:0.000000pt;}
.x9_c00335{left:23.333333pt;}
.xb_c00335{left:37.466667pt;}
.xd_c00335{left:39.600000pt;}
.x7_c00335{left:78.533333pt;}
.x2_c00335{left:79.600000pt;}
.x3_c00335{left:80.666667pt;}
.xa_c00335{left:82.400000pt;}
.x1_c00335{left:92.933333pt;}
.x4_c00335{left:95.733333pt;}
.x6_c00335{left:102.266667pt;}
.x5_c00335{left:107.066667pt;}
.xc_c00335{left:117.333333pt;}
.xf_c00335{left:211.434896pt;}
.xe_c00335{left:459.333333pt;}
.x8_c00335{left:475.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_bee17885f8f03c1e508bd21f.woff2')format("woff");}.ff1_c00336{font-family:ff1_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:ff2_c00336;src:url('chunks/assets/font_6f25443fa9517232755b29e8.woff2')format("woff");}.ff2_c00336{font-family:ff2_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:ff3_c00336;src:url('chunks/assets/font_312dcbc400d15f41a76d7d08.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_c37e87372377f99637c5af53.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00336{font-family:ff5_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;}
.ls4_c00336{letter-spacing:0.000000px;}
.ls3_c00336{letter-spacing:3.000000px;}
.ls1_c00336{letter-spacing:6.000000px;}
.ls2_c00336{letter-spacing:6.147000px;}
.ls0_c00336{letter-spacing:11.400000px;}
.ls5_c00336{letter-spacing:30.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;}
}
.ws3_c00336{word-spacing:-46.629000px;}
.ws5_c00336{word-spacing:-27.288000px;}
.ws7_c00336{word-spacing:-20.574000px;}
.ws0_c00336{word-spacing:-18.240000px;}
.ws1_c00336{word-spacing:-16.629000px;}
.ws8_c00336{word-spacing:0.000000px;}
.ws6_c00336{word-spacing:0.048000px;}
.ws4_c00336{word-spacing:1.725000px;}
.ws2_c00336{word-spacing:5.796000px;}
._18_c00336{margin-left:-30.537000px;}
._9_c00336{margin-left:-28.431000px;}
._b_c00336{margin-left:-25.272000px;}
._a_c00336{margin-left:-22.230000px;}
._1a_c00336{margin-left:-19.176000px;}
._1c_c00336{margin-left:-14.469000px;}
._19_c00336{margin-left:-12.285000px;}
._13_c00336{margin-left:-10.776000px;}
._29_c00336{margin-left:-8.946000px;}
._1_c00336{margin-left:-7.866000px;}
._2e_c00336{margin-left:-6.831000px;}
._0_c00336{margin-left:-5.796000px;}
._2_c00336{margin-left:-4.761000px;}
._f_c00336{margin-left:-3.483000px;}
._c_c00336{margin-left:-2.025000px;}
._e_c00336{margin-left:-1.002000px;}
._5_c00336{width:1.350000px;}
._15_c00336{width:2.358000px;}
._4_c00336{width:3.465000px;}
._3_c00336{width:4.812000px;}
._14_c00336{width:6.732000px;}
._17_c00336{width:7.944000px;}
._d_c00336{width:9.723000px;}
._10_c00336{width:11.157000px;}
._11_c00336{width:12.315000px;}
._6_c00336{width:14.040000px;}
._1e_c00336{width:15.270000px;}
._7_c00336{width:16.650000px;}
._28_c00336{width:17.760000px;}
._1d_c00336{width:19.143000px;}
._23_c00336{width:20.742000px;}
._1b_c00336{width:22.515000px;}
._20_c00336{width:24.681000px;}
._22_c00336{width:26.271000px;}
._1f_c00336{width:27.411000px;}
._27_c00336{width:29.256000px;}
._16_c00336{width:31.128000px;}
._26_c00336{width:32.343000px;}
._2b_c00336{width:34.605000px;}
._21_c00336{width:43.263000px;}
._2d_c00336{width:88.020000px;}
._24_c00336{width:91.140000px;}
._12_c00336{width:99.813000px;}
._2c_c00336{width:139.902000px;}
._25_c00336{width:175.749000px;}
._2a_c00336{width:194.121000px;}
._8_c00336{width:490.788000px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(128,128,128);}
.fc0_c00336{color:rgb(0,0,0);}
.fs2_c00336{font-size:45.000000px;}
.fs6_c00336{font-size:48.000000px;}
.fs1_c00336{font-size:60.000000px;}
.fs4_c00336{font-size:66.000000px;}
.fs0_c00336{font-size:69.000000px;}
.fs5_c00336{font-size:81.000000px;}
.fs3_c00336{font-size:117.000000px;}
.y0_c00336{bottom:0.000000px;}
.y21_c00336{bottom:3.105000px;}
.y20_c00336{bottom:7.228371px;}
.y1f_c00336{bottom:76.065000px;}
.y1e_c00336{bottom:127.665000px;}
.y1d_c00336{bottom:151.965000px;}
.y1c_c00336{bottom:175.815000px;}
.y1b_c00336{bottom:200.565000px;}
.y1a_c00336{bottom:226.515000px;}
.y19_c00336{bottom:252.465000px;}
.y18_c00336{bottom:277.065000px;}
.y17_c00336{bottom:301.365000px;}
.y16_c00336{bottom:327.165000px;}
.y15_c00336{bottom:351.765000px;}
.y14_c00336{bottom:376.365000px;}
.y13_c00336{bottom:400.365000px;}
.y12_c00336{bottom:426.315000px;}
.y11_c00336{bottom:450.315000px;}
.y10_c00336{bottom:475.965000px;}
.y2_c00336{bottom:493.815000px;}
.yf_c00336{bottom:500.865000px;}
.y1_c00336{bottom:507.015000px;}
.ye_c00336{bottom:525.315000px;}
.yd_c00336{bottom:549.765000px;}
.yc_c00336{bottom:574.215000px;}
.yb_c00336{bottom:599.415000px;}
.ya_c00336{bottom:624.015000px;}
.y9_c00336{bottom:649.065000px;}
.y8_c00336{bottom:674.115000px;}
.y7_c00336{bottom:699.015000px;}
.y6_c00336{bottom:724.065000px;}
.y5_c00336{bottom:748.665000px;}
.y4_c00336{bottom:773.865000px;}
.y3_c00336{bottom:799.215000px;}
.h6_c00336{height:13.200074px;}
.h7_c00336{height:43.804688px;}
.h3_c00336{height:75.966797px;}
.h2_c00336{height:87.361816px;}
.h5_c00336{height:102.555176px;}
.h4_c00336{height:148.135254px;}
.h1_c00336{height:831.000000px;}
.h0_c00336{height:831.075000px;}
.w2_c00336{width:104.875500px;}
.w0_c00336{width:582.375000px;}
.w1_c00336{width:582.750000px;}
.x0_c00336{left:0.000000px;}
.x4_c00336{left:34.050000px;}
.x5_c00336{left:35.100000px;}
.x7_c00336{left:62.700000px;}
.x6_c00336{left:132.600000px;}
.x3_c00336{left:192.750000px;}
.x9_c00336{left:243.001740px;}
.x8_c00336{left:436.650000px;}
.x2_c00336{left:493.350000px;}
.x1_c00336{left:510.600000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls4_c00336{letter-spacing:0.000000pt;}
.ls3_c00336{letter-spacing:2.666667pt;}
.ls1_c00336{letter-spacing:5.333333pt;}
.ls2_c00336{letter-spacing:5.464000pt;}
.ls0_c00336{letter-spacing:10.133333pt;}
.ls5_c00336{letter-spacing:26.666667pt;}
.ws3_c00336{word-spacing:-41.448000pt;}
.ws5_c00336{word-spacing:-24.256000pt;}
.ws7_c00336{word-spacing:-18.288000pt;}
.ws0_c00336{word-spacing:-16.213333pt;}
.ws1_c00336{word-spacing:-14.781333pt;}
.ws8_c00336{word-spacing:0.000000pt;}
.ws6_c00336{word-spacing:0.042667pt;}
.ws4_c00336{word-spacing:1.533333pt;}
.ws2_c00336{word-spacing:5.152000pt;}
._18_c00336{margin-left:-27.144000pt;}
._9_c00336{margin-left:-25.272000pt;}
._b_c00336{margin-left:-22.464000pt;}
._a_c00336{margin-left:-19.760000pt;}
._1a_c00336{margin-left:-17.045333pt;}
._1c_c00336{margin-left:-12.861333pt;}
._19_c00336{margin-left:-10.920000pt;}
._13_c00336{margin-left:-9.578667pt;}
._29_c00336{margin-left:-7.952000pt;}
._1_c00336{margin-left:-6.992000pt;}
._2e_c00336{margin-left:-6.072000pt;}
._0_c00336{margin-left:-5.152000pt;}
._2_c00336{margin-left:-4.232000pt;}
._f_c00336{margin-left:-3.096000pt;}
._c_c00336{margin-left:-1.800000pt;}
._e_c00336{margin-left:-0.890667pt;}
._5_c00336{width:1.200000pt;}
._15_c00336{width:2.096000pt;}
._4_c00336{width:3.080000pt;}
._3_c00336{width:4.277333pt;}
._14_c00336{width:5.984000pt;}
._17_c00336{width:7.061333pt;}
._d_c00336{width:8.642667pt;}
._10_c00336{width:9.917333pt;}
._11_c00336{width:10.946667pt;}
._6_c00336{width:12.480000pt;}
._1e_c00336{width:13.573333pt;}
._7_c00336{width:14.800000pt;}
._28_c00336{width:15.786667pt;}
._1d_c00336{width:17.016000pt;}
._23_c00336{width:18.437333pt;}
._1b_c00336{width:20.013333pt;}
._20_c00336{width:21.938667pt;}
._22_c00336{width:23.352000pt;}
._1f_c00336{width:24.365333pt;}
._27_c00336{width:26.005333pt;}
._16_c00336{width:27.669333pt;}
._26_c00336{width:28.749333pt;}
._2b_c00336{width:30.760000pt;}
._21_c00336{width:38.456000pt;}
._2d_c00336{width:78.240000pt;}
._24_c00336{width:81.013333pt;}
._12_c00336{width:88.722667pt;}
._2c_c00336{width:124.357333pt;}
._25_c00336{width:156.221333pt;}
._2a_c00336{width:172.552000pt;}
._8_c00336{width:436.256000pt;}
.fs2_c00336{font-size:40.000000pt;}
.fs6_c00336{font-size:42.666667pt;}
.fs1_c00336{font-size:53.333333pt;}
.fs4_c00336{font-size:58.666667pt;}
.fs0_c00336{font-size:61.333333pt;}
.fs5_c00336{font-size:72.000000pt;}
.fs3_c00336{font-size:104.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y21_c00336{bottom:2.760000pt;}
.y20_c00336{bottom:6.425219pt;}
.y1f_c00336{bottom:67.613333pt;}
.y1e_c00336{bottom:113.480000pt;}
.y1d_c00336{bottom:135.080000pt;}
.y1c_c00336{bottom:156.280000pt;}
.y1b_c00336{bottom:178.280000pt;}
.y1a_c00336{bottom:201.346667pt;}
.y19_c00336{bottom:224.413333pt;}
.y18_c00336{bottom:246.280000pt;}
.y17_c00336{bottom:267.880000pt;}
.y16_c00336{bottom:290.813333pt;}
.y15_c00336{bottom:312.680000pt;}
.y14_c00336{bottom:334.546667pt;}
.y13_c00336{bottom:355.880000pt;}
.y12_c00336{bottom:378.946667pt;}
.y11_c00336{bottom:400.280000pt;}
.y10_c00336{bottom:423.080000pt;}
.y2_c00336{bottom:438.946667pt;}
.yf_c00336{bottom:445.213333pt;}
.y1_c00336{bottom:450.680000pt;}
.ye_c00336{bottom:466.946667pt;}
.yd_c00336{bottom:488.680000pt;}
.yc_c00336{bottom:510.413333pt;}
.yb_c00336{bottom:532.813333pt;}
.ya_c00336{bottom:554.680000pt;}
.y9_c00336{bottom:576.946667pt;}
.y8_c00336{bottom:599.213333pt;}
.y7_c00336{bottom:621.346667pt;}
.y6_c00336{bottom:643.613333pt;}
.y5_c00336{bottom:665.480000pt;}
.y4_c00336{bottom:687.880000pt;}
.y3_c00336{bottom:710.413333pt;}
.h6_c00336{height:11.733399pt;}
.h7_c00336{height:38.937500pt;}
.h3_c00336{height:67.526042pt;}
.h2_c00336{height:77.654948pt;}
.h5_c00336{height:91.160156pt;}
.h4_c00336{height:131.675781pt;}
.h1_c00336{height:738.666667pt;}
.h0_c00336{height:738.733333pt;}
.w2_c00336{width:93.222667pt;}
.w0_c00336{width:517.666667pt;}
.w1_c00336{width:518.000000pt;}
.x0_c00336{left:0.000000pt;}
.x4_c00336{left:30.266667pt;}
.x5_c00336{left:31.200000pt;}
.x7_c00336{left:55.733333pt;}
.x6_c00336{left:117.866667pt;}
.x3_c00336{left:171.333333pt;}
.x9_c00336{left:216.001546pt;}
.x8_c00336{left:388.133333pt;}
.x2_c00336{left:438.533333pt;}
.x1_c00336{left:453.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_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_1f6f15282a495b791a477d0f.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.568848;font-style:normal;font-weight:normal;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_f84634428c6093fff76bca73.woff2')format("woff");}.ff2_c00337{font-family:ff2_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:ff3_c00337;src:url('chunks/assets/font_984cacfc027e46e1244c5da6.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_e7b797c1348e15dae85eb000.woff2')format("woff");}.ff4_c00337{font-family:ff4_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:ff5_c00337;src:url('chunks/assets/font_f3bc5f6d5e2523d05a9c0252.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;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_c00337;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00337{font-family:ff6_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;}
.ls2_c00337{letter-spacing:0.000000px;}
.ls3_c00337{letter-spacing:3.000000px;}
.ls1_c00337{letter-spacing:6.000000px;}
.ls0_c00337{letter-spacing:11.400000px;}
.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;}
}
.ws2_c00337{word-spacing:-50.022000px;}
.ws4_c00337{word-spacing:-48.024000px;}
.ws1_c00337{word-spacing:-47.022000px;}
.ws0_c00337{word-spacing:-22.629000px;}
.ws3_c00337{word-spacing:-16.629000px;}
.ws5_c00337{word-spacing:0.000000px;}
._3_c00337{margin-left:-18.906000px;}
._17_c00337{margin-left:-17.097000px;}
._2_c00337{margin-left:-14.073000px;}
._0_c00337{margin-left:-11.799000px;}
._1_c00337{margin-left:-10.695000px;}
._10_c00337{margin-left:-8.349000px;}
._b_c00337{margin-left:-6.486000px;}
._e_c00337{margin-left:-4.416000px;}
._8_c00337{margin-left:-3.174000px;}
._6_c00337{margin-left:-2.070000px;}
._9_c00337{margin-left:-1.035000px;}
._5_c00337{width:1.587000px;}
._a_c00337{width:2.691000px;}
._16_c00337{width:3.864000px;}
._7_c00337{width:4.968000px;}
._d_c00337{width:6.762000px;}
._13_c00337{width:8.625000px;}
._c_c00337{width:10.419000px;}
._f_c00337{width:11.661000px;}
._15_c00337{width:13.593000px;}
._11_c00337{width:15.111000px;}
._12_c00337{width:16.560000px;}
._19_c00337{width:17.826000px;}
._14_c00337{width:18.906000px;}
._1b_c00337{width:20.340000px;}
._18_c00337{width:24.909000px;}
._1e_c00337{width:32.154000px;}
._1c_c00337{width:40.203000px;}
._1d_c00337{width:115.443000px;}
._1a_c00337{width:124.350000px;}
._4_c00337{width:365.514000px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(128,128,128);}
.fc0_c00337{color:rgb(0,0,0);}
.fs5_c00337{font-size:48.000000px;}
.fs3_c00337{font-size:54.000000px;}
.fs2_c00337{font-size:57.000000px;}
.fs1_c00337{font-size:66.000000px;}
.fs0_c00337{font-size:69.000000px;}
.fs4_c00337{font-size:87.000000px;}
.y0_c00337{bottom:0.000000px;}
.y21_c00337{bottom:3.105000px;}
.y20_c00337{bottom:7.228363px;}
.y1e_c00337{bottom:63.750000px;}
.y1d_c00337{bottom:87.750000px;}
.y1c_c00337{bottom:112.350000px;}
.y1b_c00337{bottom:138.000000px;}
.y1a_c00337{bottom:163.650000px;}
.y19_c00337{bottom:213.600000px;}
.y18_c00337{bottom:260.550000px;}
.y17_c00337{bottom:278.400000px;}
.y16_c00337{bottom:296.700000px;}
.y15_c00337{bottom:314.100000px;}
.y14_c00337{bottom:331.200000px;}
.y1f_c00337{bottom:337.500000px;}
.y13_c00337{bottom:348.600000px;}
.y12_c00337{bottom:366.450000px;}
.y11_c00337{bottom:384.300000px;}
.y10_c00337{bottom:402.000000px;}
.yf_c00337{bottom:419.550000px;}
.ye_c00337{bottom:437.400000px;}
.yd_c00337{bottom:472.500000px;}
.yc_c00337{bottom:510.000000px;}
.yb_c00337{bottom:535.200000px;}
.ya_c00337{bottom:559.800000px;}
.y9_c00337{bottom:585.600000px;}
.y8_c00337{bottom:610.500000px;}
.y7_c00337{bottom:635.400000px;}
.y6_c00337{bottom:660.150000px;}
.y5_c00337{bottom:685.350000px;}
.y4_c00337{bottom:709.650000px;}
.y3_c00337{bottom:735.000000px;}
.y2_c00337{bottom:760.050000px;}
.y1_c00337{bottom:785.400000px;}
.h7_c00337{height:13.200074px;}
.h8_c00337{height:43.804688px;}
.h3_c00337{height:55.914551px;}
.h4_c00337{height:68.370117px;}
.h5_c00337{height:80.758301px;}
.h2_c00337{height:87.361816px;}
.h6_c00337{height:92.829000px;}
.h1_c00337{height:827.250000px;}
.h0_c00337{height:827.550000px;}
.w2_c00337{width:104.875500px;}
.w0_c00337{width:572.100000px;}
.w1_c00337{width:572.250000px;}
.x0_c00337{left:0.000000px;}
.xa_c00337{left:58.350000px;}
.x10_c00337{left:63.750000px;}
.x8_c00337{left:72.150000px;}
.x9_c00337{left:96.150000px;}
.xd_c00337{left:108.900000px;}
.x4_c00337{left:109.950000px;}
.x3_c00337{left:111.000000px;}
.x7_c00337{left:112.350000px;}
.x6_c00337{left:122.400000px;}
.x1_c00337{left:126.900000px;}
.xe_c00337{left:132.900000px;}
.xc_c00337{left:134.550000px;}
.x2_c00337{left:137.250000px;}
.xb_c00337{left:193.950000px;}
.x11_c00337{left:237.864258px;}
.x5_c00337{left:260.100000px;}
.xf_c00337{left:512.700000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls2_c00337{letter-spacing:0.000000pt;}
.ls3_c00337{letter-spacing:2.666667pt;}
.ls1_c00337{letter-spacing:5.333333pt;}
.ls0_c00337{letter-spacing:10.133333pt;}
.ws2_c00337{word-spacing:-44.464000pt;}
.ws4_c00337{word-spacing:-42.688000pt;}
.ws1_c00337{word-spacing:-41.797333pt;}
.ws0_c00337{word-spacing:-20.114667pt;}
.ws3_c00337{word-spacing:-14.781333pt;}
.ws5_c00337{word-spacing:0.000000pt;}
._3_c00337{margin-left:-16.805333pt;}
._17_c00337{margin-left:-15.197333pt;}
._2_c00337{margin-left:-12.509333pt;}
._0_c00337{margin-left:-10.488000pt;}
._1_c00337{margin-left:-9.506667pt;}
._10_c00337{margin-left:-7.421333pt;}
._b_c00337{margin-left:-5.765333pt;}
._e_c00337{margin-left:-3.925333pt;}
._8_c00337{margin-left:-2.821333pt;}
._6_c00337{margin-left:-1.840000pt;}
._9_c00337{margin-left:-0.920000pt;}
._5_c00337{width:1.410667pt;}
._a_c00337{width:2.392000pt;}
._16_c00337{width:3.434667pt;}
._7_c00337{width:4.416000pt;}
._d_c00337{width:6.010667pt;}
._13_c00337{width:7.666667pt;}
._c_c00337{width:9.261333pt;}
._f_c00337{width:10.365333pt;}
._15_c00337{width:12.082667pt;}
._11_c00337{width:13.432000pt;}
._12_c00337{width:14.720000pt;}
._19_c00337{width:15.845333pt;}
._14_c00337{width:16.805333pt;}
._1b_c00337{width:18.080000pt;}
._18_c00337{width:22.141333pt;}
._1e_c00337{width:28.581333pt;}
._1c_c00337{width:35.736000pt;}
._1d_c00337{width:102.616000pt;}
._1a_c00337{width:110.533333pt;}
._4_c00337{width:324.901333pt;}
.fs5_c00337{font-size:42.666667pt;}
.fs3_c00337{font-size:48.000000pt;}
.fs2_c00337{font-size:50.666667pt;}
.fs1_c00337{font-size:58.666667pt;}
.fs0_c00337{font-size:61.333333pt;}
.fs4_c00337{font-size:77.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y21_c00337{bottom:2.760000pt;}
.y20_c00337{bottom:6.425212pt;}
.y1e_c00337{bottom:56.666667pt;}
.y1d_c00337{bottom:78.000000pt;}
.y1c_c00337{bottom:99.866667pt;}
.y1b_c00337{bottom:122.666667pt;}
.y1a_c00337{bottom:145.466667pt;}
.y19_c00337{bottom:189.866667pt;}
.y18_c00337{bottom:231.600000pt;}
.y17_c00337{bottom:247.466667pt;}
.y16_c00337{bottom:263.733333pt;}
.y15_c00337{bottom:279.200000pt;}
.y14_c00337{bottom:294.400000pt;}
.y1f_c00337{bottom:300.000000pt;}
.y13_c00337{bottom:309.866667pt;}
.y12_c00337{bottom:325.733333pt;}
.y11_c00337{bottom:341.600000pt;}
.y10_c00337{bottom:357.333333pt;}
.yf_c00337{bottom:372.933333pt;}
.ye_c00337{bottom:388.800000pt;}
.yd_c00337{bottom:420.000000pt;}
.yc_c00337{bottom:453.333333pt;}
.yb_c00337{bottom:475.733333pt;}
.ya_c00337{bottom:497.600000pt;}
.y9_c00337{bottom:520.533333pt;}
.y8_c00337{bottom:542.666667pt;}
.y7_c00337{bottom:564.800000pt;}
.y6_c00337{bottom:586.800000pt;}
.y5_c00337{bottom:609.200000pt;}
.y4_c00337{bottom:630.800000pt;}
.y3_c00337{bottom:653.333333pt;}
.y2_c00337{bottom:675.600000pt;}
.y1_c00337{bottom:698.133333pt;}
.h7_c00337{height:11.733399pt;}
.h8_c00337{height:38.937500pt;}
.h3_c00337{height:49.701823pt;}
.h4_c00337{height:60.773438pt;}
.h5_c00337{height:71.785156pt;}
.h2_c00337{height:77.654948pt;}
.h6_c00337{height:82.514667pt;}
.h1_c00337{height:735.333333pt;}
.h0_c00337{height:735.600000pt;}
.w2_c00337{width:93.222667pt;}
.w0_c00337{width:508.533333pt;}
.w1_c00337{width:508.666667pt;}
.x0_c00337{left:0.000000pt;}
.xa_c00337{left:51.866667pt;}
.x10_c00337{left:56.666667pt;}
.x8_c00337{left:64.133333pt;}
.x9_c00337{left:85.466667pt;}
.xd_c00337{left:96.800000pt;}
.x4_c00337{left:97.733333pt;}
.x3_c00337{left:98.666667pt;}
.x7_c00337{left:99.866667pt;}
.x6_c00337{left:108.800000pt;}
.x1_c00337{left:112.800000pt;}
.xe_c00337{left:118.133333pt;}
.xc_c00337{left:119.600000pt;}
.x2_c00337{left:122.000000pt;}
.xb_c00337{left:172.400000pt;}
.x11_c00337{left:211.434896pt;}
.x5_c00337{left:231.200000pt;}
.xf_c00337{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_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_2b7f5076eec11d73e5042247.woff2')format("woff");}.ff1_c00338{font-family:ff1_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:ff2_c00338;src:url('chunks/assets/font_20231f9cf376d24b4069f336.woff2')format("woff");}.ff2_c00338{font-family:ff2_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:ff3_c00338;src:url('chunks/assets/font_53dee082a0e47da797741369.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.311035;font-style:normal;font-weight:normal;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_a74709b222ba85e5784ed478.woff2')format("woff");}.ff4_c00338{font-family:ff4_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:ff5_c00338;src:url('chunks/assets/font_c5c12325a325930a63ed3e08.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00338;src:url('chunks/assets/font_ed17f8bd34aee0ca4c37d9e9.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;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_c00338;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00338{font-family:ff7_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:ff8_c00338;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00338{font-family:ff8_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);}
.m1_c00338{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls9_c00338{letter-spacing:-6.000000px;}
.ls5_c00338{letter-spacing:0.000000px;}
.ls6_c00338{letter-spacing:3.000000px;}
.ls7_c00338{letter-spacing:6.000000px;}
.ls1_c00338{letter-spacing:6.771000px;}
.ls4_c00338{letter-spacing:8.550000px;}
.ls3_c00338{letter-spacing:9.000000px;}
.ls8_c00338{letter-spacing:30.000000px;}
.ls0_c00338{letter-spacing:433.971000px;}
.ls2_c00338{letter-spacing:1012.248000px;}
.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;}
}
.ws2_c00338{word-spacing:-47.022000px;}
.ws6_c00338{word-spacing:-41.250000px;}
.ws4_c00338{word-spacing:-27.798000px;}
.ws5_c00338{word-spacing:-22.629000px;}
.ws1_c00338{word-spacing:-20.352000px;}
.ws0_c00338{word-spacing:-16.629000px;}
.wsa_c00338{word-spacing:-16.500000px;}
.ws3_c00338{word-spacing:-15.906000px;}
.ws7_c00338{word-spacing:-13.014000px;}
.ws9_c00338{word-spacing:-11.250000px;}
.ws8_c00338{word-spacing:-0.864000px;}
.wsb_c00338{word-spacing:0.000000px;}
._16_c00338{margin-left:-26.634000px;}
._27_c00338{margin-left:-22.494000px;}
._21_c00338{margin-left:-20.544000px;}
._2c_c00338{margin-left:-19.107000px;}
._18_c00338{margin-left:-17.733000px;}
._15_c00338{margin-left:-16.017000px;}
._2d_c00338{margin-left:-14.997000px;}
._28_c00338{margin-left:-13.902000px;}
._2e_c00338{margin-left:-12.825000px;}
._1e_c00338{margin-left:-11.643000px;}
._d_c00338{margin-left:-10.374000px;}
._13_c00338{margin-left:-9.054000px;}
._8_c00338{margin-left:-7.851000px;}
._f_c00338{margin-left:-6.693000px;}
._c_c00338{margin-left:-5.418000px;}
._3_c00338{margin-left:-3.726000px;}
._4_c00338{margin-left:-2.577000px;}
._e_c00338{margin-left:-1.428000px;}
._1_c00338{width:1.386000px;}
._1f_c00338{width:2.589000px;}
._0_c00338{width:3.630000px;}
._10_c00338{width:5.172000px;}
._6_c00338{width:6.681000px;}
._b_c00338{width:7.740000px;}
._11_c00338{width:9.798000px;}
._5_c00338{width:10.914000px;}
._9_c00338{width:12.213000px;}
._2_c00338{width:14.340000px;}
._1b_c00338{width:15.450000px;}
._2a_c00338{width:17.769000px;}
._23_c00338{width:19.008000px;}
._20_c00338{width:20.148000px;}
._12_c00338{width:22.161000px;}
._25_c00338{width:23.517000px;}
._1c_c00338{width:25.380000px;}
._7_c00338{width:26.805000px;}
._22_c00338{width:29.547000px;}
._30_c00338{width:33.627000px;}
._24_c00338{width:39.042000px;}
._26_c00338{width:41.751000px;}
._1d_c00338{width:43.557000px;}
._2b_c00338{width:46.494000px;}
._2f_c00338{width:61.167000px;}
._31_c00338{width:64.242000px;}
._33_c00338{width:85.140000px;}
._29_c00338{width:90.735000px;}
._35_c00338{width:100.188000px;}
._a_c00338{width:105.501000px;}
._32_c00338{width:109.620000px;}
._34_c00338{width:119.601000px;}
._14_c00338{width:138.792000px;}
._17_c00338{width:274.299000px;}
._19_c00338{width:300.159000px;}
._37_c00338{width:559.962000px;}
._1a_c00338{width:761.661000px;}
._36_c00338{width:1013.121000px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(128,128,128);}
.fc0_c00338{color:rgb(0,0,0);}
.fs5_c00338{font-size:45.000000px;}
.fs9_c00338{font-size:48.000000px;}
.fs7_c00338{font-size:51.000000px;}
.fs6_c00338{font-size:54.000000px;}
.fs8_c00338{font-size:63.000000px;}
.fs0_c00338{font-size:66.000000px;}
.fs1_c00338{font-size:69.000000px;}
.fs2_c00338{font-size:72.000000px;}
.fs3_c00338{font-size:75.000000px;}
.fs4_c00338{font-size:78.000000px;}
.y0_c00338{bottom:0.000000px;}
.y24_c00338{bottom:3.105000px;}
.y23_c00338{bottom:7.228371px;}
.y22_c00338{bottom:74.265000px;}
.y21_c00338{bottom:91.815000px;}
.y20_c00338{bottom:109.065000px;}
.y1f_c00338{bottom:126.915000px;}
.y1e_c00338{bottom:144.465000px;}
.y1d_c00338{bottom:162.015000px;}
.y1c_c00338{bottom:178.965000px;}
.y1b_c00338{bottom:197.115000px;}
.y1a_c00338{bottom:214.665000px;}
.y19_c00338{bottom:233.565000px;}
.y18_c00338{bottom:249.765000px;}
.y17_c00338{bottom:267.315000px;}
.y16_c00338{bottom:302.115000px;}
.y13_c00338{bottom:348.015000px;}
.y12_c00338{bottom:372.915000px;}
.y11_c00338{bottom:397.365000px;}
.y10_c00338{bottom:422.565000px;}
.yf_c00338{bottom:447.615000px;}
.y15_c00338{bottom:452.265000px;}
.y14_c00338{bottom:469.815000px;}
.ye_c00338{bottom:472.515000px;}
.yd_c00338{bottom:497.115000px;}
.yc_c00338{bottom:521.565000px;}
.yb_c00338{bottom:545.865000px;}
.ya_c00338{bottom:570.765000px;}
.y9_c00338{bottom:595.665000px;}
.y8_c00338{bottom:620.415000px;}
.y7_c00338{bottom:645.015000px;}
.y6_c00338{bottom:669.615000px;}
.y5_c00338{bottom:693.915000px;}
.y4_c00338{bottom:719.265000px;}
.y3_c00338{bottom:744.615000px;}
.y2_c00338{bottom:769.515000px;}
.y1_c00338{bottom:794.265000px;}
.h9_c00338{height:13.200074px;}
.ha_c00338{height:43.804688px;}
.h7_c00338{height:44.143066px;}
.h8_c00338{height:68.370117px;}
.h6_c00338{height:80.758301px;}
.h3_c00338{height:87.361816px;}
.h4_c00338{height:87.780762px;}
.h2_c00338{height:91.160156px;}
.h5_c00338{height:98.756836px;}
.h0_c00338{height:825.675000px;}
.h1_c00338{height:825.750000px;}
.w2_c00338{width:104.875500px;}
.w1_c00338{width:578.250000px;}
.w0_c00338{width:578.325000px;}
.x0_c00338{left:0.000000px;}
.x7_c00338{left:31.950000px;}
.x5_c00338{left:33.450000px;}
.x6_c00338{left:35.400000px;}
.x4_c00338{left:36.450000px;}
.x3_c00338{left:37.500000px;}
.x2_c00338{left:40.800000px;}
.xc_c00338{left:44.850000px;}
.xb_c00338{left:54.900000px;}
.xa_c00338{left:175.800000px;}
.x1_c00338{left:209.550000px;}
.xd_c00338{left:240.976730px;}
.x9_c00338{left:537.600000px;}
.x8_c00338{left:538.650000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls9_c00338{letter-spacing:-5.333333pt;}
.ls5_c00338{letter-spacing:0.000000pt;}
.ls6_c00338{letter-spacing:2.666667pt;}
.ls7_c00338{letter-spacing:5.333333pt;}
.ls1_c00338{letter-spacing:6.018667pt;}
.ls4_c00338{letter-spacing:7.600000pt;}
.ls3_c00338{letter-spacing:8.000000pt;}
.ls8_c00338{letter-spacing:26.666667pt;}
.ls0_c00338{letter-spacing:385.752000pt;}
.ls2_c00338{letter-spacing:899.776000pt;}
.ws2_c00338{word-spacing:-41.797333pt;}
.ws6_c00338{word-spacing:-36.666667pt;}
.ws4_c00338{word-spacing:-24.709333pt;}
.ws5_c00338{word-spacing:-20.114667pt;}
.ws1_c00338{word-spacing:-18.090667pt;}
.ws0_c00338{word-spacing:-14.781333pt;}
.wsa_c00338{word-spacing:-14.666667pt;}
.ws3_c00338{word-spacing:-14.138667pt;}
.ws7_c00338{word-spacing:-11.568000pt;}
.ws9_c00338{word-spacing:-10.000000pt;}
.ws8_c00338{word-spacing:-0.768000pt;}
.wsb_c00338{word-spacing:0.000000pt;}
._16_c00338{margin-left:-23.674667pt;}
._27_c00338{margin-left:-19.994667pt;}
._21_c00338{margin-left:-18.261333pt;}
._2c_c00338{margin-left:-16.984000pt;}
._18_c00338{margin-left:-15.762667pt;}
._15_c00338{margin-left:-14.237333pt;}
._2d_c00338{margin-left:-13.330667pt;}
._28_c00338{margin-left:-12.357333pt;}
._2e_c00338{margin-left:-11.400000pt;}
._1e_c00338{margin-left:-10.349333pt;}
._d_c00338{margin-left:-9.221333pt;}
._13_c00338{margin-left:-8.048000pt;}
._8_c00338{margin-left:-6.978667pt;}
._f_c00338{margin-left:-5.949333pt;}
._c_c00338{margin-left:-4.816000pt;}
._3_c00338{margin-left:-3.312000pt;}
._4_c00338{margin-left:-2.290667pt;}
._e_c00338{margin-left:-1.269333pt;}
._1_c00338{width:1.232000pt;}
._1f_c00338{width:2.301333pt;}
._0_c00338{width:3.226667pt;}
._10_c00338{width:4.597333pt;}
._6_c00338{width:5.938667pt;}
._b_c00338{width:6.880000pt;}
._11_c00338{width:8.709333pt;}
._5_c00338{width:9.701333pt;}
._9_c00338{width:10.856000pt;}
._2_c00338{width:12.746667pt;}
._1b_c00338{width:13.733333pt;}
._2a_c00338{width:15.794667pt;}
._23_c00338{width:16.896000pt;}
._20_c00338{width:17.909333pt;}
._12_c00338{width:19.698667pt;}
._25_c00338{width:20.904000pt;}
._1c_c00338{width:22.560000pt;}
._7_c00338{width:23.826667pt;}
._22_c00338{width:26.264000pt;}
._30_c00338{width:29.890667pt;}
._24_c00338{width:34.704000pt;}
._26_c00338{width:37.112000pt;}
._1d_c00338{width:38.717333pt;}
._2b_c00338{width:41.328000pt;}
._2f_c00338{width:54.370667pt;}
._31_c00338{width:57.104000pt;}
._33_c00338{width:75.680000pt;}
._29_c00338{width:80.653333pt;}
._35_c00338{width:89.056000pt;}
._a_c00338{width:93.778667pt;}
._32_c00338{width:97.440000pt;}
._34_c00338{width:106.312000pt;}
._14_c00338{width:123.370667pt;}
._17_c00338{width:243.821333pt;}
._19_c00338{width:266.808000pt;}
._37_c00338{width:497.744000pt;}
._1a_c00338{width:677.032000pt;}
._36_c00338{width:900.552000pt;}
.fs5_c00338{font-size:40.000000pt;}
.fs9_c00338{font-size:42.666667pt;}
.fs7_c00338{font-size:45.333333pt;}
.fs6_c00338{font-size:48.000000pt;}
.fs8_c00338{font-size:56.000000pt;}
.fs0_c00338{font-size:58.666667pt;}
.fs1_c00338{font-size:61.333333pt;}
.fs2_c00338{font-size:64.000000pt;}
.fs3_c00338{font-size:66.666667pt;}
.fs4_c00338{font-size:69.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y24_c00338{bottom:2.760000pt;}
.y23_c00338{bottom:6.425219pt;}
.y22_c00338{bottom:66.013333pt;}
.y21_c00338{bottom:81.613333pt;}
.y20_c00338{bottom:96.946667pt;}
.y1f_c00338{bottom:112.813333pt;}
.y1e_c00338{bottom:128.413333pt;}
.y1d_c00338{bottom:144.013333pt;}
.y1c_c00338{bottom:159.080000pt;}
.y1b_c00338{bottom:175.213333pt;}
.y1a_c00338{bottom:190.813333pt;}
.y19_c00338{bottom:207.613333pt;}
.y18_c00338{bottom:222.013333pt;}
.y17_c00338{bottom:237.613333pt;}
.y16_c00338{bottom:268.546667pt;}
.y13_c00338{bottom:309.346667pt;}
.y12_c00338{bottom:331.480000pt;}
.y11_c00338{bottom:353.213333pt;}
.y10_c00338{bottom:375.613333pt;}
.yf_c00338{bottom:397.880000pt;}
.y15_c00338{bottom:402.013333pt;}
.y14_c00338{bottom:417.613333pt;}
.ye_c00338{bottom:420.013333pt;}
.yd_c00338{bottom:441.880000pt;}
.yc_c00338{bottom:463.613333pt;}
.yb_c00338{bottom:485.213333pt;}
.ya_c00338{bottom:507.346667pt;}
.y9_c00338{bottom:529.480000pt;}
.y8_c00338{bottom:551.480000pt;}
.y7_c00338{bottom:573.346667pt;}
.y6_c00338{bottom:595.213333pt;}
.y5_c00338{bottom:616.813333pt;}
.y4_c00338{bottom:639.346667pt;}
.y3_c00338{bottom:661.880000pt;}
.y2_c00338{bottom:684.013333pt;}
.y1_c00338{bottom:706.013333pt;}
.h9_c00338{height:11.733399pt;}
.ha_c00338{height:38.937500pt;}
.h7_c00338{height:39.238281pt;}
.h8_c00338{height:60.773438pt;}
.h6_c00338{height:71.785156pt;}
.h3_c00338{height:77.654948pt;}
.h4_c00338{height:78.027344pt;}
.h2_c00338{height:81.031250pt;}
.h5_c00338{height:87.783854pt;}
.h0_c00338{height:733.933333pt;}
.h1_c00338{height:734.000000pt;}
.w2_c00338{width:93.222667pt;}
.w1_c00338{width:514.000000pt;}
.w0_c00338{width:514.066667pt;}
.x0_c00338{left:0.000000pt;}
.x7_c00338{left:28.400000pt;}
.x5_c00338{left:29.733333pt;}
.x6_c00338{left:31.466667pt;}
.x4_c00338{left:32.400000pt;}
.x3_c00338{left:33.333333pt;}
.x2_c00338{left:36.266667pt;}
.xc_c00338{left:39.866667pt;}
.xb_c00338{left:48.800000pt;}
.xa_c00338{left:156.266667pt;}
.x1_c00338{left:186.266667pt;}
.xd_c00338{left:214.201538pt;}
.x9_c00338{left:477.866667pt;}
.x8_c00338{left:478.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_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_5df5b75c809708a5d08604e8.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.568848;font-style:normal;font-weight:normal;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_064478a5e5a5261194f4e2f2.woff2')format("woff");}.ff2_c00339{font-family:ff2_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:ff3_c00339;src:url('chunks/assets/font_8a9466d641129d26537cf2e3.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_d5559dd076aeb6ce7877378b.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.568848;font-style:normal;font-weight:normal;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_7c1ce934f2e20fee1d9e93ee.woff2')format("woff");}.ff5_c00339{font-family:ff5_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:ff6_c00339;src:url('chunks/assets/font_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff6_c00339{font-family:ff6_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:ff7_c00339;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00339{font-family:ff7_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;}
.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);}
.v1_c00339{vertical-align:-91.800000px;}
.v0_c00339{vertical-align:0.000000px;}
.ls7_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.600000px;}
.ls8_c00339{letter-spacing:3.000000px;}
.ls6_c00339{letter-spacing:5.400000px;}
.ls1_c00339{letter-spacing:6.000000px;}
.ls5_c00339{letter-spacing:13.725000px;}
.ls4_c00339{letter-spacing:14.325000px;}
.ls2_c00339{letter-spacing:37.971000px;}
.ls3_c00339{letter-spacing:41.571000px;}
.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;}
}
.ws5_c00339{word-spacing:-47.022000px;}
.ws0_c00339{word-spacing:-22.764000px;}
.ws6_c00339{word-spacing:-22.629000px;}
.ws3_c00339{word-spacing:-17.478000px;}
.ws4_c00339{word-spacing:-16.629000px;}
.ws1_c00339{word-spacing:-0.483000px;}
.ws7_c00339{word-spacing:0.000000px;}
.ws2_c00339{word-spacing:6.555000px;}
._1d_c00339{margin-left:-41.952000px;}
._21_c00339{margin-left:-27.972000px;}
._3_c00339{margin-left:-19.941000px;}
._1b_c00339{margin-left:-13.317000px;}
._2_c00339{margin-left:-11.799000px;}
._1f_c00339{margin-left:-10.602000px;}
._0_c00339{margin-left:-9.315000px;}
._1_c00339{margin-left:-7.590000px;}
._18_c00339{margin-left:-5.922000px;}
._e_c00339{margin-left:-3.888000px;}
._5_c00339{margin-left:-2.484000px;}
._6_c00339{margin-left:-1.242000px;}
._7_c00339{width:1.242000px;}
._9_c00339{width:2.646000px;}
._a_c00339{width:3.996000px;}
._b_c00339{width:5.724000px;}
._d_c00339{width:7.344000px;}
._19_c00339{width:8.442000px;}
._8_c00339{width:9.936000px;}
._10_c00339{width:11.178000px;}
._16_c00339{width:12.894000px;}
._c_c00339{width:14.688000px;}
._27_c00339{width:15.708000px;}
._11_c00339{width:17.010000px;}
._f_c00339{width:18.198000px;}
._1a_c00339{width:19.770000px;}
._12_c00339{width:20.778000px;}
._13_c00339{width:22.926000px;}
._22_c00339{width:24.693000px;}
._17_c00339{width:25.953000px;}
._1c_c00339{width:32.397000px;}
._15_c00339{width:34.431000px;}
._14_c00339{width:37.809000px;}
._25_c00339{width:43.332000px;}
._23_c00339{width:97.566000px;}
._28_c00339{width:106.815000px;}
._20_c00339{width:108.882000px;}
._24_c00339{width:195.126000px;}
._1e_c00339{width:198.789000px;}
._26_c00339{width:370.125000px;}
._4_c00339{width:371.340000px;}
._29_c00339{width:549.414000px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(128,128,128);}
.fc0_c00339{color:rgb(0,0,0);}
.fs4_c00339{font-size:48.000000px;}
.fs2_c00339{font-size:54.000000px;}
.fs3_c00339{font-size:57.000000px;}
.fs1_c00339{font-size:66.000000px;}
.fs0_c00339{font-size:69.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1e_c00339{bottom:3.105000px;}
.y1d_c00339{bottom:7.228363px;}
.y1c_c00339{bottom:72.600000px;}
.y1b_c00339{bottom:98.250000px;}
.y1a_c00339{bottom:123.600000px;}
.y19_c00339{bottom:148.800000px;}
.y18_c00339{bottom:175.200000px;}
.y17_c00339{bottom:198.750000px;}
.y16_c00339{bottom:223.350000px;}
.y15_c00339{bottom:248.850000px;}
.y14_c00339{bottom:274.350000px;}
.y13_c00339{bottom:299.100000px;}
.y12_c00339{bottom:323.100000px;}
.y11_c00339{bottom:348.600000px;}
.y10_c00339{bottom:373.350000px;}
.yf_c00339{bottom:397.950000px;}
.ye_c00339{bottom:422.850000px;}
.yd_c00339{bottom:447.900000px;}
.yc_c00339{bottom:473.100000px;}
.yb_c00339{bottom:497.850000px;}
.ya_c00339{bottom:522.750000px;}
.y9_c00339{bottom:547.800000px;}
.y8_c00339{bottom:572.850000px;}
.y7_c00339{bottom:597.450000px;}
.y6_c00339{bottom:622.650000px;}
.y5_c00339{bottom:648.000000px;}
.y4_c00339{bottom:695.850000px;}
.y3_c00339{bottom:735.450000px;}
.y2_c00339{bottom:753.000000px;}
.y1_c00339{bottom:773.250000px;}
.h6_c00339{height:13.200074px;}
.h7_c00339{height:43.804688px;}
.h4_c00339{height:68.370117px;}
.h5_c00339{height:80.758301px;}
.h3_c00339{height:83.563477px;}
.h2_c00339{height:87.361816px;}
.h0_c00339{height:818.100000px;}
.h1_c00339{height:818.250000px;}
.w2_c00339{width:104.875500px;}
.w0_c00339{width:565.350000px;}
.w1_c00339{width:565.500000px;}
.x0_c00339{left:0.000000px;}
.xb_c00339{left:38.700000px;}
.xc_c00339{left:54.000000px;}
.xa_c00339{left:55.350000px;}
.x9_c00339{left:57.300000px;}
.x8_c00339{left:75.150000px;}
.xd_c00339{left:105.300000px;}
.x5_c00339{left:106.650000px;}
.x7_c00339{left:107.700000px;}
.x2_c00339{left:109.650000px;}
.x1_c00339{left:123.600000px;}
.x4_c00339{left:133.350000px;}
.x3_c00339{left:142.350000px;}
.x6_c00339{left:144.000000px;}
.xe_c00339{left:234.489258px;}
@media print{
.v1_c00339{vertical-align:-81.600000pt;}
.v0_c00339{vertical-align:0.000000pt;}
.ls7_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.533333pt;}
.ls8_c00339{letter-spacing:2.666667pt;}
.ls6_c00339{letter-spacing:4.800000pt;}
.ls1_c00339{letter-spacing:5.333333pt;}
.ls5_c00339{letter-spacing:12.200000pt;}
.ls4_c00339{letter-spacing:12.733333pt;}
.ls2_c00339{letter-spacing:33.752000pt;}
.ls3_c00339{letter-spacing:36.952000pt;}
.ws5_c00339{word-spacing:-41.797333pt;}
.ws0_c00339{word-spacing:-20.234667pt;}
.ws6_c00339{word-spacing:-20.114667pt;}
.ws3_c00339{word-spacing:-15.536000pt;}
.ws4_c00339{word-spacing:-14.781333pt;}
.ws1_c00339{word-spacing:-0.429333pt;}
.ws7_c00339{word-spacing:0.000000pt;}
.ws2_c00339{word-spacing:5.826667pt;}
._1d_c00339{margin-left:-37.290667pt;}
._21_c00339{margin-left:-24.864000pt;}
._3_c00339{margin-left:-17.725333pt;}
._1b_c00339{margin-left:-11.837333pt;}
._2_c00339{margin-left:-10.488000pt;}
._1f_c00339{margin-left:-9.424000pt;}
._0_c00339{margin-left:-8.280000pt;}
._1_c00339{margin-left:-6.746667pt;}
._18_c00339{margin-left:-5.264000pt;}
._e_c00339{margin-left:-3.456000pt;}
._5_c00339{margin-left:-2.208000pt;}
._6_c00339{margin-left:-1.104000pt;}
._7_c00339{width:1.104000pt;}
._9_c00339{width:2.352000pt;}
._a_c00339{width:3.552000pt;}
._b_c00339{width:5.088000pt;}
._d_c00339{width:6.528000pt;}
._19_c00339{width:7.504000pt;}
._8_c00339{width:8.832000pt;}
._10_c00339{width:9.936000pt;}
._16_c00339{width:11.461333pt;}
._c_c00339{width:13.056000pt;}
._27_c00339{width:13.962667pt;}
._11_c00339{width:15.120000pt;}
._f_c00339{width:16.176000pt;}
._1a_c00339{width:17.573333pt;}
._12_c00339{width:18.469333pt;}
._13_c00339{width:20.378667pt;}
._22_c00339{width:21.949333pt;}
._17_c00339{width:23.069333pt;}
._1c_c00339{width:28.797333pt;}
._15_c00339{width:30.605333pt;}
._14_c00339{width:33.608000pt;}
._25_c00339{width:38.517333pt;}
._23_c00339{width:86.725333pt;}
._28_c00339{width:94.946667pt;}
._20_c00339{width:96.784000pt;}
._24_c00339{width:173.445333pt;}
._1e_c00339{width:176.701333pt;}
._26_c00339{width:329.000000pt;}
._4_c00339{width:330.080000pt;}
._29_c00339{width:488.368000pt;}
.fs4_c00339{font-size:42.666667pt;}
.fs2_c00339{font-size:48.000000pt;}
.fs3_c00339{font-size:50.666667pt;}
.fs1_c00339{font-size:58.666667pt;}
.fs0_c00339{font-size:61.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y1e_c00339{bottom:2.760000pt;}
.y1d_c00339{bottom:6.425212pt;}
.y1c_c00339{bottom:64.533333pt;}
.y1b_c00339{bottom:87.333333pt;}
.y1a_c00339{bottom:109.866667pt;}
.y19_c00339{bottom:132.266667pt;}
.y18_c00339{bottom:155.733333pt;}
.y17_c00339{bottom:176.666667pt;}
.y16_c00339{bottom:198.533333pt;}
.y15_c00339{bottom:221.200000pt;}
.y14_c00339{bottom:243.866667pt;}
.y13_c00339{bottom:265.866667pt;}
.y12_c00339{bottom:287.200000pt;}
.y11_c00339{bottom:309.866667pt;}
.y10_c00339{bottom:331.866667pt;}
.yf_c00339{bottom:353.733333pt;}
.ye_c00339{bottom:375.866667pt;}
.yd_c00339{bottom:398.133333pt;}
.yc_c00339{bottom:420.533333pt;}
.yb_c00339{bottom:442.533333pt;}
.ya_c00339{bottom:464.666667pt;}
.y9_c00339{bottom:486.933333pt;}
.y8_c00339{bottom:509.200000pt;}
.y7_c00339{bottom:531.066667pt;}
.y6_c00339{bottom:553.466667pt;}
.y5_c00339{bottom:576.000000pt;}
.y4_c00339{bottom:618.533333pt;}
.y3_c00339{bottom:653.733333pt;}
.y2_c00339{bottom:669.333333pt;}
.y1_c00339{bottom:687.333333pt;}
.h6_c00339{height:11.733399pt;}
.h7_c00339{height:38.937500pt;}
.h4_c00339{height:60.773438pt;}
.h5_c00339{height:71.785156pt;}
.h3_c00339{height:74.278646pt;}
.h2_c00339{height:77.654948pt;}
.h0_c00339{height:727.200000pt;}
.h1_c00339{height:727.333333pt;}
.w2_c00339{width:93.222667pt;}
.w0_c00339{width:502.533333pt;}
.w1_c00339{width:502.666667pt;}
.x0_c00339{left:0.000000pt;}
.xb_c00339{left:34.400000pt;}
.xc_c00339{left:48.000000pt;}
.xa_c00339{left:49.200000pt;}
.x9_c00339{left:50.933333pt;}
.x8_c00339{left:66.800000pt;}
.xd_c00339{left:93.600000pt;}
.x5_c00339{left:94.800000pt;}
.x7_c00339{left:95.733333pt;}
.x2_c00339{left:97.466667pt;}
.x1_c00339{left:109.866667pt;}
.x4_c00339{left:118.533333pt;}
.x3_c00339{left:126.533333pt;}
.x6_c00339{left:128.000000pt;}
.xe_c00339{left:208.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_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_f9dcf34c8396e96f359f8ee8.woff2')format("woff");}.ff1_c00340{font-family:ff1_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:ff2_c00340;src:url('chunks/assets/font_42a7c06e4c5cb38851732293.woff2')format("woff");}.ff2_c00340{font-family:ff2_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:ff3_c00340;src:url('chunks/assets/font_82b613f0c11c7da846baa2d4.woff2')format("woff");}.ff3_c00340{font-family:ff3_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:ff4_c00340;src:url('chunks/assets/font_8673cd05d8adba87c36eb098.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;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_c00340;src:url('chunks/assets/font_b8b75fc5624133abc86c8f9b.woff2')format("woff");}.ff5_c00340{font-family:ff5_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:ff6_c00340;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00340{font-family:ff6_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;}
.m1_c00340{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_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00340{vertical-align:-73.200000px;}
.v0_c00340{vertical-align:0.000000px;}
.ls4_c00340{letter-spacing:0.000000px;}
.ls5_c00340{letter-spacing:3.000000px;}
.ls0_c00340{letter-spacing:6.000000px;}
.ls6_c00340{letter-spacing:9.000000px;}
.ls2_c00340{letter-spacing:13.200000px;}
.ls1_c00340{letter-spacing:13.290000px;}
.ls3_c00340{letter-spacing:30.000000px;}
.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;}
}
.ws3_c00340{word-spacing:-49.818000px;}
.ws2_c00340{word-spacing:-47.022000px;}
.ws4_c00340{word-spacing:-22.737000px;}
.ws1_c00340{word-spacing:-22.629000px;}
.ws0_c00340{word-spacing:-16.629000px;}
.ws6_c00340{word-spacing:0.000000px;}
.ws5_c00340{word-spacing:955.800000px;}
._25_c00340{margin-left:-22.632000px;}
._16_c00340{margin-left:-20.838000px;}
._11_c00340{margin-left:-18.216000px;}
._24_c00340{margin-left:-16.830000px;}
._23_c00340{margin-left:-14.415000px;}
._1e_c00340{margin-left:-13.317000px;}
._1d_c00340{margin-left:-11.799000px;}
._e_c00340{margin-left:-10.488000px;}
._20_c00340{margin-left:-8.838000px;}
._14_c00340{margin-left:-7.245000px;}
._4_c00340{margin-left:-6.003000px;}
._5_c00340{margin-left:-4.002000px;}
._7_c00340{margin-left:-2.967000px;}
._6_c00340{margin-left:-1.587000px;}
._0_c00340{width:1.518000px;}
._3_c00340{width:3.450000px;}
._15_c00340{width:4.623000px;}
._9_c00340{width:5.796000px;}
._1c_c00340{width:6.900000px;}
._8_c00340{width:8.004000px;}
._22_c00340{width:9.177000px;}
._19_c00340{width:10.281000px;}
._12_c00340{width:11.523000px;}
._1_c00340{width:12.627000px;}
._d_c00340{width:13.737000px;}
._c_c00340{width:14.835000px;}
._b_c00340{width:15.870000px;}
._10_c00340{width:17.664000px;}
._1f_c00340{width:19.941000px;}
._1b_c00340{width:33.741000px;}
._13_c00340{width:36.501000px;}
._18_c00340{width:40.251000px;}
._21_c00340{width:45.816000px;}
._f_c00340{width:91.008000px;}
._17_c00340{width:107.535000px;}
._26_c00340{width:108.873000px;}
._a_c00340{width:118.887000px;}
._27_c00340{width:133.275000px;}
._1a_c00340{width:190.596000px;}
._2_c00340{width:434.553000px;}
._28_c00340{width:444.396000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(128,128,128);}
.fc0_c00340{color:rgb(0,0,0);}
.fs5_c00340{font-size:48.000000px;}
.fs2_c00340{font-size:54.000000px;}
.fs3_c00340{font-size:57.000000px;}
.fs4_c00340{font-size:60.000000px;}
.fs1_c00340{font-size:66.000000px;}
.fs0_c00340{font-size:69.000000px;}
.y0_c00340{bottom:0.000000px;}
.y1f_c00340{bottom:3.105000px;}
.y1e_c00340{bottom:7.228369px;}
.y1d_c00340{bottom:79.020000px;}
.y1c_c00340{bottom:95.220000px;}
.y1b_c00340{bottom:113.070000px;}
.y1a_c00340{bottom:130.170000px;}
.y19_c00340{bottom:164.970000px;}
.y18_c00340{bottom:211.170000px;}
.y17_c00340{bottom:235.470000px;}
.y16_c00340{bottom:260.220000px;}
.y15_c00340{bottom:284.820000px;}
.y14_c00340{bottom:309.720000px;}
.y13_c00340{bottom:334.470000px;}
.y12_c00340{bottom:358.770000px;}
.y11_c00340{bottom:383.670000px;}
.y10_c00340{bottom:407.370000px;}
.yf_c00340{bottom:433.020000px;}
.ye_c00340{bottom:456.870000px;}
.yd_c00340{bottom:482.520000px;}
.yc_c00340{bottom:506.520000px;}
.yb_c00340{bottom:530.820000px;}
.ya_c00340{bottom:555.570000px;}
.y9_c00340{bottom:580.170000px;}
.y8_c00340{bottom:605.070000px;}
.y7_c00340{bottom:629.670000px;}
.y6_c00340{bottom:655.020000px;}
.y5_c00340{bottom:679.770000px;}
.y4_c00340{bottom:704.370000px;}
.y3_c00340{bottom:729.570000px;}
.y2_c00340{bottom:754.620000px;}
.y1_c00340{bottom:779.220000px;}
.h6_c00340{height:13.200073px;}
.h7_c00340{height:43.804688px;}
.h3_c00340{height:56.592000px;}
.h2_c00340{height:58.536000px;}
.h4_c00340{height:66.713379px;}
.h5_c00340{height:68.370117px;}
.h1_c00340{height:87.361816px;}
.h0_c00340{height:813.750000px;}
.w2_c00340{width:104.875500px;}
.w1_c00340{width:570.000000px;}
.w0_c00340{width:570.225000px;}
.x0_c00340{left:0.000000px;}
.x7_c00340{left:31.050000px;}
.x6_c00340{left:34.050000px;}
.x3_c00340{left:35.100000px;}
.x4_c00340{left:37.500000px;}
.x9_c00340{left:55.650000px;}
.x5_c00340{left:58.500000px;}
.x2_c00340{left:62.550000px;}
.x8_c00340{left:177.750000px;}
.x1_c00340{left:205.500000px;}
.xb_c00340{left:236.926758px;}
.xa_c00340{left:462.000000px;}
@media print{
.v1_c00340{vertical-align:-65.066667pt;}
.v0_c00340{vertical-align:0.000000pt;}
.ls4_c00340{letter-spacing:0.000000pt;}
.ls5_c00340{letter-spacing:2.666667pt;}
.ls0_c00340{letter-spacing:5.333333pt;}
.ls6_c00340{letter-spacing:8.000000pt;}
.ls2_c00340{letter-spacing:11.733333pt;}
.ls1_c00340{letter-spacing:11.813333pt;}
.ls3_c00340{letter-spacing:26.666667pt;}
.ws3_c00340{word-spacing:-44.282667pt;}
.ws2_c00340{word-spacing:-41.797333pt;}
.ws4_c00340{word-spacing:-20.210667pt;}
.ws1_c00340{word-spacing:-20.114667pt;}
.ws0_c00340{word-spacing:-14.781333pt;}
.ws6_c00340{word-spacing:0.000000pt;}
.ws5_c00340{word-spacing:849.600000pt;}
._25_c00340{margin-left:-20.117333pt;}
._16_c00340{margin-left:-18.522667pt;}
._11_c00340{margin-left:-16.192000pt;}
._24_c00340{margin-left:-14.960000pt;}
._23_c00340{margin-left:-12.813333pt;}
._1e_c00340{margin-left:-11.837333pt;}
._1d_c00340{margin-left:-10.488000pt;}
._e_c00340{margin-left:-9.322667pt;}
._20_c00340{margin-left:-7.856000pt;}
._14_c00340{margin-left:-6.440000pt;}
._4_c00340{margin-left:-5.336000pt;}
._5_c00340{margin-left:-3.557333pt;}
._7_c00340{margin-left:-2.637333pt;}
._6_c00340{margin-left:-1.410667pt;}
._0_c00340{width:1.349333pt;}
._3_c00340{width:3.066667pt;}
._15_c00340{width:4.109333pt;}
._9_c00340{width:5.152000pt;}
._1c_c00340{width:6.133333pt;}
._8_c00340{width:7.114667pt;}
._22_c00340{width:8.157333pt;}
._19_c00340{width:9.138667pt;}
._12_c00340{width:10.242667pt;}
._1_c00340{width:11.224000pt;}
._d_c00340{width:12.210667pt;}
._c_c00340{width:13.186667pt;}
._b_c00340{width:14.106667pt;}
._10_c00340{width:15.701333pt;}
._1f_c00340{width:17.725333pt;}
._1b_c00340{width:29.992000pt;}
._13_c00340{width:32.445333pt;}
._18_c00340{width:35.778667pt;}
._21_c00340{width:40.725333pt;}
._f_c00340{width:80.896000pt;}
._17_c00340{width:95.586667pt;}
._26_c00340{width:96.776000pt;}
._a_c00340{width:105.677333pt;}
._27_c00340{width:118.466667pt;}
._1a_c00340{width:169.418667pt;}
._2_c00340{width:386.269333pt;}
._28_c00340{width:395.018667pt;}
.fs5_c00340{font-size:42.666667pt;}
.fs2_c00340{font-size:48.000000pt;}
.fs3_c00340{font-size:50.666667pt;}
.fs4_c00340{font-size:53.333333pt;}
.fs1_c00340{font-size:58.666667pt;}
.fs0_c00340{font-size:61.333333pt;}
.y0_c00340{bottom:0.000000pt;}
.y1f_c00340{bottom:2.760000pt;}
.y1e_c00340{bottom:6.425217pt;}
.y1d_c00340{bottom:70.240000pt;}
.y1c_c00340{bottom:84.640000pt;}
.y1b_c00340{bottom:100.506667pt;}
.y1a_c00340{bottom:115.706667pt;}
.y19_c00340{bottom:146.640000pt;}
.y18_c00340{bottom:187.706667pt;}
.y17_c00340{bottom:209.306667pt;}
.y16_c00340{bottom:231.306667pt;}
.y15_c00340{bottom:253.173333pt;}
.y14_c00340{bottom:275.306667pt;}
.y13_c00340{bottom:297.306667pt;}
.y12_c00340{bottom:318.906667pt;}
.y11_c00340{bottom:341.040000pt;}
.y10_c00340{bottom:362.106667pt;}
.yf_c00340{bottom:384.906667pt;}
.ye_c00340{bottom:406.106667pt;}
.yd_c00340{bottom:428.906667pt;}
.yc_c00340{bottom:450.240000pt;}
.yb_c00340{bottom:471.840000pt;}
.ya_c00340{bottom:493.840000pt;}
.y9_c00340{bottom:515.706667pt;}
.y8_c00340{bottom:537.840000pt;}
.y7_c00340{bottom:559.706667pt;}
.y6_c00340{bottom:582.240000pt;}
.y5_c00340{bottom:604.240000pt;}
.y4_c00340{bottom:626.106667pt;}
.y3_c00340{bottom:648.506667pt;}
.y2_c00340{bottom:670.773333pt;}
.y1_c00340{bottom:692.640000pt;}
.h6_c00340{height:11.733399pt;}
.h7_c00340{height:38.937500pt;}
.h3_c00340{height:50.304000pt;}
.h2_c00340{height:52.032000pt;}
.h4_c00340{height:59.300781pt;}
.h5_c00340{height:60.773438pt;}
.h1_c00340{height:77.654948pt;}
.h0_c00340{height:723.333333pt;}
.w2_c00340{width:93.222667pt;}
.w1_c00340{width:506.666667pt;}
.w0_c00340{width:506.866667pt;}
.x0_c00340{left:0.000000pt;}
.x7_c00340{left:27.600000pt;}
.x6_c00340{left:30.266667pt;}
.x3_c00340{left:31.200000pt;}
.x4_c00340{left:33.333333pt;}
.x9_c00340{left:49.466667pt;}
.x5_c00340{left:52.000000pt;}
.x2_c00340{left:55.600000pt;}
.x8_c00340{left:158.000000pt;}
.x1_c00340{left:182.666667pt;}
.xb_c00340{left:210.601563pt;}
.xa_c00340{left:410.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_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_56d64c30de32c58c33d00861.woff2')format("woff");}.ff1_c00341{font-family:ff1_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:ff2_c00341;src:url('chunks/assets/font_8e4447c06216101341d3bc84.woff2')format("woff");}.ff2_c00341{font-family:ff2_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:ff3_c00341;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00341{font-family:ff3_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;}
.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;}
.ls1_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:6.000000px;}
.ls2_c00341{letter-spacing:51.000000px;}
.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:-67.629000px;}
.ws1_c00341{word-spacing:-1.035000px;}
.ws2_c00341{word-spacing:-0.759000px;}
.ws3_c00341{word-spacing:0.000000px;}
._1a_c00341{margin-left:-26.979000px;}
._18_c00341{margin-left:-13.923000px;}
._19_c00341{margin-left:-12.444000px;}
._2_c00341{margin-left:-10.557000px;}
._12_c00341{margin-left:-9.483000px;}
._22_c00341{margin-left:-8.424000px;}
._15_c00341{margin-left:-7.011000px;}
._13_c00341{margin-left:-5.115000px;}
._5_c00341{margin-left:-3.402000px;}
._11_c00341{margin-left:-2.214000px;}
._0_c00341{margin-left:-1.035000px;}
._9_c00341{width:1.080000px;}
._a_c00341{width:2.160000px;}
._8_c00341{width:3.348000px;}
._21_c00341{width:4.416000px;}
._7_c00341{width:5.454000px;}
._4_c00341{width:6.555000px;}
._10_c00341{width:7.656000px;}
._17_c00341{width:9.267000px;}
._25_c00341{width:10.365000px;}
._14_c00341{width:11.385000px;}
._1d_c00341{width:12.585000px;}
._e_c00341{width:14.040000px;}
._23_c00341{width:15.210000px;}
._c_c00341{width:16.848000px;}
._1b_c00341{width:18.186000px;}
._b_c00341{width:19.386000px;}
._1f_c00341{width:20.739000px;}
._1c_c00341{width:22.611000px;}
._27_c00341{width:26.685000px;}
._28_c00341{width:28.173000px;}
._26_c00341{width:31.449000px;}
._1e_c00341{width:33.189000px;}
._20_c00341{width:34.677000px;}
._d_c00341{width:60.696000px;}
._6_c00341{width:65.880000px;}
._1_c00341{width:87.492000px;}
._f_c00341{width:136.326000px;}
._16_c00341{width:229.179000px;}
._24_c00341{width:258.867000px;}
._3_c00341{width:371.580000px;}
.fc2_c00341{color:transparent;}
.fc1_c00341{color:rgb(128,128,128);}
.fc0_c00341{color:rgb(0,0,0);}
.fs3_c00341{font-size:48.000000px;}
.fs1_c00341{font-size:54.000000px;}
.fs2_c00341{font-size:66.000000px;}
.fs0_c00341{font-size:69.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1d_c00341{bottom:3.105000px;}
.y1c_c00341{bottom:7.228355px;}
.y1b_c00341{bottom:76.485000px;}
.y1a_c00341{bottom:101.535000px;}
.y19_c00341{bottom:126.435000px;}
.y18_c00341{bottom:151.485000px;}
.y17_c00341{bottom:176.085000px;}
.y16_c00341{bottom:201.135000px;}
.y15_c00341{bottom:226.785000px;}
.y14_c00341{bottom:251.685000px;}
.y13_c00341{bottom:277.335000px;}
.y12_c00341{bottom:302.085000px;}
.y11_c00341{bottom:326.385000px;}
.y10_c00341{bottom:351.585000px;}
.yf_c00341{bottom:376.635000px;}
.ye_c00341{bottom:401.235000px;}
.yd_c00341{bottom:450.585000px;}
.yc_c00341{bottom:501.135000px;}
.yb_c00341{bottom:526.035000px;}
.ya_c00341{bottom:550.785000px;}
.y9_c00341{bottom:601.035000px;}
.y8_c00341{bottom:647.685000px;}
.y7_c00341{bottom:665.235000px;}
.y6_c00341{bottom:683.085000px;}
.y5_c00341{bottom:700.635000px;}
.y4_c00341{bottom:718.485000px;}
.y3_c00341{bottom:735.435000px;}
.y2_c00341{bottom:753.585000px;}
.y1_c00341{bottom:774.135000px;}
.h5_c00341{height:13.200074px;}
.h6_c00341{height:43.804688px;}
.h3_c00341{height:68.370117px;}
.h4_c00341{height:80.758301px;}
.h2_c00341{height:87.361816px;}
.h0_c00341{height:815.925000px;}
.h1_c00341{height:816.000000px;}
.w2_c00341{width:104.875500px;}
.w0_c00341{width:563.775000px;}
.w1_c00341{width:564.000000px;}
.x0_c00341{left:0.000000px;}
.xb_c00341{left:20.550000px;}
.xc_c00341{left:83.400000px;}
.x6_c00341{left:85.950000px;}
.xa_c00341{left:87.450000px;}
.x7_c00341{left:88.800000px;}
.x3_c00341{left:90.750000px;}
.x1_c00341{left:103.350000px;}
.x2_c00341{left:109.800000px;}
.x9_c00341{left:111.750000px;}
.x5_c00341{left:114.150000px;}
.x8_c00341{left:119.850000px;}
.x4_c00341{left:223.500000px;}
.xd_c00341{left:233.701767px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls1_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:5.333333pt;}
.ls2_c00341{letter-spacing:45.333333pt;}
.ws0_c00341{word-spacing:-60.114667pt;}
.ws1_c00341{word-spacing:-0.920000pt;}
.ws2_c00341{word-spacing:-0.674667pt;}
.ws3_c00341{word-spacing:0.000000pt;}
._1a_c00341{margin-left:-23.981333pt;}
._18_c00341{margin-left:-12.376000pt;}
._19_c00341{margin-left:-11.061333pt;}
._2_c00341{margin-left:-9.384000pt;}
._12_c00341{margin-left:-8.429333pt;}
._22_c00341{margin-left:-7.488000pt;}
._15_c00341{margin-left:-6.232000pt;}
._13_c00341{margin-left:-4.546667pt;}
._5_c00341{margin-left:-3.024000pt;}
._11_c00341{margin-left:-1.968000pt;}
._0_c00341{margin-left:-0.920000pt;}
._9_c00341{width:0.960000pt;}
._a_c00341{width:1.920000pt;}
._8_c00341{width:2.976000pt;}
._21_c00341{width:3.925333pt;}
._7_c00341{width:4.848000pt;}
._4_c00341{width:5.826667pt;}
._10_c00341{width:6.805333pt;}
._17_c00341{width:8.237333pt;}
._25_c00341{width:9.213333pt;}
._14_c00341{width:10.120000pt;}
._1d_c00341{width:11.186667pt;}
._e_c00341{width:12.480000pt;}
._23_c00341{width:13.520000pt;}
._c_c00341{width:14.976000pt;}
._1b_c00341{width:16.165333pt;}
._b_c00341{width:17.232000pt;}
._1f_c00341{width:18.434667pt;}
._1c_c00341{width:20.098667pt;}
._27_c00341{width:23.720000pt;}
._28_c00341{width:25.042667pt;}
._26_c00341{width:27.954667pt;}
._1e_c00341{width:29.501333pt;}
._20_c00341{width:30.824000pt;}
._d_c00341{width:53.952000pt;}
._6_c00341{width:58.560000pt;}
._1_c00341{width:77.770667pt;}
._f_c00341{width:121.178667pt;}
._16_c00341{width:203.714667pt;}
._24_c00341{width:230.104000pt;}
._3_c00341{width:330.293333pt;}
.fs3_c00341{font-size:42.666667pt;}
.fs1_c00341{font-size:48.000000pt;}
.fs2_c00341{font-size:58.666667pt;}
.fs0_c00341{font-size:61.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y1d_c00341{bottom:2.760000pt;}
.y1c_c00341{bottom:6.425204pt;}
.y1b_c00341{bottom:67.986667pt;}
.y1a_c00341{bottom:90.253333pt;}
.y19_c00341{bottom:112.386667pt;}
.y18_c00341{bottom:134.653333pt;}
.y17_c00341{bottom:156.520000pt;}
.y16_c00341{bottom:178.786667pt;}
.y15_c00341{bottom:201.586667pt;}
.y14_c00341{bottom:223.720000pt;}
.y13_c00341{bottom:246.520000pt;}
.y12_c00341{bottom:268.520000pt;}
.y11_c00341{bottom:290.120000pt;}
.y10_c00341{bottom:312.520000pt;}
.yf_c00341{bottom:334.786667pt;}
.ye_c00341{bottom:356.653333pt;}
.yd_c00341{bottom:400.520000pt;}
.yc_c00341{bottom:445.453333pt;}
.yb_c00341{bottom:467.586667pt;}
.ya_c00341{bottom:489.586667pt;}
.y9_c00341{bottom:534.253333pt;}
.y8_c00341{bottom:575.720000pt;}
.y7_c00341{bottom:591.320000pt;}
.y6_c00341{bottom:607.186667pt;}
.y5_c00341{bottom:622.786667pt;}
.y4_c00341{bottom:638.653333pt;}
.y3_c00341{bottom:653.720000pt;}
.y2_c00341{bottom:669.853333pt;}
.y1_c00341{bottom:688.120000pt;}
.h5_c00341{height:11.733399pt;}
.h6_c00341{height:38.937500pt;}
.h3_c00341{height:60.773438pt;}
.h4_c00341{height:71.785156pt;}
.h2_c00341{height:77.654948pt;}
.h0_c00341{height:725.266667pt;}
.h1_c00341{height:725.333333pt;}
.w2_c00341{width:93.222667pt;}
.w0_c00341{width:501.133333pt;}
.w1_c00341{width:501.333333pt;}
.x0_c00341{left:0.000000pt;}
.xb_c00341{left:18.266667pt;}
.xc_c00341{left:74.133333pt;}
.x6_c00341{left:76.400000pt;}
.xa_c00341{left:77.733333pt;}
.x7_c00341{left:78.933333pt;}
.x3_c00341{left:80.666667pt;}
.x1_c00341{left:91.866667pt;}
.x2_c00341{left:97.600000pt;}
.x9_c00341{left:99.333333pt;}
.x5_c00341{left:101.466667pt;}
.x8_c00341{left:106.533333pt;}
.x4_c00341{left:198.666667pt;}
.xd_c00341{left:207.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_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_6a04fecfd6a64d7416216f71.woff2')format("woff");}.ff1_c00342{font-family:ff1_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:ff2_c00342;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.311035;font-style:normal;font-weight:normal;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_40cad83c547a1de7bff7822b.woff2')format("woff");}.ff3_c00342{font-family:ff3_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:ff4_c00342;src:url('chunks/assets/font_db87c6bd6eb9fd046f609460.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_8928f98f87c3132e1cc3f21f.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);}
.v0_c00342{vertical-align:0.000000px;}
.ls3_c00342{letter-spacing:0.000000px;}
.ls2_c00342{letter-spacing:3.000000px;}
.ls1_c00342{letter-spacing:3.360000px;}
.ls0_c00342{letter-spacing:6.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:-47.022000px;}
.ws3_c00342{word-spacing:-44.184000px;}
.ws2_c00342{word-spacing:-16.629000px;}
.ws1_c00342{word-spacing:-0.207000px;}
.ws4_c00342{word-spacing:0.000000px;}
._1c_c00342{margin-left:-24.495000px;}
._1d_c00342{margin-left:-18.285000px;}
._1e_c00342{margin-left:-15.732000px;}
._1f_c00342{margin-left:-14.145000px;}
._15_c00342{margin-left:-13.116000px;}
._25_c00342{margin-left:-12.081000px;}
._1a_c00342{margin-left:-10.419000px;}
._a_c00342{margin-left:-9.039000px;}
._19_c00342{margin-left:-7.590000px;}
._d_c00342{margin-left:-6.486000px;}
._4_c00342{margin-left:-5.106000px;}
._3_c00342{margin-left:-3.312000px;}
._2_c00342{margin-left:-2.208000px;}
._0_c00342{margin-left:-1.104000px;}
._11_c00342{width:1.104000px;}
._1_c00342{width:2.622000px;}
._7_c00342{width:3.657000px;}
._5_c00342{width:4.692000px;}
._6_c00342{width:5.934000px;}
._e_c00342{width:7.728000px;}
._10_c00342{width:8.763000px;}
._13_c00342{width:10.008000px;}
._f_c00342{width:11.178000px;}
._12_c00342{width:12.420000px;}
._8_c00342{width:13.593000px;}
._c_c00342{width:15.525000px;}
._14_c00342{width:17.181000px;}
._16_c00342{width:18.972000px;}
._22_c00342{width:20.631000px;}
._17_c00342{width:24.708000px;}
._20_c00342{width:29.601000px;}
._24_c00342{width:31.329000px;}
._23_c00342{width:32.364000px;}
._b_c00342{width:33.534000px;}
._26_c00342{width:35.322000px;}
._9_c00342{width:38.433000px;}
._21_c00342{width:44.298000px;}
._18_c00342{width:96.117000px;}
._1b_c00342{width:152.076000px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(128,128,128);}
.fc0_c00342{color:rgb(0,0,0);}
.fs3_c00342{font-size:48.000000px;}
.fs1_c00342{font-size:66.000000px;}
.fs0_c00342{font-size:69.000000px;}
.fs2_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1f_c00342{bottom:3.105000px;}
.y1e_c00342{bottom:7.228363px;}
.y1d_c00342{bottom:71.250000px;}
.y1c_c00342{bottom:93.150000px;}
.y1b_c00342{bottom:119.250000px;}
.y1a_c00342{bottom:143.850000px;}
.y19_c00342{bottom:168.750000px;}
.y18_c00342{bottom:193.500000px;}
.y17_c00342{bottom:219.000000px;}
.y16_c00342{bottom:244.050000px;}
.y15_c00342{bottom:268.650000px;}
.y14_c00342{bottom:293.400000px;}
.y13_c00342{bottom:317.700000px;}
.y12_c00342{bottom:343.200000px;}
.y11_c00342{bottom:367.650000px;}
.y10_c00342{bottom:392.250000px;}
.yf_c00342{bottom:417.150000px;}
.ye_c00342{bottom:441.900000px;}
.yd_c00342{bottom:466.500000px;}
.yc_c00342{bottom:491.700000px;}
.yb_c00342{bottom:515.700000px;}
.ya_c00342{bottom:540.000000px;}
.y9_c00342{bottom:564.600000px;}
.y8_c00342{bottom:589.350000px;}
.y7_c00342{bottom:614.550000px;}
.y6_c00342{bottom:639.300000px;}
.y5_c00342{bottom:664.200000px;}
.y4_c00342{bottom:688.950000px;}
.y3_c00342{bottom:713.550000px;}
.y2_c00342{bottom:738.150000px;}
.y1_c00342{bottom:763.350000px;}
.h3_c00342{height:13.200074px;}
.h4_c00342{height:43.804688px;}
.h1_c00342{height:87.361816px;}
.h2_c00342{height:91.160156px;}
.h0_c00342{height:823.500000px;}
.w1_c00342{width:104.875500px;}
.w0_c00342{width:576.750000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:34.350000px;}
.x2_c00342{left:35.700000px;}
.x4_c00342{left:36.750000px;}
.x3_c00342{left:38.100000px;}
.x6_c00342{left:240.189240px;}
.x5_c00342{left:438.750000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls3_c00342{letter-spacing:0.000000pt;}
.ls2_c00342{letter-spacing:2.666667pt;}
.ls1_c00342{letter-spacing:2.986667pt;}
.ls0_c00342{letter-spacing:5.333333pt;}
.ws0_c00342{word-spacing:-41.797333pt;}
.ws3_c00342{word-spacing:-39.274667pt;}
.ws2_c00342{word-spacing:-14.781333pt;}
.ws1_c00342{word-spacing:-0.184000pt;}
.ws4_c00342{word-spacing:0.000000pt;}
._1c_c00342{margin-left:-21.773333pt;}
._1d_c00342{margin-left:-16.253333pt;}
._1e_c00342{margin-left:-13.984000pt;}
._1f_c00342{margin-left:-12.573333pt;}
._15_c00342{margin-left:-11.658667pt;}
._25_c00342{margin-left:-10.738667pt;}
._1a_c00342{margin-left:-9.261333pt;}
._a_c00342{margin-left:-8.034667pt;}
._19_c00342{margin-left:-6.746667pt;}
._d_c00342{margin-left:-5.765333pt;}
._4_c00342{margin-left:-4.538667pt;}
._3_c00342{margin-left:-2.944000pt;}
._2_c00342{margin-left:-1.962667pt;}
._0_c00342{margin-left:-0.981333pt;}
._11_c00342{width:0.981333pt;}
._1_c00342{width:2.330667pt;}
._7_c00342{width:3.250667pt;}
._5_c00342{width:4.170667pt;}
._6_c00342{width:5.274667pt;}
._e_c00342{width:6.869333pt;}
._10_c00342{width:7.789333pt;}
._13_c00342{width:8.896000pt;}
._f_c00342{width:9.936000pt;}
._12_c00342{width:11.040000pt;}
._8_c00342{width:12.082667pt;}
._c_c00342{width:13.800000pt;}
._14_c00342{width:15.272000pt;}
._16_c00342{width:16.864000pt;}
._22_c00342{width:18.338667pt;}
._17_c00342{width:21.962667pt;}
._20_c00342{width:26.312000pt;}
._24_c00342{width:27.848000pt;}
._23_c00342{width:28.768000pt;}
._b_c00342{width:29.808000pt;}
._26_c00342{width:31.397333pt;}
._9_c00342{width:34.162667pt;}
._21_c00342{width:39.376000pt;}
._18_c00342{width:85.437333pt;}
._1b_c00342{width:135.178667pt;}
.fs3_c00342{font-size:42.666667pt;}
.fs1_c00342{font-size:58.666667pt;}
.fs0_c00342{font-size:61.333333pt;}
.fs2_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y1f_c00342{bottom:2.760000pt;}
.y1e_c00342{bottom:6.425212pt;}
.y1d_c00342{bottom:63.333333pt;}
.y1c_c00342{bottom:82.800000pt;}
.y1b_c00342{bottom:106.000000pt;}
.y1a_c00342{bottom:127.866667pt;}
.y19_c00342{bottom:150.000000pt;}
.y18_c00342{bottom:172.000000pt;}
.y17_c00342{bottom:194.666667pt;}
.y16_c00342{bottom:216.933333pt;}
.y15_c00342{bottom:238.800000pt;}
.y14_c00342{bottom:260.800000pt;}
.y13_c00342{bottom:282.400000pt;}
.y12_c00342{bottom:305.066667pt;}
.y11_c00342{bottom:326.800000pt;}
.y10_c00342{bottom:348.666667pt;}
.yf_c00342{bottom:370.800000pt;}
.ye_c00342{bottom:392.800000pt;}
.yd_c00342{bottom:414.666667pt;}
.yc_c00342{bottom:437.066667pt;}
.yb_c00342{bottom:458.400000pt;}
.ya_c00342{bottom:480.000000pt;}
.y9_c00342{bottom:501.866667pt;}
.y8_c00342{bottom:523.866667pt;}
.y7_c00342{bottom:546.266667pt;}
.y6_c00342{bottom:568.266667pt;}
.y5_c00342{bottom:590.400000pt;}
.y4_c00342{bottom:612.400000pt;}
.y3_c00342{bottom:634.266667pt;}
.y2_c00342{bottom:656.133333pt;}
.y1_c00342{bottom:678.533333pt;}
.h3_c00342{height:11.733399pt;}
.h4_c00342{height:38.937500pt;}
.h1_c00342{height:77.654948pt;}
.h2_c00342{height:81.031250pt;}
.h0_c00342{height:732.000000pt;}
.w1_c00342{width:93.222667pt;}
.w0_c00342{width:512.666667pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:30.533333pt;}
.x2_c00342{left:31.733333pt;}
.x4_c00342{left:32.666667pt;}
.x3_c00342{left:33.866667pt;}
.x6_c00342{left:213.501546pt;}
.x5_c00342{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_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_3e5546aac17efca4c3ba5567.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.311035;font-style:normal;font-weight:normal;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_d49b3116198404dd2094a896.woff2')format("woff");}.ff2_c00343{font-family:ff2_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:ff3_c00343;src:url('chunks/assets/font_2a2bff6dc95ca08fae9af796.woff2')format("woff");}.ff3_c00343{font-family:ff3_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:ff4_c00343;src:url('chunks/assets/font_fe210943473dbe7e3ddb060f.woff2')format("woff");}.ff4_c00343{font-family:ff4_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:ff5_c00343;src:url('chunks/assets/font_f3848393a6d00179a2e8d09b.woff2')format("woff");}.ff5_c00343{font-family:ff5_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:ff6_c00343;src:url('chunks/assets/font_ad0a12739c5b0959feb3c31f.woff2')format("woff");}.ff6_c00343{font-family:ff6_c00343;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_c00343;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00343{font-family:ff7_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;}
.lsa_c00343{letter-spacing:-12.000000px;}
.ls8_c00343{letter-spacing:0.000000px;}
.ls9_c00343{letter-spacing:3.000000px;}
.ls2_c00343{letter-spacing:3.636000px;}
.ls7_c00343{letter-spacing:6.000000px;}
.ls0_c00343{letter-spacing:6.036000px;}
.ls4_c00343{letter-spacing:6.372000px;}
.ls1_c00343{letter-spacing:7.236000px;}
.ls6_c00343{letter-spacing:11.925000px;}
.ls5_c00343{letter-spacing:20.202000px;}
.ls3_c00343{letter-spacing:22.236000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:-58.026000px;}
.ws1_c00343{word-spacing:-19.050000px;}
.ws2_c00343{word-spacing:-16.629000px;}
.ws4_c00343{word-spacing:-4.629000px;}
.ws5_c00343{word-spacing:-0.207000px;}
.ws6_c00343{word-spacing:0.000000px;}
.ws3_c00343{word-spacing:6.348000px;}
._34_c00343{margin-left:-60.030000px;}
._2f_c00343{margin-left:-43.500000px;}
._1b_c00343{margin-left:-28.062000px;}
._28_c00343{margin-left:-27.027000px;}
._29_c00343{margin-left:-25.650000px;}
._2a_c00343{margin-left:-24.300000px;}
._2b_c00343{margin-left:-22.479000px;}
._1_c00343{margin-left:-21.432000px;}
._1d_c00343{margin-left:-19.890000px;}
._6_c00343{margin-left:-18.150000px;}
._15_c00343{margin-left:-15.618000px;}
._14_c00343{margin-left:-14.352000px;}
._3_c00343{margin-left:-12.675000px;}
._5_c00343{margin-left:-10.275000px;}
._7_c00343{margin-left:-9.000000px;}
._9_c00343{margin-left:-7.725000px;}
._4_c00343{margin-left:-6.450000px;}
._8_c00343{margin-left:-4.950000px;}
._c_c00343{margin-left:-3.828000px;}
._a_c00343{margin-left:-1.950000px;}
._17_c00343{width:1.173000px;}
._0_c00343{width:2.730000px;}
._23_c00343{width:4.203000px;}
._12_c00343{width:5.358000px;}
._e_c00343{width:6.750000px;}
._11_c00343{width:8.775000px;}
._18_c00343{width:10.380000px;}
._10_c00343{width:11.454000px;}
._33_c00343{width:12.546000px;}
._f_c00343{width:13.647000px;}
._21_c00343{width:15.300000px;}
._d_c00343{width:16.614000px;}
._13_c00343{width:17.673000px;}
._26_c00343{width:18.918000px;}
._1c_c00343{width:20.124000px;}
._27_c00343{width:21.459000px;}
._37_c00343{width:24.564000px;}
._22_c00343{width:26.592000px;}
._36_c00343{width:30.774000px;}
._19_c00343{width:32.235000px;}
._25_c00343{width:34.647000px;}
._1e_c00343{width:38.130000px;}
._2c_c00343{width:39.591000px;}
._32_c00343{width:41.943000px;}
._31_c00343{width:75.864000px;}
._16_c00343{width:80.721000px;}
._b_c00343{width:92.160000px;}
._35_c00343{width:93.801000px;}
._1f_c00343{width:150.912000px;}
._38_c00343{width:158.799000px;}
._30_c00343{width:160.080000px;}
._1a_c00343{width:161.487000px;}
._2d_c00343{width:314.196000px;}
._2e_c00343{width:351.372000px;}
._2_c00343{width:374.466000px;}
._24_c00343{width:388.215000px;}
._20_c00343{width:452.103000px;}
._39_c00343{width:1557.006000px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(128,128,128);}
.fc0_c00343{color:rgb(0,0,0);}
.fs5_c00343{font-size:45.000000px;}
.fs7_c00343{font-size:48.000000px;}
.fs6_c00343{font-size:51.000000px;}
.fs1_c00343{font-size:66.000000px;}
.fs3_c00343{font-size:69.000000px;}
.fs2_c00343{font-size:75.000000px;}
.fs0_c00343{font-size:78.000000px;}
.fs4_c00343{font-size:84.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1f_c00343{bottom:3.105000px;}
.y1e_c00343{bottom:7.228369px;}
.y1d_c00343{bottom:57.720000px;}
.y1c_c00343{bottom:108.270000px;}
.y1b_c00343{bottom:133.320000px;}
.y1a_c00343{bottom:182.820000px;}
.y19_c00343{bottom:230.070000px;}
.y18_c00343{bottom:247.770000px;}
.y17_c00343{bottom:266.220000px;}
.y16_c00343{bottom:283.170000px;}
.y15_c00343{bottom:297.270000px;}
.y14_c00343{bottom:306.120000px;}
.y13_c00343{bottom:318.570000px;}
.y12_c00343{bottom:354.420000px;}
.y11_c00343{bottom:379.920000px;}
.y10_c00343{bottom:404.670000px;}
.yf_c00343{bottom:429.570000px;}
.ye_c00343{bottom:454.320000px;}
.yd_c00343{bottom:479.520000px;}
.yc_c00343{bottom:504.570000px;}
.yb_c00343{bottom:529.470000px;}
.ya_c00343{bottom:554.220000px;}
.y9_c00343{bottom:579.120000px;}
.y8_c00343{bottom:602.820000px;}
.y7_c00343{bottom:629.070000px;}
.y6_c00343{bottom:653.670000px;}
.y5_c00343{bottom:678.720000px;}
.y4_c00343{bottom:703.320000px;}
.y3_c00343{bottom:728.370000px;}
.y2_c00343{bottom:752.670000px;}
.y1_c00343{bottom:776.970000px;}
.h8_c00343{height:13.200073px;}
.h9_c00343{height:43.804688px;}
.h5_c00343{height:56.975098px;}
.h7_c00343{height:80.758301px;}
.h6_c00343{height:83.563477px;}
.h3_c00343{height:87.361816px;}
.h1_c00343{height:87.780762px;}
.h2_c00343{height:94.958496px;}
.h4_c00343{height:98.756836px;}
.h0_c00343{height:813.750000px;}
.w2_c00343{width:104.875500px;}
.w0_c00343{width:562.125000px;}
.w1_c00343{width:562.500000px;}
.x0_c00343{left:0.000000px;}
.x3_c00343{left:31.350000px;}
.x7_c00343{left:33.450000px;}
.x2_c00343{left:48.600000px;}
.x9_c00343{left:88.350000px;}
.x8_c00343{left:95.850000px;}
.x4_c00343{left:97.200000px;}
.x5_c00343{left:98.850000px;}
.x6_c00343{left:100.200000px;}
.x1_c00343{left:112.950000px;}
.xc_c00343{left:115.650000px;}
.xd_c00343{left:121.800000px;}
.xb_c00343{left:228.450000px;}
.xe_c00343{left:232.876740px;}
.xa_c00343{left:247.350000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.lsa_c00343{letter-spacing:-10.666667pt;}
.ls8_c00343{letter-spacing:0.000000pt;}
.ls9_c00343{letter-spacing:2.666667pt;}
.ls2_c00343{letter-spacing:3.232000pt;}
.ls7_c00343{letter-spacing:5.333333pt;}
.ls0_c00343{letter-spacing:5.365333pt;}
.ls4_c00343{letter-spacing:5.664000pt;}
.ls1_c00343{letter-spacing:6.432000pt;}
.ls6_c00343{letter-spacing:10.600000pt;}
.ls5_c00343{letter-spacing:17.957333pt;}
.ls3_c00343{letter-spacing:19.765333pt;}
.ws0_c00343{word-spacing:-51.578667pt;}
.ws1_c00343{word-spacing:-16.933333pt;}
.ws2_c00343{word-spacing:-14.781333pt;}
.ws4_c00343{word-spacing:-4.114667pt;}
.ws5_c00343{word-spacing:-0.184000pt;}
.ws6_c00343{word-spacing:0.000000pt;}
.ws3_c00343{word-spacing:5.642667pt;}
._34_c00343{margin-left:-53.360000pt;}
._2f_c00343{margin-left:-38.666667pt;}
._1b_c00343{margin-left:-24.944000pt;}
._28_c00343{margin-left:-24.024000pt;}
._29_c00343{margin-left:-22.800000pt;}
._2a_c00343{margin-left:-21.600000pt;}
._2b_c00343{margin-left:-19.981333pt;}
._1_c00343{margin-left:-19.050667pt;}
._1d_c00343{margin-left:-17.680000pt;}
._6_c00343{margin-left:-16.133333pt;}
._15_c00343{margin-left:-13.882667pt;}
._14_c00343{margin-left:-12.757333pt;}
._3_c00343{margin-left:-11.266667pt;}
._5_c00343{margin-left:-9.133333pt;}
._7_c00343{margin-left:-8.000000pt;}
._9_c00343{margin-left:-6.866667pt;}
._4_c00343{margin-left:-5.733333pt;}
._8_c00343{margin-left:-4.400000pt;}
._c_c00343{margin-left:-3.402667pt;}
._a_c00343{margin-left:-1.733333pt;}
._17_c00343{width:1.042667pt;}
._0_c00343{width:2.426667pt;}
._23_c00343{width:3.736000pt;}
._12_c00343{width:4.762667pt;}
._e_c00343{width:6.000000pt;}
._11_c00343{width:7.800000pt;}
._18_c00343{width:9.226667pt;}
._10_c00343{width:10.181333pt;}
._33_c00343{width:11.152000pt;}
._f_c00343{width:12.130667pt;}
._21_c00343{width:13.600000pt;}
._d_c00343{width:14.768000pt;}
._13_c00343{width:15.709333pt;}
._26_c00343{width:16.816000pt;}
._1c_c00343{width:17.888000pt;}
._27_c00343{width:19.074667pt;}
._37_c00343{width:21.834667pt;}
._22_c00343{width:23.637333pt;}
._36_c00343{width:27.354667pt;}
._19_c00343{width:28.653333pt;}
._25_c00343{width:30.797333pt;}
._1e_c00343{width:33.893333pt;}
._2c_c00343{width:35.192000pt;}
._32_c00343{width:37.282667pt;}
._31_c00343{width:67.434667pt;}
._16_c00343{width:71.752000pt;}
._b_c00343{width:81.920000pt;}
._35_c00343{width:83.378667pt;}
._1f_c00343{width:134.144000pt;}
._38_c00343{width:141.154667pt;}
._30_c00343{width:142.293333pt;}
._1a_c00343{width:143.544000pt;}
._2d_c00343{width:279.285333pt;}
._2e_c00343{width:312.330667pt;}
._2_c00343{width:332.858667pt;}
._24_c00343{width:345.080000pt;}
._20_c00343{width:401.869333pt;}
._39_c00343{width:1384.005333pt;}
.fs5_c00343{font-size:40.000000pt;}
.fs7_c00343{font-size:42.666667pt;}
.fs6_c00343{font-size:45.333333pt;}
.fs1_c00343{font-size:58.666667pt;}
.fs3_c00343{font-size:61.333333pt;}
.fs2_c00343{font-size:66.666667pt;}
.fs0_c00343{font-size:69.333333pt;}
.fs4_c00343{font-size:74.666667pt;}
.y0_c00343{bottom:0.000000pt;}
.y1f_c00343{bottom:2.760000pt;}
.y1e_c00343{bottom:6.425217pt;}
.y1d_c00343{bottom:51.306667pt;}
.y1c_c00343{bottom:96.240000pt;}
.y1b_c00343{bottom:118.506667pt;}
.y1a_c00343{bottom:162.506667pt;}
.y19_c00343{bottom:204.506667pt;}
.y18_c00343{bottom:220.240000pt;}
.y17_c00343{bottom:236.640000pt;}
.y16_c00343{bottom:251.706667pt;}
.y15_c00343{bottom:264.240000pt;}
.y14_c00343{bottom:272.106667pt;}
.y13_c00343{bottom:283.173333pt;}
.y12_c00343{bottom:315.040000pt;}
.y11_c00343{bottom:337.706667pt;}
.y10_c00343{bottom:359.706667pt;}
.yf_c00343{bottom:381.840000pt;}
.ye_c00343{bottom:403.840000pt;}
.yd_c00343{bottom:426.240000pt;}
.yc_c00343{bottom:448.506667pt;}
.yb_c00343{bottom:470.640000pt;}
.ya_c00343{bottom:492.640000pt;}
.y9_c00343{bottom:514.773333pt;}
.y8_c00343{bottom:535.840000pt;}
.y7_c00343{bottom:559.173333pt;}
.y6_c00343{bottom:581.040000pt;}
.y5_c00343{bottom:603.306667pt;}
.y4_c00343{bottom:625.173333pt;}
.y3_c00343{bottom:647.440000pt;}
.y2_c00343{bottom:669.040000pt;}
.y1_c00343{bottom:690.640000pt;}
.h8_c00343{height:11.733399pt;}
.h9_c00343{height:38.937500pt;}
.h5_c00343{height:50.644531pt;}
.h7_c00343{height:71.785156pt;}
.h6_c00343{height:74.278646pt;}
.h3_c00343{height:77.654948pt;}
.h1_c00343{height:78.027344pt;}
.h2_c00343{height:84.407552pt;}
.h4_c00343{height:87.783854pt;}
.h0_c00343{height:723.333333pt;}
.w2_c00343{width:93.222667pt;}
.w0_c00343{width:499.666667pt;}
.w1_c00343{width:500.000000pt;}
.x0_c00343{left:0.000000pt;}
.x3_c00343{left:27.866667pt;}
.x7_c00343{left:29.733333pt;}
.x2_c00343{left:43.200000pt;}
.x9_c00343{left:78.533333pt;}
.x8_c00343{left:85.200000pt;}
.x4_c00343{left:86.400000pt;}
.x5_c00343{left:87.866667pt;}
.x6_c00343{left:89.066667pt;}
.x1_c00343{left:100.400000pt;}
.xc_c00343{left:102.800000pt;}
.xd_c00343{left:108.266667pt;}
.xb_c00343{left:203.066667pt;}
.xe_c00343{left:207.001546pt;}
.xa_c00343{left:219.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_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_9b697999c70c82f68e0bd9f7.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_ba56225c1bf4a275f100dc61.woff2')format("woff");}.ff2_c00344{font-family:ff2_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:ff3_c00344;src:url('chunks/assets/font_136a57ce67fd89a2a98ee0ba.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_f2c4b86d9ce9da382ebea607.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00344{font-family:ff5_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:ff6_c00344;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00344{font-family:ff6_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;}
.ls6_c00344{letter-spacing:-6.000000px;}
.ls4_c00344{letter-spacing:0.000000px;}
.ls5_c00344{letter-spacing:3.000000px;}
.ls1_c00344{letter-spacing:6.000000px;}
.ls2_c00344{letter-spacing:19.800000px;}
.ls7_c00344{letter-spacing:30.000000px;}
.ls3_c00344{letter-spacing:46.371000px;}
.ls0_c00344{letter-spacing:511.371000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-22.629000px;}
.ws0_c00344{word-spacing:-19.500000px;}
.ws2_c00344{word-spacing:-16.629000px;}
.ws3_c00344{word-spacing:-13.008000px;}
.ws5_c00344{word-spacing:-0.828000px;}
.ws7_c00344{word-spacing:0.000000px;}
.ws4_c00344{word-spacing:4.347000px;}
.ws6_c00344{word-spacing:106.620000px;}
._29_c00344{margin-left:-25.254000px;}
._25_c00344{margin-left:-23.322000px;}
._6_c00344{margin-left:-21.252000px;}
._2a_c00344{margin-left:-19.728000px;}
._28_c00344{margin-left:-18.507000px;}
._21_c00344{margin-left:-16.284000px;}
._5_c00344{margin-left:-13.287000px;}
._1f_c00344{margin-left:-11.370000px;}
._18_c00344{margin-left:-9.267000px;}
._19_c00344{margin-left:-8.241000px;}
._a_c00344{margin-left:-7.053000px;}
._7_c00344{margin-left:-5.382000px;}
._8_c00344{margin-left:-4.002000px;}
._2_c00344{margin-left:-2.967000px;}
._3_c00344{margin-left:-1.380000px;}
._1_c00344{width:1.380000px;}
._0_c00344{width:2.415000px;}
._9_c00344{width:4.092000px;}
._10_c00344{width:5.706000px;}
._e_c00344{width:7.536000px;}
._17_c00344{width:8.970000px;}
._16_c00344{width:10.500000px;}
._4_c00344{width:11.682000px;}
._1d_c00344{width:12.936000px;}
._11_c00344{width:14.055000px;}
._1b_c00344{width:15.111000px;}
._f_c00344{width:16.959000px;}
._22_c00344{width:18.684000px;}
._13_c00344{width:20.493000px;}
._14_c00344{width:21.576000px;}
._d_c00344{width:26.790000px;}
._26_c00344{width:30.180000px;}
._23_c00344{width:32.937000px;}
._1e_c00344{width:34.845000px;}
._12_c00344{width:35.964000px;}
._15_c00344{width:37.338000px;}
._b_c00344{width:39.918000px;}
._c_c00344{width:47.868000px;}
._24_c00344{width:90.327000px;}
._27_c00344{width:105.945000px;}
._20_c00344{width:131.589000px;}
._1a_c00344{width:166.152000px;}
._1c_c00344{width:258.129000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(128,128,128);}
.fc0_c00344{color:rgb(0,0,0);}
.fs3_c00344{font-size:48.000000px;}
.fs1_c00344{font-size:66.000000px;}
.fs0_c00344{font-size:69.000000px;}
.fs2_c00344{font-size:75.000000px;}
.y0_c00344{bottom:0.000000px;}
.y1d_c00344{bottom:3.105000px;}
.y1c_c00344{bottom:7.228363px;}
.y1b_c00344{bottom:61.500000px;}
.y1a_c00344{bottom:161.250000px;}
.y19_c00344{bottom:184.950000px;}
.y18_c00344{bottom:211.500000px;}
.y17_c00344{bottom:236.250000px;}
.y16_c00344{bottom:260.550000px;}
.y15_c00344{bottom:286.200000px;}
.y14_c00344{bottom:310.800000px;}
.y13_c00344{bottom:335.850000px;}
.y12_c00344{bottom:360.000000px;}
.y11_c00344{bottom:384.750000px;}
.y10_c00344{bottom:410.400000px;}
.yf_c00344{bottom:434.700000px;}
.ye_c00344{bottom:460.050000px;}
.yd_c00344{bottom:484.650000px;}
.yc_c00344{bottom:508.650000px;}
.yb_c00344{bottom:533.700000px;}
.ya_c00344{bottom:558.300000px;}
.y9_c00344{bottom:582.900000px;}
.y8_c00344{bottom:607.800000px;}
.y7_c00344{bottom:633.150000px;}
.y6_c00344{bottom:657.450000px;}
.y5_c00344{bottom:682.500000px;}
.y4_c00344{bottom:707.100000px;}
.y3_c00344{bottom:732.000000px;}
.y2_c00344{bottom:756.750000px;}
.y1_c00344{bottom:780.600000px;}
.h3_c00344{height:13.200074px;}
.h4_c00344{height:43.804688px;}
.h2_c00344{height:80.758301px;}
.h1_c00344{height:87.361816px;}
.h0_c00344{height:823.500000px;}
.w1_c00344{width:104.875500px;}
.w0_c00344{width:576.750000px;}
.x0_c00344{left:0.000000px;}
.x4_c00344{left:31.050000px;}
.x3_c00344{left:32.700000px;}
.x2_c00344{left:56.400000px;}
.x1_c00344{left:189.450000px;}
.x6_c00344{left:240.189240px;}
.x5_c00344{left:408.750000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls6_c00344{letter-spacing:-5.333333pt;}
.ls4_c00344{letter-spacing:0.000000pt;}
.ls5_c00344{letter-spacing:2.666667pt;}
.ls1_c00344{letter-spacing:5.333333pt;}
.ls2_c00344{letter-spacing:17.600000pt;}
.ls7_c00344{letter-spacing:26.666667pt;}
.ls3_c00344{letter-spacing:41.218667pt;}
.ls0_c00344{letter-spacing:454.552000pt;}
.ws1_c00344{word-spacing:-20.114667pt;}
.ws0_c00344{word-spacing:-17.333333pt;}
.ws2_c00344{word-spacing:-14.781333pt;}
.ws3_c00344{word-spacing:-11.562667pt;}
.ws5_c00344{word-spacing:-0.736000pt;}
.ws7_c00344{word-spacing:0.000000pt;}
.ws4_c00344{word-spacing:3.864000pt;}
.ws6_c00344{word-spacing:94.773333pt;}
._29_c00344{margin-left:-22.448000pt;}
._25_c00344{margin-left:-20.730667pt;}
._6_c00344{margin-left:-18.890667pt;}
._2a_c00344{margin-left:-17.536000pt;}
._28_c00344{margin-left:-16.450667pt;}
._21_c00344{margin-left:-14.474667pt;}
._5_c00344{margin-left:-11.810667pt;}
._1f_c00344{margin-left:-10.106667pt;}
._18_c00344{margin-left:-8.237333pt;}
._19_c00344{margin-left:-7.325333pt;}
._a_c00344{margin-left:-6.269333pt;}
._7_c00344{margin-left:-4.784000pt;}
._8_c00344{margin-left:-3.557333pt;}
._2_c00344{margin-left:-2.637333pt;}
._3_c00344{margin-left:-1.226667pt;}
._1_c00344{width:1.226667pt;}
._0_c00344{width:2.146667pt;}
._9_c00344{width:3.637333pt;}
._10_c00344{width:5.072000pt;}
._e_c00344{width:6.698667pt;}
._17_c00344{width:7.973333pt;}
._16_c00344{width:9.333333pt;}
._4_c00344{width:10.384000pt;}
._1d_c00344{width:11.498667pt;}
._11_c00344{width:12.493333pt;}
._1b_c00344{width:13.432000pt;}
._f_c00344{width:15.074667pt;}
._22_c00344{width:16.608000pt;}
._13_c00344{width:18.216000pt;}
._14_c00344{width:19.178667pt;}
._d_c00344{width:23.813333pt;}
._26_c00344{width:26.826667pt;}
._23_c00344{width:29.277333pt;}
._1e_c00344{width:30.973333pt;}
._12_c00344{width:31.968000pt;}
._15_c00344{width:33.189333pt;}
._b_c00344{width:35.482667pt;}
._c_c00344{width:42.549333pt;}
._24_c00344{width:80.290667pt;}
._27_c00344{width:94.173333pt;}
._20_c00344{width:116.968000pt;}
._1a_c00344{width:147.690667pt;}
._1c_c00344{width:229.448000pt;}
.fs3_c00344{font-size:42.666667pt;}
.fs1_c00344{font-size:58.666667pt;}
.fs0_c00344{font-size:61.333333pt;}
.fs2_c00344{font-size:66.666667pt;}
.y0_c00344{bottom:0.000000pt;}
.y1d_c00344{bottom:2.760000pt;}
.y1c_c00344{bottom:6.425212pt;}
.y1b_c00344{bottom:54.666667pt;}
.y1a_c00344{bottom:143.333333pt;}
.y19_c00344{bottom:164.400000pt;}
.y18_c00344{bottom:188.000000pt;}
.y17_c00344{bottom:210.000000pt;}
.y16_c00344{bottom:231.600000pt;}
.y15_c00344{bottom:254.400000pt;}
.y14_c00344{bottom:276.266667pt;}
.y13_c00344{bottom:298.533333pt;}
.y12_c00344{bottom:320.000000pt;}
.y11_c00344{bottom:342.000000pt;}
.y10_c00344{bottom:364.800000pt;}
.yf_c00344{bottom:386.400000pt;}
.ye_c00344{bottom:408.933333pt;}
.yd_c00344{bottom:430.800000pt;}
.yc_c00344{bottom:452.133333pt;}
.yb_c00344{bottom:474.400000pt;}
.ya_c00344{bottom:496.266667pt;}
.y9_c00344{bottom:518.133333pt;}
.y8_c00344{bottom:540.266667pt;}
.y7_c00344{bottom:562.800000pt;}
.y6_c00344{bottom:584.400000pt;}
.y5_c00344{bottom:606.666667pt;}
.y4_c00344{bottom:628.533333pt;}
.y3_c00344{bottom:650.666667pt;}
.y2_c00344{bottom:672.666667pt;}
.y1_c00344{bottom:693.866667pt;}
.h3_c00344{height:11.733399pt;}
.h4_c00344{height:38.937500pt;}
.h2_c00344{height:71.785156pt;}
.h1_c00344{height:77.654948pt;}
.h0_c00344{height:732.000000pt;}
.w1_c00344{width:93.222667pt;}
.w0_c00344{width:512.666667pt;}
.x0_c00344{left:0.000000pt;}
.x4_c00344{left:27.600000pt;}
.x3_c00344{left:29.066667pt;}
.x2_c00344{left:50.133333pt;}
.x1_c00344{left:168.400000pt;}
.x6_c00344{left:213.501546pt;}
.x5_c00344{left:363.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_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_2a8f1d30ed7583f09cb20277.woff2')format("woff");}.ff1_c00345{font-family:ff1_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:ff2_c00345;src:url('chunks/assets/font_ce3639676f0a65913e1c804f.woff2')format("woff");}.ff2_c00345{font-family:ff2_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:ff3_c00345;src:url('chunks/assets/font_b92353bb6cf11025f2588f4e.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;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_c00345;src:url('chunks/assets/font_eda8762d8d8996d48d6eafdd.woff2')format("woff");}.ff4_c00345{font-family:ff4_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:ff5_c00345;src:url('chunks/assets/font_6449cdfcb16f3615bb09fb4a.woff2')format("woff");}.ff5_c00345{font-family:ff5_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:ff6_c00345;src:url('chunks/assets/font_053c463f4ef3b24fac5a1be1.woff2')format("woff");}.ff6_c00345{font-family:ff6_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:ff7_c00345;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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);}
.v1_c00345{vertical-align:-85.800000px;}
.v0_c00345{vertical-align:0.000000px;}
.ls8_c00345{letter-spacing:0.000000px;}
.ls4_c00345{letter-spacing:1.050000px;}
.ls9_c00345{letter-spacing:3.000000px;}
.ls6_c00345{letter-spacing:6.000000px;}
.ls0_c00345{letter-spacing:12.744000px;}
.ls1_c00345{letter-spacing:12.900000px;}
.ls5_c00345{letter-spacing:21.171000px;}
.ls3_c00345{letter-spacing:39.171000px;}
.ls2_c00345{letter-spacing:40.371000px;}
.ls7_c00345{letter-spacing:51.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-67.629000px;}
.ws7_c00345{word-spacing:-22.629000px;}
.ws6_c00345{word-spacing:-20.460000px;}
.ws5_c00345{word-spacing:-19.848000px;}
.ws2_c00345{word-spacing:-16.629000px;}
.ws3_c00345{word-spacing:-1.173000px;}
.ws8_c00345{word-spacing:0.000000px;}
.ws4_c00345{word-spacing:10.419000px;}
.ws0_c00345{word-spacing:483.237000px;}
._0_c00345{margin-left:-33.396000px;}
._32_c00345{margin-left:-25.212000px;}
._25_c00345{margin-left:-16.299000px;}
._33_c00345{margin-left:-14.904000px;}
._1_c00345{margin-left:-13.662000px;}
._9_c00345{margin-left:-12.096000px;}
._11_c00345{margin-left:-10.350000px;}
._16_c00345{margin-left:-9.150000px;}
._34_c00345{margin-left:-7.956000px;}
._d_c00345{margin-left:-6.858000px;}
._6_c00345{margin-left:-5.106000px;}
._5_c00345{margin-left:-4.071000px;}
._7_c00345{margin-left:-2.208000px;}
._8_c00345{margin-left:-1.104000px;}
._1f_c00345{width:1.029000px;}
._10_c00345{width:2.070000px;}
._2_c00345{width:3.588000px;}
._3_c00345{width:4.761000px;}
._4_c00345{width:6.555000px;}
._17_c00345{width:7.722000px;}
._13_c00345{width:9.039000px;}
._18_c00345{width:10.950000px;}
._c_c00345{width:12.600000px;}
._14_c00345{width:14.214000px;}
._a_c00345{width:15.390000px;}
._20_c00345{width:16.422000px;}
._b_c00345{width:18.270000px;}
._f_c00345{width:19.653000px;}
._1a_c00345{width:21.345000px;}
._2f_c00345{width:23.694000px;}
._e_c00345{width:26.868000px;}
._31_c00345{width:28.653000px;}
._2a_c00345{width:30.219000px;}
._30_c00345{width:31.308000px;}
._15_c00345{width:38.778000px;}
._2d_c00345{width:44.418000px;}
._12_c00345{width:73.623000px;}
._24_c00345{width:76.218000px;}
._1e_c00345{width:87.213000px;}
._26_c00345{width:90.870000px;}
._2b_c00345{width:95.175000px;}
._19_c00345{width:102.534000px;}
._29_c00345{width:109.572000px;}
._1c_c00345{width:124.020000px;}
._1b_c00345{width:125.235000px;}
._21_c00345{width:128.358000px;}
._2c_c00345{width:137.004000px;}
._1d_c00345{width:144.831000px;}
._27_c00345{width:153.633000px;}
._28_c00345{width:157.551000px;}
._22_c00345{width:243.360000px;}
._23_c00345{width:245.361000px;}
._2e_c00345{width:792.831000px;}
.fc2_c00345{color:transparent;}
.fc1_c00345{color:rgb(128,128,128);}
.fc0_c00345{color:rgb(0,0,0);}
.fs5_c00345{font-size:39.000000px;}
.fs1_c00345{font-size:45.000000px;}
.fs3_c00345{font-size:48.000000px;}
.fs4_c00345{font-size:51.000000px;}
.fs7_c00345{font-size:57.000000px;}
.fs2_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:69.000000px;}
.fs6_c00345{font-size:78.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1d_c00345{bottom:3.105000px;}
.y1c_c00345{bottom:7.228363px;}
.y1b_c00345{bottom:66.150000px;}
.y1a_c00345{bottom:91.500000px;}
.y19_c00345{bottom:116.850000px;}
.y18_c00345{bottom:167.400000px;}
.y17_c00345{bottom:192.750000px;}
.y16_c00345{bottom:218.100000px;}
.y15_c00345{bottom:243.300000px;}
.y14_c00345{bottom:293.250000px;}
.y13_c00345{bottom:333.450000px;}
.y12_c00345{bottom:349.950000px;}
.y11_c00345{bottom:367.650000px;}
.y10_c00345{bottom:385.200000px;}
.yf_c00345{bottom:402.600000px;}
.ye_c00345{bottom:420.300000px;}
.yd_c00345{bottom:438.300000px;}
.yc_c00345{bottom:455.700000px;}
.yb_c00345{bottom:473.250000px;}
.ya_c00345{bottom:493.200000px;}
.y9_c00345{bottom:518.400000px;}
.y8_c00345{bottom:545.400000px;}
.y7_c00345{bottom:568.350000px;}
.y6_c00345{bottom:593.400000px;}
.y5_c00345{bottom:618.300000px;}
.y4_c00345{bottom:642.600000px;}
.y3_c00345{bottom:667.950000px;}
.y2_c00345{bottom:693.000000px;}
.y1_c00345{bottom:763.050000px;}
.h8_c00345{height:13.200074px;}
.h9_c00345{height:43.804688px;}
.h5_c00345{height:56.179688px;}
.h4_c00345{height:60.773438px;}
.h6_c00345{height:64.571777px;}
.h3_c00345{height:80.758301px;}
.h2_c00345{height:87.361816px;}
.h7_c00345{height:98.756836px;}
.h1_c00345{height:827.250000px;}
.h0_c00345{height:827.550000px;}
.w2_c00345{width:104.875500px;}
.w0_c00345{width:572.100000px;}
.w1_c00345{width:572.250000px;}
.x0_c00345{left:0.000000px;}
.x5_c00345{left:38.100000px;}
.x7_c00345{left:39.450000px;}
.xf_c00345{left:42.300000px;}
.xe_c00345{left:44.250000px;}
.x4_c00345{left:57.000000px;}
.xd_c00345{left:58.050000px;}
.x1_c00345{left:88.200000px;}
.x6_c00345{left:102.600000px;}
.x3_c00345{left:103.650000px;}
.x11_c00345{left:106.050000px;}
.x8_c00345{left:107.100000px;}
.xb_c00345{left:108.450000px;}
.xc_c00345{left:109.650000px;}
.xa_c00345{left:125.550000px;}
.x2_c00345{left:128.250000px;}
.x10_c00345{left:131.250000px;}
.x9_c00345{left:141.150000px;}
.x13_c00345{left:237.864258px;}
.x12_c00345{left:516.150000px;}
@media print{
.v1_c00345{vertical-align:-76.266667pt;}
.v0_c00345{vertical-align:0.000000pt;}
.ls8_c00345{letter-spacing:0.000000pt;}
.ls4_c00345{letter-spacing:0.933333pt;}
.ls9_c00345{letter-spacing:2.666667pt;}
.ls6_c00345{letter-spacing:5.333333pt;}
.ls0_c00345{letter-spacing:11.328000pt;}
.ls1_c00345{letter-spacing:11.466667pt;}
.ls5_c00345{letter-spacing:18.818667pt;}
.ls3_c00345{letter-spacing:34.818667pt;}
.ls2_c00345{letter-spacing:35.885333pt;}
.ls7_c00345{letter-spacing:45.333333pt;}
.ws1_c00345{word-spacing:-60.114667pt;}
.ws7_c00345{word-spacing:-20.114667pt;}
.ws6_c00345{word-spacing:-18.186667pt;}
.ws5_c00345{word-spacing:-17.642667pt;}
.ws2_c00345{word-spacing:-14.781333pt;}
.ws3_c00345{word-spacing:-1.042667pt;}
.ws8_c00345{word-spacing:0.000000pt;}
.ws4_c00345{word-spacing:9.261333pt;}
.ws0_c00345{word-spacing:429.544000pt;}
._0_c00345{margin-left:-29.685333pt;}
._32_c00345{margin-left:-22.410667pt;}
._25_c00345{margin-left:-14.488000pt;}
._33_c00345{margin-left:-13.248000pt;}
._1_c00345{margin-left:-12.144000pt;}
._9_c00345{margin-left:-10.752000pt;}
._11_c00345{margin-left:-9.200000pt;}
._16_c00345{margin-left:-8.133333pt;}
._34_c00345{margin-left:-7.072000pt;}
._d_c00345{margin-left:-6.096000pt;}
._6_c00345{margin-left:-4.538667pt;}
._5_c00345{margin-left:-3.618667pt;}
._7_c00345{margin-left:-1.962667pt;}
._8_c00345{margin-left:-0.981333pt;}
._1f_c00345{width:0.914667pt;}
._10_c00345{width:1.840000pt;}
._2_c00345{width:3.189333pt;}
._3_c00345{width:4.232000pt;}
._4_c00345{width:5.826667pt;}
._17_c00345{width:6.864000pt;}
._13_c00345{width:8.034667pt;}
._18_c00345{width:9.733333pt;}
._c_c00345{width:11.200000pt;}
._14_c00345{width:12.634667pt;}
._a_c00345{width:13.680000pt;}
._20_c00345{width:14.597333pt;}
._b_c00345{width:16.240000pt;}
._f_c00345{width:17.469333pt;}
._1a_c00345{width:18.973333pt;}
._2f_c00345{width:21.061333pt;}
._e_c00345{width:23.882667pt;}
._31_c00345{width:25.469333pt;}
._2a_c00345{width:26.861333pt;}
._30_c00345{width:27.829333pt;}
._15_c00345{width:34.469333pt;}
._2d_c00345{width:39.482667pt;}
._12_c00345{width:65.442667pt;}
._24_c00345{width:67.749333pt;}
._1e_c00345{width:77.522667pt;}
._26_c00345{width:80.773333pt;}
._2b_c00345{width:84.600000pt;}
._19_c00345{width:91.141333pt;}
._29_c00345{width:97.397333pt;}
._1c_c00345{width:110.240000pt;}
._1b_c00345{width:111.320000pt;}
._21_c00345{width:114.096000pt;}
._2c_c00345{width:121.781333pt;}
._1d_c00345{width:128.738667pt;}
._27_c00345{width:136.562667pt;}
._28_c00345{width:140.045333pt;}
._22_c00345{width:216.320000pt;}
._23_c00345{width:218.098667pt;}
._2e_c00345{width:704.738667pt;}
.fs5_c00345{font-size:34.666667pt;}
.fs1_c00345{font-size:40.000000pt;}
.fs3_c00345{font-size:42.666667pt;}
.fs4_c00345{font-size:45.333333pt;}
.fs7_c00345{font-size:50.666667pt;}
.fs2_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:61.333333pt;}
.fs6_c00345{font-size:69.333333pt;}
.y0_c00345{bottom:0.000000pt;}
.y1d_c00345{bottom:2.760000pt;}
.y1c_c00345{bottom:6.425212pt;}
.y1b_c00345{bottom:58.800000pt;}
.y1a_c00345{bottom:81.333333pt;}
.y19_c00345{bottom:103.866667pt;}
.y18_c00345{bottom:148.800000pt;}
.y17_c00345{bottom:171.333333pt;}
.y16_c00345{bottom:193.866667pt;}
.y15_c00345{bottom:216.266667pt;}
.y14_c00345{bottom:260.666667pt;}
.y13_c00345{bottom:296.400000pt;}
.y12_c00345{bottom:311.066667pt;}
.y11_c00345{bottom:326.800000pt;}
.y10_c00345{bottom:342.400000pt;}
.yf_c00345{bottom:357.866667pt;}
.ye_c00345{bottom:373.600000pt;}
.yd_c00345{bottom:389.600000pt;}
.yc_c00345{bottom:405.066667pt;}
.yb_c00345{bottom:420.666667pt;}
.ya_c00345{bottom:438.400000pt;}
.y9_c00345{bottom:460.800000pt;}
.y8_c00345{bottom:484.800000pt;}
.y7_c00345{bottom:505.200000pt;}
.y6_c00345{bottom:527.466667pt;}
.y5_c00345{bottom:549.600000pt;}
.y4_c00345{bottom:571.200000pt;}
.y3_c00345{bottom:593.733333pt;}
.y2_c00345{bottom:616.000000pt;}
.y1_c00345{bottom:678.266667pt;}
.h8_c00345{height:11.733399pt;}
.h9_c00345{height:38.937500pt;}
.h5_c00345{height:49.937500pt;}
.h4_c00345{height:54.020833pt;}
.h6_c00345{height:57.397135pt;}
.h3_c00345{height:71.785156pt;}
.h2_c00345{height:77.654948pt;}
.h7_c00345{height:87.783854pt;}
.h1_c00345{height:735.333333pt;}
.h0_c00345{height:735.600000pt;}
.w2_c00345{width:93.222667pt;}
.w0_c00345{width:508.533333pt;}
.w1_c00345{width:508.666667pt;}
.x0_c00345{left:0.000000pt;}
.x5_c00345{left:33.866667pt;}
.x7_c00345{left:35.066667pt;}
.xf_c00345{left:37.600000pt;}
.xe_c00345{left:39.333333pt;}
.x4_c00345{left:50.666667pt;}
.xd_c00345{left:51.600000pt;}
.x1_c00345{left:78.400000pt;}
.x6_c00345{left:91.200000pt;}
.x3_c00345{left:92.133333pt;}
.x11_c00345{left:94.266667pt;}
.x8_c00345{left:95.200000pt;}
.xb_c00345{left:96.400000pt;}
.xc_c00345{left:97.466667pt;}
.xa_c00345{left:111.600000pt;}
.x2_c00345{left:114.000000pt;}
.x10_c00345{left:116.666667pt;}
.x9_c00345{left:125.466667pt;}
.x13_c00345{left:211.434896pt;}
.x12_c00345{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_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_280d76c640be0060dac78f6a.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_512562a3c9d35f1a8d15c06e.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_6ce026ebf54af7023beeb7b7.woff2')format("woff");}.ff3_c00346{font-family:ff3_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:ff4_c00346;src:url('chunks/assets/font_1b673953851102bade141ec4.woff2')format("woff");}.ff4_c00346{font-family:ff4_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:ff5_c00346;src:url('chunks/assets/font_89d6b7e640200245d4e29ab1.woff2')format("woff");}.ff5_c00346{font-family:ff5_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:ff6_c00346;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls2_c00346{letter-spacing:0.000000px;}
.ls3_c00346{letter-spacing:3.000000px;}
.ls4_c00346{letter-spacing:6.000000px;}
.ls1_c00346{letter-spacing:13.125000px;}
.ls0_c00346{letter-spacing:18.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;}
}
.ws1_c00346{word-spacing:-27.456000px;}
.ws0_c00346{word-spacing:-23.250000px;}
.ws2_c00346{word-spacing:-22.629000px;}
.ws3_c00346{word-spacing:-16.629000px;}
.ws4_c00346{word-spacing:-5.970000px;}
.ws5_c00346{word-spacing:0.000000px;}
._12_c00346{margin-left:-28.842000px;}
._27_c00346{margin-left:-19.425000px;}
._10_c00346{margin-left:-15.801000px;}
._21_c00346{margin-left:-13.296000px;}
._b_c00346{margin-left:-11.454000px;}
._22_c00346{margin-left:-9.585000px;}
._7_c00346{margin-left:-8.439000px;}
._e_c00346{margin-left:-7.275000px;}
._d_c00346{margin-left:-5.283000px;}
._5_c00346{margin-left:-3.729000px;}
._9_c00346{margin-left:-2.625000px;}
._4_c00346{margin-left:-1.200000px;}
._1_c00346{width:1.386000px;}
._0_c00346{width:3.036000px;}
._11_c00346{width:4.692000px;}
._6_c00346{width:6.075000px;}
._1a_c00346{width:7.590000px;}
._f_c00346{width:8.991000px;}
._20_c00346{width:11.007000px;}
._8_c00346{width:12.270000px;}
._3_c00346{width:13.368000px;}
._26_c00346{width:14.907000px;}
._c_c00346{width:16.077000px;}
._a_c00346{width:18.009000px;}
._1c_c00346{width:19.995000px;}
._19_c00346{width:21.099000px;}
._25_c00346{width:26.133000px;}
._14_c00346{width:30.141000px;}
._1b_c00346{width:35.880000px;}
._15_c00346{width:41.016000px;}
._16_c00346{width:50.565000px;}
._1f_c00346{width:55.200000px;}
._1e_c00346{width:65.964000px;}
._18_c00346{width:79.944000px;}
._17_c00346{width:81.966000px;}
._1d_c00346{width:83.862000px;}
._24_c00346{width:95.313000px;}
._23_c00346{width:170.073000px;}
._2_c00346{width:418.500000px;}
._28_c00346{width:581.568000px;}
._13_c00346{width:600.783000px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(128,128,128);}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:48.000000px;}
.fs0_c00346{font-size:66.000000px;}
.fs3_c00346{font-size:69.000000px;}
.fs1_c00346{font-size:72.000000px;}
.fs2_c00346{font-size:93.000000px;}
.y0_c00346{bottom:0.000000px;}
.y20_c00346{bottom:3.105000px;}
.y1f_c00346{bottom:7.228371px;}
.y1e_c00346{bottom:59.715000px;}
.y1d_c00346{bottom:84.165000px;}
.y1c_c00346{bottom:109.815000px;}
.y1b_c00346{bottom:134.115000px;}
.y1a_c00346{bottom:159.615000px;}
.y19_c00346{bottom:183.915000px;}
.y18_c00346{bottom:208.965000px;}
.y17_c00346{bottom:234.315000px;}
.y16_c00346{bottom:258.915000px;}
.y15_c00346{bottom:283.965000px;}
.y14_c00346{bottom:308.565000px;}
.y13_c00346{bottom:333.465000px;}
.y12_c00346{bottom:358.515000px;}
.y11_c00346{bottom:383.115000px;}
.y10_c00346{bottom:408.015000px;}
.yf_c00346{bottom:433.365000px;}
.ye_c00346{bottom:457.665000px;}
.yd_c00346{bottom:482.265000px;}
.yc_c00346{bottom:507.015000px;}
.yb_c00346{bottom:531.615000px;}
.ya_c00346{bottom:556.215000px;}
.y9_c00346{bottom:580.815000px;}
.y8_c00346{bottom:605.865000px;}
.y7_c00346{bottom:630.465000px;}
.y6_c00346{bottom:655.065000px;}
.y5_c00346{bottom:680.415000px;}
.y4_c00346{bottom:704.715000px;}
.y3_c00346{bottom:729.315000px;}
.y2_c00346{bottom:754.965000px;}
.y1_c00346{bottom:778.965000px;}
.h5_c00346{height:13.200074px;}
.h6_c00346{height:43.804688px;}
.h4_c00346{height:80.758301px;}
.h3_c00346{height:87.361816px;}
.h2_c00346{height:93.726562px;}
.h1_c00346{height:817.500000px;}
.h0_c00346{height:817.575000px;}
.w2_c00346{width:104.875500px;}
.w1_c00346{width:572.250000px;}
.w0_c00346{width:572.400000px;}
.x0_c00346{left:0.000000px;}
.x7_c00346{left:41.400000px;}
.x2_c00346{left:43.500000px;}
.x3_c00346{left:45.150000px;}
.x4_c00346{left:46.200000px;}
.x5_c00346{left:67.500000px;}
.x6_c00346{left:70.500000px;}
.x1_c00346{left:216.000000px;}
.x9_c00346{left:238.014267px;}
.x8_c00346{left:284.550000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls2_c00346{letter-spacing:0.000000pt;}
.ls3_c00346{letter-spacing:2.666667pt;}
.ls4_c00346{letter-spacing:5.333333pt;}
.ls1_c00346{letter-spacing:11.666667pt;}
.ls0_c00346{letter-spacing:16.000000pt;}
.ws1_c00346{word-spacing:-24.405333pt;}
.ws0_c00346{word-spacing:-20.666667pt;}
.ws2_c00346{word-spacing:-20.114667pt;}
.ws3_c00346{word-spacing:-14.781333pt;}
.ws4_c00346{word-spacing:-5.306667pt;}
.ws5_c00346{word-spacing:0.000000pt;}
._12_c00346{margin-left:-25.637333pt;}
._27_c00346{margin-left:-17.266667pt;}
._10_c00346{margin-left:-14.045333pt;}
._21_c00346{margin-left:-11.818667pt;}
._b_c00346{margin-left:-10.181333pt;}
._22_c00346{margin-left:-8.520000pt;}
._7_c00346{margin-left:-7.501333pt;}
._e_c00346{margin-left:-6.466667pt;}
._d_c00346{margin-left:-4.696000pt;}
._5_c00346{margin-left:-3.314667pt;}
._9_c00346{margin-left:-2.333333pt;}
._4_c00346{margin-left:-1.066667pt;}
._1_c00346{width:1.232000pt;}
._0_c00346{width:2.698667pt;}
._11_c00346{width:4.170667pt;}
._6_c00346{width:5.400000pt;}
._1a_c00346{width:6.746667pt;}
._f_c00346{width:7.992000pt;}
._20_c00346{width:9.784000pt;}
._8_c00346{width:10.906667pt;}
._3_c00346{width:11.882667pt;}
._26_c00346{width:13.250667pt;}
._c_c00346{width:14.290667pt;}
._a_c00346{width:16.008000pt;}
._1c_c00346{width:17.773333pt;}
._19_c00346{width:18.754667pt;}
._25_c00346{width:23.229333pt;}
._14_c00346{width:26.792000pt;}
._1b_c00346{width:31.893333pt;}
._15_c00346{width:36.458667pt;}
._16_c00346{width:44.946667pt;}
._1f_c00346{width:49.066667pt;}
._1e_c00346{width:58.634667pt;}
._18_c00346{width:71.061333pt;}
._17_c00346{width:72.858667pt;}
._1d_c00346{width:74.544000pt;}
._24_c00346{width:84.722667pt;}
._23_c00346{width:151.176000pt;}
._2_c00346{width:372.000000pt;}
._28_c00346{width:516.949333pt;}
._13_c00346{width:534.029333pt;}
.fs4_c00346{font-size:42.666667pt;}
.fs0_c00346{font-size:58.666667pt;}
.fs3_c00346{font-size:61.333333pt;}
.fs1_c00346{font-size:64.000000pt;}
.fs2_c00346{font-size:82.666667pt;}
.y0_c00346{bottom:0.000000pt;}
.y20_c00346{bottom:2.760000pt;}
.y1f_c00346{bottom:6.425219pt;}
.y1e_c00346{bottom:53.080000pt;}
.y1d_c00346{bottom:74.813333pt;}
.y1c_c00346{bottom:97.613333pt;}
.y1b_c00346{bottom:119.213333pt;}
.y1a_c00346{bottom:141.880000pt;}
.y19_c00346{bottom:163.480000pt;}
.y18_c00346{bottom:185.746667pt;}
.y17_c00346{bottom:208.280000pt;}
.y16_c00346{bottom:230.146667pt;}
.y15_c00346{bottom:252.413333pt;}
.y14_c00346{bottom:274.280000pt;}
.y13_c00346{bottom:296.413333pt;}
.y12_c00346{bottom:318.680000pt;}
.y11_c00346{bottom:340.546667pt;}
.y10_c00346{bottom:362.680000pt;}
.yf_c00346{bottom:385.213333pt;}
.ye_c00346{bottom:406.813333pt;}
.yd_c00346{bottom:428.680000pt;}
.yc_c00346{bottom:450.680000pt;}
.yb_c00346{bottom:472.546667pt;}
.ya_c00346{bottom:494.413333pt;}
.y9_c00346{bottom:516.280000pt;}
.y8_c00346{bottom:538.546667pt;}
.y7_c00346{bottom:560.413333pt;}
.y6_c00346{bottom:582.280000pt;}
.y5_c00346{bottom:604.813333pt;}
.y4_c00346{bottom:626.413333pt;}
.y3_c00346{bottom:648.280000pt;}
.y2_c00346{bottom:671.080000pt;}
.y1_c00346{bottom:692.413333pt;}
.h5_c00346{height:11.733399pt;}
.h6_c00346{height:38.937500pt;}
.h4_c00346{height:71.785156pt;}
.h3_c00346{height:77.654948pt;}
.h2_c00346{height:83.312500pt;}
.h1_c00346{height:726.666667pt;}
.h0_c00346{height:726.733333pt;}
.w2_c00346{width:93.222667pt;}
.w1_c00346{width:508.666667pt;}
.w0_c00346{width:508.800000pt;}
.x0_c00346{left:0.000000pt;}
.x7_c00346{left:36.800000pt;}
.x2_c00346{left:38.666667pt;}
.x3_c00346{left:40.133333pt;}
.x4_c00346{left:41.066667pt;}
.x5_c00346{left:60.000000pt;}
.x6_c00346{left:62.666667pt;}
.x1_c00346{left:192.000000pt;}
.x9_c00346{left:211.568237pt;}
.x8_c00346{left:252.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_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_9a828171e563345f7f5c1dbe.woff2')format("woff");}.ff1_c00347{font-family:ff1_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:ff2_c00347;src:url('chunks/assets/font_3a318a354f99948af82378f4.woff2')format("woff");}.ff2_c00347{font-family:ff2_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:ff3_c00347;src:url('chunks/assets/font_1471e5a5d2ed2cba7e246552.woff2')format("woff");}.ff3_c00347{font-family:ff3_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:ff4_c00347;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00347{font-family:ff4_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;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:6.000000px;}
.ls0_c00347{letter-spacing:7.890000px;}
.ls3_c00347{letter-spacing:9.000000px;}
.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;}
}
.ws5_c00347{word-spacing:-22.629000px;}
.ws2_c00347{word-spacing:-16.629000px;}
.ws4_c00347{word-spacing:-1.242000px;}
.ws0_c00347{word-spacing:-0.414000px;}
.ws6_c00347{word-spacing:0.000000px;}
.ws3_c00347{word-spacing:0.552000px;}
.ws1_c00347{word-spacing:12.213000px;}
._1e_c00347{margin-left:-36.294000px;}
._2b_c00347{margin-left:-28.707000px;}
._22_c00347{margin-left:-22.548000px;}
._1d_c00347{margin-left:-19.389000px;}
._21_c00347{margin-left:-17.235000px;}
._20_c00347{margin-left:-14.712000px;}
._9_c00347{margin-left:-13.305000px;}
._3_c00347{margin-left:-11.799000px;}
._2_c00347{margin-left:-10.074000px;}
._5_c00347{margin-left:-8.418000px;}
._e_c00347{margin-left:-7.107000px;}
._1_c00347{margin-left:-5.520000px;}
._8_c00347{margin-left:-4.236000px;}
._0_c00347{margin-left:-2.967000px;}
._7_c00347{margin-left:-1.587000px;}
._b_c00347{width:1.173000px;}
._a_c00347{width:2.691000px;}
._f_c00347{width:4.140000px;}
._25_c00347{width:5.202000px;}
._4_c00347{width:6.279000px;}
._c_c00347{width:7.935000px;}
._d_c00347{width:10.074000px;}
._1a_c00347{width:11.523000px;}
._11_c00347{width:13.386000px;}
._14_c00347{width:14.574000px;}
._10_c00347{width:15.594000px;}
._29_c00347{width:17.109000px;}
._12_c00347{width:18.147000px;}
._13_c00347{width:19.665000px;}
._24_c00347{width:20.727000px;}
._18_c00347{width:22.356000px;}
._17_c00347{width:24.564000px;}
._19_c00347{width:26.220000px;}
._1b_c00347{width:27.687000px;}
._16_c00347{width:31.146000px;}
._1c_c00347{width:33.189000px;}
._2a_c00347{width:34.470000px;}
._15_c00347{width:36.777000px;}
._27_c00347{width:148.485000px;}
._2c_c00347{width:157.791000px;}
._1f_c00347{width:208.725000px;}
._23_c00347{width:210.519000px;}
._26_c00347{width:237.390000px;}
._6_c00347{width:375.753000px;}
._28_c00347{width:989.943000px;}
.fc2_c00347{color:transparent;}
.fc1_c00347{color:rgb(128,128,128);}
.fc0_c00347{color:rgb(0,0,0);}
.fs1_c00347{font-size:48.000000px;}
.fs0_c00347{font-size:69.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1d_c00347{bottom:3.105000px;}
.y1c_c00347{bottom:7.228363px;}
.y1b_c00347{bottom:57.000000px;}
.y1a_c00347{bottom:87.750000px;}
.y19_c00347{bottom:113.700000px;}
.y18_c00347{bottom:138.450000px;}
.y17_c00347{bottom:162.450000px;}
.y16_c00347{bottom:188.550000px;}
.y15_c00347{bottom:214.350000px;}
.y14_c00347{bottom:239.550000px;}
.y13_c00347{bottom:264.300000px;}
.y12_c00347{bottom:289.350000px;}
.y11_c00347{bottom:337.950000px;}
.y10_c00347{bottom:387.000000px;}
.yf_c00347{bottom:413.400000px;}
.ye_c00347{bottom:438.750000px;}
.yd_c00347{bottom:463.350000px;}
.yc_c00347{bottom:488.250000px;}
.yb_c00347{bottom:513.000000px;}
.ya_c00347{bottom:537.900000px;}
.y9_c00347{bottom:562.650000px;}
.y8_c00347{bottom:587.250000px;}
.y7_c00347{bottom:612.600000px;}
.y6_c00347{bottom:637.200000px;}
.y5_c00347{bottom:662.250000px;}
.y4_c00347{bottom:704.400000px;}
.y3_c00347{bottom:736.350000px;}
.y2_c00347{bottom:760.950000px;}
.y1_c00347{bottom:785.700000px;}
.h5_c00347{height:13.200074px;}
.h6_c00347{height:43.804688px;}
.h3_c00347{height:80.758301px;}
.h2_c00347{height:87.361816px;}
.h4_c00347{height:87.961816px;}
.h1_c00347{height:827.250000px;}
.h0_c00347{height:827.550000px;}
.w2_c00347{width:104.875500px;}
.w0_c00347{width:572.100000px;}
.w1_c00347{width:572.250000px;}
.x0_c00347{left:0.000000px;}
.x7_c00347{left:27.300000px;}
.x6_c00347{left:33.450000px;}
.xd_c00347{left:50.400000px;}
.xe_c00347{left:90.150000px;}
.xc_c00347{left:91.800000px;}
.x8_c00347{left:93.900000px;}
.x9_c00347{left:94.950000px;}
.x5_c00347{left:96.150000px;}
.x2_c00347{left:98.850000px;}
.x1_c00347{left:112.050000px;}
.xb_c00347{left:117.900000px;}
.x4_c00347{left:121.200000px;}
.xa_c00347{left:126.600000px;}
.x3_c00347{left:129.300000px;}
.x10_c00347{left:237.864258px;}
.xf_c00347{left:507.600000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:5.333333pt;}
.ls0_c00347{letter-spacing:7.013333pt;}
.ls3_c00347{letter-spacing:8.000000pt;}
.ws5_c00347{word-spacing:-20.114667pt;}
.ws2_c00347{word-spacing:-14.781333pt;}
.ws4_c00347{word-spacing:-1.104000pt;}
.ws0_c00347{word-spacing:-0.368000pt;}
.ws6_c00347{word-spacing:0.000000pt;}
.ws3_c00347{word-spacing:0.490667pt;}
.ws1_c00347{word-spacing:10.856000pt;}
._1e_c00347{margin-left:-32.261333pt;}
._2b_c00347{margin-left:-25.517333pt;}
._22_c00347{margin-left:-20.042667pt;}
._1d_c00347{margin-left:-17.234667pt;}
._21_c00347{margin-left:-15.320000pt;}
._20_c00347{margin-left:-13.077333pt;}
._9_c00347{margin-left:-11.826667pt;}
._3_c00347{margin-left:-10.488000pt;}
._2_c00347{margin-left:-8.954667pt;}
._5_c00347{margin-left:-7.482667pt;}
._e_c00347{margin-left:-6.317333pt;}
._1_c00347{margin-left:-4.906667pt;}
._8_c00347{margin-left:-3.765333pt;}
._0_c00347{margin-left:-2.637333pt;}
._7_c00347{margin-left:-1.410667pt;}
._b_c00347{width:1.042667pt;}
._a_c00347{width:2.392000pt;}
._f_c00347{width:3.680000pt;}
._25_c00347{width:4.624000pt;}
._4_c00347{width:5.581333pt;}
._c_c00347{width:7.053333pt;}
._d_c00347{width:8.954667pt;}
._1a_c00347{width:10.242667pt;}
._11_c00347{width:11.898667pt;}
._14_c00347{width:12.954667pt;}
._10_c00347{width:13.861333pt;}
._29_c00347{width:15.208000pt;}
._12_c00347{width:16.130667pt;}
._13_c00347{width:17.480000pt;}
._24_c00347{width:18.424000pt;}
._18_c00347{width:19.872000pt;}
._17_c00347{width:21.834667pt;}
._19_c00347{width:23.306667pt;}
._1b_c00347{width:24.610667pt;}
._16_c00347{width:27.685333pt;}
._1c_c00347{width:29.501333pt;}
._2a_c00347{width:30.640000pt;}
._15_c00347{width:32.690667pt;}
._27_c00347{width:131.986667pt;}
._2c_c00347{width:140.258667pt;}
._1f_c00347{width:185.533333pt;}
._23_c00347{width:187.128000pt;}
._26_c00347{width:211.013333pt;}
._6_c00347{width:334.002667pt;}
._28_c00347{width:879.949333pt;}
.fs1_c00347{font-size:42.666667pt;}
.fs0_c00347{font-size:61.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y1d_c00347{bottom:2.760000pt;}
.y1c_c00347{bottom:6.425212pt;}
.y1b_c00347{bottom:50.666667pt;}
.y1a_c00347{bottom:78.000000pt;}
.y19_c00347{bottom:101.066667pt;}
.y18_c00347{bottom:123.066667pt;}
.y17_c00347{bottom:144.400000pt;}
.y16_c00347{bottom:167.600000pt;}
.y15_c00347{bottom:190.533333pt;}
.y14_c00347{bottom:212.933333pt;}
.y13_c00347{bottom:234.933333pt;}
.y12_c00347{bottom:257.200000pt;}
.y11_c00347{bottom:300.400000pt;}
.y10_c00347{bottom:344.000000pt;}
.yf_c00347{bottom:367.466667pt;}
.ye_c00347{bottom:390.000000pt;}
.yd_c00347{bottom:411.866667pt;}
.yc_c00347{bottom:434.000000pt;}
.yb_c00347{bottom:456.000000pt;}
.ya_c00347{bottom:478.133333pt;}
.y9_c00347{bottom:500.133333pt;}
.y8_c00347{bottom:522.000000pt;}
.y7_c00347{bottom:544.533333pt;}
.y6_c00347{bottom:566.400000pt;}
.y5_c00347{bottom:588.666667pt;}
.y4_c00347{bottom:626.133333pt;}
.y3_c00347{bottom:654.533333pt;}
.y2_c00347{bottom:676.400000pt;}
.y1_c00347{bottom:698.400000pt;}
.h5_c00347{height:11.733399pt;}
.h6_c00347{height:38.937500pt;}
.h3_c00347{height:71.785156pt;}
.h2_c00347{height:77.654948pt;}
.h4_c00347{height:78.188281pt;}
.h1_c00347{height:735.333333pt;}
.h0_c00347{height:735.600000pt;}
.w2_c00347{width:93.222667pt;}
.w0_c00347{width:508.533333pt;}
.w1_c00347{width:508.666667pt;}
.x0_c00347{left:0.000000pt;}
.x7_c00347{left:24.266667pt;}
.x6_c00347{left:29.733333pt;}
.xd_c00347{left:44.800000pt;}
.xe_c00347{left:80.133333pt;}
.xc_c00347{left:81.600000pt;}
.x8_c00347{left:83.466667pt;}
.x9_c00347{left:84.400000pt;}
.x5_c00347{left:85.466667pt;}
.x2_c00347{left:87.866667pt;}
.x1_c00347{left:99.600000pt;}
.xb_c00347{left:104.800000pt;}
.x4_c00347{left:107.733333pt;}
.xa_c00347{left:112.533333pt;}
.x3_c00347{left:114.933333pt;}
.x10_c00347{left:211.434896pt;}
.xf_c00347{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_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_59c09214975ac03cc0b82ded.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.437000;font-style:normal;font-weight:normal;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_4afe00e294486cb8626aa636.woff2')format("woff");}.ff2_c00348{font-family:ff2_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:ff3_c00348;src:url('chunks/assets/font_5bafbd757be0d757a0f4b6bc.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_4d27390da74c1e8f29e75788.woff2')format("woff");}.ff4_c00348{font-family:ff4_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:ff5_c00348;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00348{font-family:ff5_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:ff6_c00348;src:url('chunks/assets/font_28899971b3068dc580d2b01b.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00348;src:url('chunks/assets/font_b850be9df481aa71a9ae7041.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;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_c00348;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00348{font-family:ff8_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;}
.ls8_c00348{letter-spacing:0.000000px;}
.ls7_c00348{letter-spacing:2.400000px;}
.ls5_c00348{letter-spacing:3.000000px;}
.ls9_c00348{letter-spacing:6.000000px;}
.ls6_c00348{letter-spacing:7.200000px;}
.ls4_c00348{letter-spacing:11.400000px;}
.ls3_c00348{letter-spacing:13.125000px;}
.ls0_c00348{letter-spacing:13.200000px;}
.ls1_c00348{letter-spacing:21.000000px;}
.lsa_c00348{letter-spacing:30.000000px;}
.ls2_c00348{letter-spacing:43.800000px;}
.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;}
}
.ws2_c00348{word-spacing:-49.818000px;}
.ws1_c00348{word-spacing:-22.629000px;}
.ws0_c00348{word-spacing:-16.629000px;}
.ws3_c00348{word-spacing:-1.104000px;}
.ws4_c00348{word-spacing:0.000000px;}
._1f_c00348{margin-left:-25.767000px;}
._15_c00348{margin-left:-23.667000px;}
._14_c00348{margin-left:-19.941000px;}
._1b_c00348{margin-left:-18.003000px;}
._18_c00348{margin-left:-15.111000px;}
._22_c00348{margin-left:-14.085000px;}
._2e_c00348{margin-left:-12.759000px;}
._16_c00348{margin-left:-11.454000px;}
._1a_c00348{margin-left:-10.275000px;}
._12_c00348{margin-left:-9.183000px;}
._19_c00348{margin-left:-7.935000px;}
._3_c00348{margin-left:-6.162000px;}
._4_c00348{margin-left:-5.148000px;}
._0_c00348{margin-left:-3.588000px;}
._1_c00348{margin-left:-2.262000px;}
._6_c00348{margin-left:-1.236000px;}
._9_c00348{width:1.380000px;}
._c_c00348{width:2.637000px;}
._8_c00348{width:3.678000px;}
._a_c00348{width:4.911000px;}
._2a_c00348{width:5.952000px;}
._7_c00348{width:6.969000px;}
._11_c00348{width:7.977000px;}
._e_c00348{width:9.111000px;}
._f_c00348{width:10.650000px;}
._1d_c00348{width:11.772000px;}
._20_c00348{width:12.852000px;}
._10_c00348{width:13.860000px;}
._29_c00348{width:15.450000px;}
._b_c00348{width:16.452000px;}
._d_c00348{width:17.859000px;}
._21_c00348{width:19.353000px;}
._30_c00348{width:20.739000px;}
._2_c00348{width:22.308000px;}
._24_c00348{width:23.793000px;}
._31_c00348{width:26.142000px;}
._2f_c00348{width:28.002000px;}
._28_c00348{width:30.897000px;}
._13_c00348{width:32.778000px;}
._23_c00348{width:35.001000px;}
._25_c00348{width:39.462000px;}
._26_c00348{width:45.450000px;}
._2c_c00348{width:52.551000px;}
._17_c00348{width:68.034000px;}
._2d_c00348{width:107.610000px;}
._27_c00348{width:108.753000px;}
._1e_c00348{width:203.775000px;}
._2b_c00348{width:236.343000px;}
._1c_c00348{width:242.679000px;}
._32_c00348{width:416.454000px;}
._5_c00348{width:424.584000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(128,128,128);}
.fc0_c00348{color:rgb(0,0,0);}
.fs6_c00348{font-size:48.000000px;}
.fs4_c00348{font-size:54.000000px;}
.fs5_c00348{font-size:57.000000px;}
.fs3_c00348{font-size:66.000000px;}
.fs2_c00348{font-size:69.000000px;}
.fs1_c00348{font-size:72.000000px;}
.fs0_c00348{font-size:78.000000px;}
.y0_c00348{bottom:0.000000px;}
.y20_c00348{bottom:3.105000px;}
.y1f_c00348{bottom:7.228363px;}
.y1e_c00348{bottom:57.750000px;}
.y1d_c00348{bottom:78.600000px;}
.y1c_c00348{bottom:96.750000px;}
.y1b_c00348{bottom:131.850000px;}
.y1a_c00348{bottom:159.600000px;}
.y19_c00348{bottom:183.600000px;}
.y18_c00348{bottom:208.800000px;}
.y17_c00348{bottom:234.450000px;}
.y16_c00348{bottom:258.900000px;}
.y15_c00348{bottom:283.500000px;}
.y14_c00348{bottom:307.800000px;}
.y13_c00348{bottom:332.400000px;}
.y12_c00348{bottom:357.300000px;}
.y11_c00348{bottom:382.050000px;}
.y10_c00348{bottom:407.250000px;}
.yf_c00348{bottom:431.550000px;}
.ye_c00348{bottom:456.600000px;}
.yd_c00348{bottom:481.200000px;}
.yc_c00348{bottom:505.200000px;}
.yb_c00348{bottom:529.800000px;}
.ya_c00348{bottom:554.850000px;}
.y9_c00348{bottom:579.750000px;}
.y8_c00348{bottom:604.350000px;}
.y7_c00348{bottom:629.100000px;}
.y6_c00348{bottom:654.750000px;}
.y5_c00348{bottom:679.050000px;}
.y4_c00348{bottom:703.650000px;}
.y3_c00348{bottom:729.300000px;}
.y2_c00348{bottom:753.300000px;}
.y1_c00348{bottom:778.950000px;}
.h5_c00348{height:13.200074px;}
.h6_c00348{height:43.804688px;}
.h3_c00348{height:58.536000px;}
.h4_c00348{height:72.168457px;}
.h2_c00348{height:87.361816px;}
.h1_c00348{height:91.160156px;}
.h0_c00348{height:823.500000px;}
.w1_c00348{width:104.875500px;}
.w0_c00348{width:576.750000px;}
.x0_c00348{left:0.000000px;}
.x4_c00348{left:31.350000px;}
.x2_c00348{left:32.400000px;}
.x3_c00348{left:33.450000px;}
.x6_c00348{left:50.250000px;}
.x5_c00348{left:172.500000px;}
.x1_c00348{left:203.550000px;}
.x8_c00348{left:240.189240px;}
.x7_c00348{left:283.200000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls8_c00348{letter-spacing:0.000000pt;}
.ls7_c00348{letter-spacing:2.133333pt;}
.ls5_c00348{letter-spacing:2.666667pt;}
.ls9_c00348{letter-spacing:5.333333pt;}
.ls6_c00348{letter-spacing:6.400000pt;}
.ls4_c00348{letter-spacing:10.133333pt;}
.ls3_c00348{letter-spacing:11.666667pt;}
.ls0_c00348{letter-spacing:11.733333pt;}
.ls1_c00348{letter-spacing:18.666667pt;}
.lsa_c00348{letter-spacing:26.666667pt;}
.ls2_c00348{letter-spacing:38.933333pt;}
.ws2_c00348{word-spacing:-44.282667pt;}
.ws1_c00348{word-spacing:-20.114667pt;}
.ws0_c00348{word-spacing:-14.781333pt;}
.ws3_c00348{word-spacing:-0.981333pt;}
.ws4_c00348{word-spacing:0.000000pt;}
._1f_c00348{margin-left:-22.904000pt;}
._15_c00348{margin-left:-21.037333pt;}
._14_c00348{margin-left:-17.725333pt;}
._1b_c00348{margin-left:-16.002667pt;}
._18_c00348{margin-left:-13.432000pt;}
._22_c00348{margin-left:-12.520000pt;}
._2e_c00348{margin-left:-11.341333pt;}
._16_c00348{margin-left:-10.181333pt;}
._1a_c00348{margin-left:-9.133333pt;}
._12_c00348{margin-left:-8.162667pt;}
._19_c00348{margin-left:-7.053333pt;}
._3_c00348{margin-left:-5.477333pt;}
._4_c00348{margin-left:-4.576000pt;}
._0_c00348{margin-left:-3.189333pt;}
._1_c00348{margin-left:-2.010667pt;}
._6_c00348{margin-left:-1.098667pt;}
._9_c00348{width:1.226667pt;}
._c_c00348{width:2.344000pt;}
._8_c00348{width:3.269333pt;}
._a_c00348{width:4.365333pt;}
._2a_c00348{width:5.290667pt;}
._7_c00348{width:6.194667pt;}
._11_c00348{width:7.090667pt;}
._e_c00348{width:8.098667pt;}
._f_c00348{width:9.466667pt;}
._1d_c00348{width:10.464000pt;}
._20_c00348{width:11.424000pt;}
._10_c00348{width:12.320000pt;}
._29_c00348{width:13.733333pt;}
._b_c00348{width:14.624000pt;}
._d_c00348{width:15.874667pt;}
._21_c00348{width:17.202667pt;}
._30_c00348{width:18.434667pt;}
._2_c00348{width:19.829333pt;}
._24_c00348{width:21.149333pt;}
._31_c00348{width:23.237333pt;}
._2f_c00348{width:24.890667pt;}
._28_c00348{width:27.464000pt;}
._13_c00348{width:29.136000pt;}
._23_c00348{width:31.112000pt;}
._25_c00348{width:35.077333pt;}
._26_c00348{width:40.400000pt;}
._2c_c00348{width:46.712000pt;}
._17_c00348{width:60.474667pt;}
._2d_c00348{width:95.653333pt;}
._27_c00348{width:96.669333pt;}
._1e_c00348{width:181.133333pt;}
._2b_c00348{width:210.082667pt;}
._1c_c00348{width:215.714667pt;}
._32_c00348{width:370.181333pt;}
._5_c00348{width:377.408000pt;}
.fs6_c00348{font-size:42.666667pt;}
.fs4_c00348{font-size:48.000000pt;}
.fs5_c00348{font-size:50.666667pt;}
.fs3_c00348{font-size:58.666667pt;}
.fs2_c00348{font-size:61.333333pt;}
.fs1_c00348{font-size:64.000000pt;}
.fs0_c00348{font-size:69.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y20_c00348{bottom:2.760000pt;}
.y1f_c00348{bottom:6.425212pt;}
.y1e_c00348{bottom:51.333333pt;}
.y1d_c00348{bottom:69.866667pt;}
.y1c_c00348{bottom:86.000000pt;}
.y1b_c00348{bottom:117.200000pt;}
.y1a_c00348{bottom:141.866667pt;}
.y19_c00348{bottom:163.200000pt;}
.y18_c00348{bottom:185.600000pt;}
.y17_c00348{bottom:208.400000pt;}
.y16_c00348{bottom:230.133333pt;}
.y15_c00348{bottom:252.000000pt;}
.y14_c00348{bottom:273.600000pt;}
.y13_c00348{bottom:295.466667pt;}
.y12_c00348{bottom:317.600000pt;}
.y11_c00348{bottom:339.600000pt;}
.y10_c00348{bottom:362.000000pt;}
.yf_c00348{bottom:383.600000pt;}
.ye_c00348{bottom:405.866667pt;}
.yd_c00348{bottom:427.733333pt;}
.yc_c00348{bottom:449.066667pt;}
.yb_c00348{bottom:470.933333pt;}
.ya_c00348{bottom:493.200000pt;}
.y9_c00348{bottom:515.333333pt;}
.y8_c00348{bottom:537.200000pt;}
.y7_c00348{bottom:559.200000pt;}
.y6_c00348{bottom:582.000000pt;}
.y5_c00348{bottom:603.600000pt;}
.y4_c00348{bottom:625.466667pt;}
.y3_c00348{bottom:648.266667pt;}
.y2_c00348{bottom:669.600000pt;}
.y1_c00348{bottom:692.400000pt;}
.h5_c00348{height:11.733399pt;}
.h6_c00348{height:38.937500pt;}
.h3_c00348{height:52.032000pt;}
.h4_c00348{height:64.149740pt;}
.h2_c00348{height:77.654948pt;}
.h1_c00348{height:81.031250pt;}
.h0_c00348{height:732.000000pt;}
.w1_c00348{width:93.222667pt;}
.w0_c00348{width:512.666667pt;}
.x0_c00348{left:0.000000pt;}
.x4_c00348{left:27.866667pt;}
.x2_c00348{left:28.800000pt;}
.x3_c00348{left:29.733333pt;}
.x6_c00348{left:44.666667pt;}
.x5_c00348{left:153.333333pt;}
.x1_c00348{left:180.933333pt;}
.x8_c00348{left:213.501546pt;}
.x7_c00348{left:251.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_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_e3bf64f608d9ce9385cb5e62.woff2')format("woff");}.ff1_c00349{font-family:ff1_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:ff2_c00349;src:url('chunks/assets/font_ed5ba4dafceb4581a9f49403.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_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff3_c00349{font-family:ff3_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:ff4_c00349;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00349{font-family:ff4_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);}
.v1_c00349{vertical-align:-66.000000px;}
.v0_c00349{vertical-align:0.000000px;}
.ls2_c00349{letter-spacing:0.000000px;}
.ls3_c00349{letter-spacing:3.000000px;}
.ls0_c00349{letter-spacing:6.000000px;}
.ls1_c00349{letter-spacing:17.325000px;}
.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:-47.022000px;}
.ws4_c00349{word-spacing:-22.629000px;}
.ws2_c00349{word-spacing:-16.629000px;}
.ws0_c00349{word-spacing:-0.276000px;}
.ws5_c00349{word-spacing:0.000000px;}
.ws1_c00349{word-spacing:7.521000px;}
._2a_c00349{margin-left:-32.121000px;}
._29_c00349{margin-left:-30.774000px;}
._28_c00349{margin-left:-23.667000px;}
._23_c00349{margin-left:-18.114000px;}
._18_c00349{margin-left:-16.491000px;}
._3_c00349{margin-left:-14.868000px;}
._2e_c00349{margin-left:-13.800000px;}
._24_c00349{margin-left:-12.627000px;}
._1d_c00349{margin-left:-10.596000px;}
._17_c00349{margin-left:-8.625000px;}
._14_c00349{margin-left:-7.314000px;}
._11_c00349{margin-left:-5.796000px;}
._13_c00349{margin-left:-4.002000px;}
._12_c00349{margin-left:-2.967000px;}
._1_c00349{margin-left:-1.863000px;}
._10_c00349{width:1.380000px;}
._f_c00349{width:2.622000px;}
._16_c00349{width:3.795000px;}
._2_c00349{width:5.451000px;}
._1a_c00349{width:7.023000px;}
._6_c00349{width:8.418000px;}
._15_c00349{width:9.936000px;}
._4_c00349{width:12.213000px;}
._e_c00349{width:13.662000px;}
._5_c00349{width:15.042000px;}
._1c_c00349{width:16.560000px;}
._27_c00349{width:17.802000px;}
._7_c00349{width:19.182000px;}
._1b_c00349{width:20.838000px;}
._d_c00349{width:25.530000px;}
._a_c00349{width:27.531000px;}
._b_c00349{width:29.118000px;}
._26_c00349{width:31.602000px;}
._c_c00349{width:33.051000px;}
._2b_c00349{width:34.395000px;}
._8_c00349{width:35.505000px;}
._9_c00349{width:37.017000px;}
._25_c00349{width:39.675000px;}
._1e_c00349{width:47.610000px;}
._21_c00349{width:49.680000px;}
._22_c00349{width:53.613000px;}
._1f_c00349{width:62.583000px;}
._2c_c00349{width:64.347000px;}
._19_c00349{width:164.874000px;}
._2d_c00349{width:174.363000px;}
._20_c00349{width:293.238000px;}
._0_c00349{width:369.558000px;}
.fc2_c00349{color:transparent;}
.fc1_c00349{color:rgb(128,128,128);}
.fc0_c00349{color:rgb(0,0,0);}
.fs3_c00349{font-size:48.000000px;}
.fs1_c00349{font-size:54.000000px;}
.fs2_c00349{font-size:66.000000px;}
.fs0_c00349{font-size:69.000000px;}
.y0_c00349{bottom:0.000000px;}
.y1e_c00349{bottom:3.105000px;}
.y1d_c00349{bottom:7.228363px;}
.y1c_c00349{bottom:59.100000px;}
.y1b_c00349{bottom:85.950000px;}
.y1a_c00349{bottom:109.950000px;}
.y19_c00349{bottom:135.600000px;}
.y18_c00349{bottom:160.950000px;}
.y17_c00349{bottom:185.850000px;}
.y16_c00349{bottom:210.150000px;}
.y15_c00349{bottom:236.550000px;}
.y14_c00349{bottom:261.150000px;}
.y13_c00349{bottom:285.450000px;}
.y12_c00349{bottom:309.750000px;}
.y11_c00349{bottom:334.800000px;}
.y10_c00349{bottom:359.700000px;}
.yf_c00349{bottom:385.050000px;}
.ye_c00349{bottom:409.650000px;}
.yd_c00349{bottom:435.000000px;}
.yc_c00349{bottom:460.050000px;}
.yb_c00349{bottom:485.250000px;}
.ya_c00349{bottom:510.300000px;}
.y9_c00349{bottom:534.900000px;}
.y8_c00349{bottom:558.900000px;}
.y7_c00349{bottom:583.800000px;}
.y6_c00349{bottom:611.100000px;}
.y5_c00349{bottom:634.800000px;}
.y4_c00349{bottom:659.850000px;}
.y3_c00349{bottom:685.350000px;}
.y2_c00349{bottom:734.100000px;}
.y1_c00349{bottom:784.650000px;}
.h4_c00349{height:13.200074px;}
.h5_c00349{height:43.804688px;}
.h3_c00349{height:80.758301px;}
.h2_c00349{height:87.361816px;}
.h1_c00349{height:827.250000px;}
.h0_c00349{height:827.550000px;}
.w2_c00349{width:104.875500px;}
.w0_c00349{width:572.100000px;}
.w1_c00349{width:572.250000px;}
.x0_c00349{left:0.000000px;}
.xa_c00349{left:25.950000px;}
.x6_c00349{left:31.800000px;}
.xb_c00349{left:41.850000px;}
.xe_c00349{left:65.850000px;}
.xf_c00349{left:88.050000px;}
.xd_c00349{left:89.850000px;}
.x9_c00349{left:92.250000px;}
.x5_c00349{left:93.450000px;}
.x8_c00349{left:94.950000px;}
.x7_c00349{left:96.300000px;}
.x4_c00349{left:97.650000px;}
.x1_c00349{left:114.300000px;}
.x3_c00349{left:122.100000px;}
.x2_c00349{left:133.950000px;}
.x11_c00349{left:237.864258px;}
.xc_c00349{left:322.350000px;}
.x10_c00349{left:468.150000px;}
@media print{
.v1_c00349{vertical-align:-58.666667pt;}
.v0_c00349{vertical-align:0.000000pt;}
.ls2_c00349{letter-spacing:0.000000pt;}
.ls3_c00349{letter-spacing:2.666667pt;}
.ls0_c00349{letter-spacing:5.333333pt;}
.ls1_c00349{letter-spacing:15.400000pt;}
.ws3_c00349{word-spacing:-41.797333pt;}
.ws4_c00349{word-spacing:-20.114667pt;}
.ws2_c00349{word-spacing:-14.781333pt;}
.ws0_c00349{word-spacing:-0.245333pt;}
.ws5_c00349{word-spacing:0.000000pt;}
.ws1_c00349{word-spacing:6.685333pt;}
._2a_c00349{margin-left:-28.552000pt;}
._29_c00349{margin-left:-27.354667pt;}
._28_c00349{margin-left:-21.037333pt;}
._23_c00349{margin-left:-16.101333pt;}
._18_c00349{margin-left:-14.658667pt;}
._3_c00349{margin-left:-13.216000pt;}
._2e_c00349{margin-left:-12.266667pt;}
._24_c00349{margin-left:-11.224000pt;}
._1d_c00349{margin-left:-9.418667pt;}
._17_c00349{margin-left:-7.666667pt;}
._14_c00349{margin-left:-6.501333pt;}
._11_c00349{margin-left:-5.152000pt;}
._13_c00349{margin-left:-3.557333pt;}
._12_c00349{margin-left:-2.637333pt;}
._1_c00349{margin-left:-1.656000pt;}
._10_c00349{width:1.226667pt;}
._f_c00349{width:2.330667pt;}
._16_c00349{width:3.373333pt;}
._2_c00349{width:4.845333pt;}
._1a_c00349{width:6.242667pt;}
._6_c00349{width:7.482667pt;}
._15_c00349{width:8.832000pt;}
._4_c00349{width:10.856000pt;}
._e_c00349{width:12.144000pt;}
._5_c00349{width:13.370667pt;}
._1c_c00349{width:14.720000pt;}
._27_c00349{width:15.824000pt;}
._7_c00349{width:17.050667pt;}
._1b_c00349{width:18.522667pt;}
._d_c00349{width:22.693333pt;}
._a_c00349{width:24.472000pt;}
._b_c00349{width:25.882667pt;}
._26_c00349{width:28.090667pt;}
._c_c00349{width:29.378667pt;}
._2b_c00349{width:30.573333pt;}
._8_c00349{width:31.560000pt;}
._9_c00349{width:32.904000pt;}
._25_c00349{width:35.266667pt;}
._1e_c00349{width:42.320000pt;}
._21_c00349{width:44.160000pt;}
._22_c00349{width:47.656000pt;}
._1f_c00349{width:55.629333pt;}
._2c_c00349{width:57.197333pt;}
._19_c00349{width:146.554667pt;}
._2d_c00349{width:154.989333pt;}
._20_c00349{width:260.656000pt;}
._0_c00349{width:328.496000pt;}
.fs3_c00349{font-size:42.666667pt;}
.fs1_c00349{font-size:48.000000pt;}
.fs2_c00349{font-size:58.666667pt;}
.fs0_c00349{font-size:61.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y1e_c00349{bottom:2.760000pt;}
.y1d_c00349{bottom:6.425212pt;}
.y1c_c00349{bottom:52.533333pt;}
.y1b_c00349{bottom:76.400000pt;}
.y1a_c00349{bottom:97.733333pt;}
.y19_c00349{bottom:120.533333pt;}
.y18_c00349{bottom:143.066667pt;}
.y17_c00349{bottom:165.200000pt;}
.y16_c00349{bottom:186.800000pt;}
.y15_c00349{bottom:210.266667pt;}
.y14_c00349{bottom:232.133333pt;}
.y13_c00349{bottom:253.733333pt;}
.y12_c00349{bottom:275.333333pt;}
.y11_c00349{bottom:297.600000pt;}
.y10_c00349{bottom:319.733333pt;}
.yf_c00349{bottom:342.266667pt;}
.ye_c00349{bottom:364.133333pt;}
.yd_c00349{bottom:386.666667pt;}
.yc_c00349{bottom:408.933333pt;}
.yb_c00349{bottom:431.333333pt;}
.ya_c00349{bottom:453.600000pt;}
.y9_c00349{bottom:475.466667pt;}
.y8_c00349{bottom:496.800000pt;}
.y7_c00349{bottom:518.933333pt;}
.y6_c00349{bottom:543.200000pt;}
.y5_c00349{bottom:564.266667pt;}
.y4_c00349{bottom:586.533333pt;}
.y3_c00349{bottom:609.200000pt;}
.y2_c00349{bottom:652.533333pt;}
.y1_c00349{bottom:697.466667pt;}
.h4_c00349{height:11.733399pt;}
.h5_c00349{height:38.937500pt;}
.h3_c00349{height:71.785156pt;}
.h2_c00349{height:77.654948pt;}
.h1_c00349{height:735.333333pt;}
.h0_c00349{height:735.600000pt;}
.w2_c00349{width:93.222667pt;}
.w0_c00349{width:508.533333pt;}
.w1_c00349{width:508.666667pt;}
.x0_c00349{left:0.000000pt;}
.xa_c00349{left:23.066667pt;}
.x6_c00349{left:28.266667pt;}
.xb_c00349{left:37.200000pt;}
.xe_c00349{left:58.533333pt;}
.xf_c00349{left:78.266667pt;}
.xd_c00349{left:79.866667pt;}
.x9_c00349{left:82.000000pt;}
.x5_c00349{left:83.066667pt;}
.x8_c00349{left:84.400000pt;}
.x7_c00349{left:85.600000pt;}
.x4_c00349{left:86.800000pt;}
.x1_c00349{left:101.600000pt;}
.x3_c00349{left:108.533333pt;}
.x2_c00349{left:119.066667pt;}
.x11_c00349{left:211.434896pt;}
.xc_c00349{left:286.533333pt;}
.x10_c00349{left:416.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_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_a47d32eb558f9bcfd4325af8.woff2')format("woff");}.ff1_c00350{font-family:ff1_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:ff2_c00350;src:url('chunks/assets/font_9f0184c65e43e5b8b7c0721f.woff2')format("woff");}.ff2_c00350{font-family:ff2_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:ff3_c00350;src:url('chunks/assets/font_92fb846c31b13e5c87a4fa3a.woff2')format("woff");}.ff3_c00350{font-family:ff3_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:ff4_c00350;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00350{font-family:ff4_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;}
.ls0_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:6.000000px;}
.ls1_c00350{letter-spacing:51.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:-67.629000px;}
.ws1_c00350{word-spacing:-16.629000px;}
.ws2_c00350{word-spacing:0.000000px;}
._12_c00350{margin-left:-16.629000px;}
._a_c00350{margin-left:-12.618000px;}
._13_c00350{margin-left:-10.281000px;}
._11_c00350{margin-left:-9.039000px;}
._d_c00350{margin-left:-8.004000px;}
._c_c00350{margin-left:-6.555000px;}
._10_c00350{margin-left:-5.313000px;}
._3_c00350{margin-left:-4.140000px;}
._4_c00350{margin-left:-3.105000px;}
._2_c00350{margin-left:-1.932000px;}
._1_c00350{width:1.104000px;}
._0_c00350{width:3.036000px;}
._5_c00350{width:4.278000px;}
._6_c00350{width:5.934000px;}
._b_c00350{width:7.698000px;}
._e_c00350{width:10.089000px;}
._8_c00350{width:11.109000px;}
._17_c00350{width:12.627000px;}
._7_c00350{width:14.352000px;}
._19_c00350{width:16.077000px;}
._9_c00350{width:17.871000px;}
._14_c00350{width:19.872000px;}
._f_c00350{width:20.907000px;}
._16_c00350{width:29.877000px;}
._18_c00350{width:32.577000px;}
._15_c00350{width:41.607000px;}
.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:69.000000px;}
.fs1_c00350{font-size:81.000000px;}
.y0_c00350{bottom:0.000000px;}
.y11_c00350{bottom:3.105000px;}
.y10_c00350{bottom:7.228371px;}
.yf_c00350{bottom:73.215000px;}
.ye_c00350{bottom:400.365000px;}
.yd_c00350{bottom:449.565000px;}
.yc_c00350{bottom:475.215000px;}
.yb_c00350{bottom:499.815000px;}
.ya_c00350{bottom:524.265000px;}
.y9_c00350{bottom:548.565000px;}
.y8_c00350{bottom:573.165000px;}
.y7_c00350{bottom:598.365000px;}
.y6_c00350{bottom:622.815000px;}
.y5_c00350{bottom:647.715000px;}
.y4_c00350{bottom:672.765000px;}
.y3_c00350{bottom:697.665000px;}
.y2_c00350{bottom:747.015000px;}
.y1_c00350{bottom:796.815000px;}
.h5_c00350{height:13.200074px;}
.h6_c00350{height:43.804688px;}
.h3_c00350{height:80.758301px;}
.h2_c00350{height:87.361816px;}
.h4_c00350{height:102.555176px;}
.h1_c00350{height:831.000000px;}
.h0_c00350{height:831.075000px;}
.w2_c00350{width:104.875500px;}
.w0_c00350{width:582.375000px;}
.w1_c00350{width:582.750000px;}
.x0_c00350{left:0.000000px;}
.x5_c00350{left:32.100000px;}
.x6_c00350{left:34.050000px;}
.x4_c00350{left:35.550000px;}
.x3_c00350{left:59.700000px;}
.x7_c00350{left:72.600000px;}
.x9_c00350{left:104.850000px;}
.x2_c00350{left:162.900000px;}
.x8_c00350{left:184.950000px;}
.x1_c00350{left:189.450000px;}
.xb_c00350{left:243.001740px;}
.xa_c00350{left:451.500000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:5.333333pt;}
.ls1_c00350{letter-spacing:45.333333pt;}
.ws0_c00350{word-spacing:-60.114667pt;}
.ws1_c00350{word-spacing:-14.781333pt;}
.ws2_c00350{word-spacing:0.000000pt;}
._12_c00350{margin-left:-14.781333pt;}
._a_c00350{margin-left:-11.216000pt;}
._13_c00350{margin-left:-9.138667pt;}
._11_c00350{margin-left:-8.034667pt;}
._d_c00350{margin-left:-7.114667pt;}
._c_c00350{margin-left:-5.826667pt;}
._10_c00350{margin-left:-4.722667pt;}
._3_c00350{margin-left:-3.680000pt;}
._4_c00350{margin-left:-2.760000pt;}
._2_c00350{margin-left:-1.717333pt;}
._1_c00350{width:0.981333pt;}
._0_c00350{width:2.698667pt;}
._5_c00350{width:3.802667pt;}
._6_c00350{width:5.274667pt;}
._b_c00350{width:6.842667pt;}
._e_c00350{width:8.968000pt;}
._8_c00350{width:9.874667pt;}
._17_c00350{width:11.224000pt;}
._7_c00350{width:12.757333pt;}
._19_c00350{width:14.290667pt;}
._9_c00350{width:15.885333pt;}
._14_c00350{width:17.664000pt;}
._f_c00350{width:18.584000pt;}
._16_c00350{width:26.557333pt;}
._18_c00350{width:28.957333pt;}
._15_c00350{width:36.984000pt;}
.fs2_c00350{font-size:42.666667pt;}
.fs0_c00350{font-size:61.333333pt;}
.fs1_c00350{font-size:72.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y11_c00350{bottom:2.760000pt;}
.y10_c00350{bottom:6.425219pt;}
.yf_c00350{bottom:65.080000pt;}
.ye_c00350{bottom:355.880000pt;}
.yd_c00350{bottom:399.613333pt;}
.yc_c00350{bottom:422.413333pt;}
.yb_c00350{bottom:444.280000pt;}
.ya_c00350{bottom:466.013333pt;}
.y9_c00350{bottom:487.613333pt;}
.y8_c00350{bottom:509.480000pt;}
.y7_c00350{bottom:531.880000pt;}
.y6_c00350{bottom:553.613333pt;}
.y5_c00350{bottom:575.746667pt;}
.y4_c00350{bottom:598.013333pt;}
.y3_c00350{bottom:620.146667pt;}
.y2_c00350{bottom:664.013333pt;}
.y1_c00350{bottom:708.280000pt;}
.h5_c00350{height:11.733399pt;}
.h6_c00350{height:38.937500pt;}
.h3_c00350{height:71.785156pt;}
.h2_c00350{height:77.654948pt;}
.h4_c00350{height:91.160156pt;}
.h1_c00350{height:738.666667pt;}
.h0_c00350{height:738.733333pt;}
.w2_c00350{width:93.222667pt;}
.w0_c00350{width:517.666667pt;}
.w1_c00350{width:518.000000pt;}
.x0_c00350{left:0.000000pt;}
.x5_c00350{left:28.533333pt;}
.x6_c00350{left:30.266667pt;}
.x4_c00350{left:31.600000pt;}
.x3_c00350{left:53.066667pt;}
.x7_c00350{left:64.533333pt;}
.x9_c00350{left:93.200000pt;}
.x2_c00350{left:144.800000pt;}
.x8_c00350{left:164.400000pt;}
.x1_c00350{left:168.400000pt;}
.xb_c00350{left:216.001546pt;}
.xa_c00350{left:401.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_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_750fab0654b10dbc9efd69c7.woff2')format("woff");}.ff1_c00351{font-family:ff1_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:ff2_c00351;src:url('chunks/assets/font_048e7cc3c23c31f812b52049.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_548638a2f41f7566760d90f0.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_da3653df0ebd7a0d1972ff6c.woff2')format("woff");}.ff4_c00351{font-family:ff4_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:ff5_c00351;src:url('chunks/assets/font_fb8b54971a6360304613c1d1.woff2')format("woff");}.ff5_c00351{font-family:ff5_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:ff6_c00351;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:6.000000px;}
.ls5_c00351{letter-spacing:9.000000px;}
.ls3_c00351{letter-spacing:30.000000px;}
.ls2_c00351{letter-spacing:33.000000px;}
.ls0_c00351{letter-spacing:48.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-128.523000px;}
.ws1_c00351{word-spacing:-52.521000px;}
.ws2_c00351{word-spacing:-41.250000px;}
.ws3_c00351{word-spacing:0.000000px;}
._1d_c00351{margin-left:-41.676000px;}
._1e_c00351{margin-left:-29.256000px;}
._15_c00351{margin-left:-16.623000px;}
._20_c00351{margin-left:-15.588000px;}
._13_c00351{margin-left:-13.938000px;}
._9_c00351{margin-left:-11.745000px;}
._a_c00351{margin-left:-10.287000px;}
._1c_c00351{margin-left:-9.171000px;}
._17_c00351{margin-left:-7.734000px;}
._b_c00351{margin-left:-6.642000px;}
._21_c00351{margin-left:-5.451000px;}
._e_c00351{margin-left:-4.347000px;}
._c_c00351{margin-left:-3.105000px;}
._11_c00351{margin-left:-2.070000px;}
._0_c00351{margin-left:-1.035000px;}
._d_c00351{width:1.380000px;}
._10_c00351{width:2.622000px;}
._12_c00351{width:3.864000px;}
._14_c00351{width:5.520000px;}
._8_c00351{width:7.107000px;}
._5_c00351{width:8.349000px;}
._4_c00351{width:9.936000px;}
._2_c00351{width:12.282000px;}
._1_c00351{width:14.007000px;}
._f_c00351{width:15.732000px;}
._7_c00351{width:17.043000px;}
._1a_c00351{width:18.975000px;}
._18_c00351{width:22.080000px;}
._23_c00351{width:25.116000px;}
._3_c00351{width:30.429000px;}
._6_c00351{width:32.568000px;}
._1b_c00351{width:36.156000px;}
._16_c00351{width:38.778000px;}
._19_c00351{width:42.504000px;}
._1f_c00351{width:173.280000px;}
._22_c00351{width:185.880000px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(128,128,128);}
.fc0_c00351{color:rgb(0,0,0);}
.fs3_c00351{font-size:45.000000px;}
.fs5_c00351{font-size:48.000000px;}
.fs1_c00351{font-size:69.000000px;}
.fs4_c00351{font-size:75.000000px;}
.fs2_c00351{font-size:81.000000px;}
.fs0_c00351{font-size:207.000000px;}
.y0_c00351{bottom:0.000000px;}
.y17_c00351{bottom:3.105000px;}
.y16_c00351{bottom:7.228371px;}
.y15_c00351{bottom:79.365000px;}
.y14_c00351{bottom:104.415000px;}
.y13_c00351{bottom:129.015000px;}
.y12_c00351{bottom:153.015000px;}
.y11_c00351{bottom:180.015000px;}
.y10_c00351{bottom:204.915000px;}
.yf_c00351{bottom:231.315000px;}
.ye_c00351{bottom:255.165000px;}
.yd_c00351{bottom:279.765000px;}
.yc_c00351{bottom:303.765000px;}
.yb_c00351{bottom:329.415000px;}
.ya_c00351{bottom:352.815000px;}
.y9_c00351{bottom:378.765000px;}
.y8_c00351{bottom:402.315000px;}
.y7_c00351{bottom:427.365000px;}
.y6_c00351{bottom:451.965000px;}
.y5_c00351{bottom:477.015000px;}
.y4_c00351{bottom:517.065000px;}
.y3_c00351{bottom:551.265000px;}
.y2_c00351{bottom:577.515000px;}
.y1_c00351{bottom:612.315000px;}
.h7_c00351{height:13.200074px;}
.h8_c00351{height:43.804688px;}
.h5_c00351{height:44.143066px;}
.h6_c00351{height:80.758301px;}
.h3_c00351{height:87.361816px;}
.h4_c00351{height:102.555176px;}
.h2_c00351{height:216.936000px;}
.h0_c00351{height:812.175000px;}
.h1_c00351{height:812.250000px;}
.w2_c00351{width:104.875500px;}
.w1_c00351{width:561.000000px;}
.w0_c00351{width:561.075000px;}
.x0_c00351{left:0.000000px;}
.x9_c00351{left:18.900000px;}
.x8_c00351{left:82.350000px;}
.x2_c00351{left:83.400000px;}
.xa_c00351{left:94.200000px;}
.xb_c00351{left:107.700000px;}
.x1_c00351{left:152.850000px;}
.x3_c00351{left:210.300000px;}
.xc_c00351{left:232.351730px;}
.x4_c00351{left:241.350000px;}
.x6_c00351{left:250.650000px;}
.x5_c00351{left:252.150000px;}
.x7_c00351{left:262.200000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls4_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:5.333333pt;}
.ls5_c00351{letter-spacing:8.000000pt;}
.ls3_c00351{letter-spacing:26.666667pt;}
.ls2_c00351{letter-spacing:29.333333pt;}
.ls0_c00351{letter-spacing:42.666667pt;}
.ws0_c00351{word-spacing:-114.242667pt;}
.ws1_c00351{word-spacing:-46.685333pt;}
.ws2_c00351{word-spacing:-36.666667pt;}
.ws3_c00351{word-spacing:0.000000pt;}
._1d_c00351{margin-left:-37.045333pt;}
._1e_c00351{margin-left:-26.005333pt;}
._15_c00351{margin-left:-14.776000pt;}
._20_c00351{margin-left:-13.856000pt;}
._13_c00351{margin-left:-12.389333pt;}
._9_c00351{margin-left:-10.440000pt;}
._a_c00351{margin-left:-9.144000pt;}
._1c_c00351{margin-left:-8.152000pt;}
._17_c00351{margin-left:-6.874667pt;}
._b_c00351{margin-left:-5.904000pt;}
._21_c00351{margin-left:-4.845333pt;}
._e_c00351{margin-left:-3.864000pt;}
._c_c00351{margin-left:-2.760000pt;}
._11_c00351{margin-left:-1.840000pt;}
._0_c00351{margin-left:-0.920000pt;}
._d_c00351{width:1.226667pt;}
._10_c00351{width:2.330667pt;}
._12_c00351{width:3.434667pt;}
._14_c00351{width:4.906667pt;}
._8_c00351{width:6.317333pt;}
._5_c00351{width:7.421333pt;}
._4_c00351{width:8.832000pt;}
._2_c00351{width:10.917333pt;}
._1_c00351{width:12.450667pt;}
._f_c00351{width:13.984000pt;}
._7_c00351{width:15.149333pt;}
._1a_c00351{width:16.866667pt;}
._18_c00351{width:19.626667pt;}
._23_c00351{width:22.325333pt;}
._3_c00351{width:27.048000pt;}
._6_c00351{width:28.949333pt;}
._1b_c00351{width:32.138667pt;}
._16_c00351{width:34.469333pt;}
._19_c00351{width:37.781333pt;}
._1f_c00351{width:154.026667pt;}
._22_c00351{width:165.226667pt;}
.fs3_c00351{font-size:40.000000pt;}
.fs5_c00351{font-size:42.666667pt;}
.fs1_c00351{font-size:61.333333pt;}
.fs4_c00351{font-size:66.666667pt;}
.fs2_c00351{font-size:72.000000pt;}
.fs0_c00351{font-size:184.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y17_c00351{bottom:2.760000pt;}
.y16_c00351{bottom:6.425219pt;}
.y15_c00351{bottom:70.546667pt;}
.y14_c00351{bottom:92.813333pt;}
.y13_c00351{bottom:114.680000pt;}
.y12_c00351{bottom:136.013333pt;}
.y11_c00351{bottom:160.013333pt;}
.y10_c00351{bottom:182.146667pt;}
.yf_c00351{bottom:205.613333pt;}
.ye_c00351{bottom:226.813333pt;}
.yd_c00351{bottom:248.680000pt;}
.yc_c00351{bottom:270.013333pt;}
.yb_c00351{bottom:292.813333pt;}
.ya_c00351{bottom:313.613333pt;}
.y9_c00351{bottom:336.680000pt;}
.y8_c00351{bottom:357.613333pt;}
.y7_c00351{bottom:379.880000pt;}
.y6_c00351{bottom:401.746667pt;}
.y5_c00351{bottom:424.013333pt;}
.y4_c00351{bottom:459.613333pt;}
.y3_c00351{bottom:490.013333pt;}
.y2_c00351{bottom:513.346667pt;}
.y1_c00351{bottom:544.280000pt;}
.h7_c00351{height:11.733399pt;}
.h8_c00351{height:38.937500pt;}
.h5_c00351{height:39.238281pt;}
.h6_c00351{height:71.785156pt;}
.h3_c00351{height:77.654948pt;}
.h4_c00351{height:91.160156pt;}
.h2_c00351{height:192.832000pt;}
.h0_c00351{height:721.933333pt;}
.h1_c00351{height:722.000000pt;}
.w2_c00351{width:93.222667pt;}
.w1_c00351{width:498.666667pt;}
.w0_c00351{width:498.733333pt;}
.x0_c00351{left:0.000000pt;}
.x9_c00351{left:16.800000pt;}
.x8_c00351{left:73.200000pt;}
.x2_c00351{left:74.133333pt;}
.xa_c00351{left:83.733333pt;}
.xb_c00351{left:95.733333pt;}
.x1_c00351{left:135.866667pt;}
.x3_c00351{left:186.933333pt;}
.xc_c00351{left:206.534871pt;}
.x4_c00351{left:214.533333pt;}
.x6_c00351{left:222.800000pt;}
.x5_c00351{left:224.133333pt;}
.x7_c00351{left:233.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_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_9db7f9472bb03e43eba42bcb.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_2b6a56fd8abde670983ded3e.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_7f3e62ddafc70b242fd4102d.woff2')format("woff");}.ff3_c00352{font-family:ff3_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:ff4_c00352;src:url('chunks/assets/font_c42ae8f88d2bf2e838628d92.woff2')format("woff");}.ff4_c00352{font-family:ff4_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:ff5_c00352;src:url('chunks/assets/font_9db486bbe9cb4c23f83ad90d.woff2')format("woff");}.ff5_c00352{font-family:ff5_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:ff6_c00352;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00352;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00352{font-family:ff7_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:0.000000px;}
.ls1_c00352{letter-spacing:4.800000px;}
.ls3_c00352{letter-spacing:6.000000px;}
.ls0_c00352{letter-spacing:16.029600px;}
.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;}
}
.ws1_c00352{word-spacing:-56.235000px;}
.ws2_c00352{word-spacing:-22.629000px;}
.ws0_c00352{word-spacing:-16.629000px;}
.ws3_c00352{word-spacing:0.000000px;}
._17_c00352{margin-left:-21.480000px;}
._22_c00352{margin-left:-20.349000px;}
._1a_c00352{margin-left:-18.450000px;}
._19_c00352{margin-left:-17.043000px;}
._1c_c00352{margin-left:-15.255000px;}
._10_c00352{margin-left:-14.061000px;}
._18_c00352{margin-left:-12.696000px;}
._16_c00352{margin-left:-11.331000px;}
._1f_c00352{margin-left:-9.999000px;}
._f_c00352{margin-left:-8.763000px;}
._5_c00352{margin-left:-7.521000px;}
._e_c00352{margin-left:-6.279000px;}
._7_c00352{margin-left:-5.175000px;}
._2_c00352{margin-left:-3.726000px;}
._3_c00352{margin-left:-2.553000px;}
._6_c00352{margin-left:-1.035000px;}
._0_c00352{width:1.518000px;}
._1_c00352{width:2.760000px;}
._a_c00352{width:4.623000px;}
._d_c00352{width:6.417000px;}
._c_c00352{width:7.782000px;}
._21_c00352{width:9.171000px;}
._9_c00352{width:10.488000px;}
._1e_c00352{width:12.207000px;}
._b_c00352{width:13.248000px;}
._12_c00352{width:15.111000px;}
._8_c00352{width:17.388000px;}
._13_c00352{width:18.768000px;}
._15_c00352{width:21.114000px;}
._14_c00352{width:23.805000px;}
._11_c00352{width:25.944000px;}
._23_c00352{width:29.871000px;}
._1d_c00352{width:31.137000px;}
._20_c00352{width:35.832000px;}
._27_c00352{width:45.201000px;}
._1b_c00352{width:46.749000px;}
._26_c00352{width:47.955000px;}
._25_c00352{width:93.093000px;}
._24_c00352{width:131.376000px;}
._4_c00352{width:477.798000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(128,128,128);}
.fc0_c00352{color:rgb(0,0,0);}
.fs4_c00352{font-size:48.000000px;}
.fs1_c00352{font-size:55.200000px;}
.fs3_c00352{font-size:66.000000px;}
.fs0_c00352{font-size:69.000000px;}
.fs2_c00352{font-size:75.000000px;}
.y0_c00352{bottom:0.000000px;}
.y20_c00352{bottom:3.105000px;}
.y1f_c00352{bottom:7.228363px;}
.y1e_c00352{bottom:75.900000px;}
.y1d_c00352{bottom:99.300000px;}
.y1c_c00352{bottom:124.650000px;}
.y1b_c00352{bottom:149.250000px;}
.y1a_c00352{bottom:174.150000px;}
.y19_c00352{bottom:199.500000px;}
.y18_c00352{bottom:224.550000px;}
.y17_c00352{bottom:249.450000px;}
.y16_c00352{bottom:274.350000px;}
.y15_c00352{bottom:299.100000px;}
.y14_c00352{bottom:324.000000px;}
.y13_c00352{bottom:348.600000px;}
.y12_c00352{bottom:373.350000px;}
.y11_c00352{bottom:397.950000px;}
.y10_c00352{bottom:423.000000px;}
.yf_c00352{bottom:448.200000px;}
.ye_c00352{bottom:472.800000px;}
.yd_c00352{bottom:497.550000px;}
.yc_c00352{bottom:522.450000px;}
.yb_c00352{bottom:546.150000px;}
.ya_c00352{bottom:571.050000px;}
.y9_c00352{bottom:596.100000px;}
.y8_c00352{bottom:620.700000px;}
.y7_c00352{bottom:645.600000px;}
.y6_c00352{bottom:670.350000px;}
.y5_c00352{bottom:694.950000px;}
.y4_c00352{bottom:720.300000px;}
.y3_c00352{bottom:744.600000px;}
.y2_c00352{bottom:769.800000px;}
.y1_c00352{bottom:793.050000px;}
.h5_c00352{height:13.200074px;}
.h6_c00352{height:43.804688px;}
.h2_c00352{height:80.758301px;}
.h1_c00352{height:87.361816px;}
.h3_c00352{height:87.780762px;}
.h4_c00352{height:94.958496px;}
.h0_c00352{height:823.500000px;}
.w1_c00352{width:104.875500px;}
.w0_c00352{width:576.750000px;}
.x0_c00352{left:0.000000px;}
.x4_c00352{left:34.500000px;}
.x2_c00352{left:37.350000px;}
.x5_c00352{left:39.150000px;}
.x7_c00352{left:40.500000px;}
.x9_c00352{left:41.550000px;}
.xa_c00352{left:43.500000px;}
.x3_c00352{left:63.150000px;}
.x6_c00352{left:64.350000px;}
.x8_c00352{left:65.400000px;}
.xb_c00352{left:69.450000px;}
.x1_c00352{left:196.950000px;}
.xd_c00352{left:240.189240px;}
.xc_c00352{left:454.650000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls1_c00352{letter-spacing:4.266667pt;}
.ls3_c00352{letter-spacing:5.333333pt;}
.ls0_c00352{letter-spacing:14.248533pt;}
.ws1_c00352{word-spacing:-49.986667pt;}
.ws2_c00352{word-spacing:-20.114667pt;}
.ws0_c00352{word-spacing:-14.781333pt;}
.ws3_c00352{word-spacing:0.000000pt;}
._17_c00352{margin-left:-19.093333pt;}
._22_c00352{margin-left:-18.088000pt;}
._1a_c00352{margin-left:-16.400000pt;}
._19_c00352{margin-left:-15.149333pt;}
._1c_c00352{margin-left:-13.560000pt;}
._10_c00352{margin-left:-12.498667pt;}
._18_c00352{margin-left:-11.285333pt;}
._16_c00352{margin-left:-10.072000pt;}
._1f_c00352{margin-left:-8.888000pt;}
._f_c00352{margin-left:-7.789333pt;}
._5_c00352{margin-left:-6.685333pt;}
._e_c00352{margin-left:-5.581333pt;}
._7_c00352{margin-left:-4.600000pt;}
._2_c00352{margin-left:-3.312000pt;}
._3_c00352{margin-left:-2.269333pt;}
._6_c00352{margin-left:-0.920000pt;}
._0_c00352{width:1.349333pt;}
._1_c00352{width:2.453333pt;}
._a_c00352{width:4.109333pt;}
._d_c00352{width:5.704000pt;}
._c_c00352{width:6.917333pt;}
._21_c00352{width:8.152000pt;}
._9_c00352{width:9.322667pt;}
._1e_c00352{width:10.850667pt;}
._b_c00352{width:11.776000pt;}
._12_c00352{width:13.432000pt;}
._8_c00352{width:15.456000pt;}
._13_c00352{width:16.682667pt;}
._15_c00352{width:18.768000pt;}
._14_c00352{width:21.160000pt;}
._11_c00352{width:23.061333pt;}
._23_c00352{width:26.552000pt;}
._1d_c00352{width:27.677333pt;}
._20_c00352{width:31.850667pt;}
._27_c00352{width:40.178667pt;}
._1b_c00352{width:41.554667pt;}
._26_c00352{width:42.626667pt;}
._25_c00352{width:82.749333pt;}
._24_c00352{width:116.778667pt;}
._4_c00352{width:424.709333pt;}
.fs4_c00352{font-size:42.666667pt;}
.fs1_c00352{font-size:49.066667pt;}
.fs3_c00352{font-size:58.666667pt;}
.fs0_c00352{font-size:61.333333pt;}
.fs2_c00352{font-size:66.666667pt;}
.y0_c00352{bottom:0.000000pt;}
.y20_c00352{bottom:2.760000pt;}
.y1f_c00352{bottom:6.425212pt;}
.y1e_c00352{bottom:67.466667pt;}
.y1d_c00352{bottom:88.266667pt;}
.y1c_c00352{bottom:110.800000pt;}
.y1b_c00352{bottom:132.666667pt;}
.y1a_c00352{bottom:154.800000pt;}
.y19_c00352{bottom:177.333333pt;}
.y18_c00352{bottom:199.600000pt;}
.y17_c00352{bottom:221.733333pt;}
.y16_c00352{bottom:243.866667pt;}
.y15_c00352{bottom:265.866667pt;}
.y14_c00352{bottom:288.000000pt;}
.y13_c00352{bottom:309.866667pt;}
.y12_c00352{bottom:331.866667pt;}
.y11_c00352{bottom:353.733333pt;}
.y10_c00352{bottom:376.000000pt;}
.yf_c00352{bottom:398.400000pt;}
.ye_c00352{bottom:420.266667pt;}
.yd_c00352{bottom:442.266667pt;}
.yc_c00352{bottom:464.400000pt;}
.yb_c00352{bottom:485.466667pt;}
.ya_c00352{bottom:507.600000pt;}
.y9_c00352{bottom:529.866667pt;}
.y8_c00352{bottom:551.733333pt;}
.y7_c00352{bottom:573.866667pt;}
.y6_c00352{bottom:595.866667pt;}
.y5_c00352{bottom:617.733333pt;}
.y4_c00352{bottom:640.266667pt;}
.y3_c00352{bottom:661.866667pt;}
.y2_c00352{bottom:684.266667pt;}
.y1_c00352{bottom:704.933333pt;}
.h5_c00352{height:11.733399pt;}
.h6_c00352{height:38.937500pt;}
.h2_c00352{height:71.785156pt;}
.h1_c00352{height:77.654948pt;}
.h3_c00352{height:78.027344pt;}
.h4_c00352{height:84.407552pt;}
.h0_c00352{height:732.000000pt;}
.w1_c00352{width:93.222667pt;}
.w0_c00352{width:512.666667pt;}
.x0_c00352{left:0.000000pt;}
.x4_c00352{left:30.666667pt;}
.x2_c00352{left:33.200000pt;}
.x5_c00352{left:34.800000pt;}
.x7_c00352{left:36.000000pt;}
.x9_c00352{left:36.933333pt;}
.xa_c00352{left:38.666667pt;}
.x3_c00352{left:56.133333pt;}
.x6_c00352{left:57.200000pt;}
.x8_c00352{left:58.133333pt;}
.xb_c00352{left:61.733333pt;}
.x1_c00352{left:175.066667pt;}
.xd_c00352{left:213.501546pt;}
.xc_c00352{left:404.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_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_d916f1f14cb7e00cfc9ec698.woff2')format("woff");}.ff1_c00353{font-family:ff1_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:ff2_c00353;src:url('chunks/assets/font_7e85f8bfc1fa071a674ceb1c.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.568848;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff3_c00353{font-family:ff3_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:ff4_c00353;src:url('chunks/assets/font_3f39768ef69bbbec3dc4518c.woff2')format("woff");}.ff4_c00353{font-family:ff4_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:ff5_c00353;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00353{font-family:ff5_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;}
.ls5_c00353{letter-spacing:-6.000000px;}
.ls6_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:2.400000px;}
.ls3_c00353{letter-spacing:2.571000px;}
.ls7_c00353{letter-spacing:3.000000px;}
.ls4_c00353{letter-spacing:6.000000px;}
.ls2_c00353{letter-spacing:7.173000px;}
.ls1_c00353{letter-spacing:17.400000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00353{word-spacing:-47.022000px;}
.ws0_c00353{word-spacing:-27.000000px;}
.ws3_c00353{word-spacing:-22.629000px;}
.ws4_c00353{word-spacing:-21.042000px;}
.ws1_c00353{word-spacing:-16.629000px;}
.ws5_c00353{word-spacing:0.000000px;}
._3_c00353{margin-left:-24.495000px;}
._1f_c00353{margin-left:-23.133000px;}
._26_c00353{margin-left:-21.960000px;}
._21_c00353{margin-left:-20.286000px;}
._11_c00353{margin-left:-16.422000px;}
._22_c00353{margin-left:-15.393000px;}
._13_c00353{margin-left:-14.145000px;}
._1b_c00353{margin-left:-13.041000px;}
._27_c00353{margin-left:-11.979000px;}
._2_c00353{margin-left:-10.629000px;}
._12_c00353{margin-left:-9.108000px;}
._b_c00353{margin-left:-7.968000px;}
._0_c00353{margin-left:-6.429000px;}
._18_c00353{margin-left:-5.247000px;}
._a_c00353{margin-left:-3.864000px;}
._7_c00353{margin-left:-2.760000px;}
._5_c00353{margin-left:-1.587000px;}
._8_c00353{width:1.242000px;}
._6_c00353{width:2.346000px;}
._9_c00353{width:4.002000px;}
._1_c00353{width:5.400000px;}
._17_c00353{width:6.492000px;}
._e_c00353{width:8.349000px;}
._1d_c00353{width:9.486000px;}
._1c_c00353{width:11.427000px;}
._c_c00353{width:12.660000px;}
._d_c00353{width:14.766000px;}
._f_c00353{width:16.251000px;}
._10_c00353{width:17.595000px;}
._15_c00353{width:19.467000px;}
._16_c00353{width:21.942000px;}
._23_c00353{width:26.331000px;}
._20_c00353{width:41.676000px;}
._1e_c00353{width:93.081000px;}
._19_c00353{width:110.127000px;}
._24_c00353{width:177.399000px;}
._14_c00353{width:188.190000px;}
._25_c00353{width:192.327000px;}
._1a_c00353{width:216.045000px;}
._4_c00353{width:373.698000px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(128,128,128);}
.fc0_c00353{color:rgb(0,0,0);}
.fs3_c00353{font-size:48.000000px;}
.fs2_c00353{font-size:63.000000px;}
.fs0_c00353{font-size:66.000000px;}
.fs1_c00353{font-size:69.000000px;}
.y0_c00353{bottom:0.000000px;}
.y20_c00353{bottom:3.105000px;}
.y1f_c00353{bottom:7.228363px;}
.y1e_c00353{bottom:57.600000px;}
.y1d_c00353{bottom:82.650000px;}
.y1c_c00353{bottom:108.000000px;}
.y1b_c00353{bottom:133.350000px;}
.y1a_c00353{bottom:158.250000px;}
.y19_c00353{bottom:183.600000px;}
.y18_c00353{bottom:208.950000px;}
.y17_c00353{bottom:233.850000px;}
.y16_c00353{bottom:258.900000px;}
.y15_c00353{bottom:283.500000px;}
.y14_c00353{bottom:308.100000px;}
.y13_c00353{bottom:333.150000px;}
.y12_c00353{bottom:357.450000px;}
.y11_c00353{bottom:382.800000px;}
.y10_c00353{bottom:408.000000px;}
.yf_c00353{bottom:433.050000px;}
.ye_c00353{bottom:457.650000px;}
.yd_c00353{bottom:482.700000px;}
.yc_c00353{bottom:507.600000px;}
.yb_c00353{bottom:532.350000px;}
.ya_c00353{bottom:557.550000px;}
.y9_c00353{bottom:582.300000px;}
.y8_c00353{bottom:606.900000px;}
.y7_c00353{bottom:631.500000px;}
.y6_c00353{bottom:657.000000px;}
.y5_c00353{bottom:681.000000px;}
.y4_c00353{bottom:706.500000px;}
.y3_c00353{bottom:730.650000px;}
.y2_c00353{bottom:756.300000px;}
.y1_c00353{bottom:779.550000px;}
.h5_c00353{height:13.200074px;}
.h6_c00353{height:43.804688px;}
.h4_c00353{height:63.492188px;}
.h3_c00353{height:80.758301px;}
.h2_c00353{height:87.361816px;}
.h1_c00353{height:827.250000px;}
.h0_c00353{height:827.550000px;}
.w2_c00353{width:104.875500px;}
.w0_c00353{width:572.100000px;}
.w1_c00353{width:572.250000px;}
.x0_c00353{left:0.000000px;}
.x7_c00353{left:24.900000px;}
.x3_c00353{left:31.050000px;}
.x9_c00353{left:83.700000px;}
.xb_c00353{left:86.400000px;}
.xa_c00353{left:88.050000px;}
.x8_c00353{left:89.400000px;}
.x6_c00353{left:92.250000px;}
.x4_c00353{left:93.450000px;}
.x2_c00353{left:94.500000px;}
.x1_c00353{left:108.900000px;}
.x5_c00353{left:117.000000px;}
.xd_c00353{left:237.864258px;}
.xc_c00353{left:508.050000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls5_c00353{letter-spacing:-5.333333pt;}
.ls6_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:2.133333pt;}
.ls3_c00353{letter-spacing:2.285333pt;}
.ls7_c00353{letter-spacing:2.666667pt;}
.ls4_c00353{letter-spacing:5.333333pt;}
.ls2_c00353{letter-spacing:6.376000pt;}
.ls1_c00353{letter-spacing:15.466667pt;}
.ws2_c00353{word-spacing:-41.797333pt;}
.ws0_c00353{word-spacing:-24.000000pt;}
.ws3_c00353{word-spacing:-20.114667pt;}
.ws4_c00353{word-spacing:-18.704000pt;}
.ws1_c00353{word-spacing:-14.781333pt;}
.ws5_c00353{word-spacing:0.000000pt;}
._3_c00353{margin-left:-21.773333pt;}
._1f_c00353{margin-left:-20.562667pt;}
._26_c00353{margin-left:-19.520000pt;}
._21_c00353{margin-left:-18.032000pt;}
._11_c00353{margin-left:-14.597333pt;}
._22_c00353{margin-left:-13.682667pt;}
._13_c00353{margin-left:-12.573333pt;}
._1b_c00353{margin-left:-11.592000pt;}
._27_c00353{margin-left:-10.648000pt;}
._2_c00353{margin-left:-9.448000pt;}
._12_c00353{margin-left:-8.096000pt;}
._b_c00353{margin-left:-7.082667pt;}
._0_c00353{margin-left:-5.714667pt;}
._18_c00353{margin-left:-4.664000pt;}
._a_c00353{margin-left:-3.434667pt;}
._7_c00353{margin-left:-2.453333pt;}
._5_c00353{margin-left:-1.410667pt;}
._8_c00353{width:1.104000pt;}
._6_c00353{width:2.085333pt;}
._9_c00353{width:3.557333pt;}
._1_c00353{width:4.800000pt;}
._17_c00353{width:5.770667pt;}
._e_c00353{width:7.421333pt;}
._1d_c00353{width:8.432000pt;}
._1c_c00353{width:10.157333pt;}
._c_c00353{width:11.253333pt;}
._d_c00353{width:13.125333pt;}
._f_c00353{width:14.445333pt;}
._10_c00353{width:15.640000pt;}
._15_c00353{width:17.304000pt;}
._16_c00353{width:19.504000pt;}
._23_c00353{width:23.405333pt;}
._20_c00353{width:37.045333pt;}
._1e_c00353{width:82.738667pt;}
._19_c00353{width:97.890667pt;}
._24_c00353{width:157.688000pt;}
._14_c00353{width:167.280000pt;}
._25_c00353{width:170.957333pt;}
._1a_c00353{width:192.040000pt;}
._4_c00353{width:332.176000pt;}
.fs3_c00353{font-size:42.666667pt;}
.fs2_c00353{font-size:56.000000pt;}
.fs0_c00353{font-size:58.666667pt;}
.fs1_c00353{font-size:61.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y20_c00353{bottom:2.760000pt;}
.y1f_c00353{bottom:6.425212pt;}
.y1e_c00353{bottom:51.200000pt;}
.y1d_c00353{bottom:73.466667pt;}
.y1c_c00353{bottom:96.000000pt;}
.y1b_c00353{bottom:118.533333pt;}
.y1a_c00353{bottom:140.666667pt;}
.y19_c00353{bottom:163.200000pt;}
.y18_c00353{bottom:185.733333pt;}
.y17_c00353{bottom:207.866667pt;}
.y16_c00353{bottom:230.133333pt;}
.y15_c00353{bottom:252.000000pt;}
.y14_c00353{bottom:273.866667pt;}
.y13_c00353{bottom:296.133333pt;}
.y12_c00353{bottom:317.733333pt;}
.y11_c00353{bottom:340.266667pt;}
.y10_c00353{bottom:362.666667pt;}
.yf_c00353{bottom:384.933333pt;}
.ye_c00353{bottom:406.800000pt;}
.yd_c00353{bottom:429.066667pt;}
.yc_c00353{bottom:451.200000pt;}
.yb_c00353{bottom:473.200000pt;}
.ya_c00353{bottom:495.600000pt;}
.y9_c00353{bottom:517.600000pt;}
.y8_c00353{bottom:539.466667pt;}
.y7_c00353{bottom:561.333333pt;}
.y6_c00353{bottom:584.000000pt;}
.y5_c00353{bottom:605.333333pt;}
.y4_c00353{bottom:628.000000pt;}
.y3_c00353{bottom:649.466667pt;}
.y2_c00353{bottom:672.266667pt;}
.y1_c00353{bottom:692.933333pt;}
.h5_c00353{height:11.733399pt;}
.h6_c00353{height:38.937500pt;}
.h4_c00353{height:56.437500pt;}
.h3_c00353{height:71.785156pt;}
.h2_c00353{height:77.654948pt;}
.h1_c00353{height:735.333333pt;}
.h0_c00353{height:735.600000pt;}
.w2_c00353{width:93.222667pt;}
.w0_c00353{width:508.533333pt;}
.w1_c00353{width:508.666667pt;}
.x0_c00353{left:0.000000pt;}
.x7_c00353{left:22.133333pt;}
.x3_c00353{left:27.600000pt;}
.x9_c00353{left:74.400000pt;}
.xb_c00353{left:76.800000pt;}
.xa_c00353{left:78.266667pt;}
.x8_c00353{left:79.466667pt;}
.x6_c00353{left:82.000000pt;}
.x4_c00353{left:83.066667pt;}
.x2_c00353{left:84.000000pt;}
.x1_c00353{left:96.800000pt;}
.x5_c00353{left:104.000000pt;}
.xd_c00353{left:211.434896pt;}
.xc_c00353{left:451.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_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_bb8b7ce9957f3949afd9d96b.woff2')format("woff");}.ff1_c00354{font-family:ff1_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:ff2_c00354;src:url('chunks/assets/font_e8c745c7cfb482d90ae99565.woff2')format("woff");}.ff2_c00354{font-family:ff2_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:ff3_c00354;src:url('chunks/assets/font_3e5546aac17efca4c3ba5567.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_bb8fc8f6fdaa5d934724176f.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00354{font-family:ff5_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;}
.ls2_c00354{letter-spacing:0.000000px;}
.ls3_c00354{letter-spacing:3.000000px;}
.ls1_c00354{letter-spacing:6.000000px;}
.ls0_c00354{letter-spacing:501.771000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-47.022000px;}
.ws1_c00354{word-spacing:-19.050000px;}
.ws2_c00354{word-spacing:-16.629000px;}
.ws3_c00354{word-spacing:0.000000px;}
._18_c00354{margin-left:-19.575000px;}
._1e_c00354{margin-left:-18.078000px;}
._10_c00354{margin-left:-16.698000px;}
._16_c00354{margin-left:-14.628000px;}
._15_c00354{margin-left:-13.179000px;}
._f_c00354{margin-left:-12.075000px;}
._14_c00354{margin-left:-10.764000px;}
._3_c00354{margin-left:-8.211000px;}
._5_c00354{margin-left:-6.693000px;}
._8_c00354{margin-left:-4.830000px;}
._7_c00354{margin-left:-3.450000px;}
._1_c00354{margin-left:-1.725000px;}
._0_c00354{width:1.794000px;}
._6_c00354{width:2.898000px;}
._d_c00354{width:4.416000px;}
._1d_c00354{width:5.658000px;}
._11_c00354{width:6.762000px;}
._17_c00354{width:8.211000px;}
._12_c00354{width:9.384000px;}
._13_c00354{width:10.443000px;}
._2_c00354{width:11.886000px;}
._e_c00354{width:13.044000px;}
._1c_c00354{width:14.490000px;}
._9_c00354{width:16.284000px;}
._a_c00354{width:18.009000px;}
._c_c00354{width:19.320000px;}
._b_c00354{width:21.114000px;}
._19_c00354{width:33.450000px;}
._1a_c00354{width:80.454000px;}
._4_c00354{width:85.353000px;}
._1b_c00354{width:92.385000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(128,128,128);}
.fc0_c00354{color:rgb(0,0,0);}
.fs3_c00354{font-size:48.000000px;}
.fs1_c00354{font-size:66.000000px;}
.fs0_c00354{font-size:69.000000px;}
.fs2_c00354{font-size:75.000000px;}
.y0_c00354{bottom:0.000000px;}
.y1f_c00354{bottom:3.105000px;}
.y1e_c00354{bottom:7.228371px;}
.y1d_c00354{bottom:103.665000px;}
.y1c_c00354{bottom:128.715000px;}
.y1b_c00354{bottom:153.315000px;}
.y1a_c00354{bottom:178.515000px;}
.y19_c00354{bottom:203.265000px;}
.y18_c00354{bottom:228.165000px;}
.y17_c00354{bottom:252.765000px;}
.y16_c00354{bottom:277.515000px;}
.y15_c00354{bottom:302.715000px;}
.y14_c00354{bottom:327.465000px;}
.y13_c00354{bottom:352.065000px;}
.y12_c00354{bottom:376.665000px;}
.y11_c00354{bottom:401.415000px;}
.y10_c00354{bottom:426.015000px;}
.yf_c00354{bottom:450.915000px;}
.ye_c00354{bottom:475.665000px;}
.yd_c00354{bottom:499.815000px;}
.yc_c00354{bottom:524.115000px;}
.yb_c00354{bottom:548.415000px;}
.ya_c00354{bottom:572.715000px;}
.y9_c00354{bottom:597.765000px;}
.y8_c00354{bottom:622.065000px;}
.y7_c00354{bottom:647.115000px;}
.y6_c00354{bottom:671.415000px;}
.y5_c00354{bottom:695.715000px;}
.y4_c00354{bottom:720.915000px;}
.y3_c00354{bottom:746.265000px;}
.y2_c00354{bottom:771.165000px;}
.y1_c00354{bottom:794.265000px;}
.h5_c00354{height:13.200074px;}
.h6_c00354{height:43.804688px;}
.h3_c00354{height:80.758301px;}
.h2_c00354{height:87.361816px;}
.h4_c00354{height:94.958496px;}
.h0_c00354{height:825.675000px;}
.h1_c00354{height:825.750000px;}
.w2_c00354{width:104.875500px;}
.w1_c00354{width:578.250000px;}
.w0_c00354{width:578.325000px;}
.x0_c00354{left:0.000000px;}
.x9_c00354{left:33.450000px;}
.x4_c00354{left:36.150000px;}
.x8_c00354{left:37.200000px;}
.x3_c00354{left:38.250000px;}
.x6_c00354{left:39.450000px;}
.xa_c00354{left:40.800000px;}
.x7_c00354{left:61.650000px;}
.x2_c00354{left:63.000000px;}
.x5_c00354{left:64.050000px;}
.x1_c00354{left:196.650000px;}
.xb_c00354{left:240.976730px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls2_c00354{letter-spacing:0.000000pt;}
.ls3_c00354{letter-spacing:2.666667pt;}
.ls1_c00354{letter-spacing:5.333333pt;}
.ls0_c00354{letter-spacing:446.018667pt;}
.ws0_c00354{word-spacing:-41.797333pt;}
.ws1_c00354{word-spacing:-16.933333pt;}
.ws2_c00354{word-spacing:-14.781333pt;}
.ws3_c00354{word-spacing:0.000000pt;}
._18_c00354{margin-left:-17.400000pt;}
._1e_c00354{margin-left:-16.069333pt;}
._10_c00354{margin-left:-14.842667pt;}
._16_c00354{margin-left:-13.002667pt;}
._15_c00354{margin-left:-11.714667pt;}
._f_c00354{margin-left:-10.733333pt;}
._14_c00354{margin-left:-9.568000pt;}
._3_c00354{margin-left:-7.298667pt;}
._5_c00354{margin-left:-5.949333pt;}
._8_c00354{margin-left:-4.293333pt;}
._7_c00354{margin-left:-3.066667pt;}
._1_c00354{margin-left:-1.533333pt;}
._0_c00354{width:1.594667pt;}
._6_c00354{width:2.576000pt;}
._d_c00354{width:3.925333pt;}
._1d_c00354{width:5.029333pt;}
._11_c00354{width:6.010667pt;}
._17_c00354{width:7.298667pt;}
._12_c00354{width:8.341333pt;}
._13_c00354{width:9.282667pt;}
._2_c00354{width:10.565333pt;}
._e_c00354{width:11.594667pt;}
._1c_c00354{width:12.880000pt;}
._9_c00354{width:14.474667pt;}
._a_c00354{width:16.008000pt;}
._c_c00354{width:17.173333pt;}
._b_c00354{width:18.768000pt;}
._19_c00354{width:29.733333pt;}
._1a_c00354{width:71.514667pt;}
._4_c00354{width:75.869333pt;}
._1b_c00354{width:82.120000pt;}
.fs3_c00354{font-size:42.666667pt;}
.fs1_c00354{font-size:58.666667pt;}
.fs0_c00354{font-size:61.333333pt;}
.fs2_c00354{font-size:66.666667pt;}
.y0_c00354{bottom:0.000000pt;}
.y1f_c00354{bottom:2.760000pt;}
.y1e_c00354{bottom:6.425219pt;}
.y1d_c00354{bottom:92.146667pt;}
.y1c_c00354{bottom:114.413333pt;}
.y1b_c00354{bottom:136.280000pt;}
.y1a_c00354{bottom:158.680000pt;}
.y19_c00354{bottom:180.680000pt;}
.y18_c00354{bottom:202.813333pt;}
.y17_c00354{bottom:224.680000pt;}
.y16_c00354{bottom:246.680000pt;}
.y15_c00354{bottom:269.080000pt;}
.y14_c00354{bottom:291.080000pt;}
.y13_c00354{bottom:312.946667pt;}
.y12_c00354{bottom:334.813333pt;}
.y11_c00354{bottom:356.813333pt;}
.y10_c00354{bottom:378.680000pt;}
.yf_c00354{bottom:400.813333pt;}
.ye_c00354{bottom:422.813333pt;}
.yd_c00354{bottom:444.280000pt;}
.yc_c00354{bottom:465.880000pt;}
.yb_c00354{bottom:487.480000pt;}
.ya_c00354{bottom:509.080000pt;}
.y9_c00354{bottom:531.346667pt;}
.y8_c00354{bottom:552.946667pt;}
.y7_c00354{bottom:575.213333pt;}
.y6_c00354{bottom:596.813333pt;}
.y5_c00354{bottom:618.413333pt;}
.y4_c00354{bottom:640.813333pt;}
.y3_c00354{bottom:663.346667pt;}
.y2_c00354{bottom:685.480000pt;}
.y1_c00354{bottom:706.013333pt;}
.h5_c00354{height:11.733399pt;}
.h6_c00354{height:38.937500pt;}
.h3_c00354{height:71.785156pt;}
.h2_c00354{height:77.654948pt;}
.h4_c00354{height:84.407552pt;}
.h0_c00354{height:733.933333pt;}
.h1_c00354{height:734.000000pt;}
.w2_c00354{width:93.222667pt;}
.w1_c00354{width:514.000000pt;}
.w0_c00354{width:514.066667pt;}
.x0_c00354{left:0.000000pt;}
.x9_c00354{left:29.733333pt;}
.x4_c00354{left:32.133333pt;}
.x8_c00354{left:33.066667pt;}
.x3_c00354{left:34.000000pt;}
.x6_c00354{left:35.066667pt;}
.xa_c00354{left:36.266667pt;}
.x7_c00354{left:54.800000pt;}
.x2_c00354{left:56.000000pt;}
.x5_c00354{left:56.933333pt;}
.x1_c00354{left:174.800000pt;}
.xb_c00354{left:214.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_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_5caa23e204e41603d3e438f0.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_3eb5cf5664c448bb0dad73ff.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.568848;font-style:normal;font-weight:normal;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_c97f62a8a992b5103a510a73.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00355{font-family:ff4_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;}
.ls2_c00355{letter-spacing:0.000000px;}
.ls4_c00355{letter-spacing:3.000000px;}
.ls0_c00355{letter-spacing:3.858000px;}
.ls3_c00355{letter-spacing:6.000000px;}
.ls1_c00355{letter-spacing:112.263000px;}
.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;}
}
.ws3_c00355{word-spacing:-47.022000px;}
.ws5_c00355{word-spacing:-22.629000px;}
.ws1_c00355{word-spacing:-19.737000px;}
.ws2_c00355{word-spacing:-16.629000px;}
.ws4_c00355{word-spacing:-0.483000px;}
.ws6_c00355{word-spacing:0.000000px;}
.ws0_c00355{word-spacing:3.105000px;}
._21_c00355{margin-left:-25.461000px;}
._23_c00355{margin-left:-20.484000px;}
._1e_c00355{margin-left:-18.717000px;}
._13_c00355{margin-left:-16.491000px;}
._12_c00355{margin-left:-12.420000px;}
._19_c00355{margin-left:-10.902000px;}
._1a_c00355{margin-left:-9.729000px;}
._18_c00355{margin-left:-8.487000px;}
._d_c00355{margin-left:-7.452000px;}
._e_c00355{margin-left:-6.279000px;}
._10_c00355{margin-left:-5.175000px;}
._11_c00355{margin-left:-4.002000px;}
._f_c00355{margin-left:-2.484000px;}
._14_c00355{margin-left:-1.311000px;}
._15_c00355{width:1.725000px;}
._c_c00355{width:3.726000px;}
._b_c00355{width:4.830000px;}
._16_c00355{width:6.003000px;}
._17_c00355{width:7.314000px;}
._3_c00355{width:8.694000px;}
._8_c00355{width:10.350000px;}
._1d_c00355{width:11.541000px;}
._0_c00355{width:13.110000px;}
._1_c00355{width:14.283000px;}
._2_c00355{width:15.939000px;}
._2b_c00355{width:17.250000px;}
._28_c00355{width:18.285000px;}
._29_c00355{width:19.665000px;}
._7_c00355{width:20.976000px;}
._5_c00355{width:23.643000px;}
._26_c00355{width:24.702000px;}
._6_c00355{width:27.279000px;}
._9_c00355{width:28.314000px;}
._2a_c00355{width:32.277000px;}
._1c_c00355{width:38.229000px;}
._4_c00355{width:39.234000px;}
._1f_c00355{width:41.331000px;}
._a_c00355{width:43.170000px;}
._25_c00355{width:91.701000px;}
._27_c00355{width:93.771000px;}
._20_c00355{width:98.118000px;}
._24_c00355{width:206.862000px;}
._22_c00355{width:214.935000px;}
._1b_c00355{width:268.479000px;}
.fc2_c00355{color:transparent;}
.fc1_c00355{color:rgb(128,128,128);}
.fc0_c00355{color:rgb(0,0,0);}
.fs3_c00355{font-size:48.000000px;}
.fs1_c00355{font-size:57.000000px;}
.fs2_c00355{font-size:66.000000px;}
.fs0_c00355{font-size:69.000000px;}
.y0_c00355{bottom:0.000000px;}
.y1b_c00355{bottom:3.105000px;}
.y1a_c00355{bottom:7.228363px;}
.y19_c00355{bottom:76.050000px;}
.y18_c00355{bottom:126.600000px;}
.y17_c00355{bottom:151.500000px;}
.y16_c00355{bottom:176.850000px;}
.y15_c00355{bottom:201.900000px;}
.y14_c00355{bottom:224.850000px;}
.y13_c00355{bottom:251.550000px;}
.y12_c00355{bottom:276.750000px;}
.y11_c00355{bottom:301.350000px;}
.y10_c00355{bottom:324.750000px;}
.yf_c00355{bottom:349.350000px;}
.ye_c00355{bottom:374.700000px;}
.yd_c00355{bottom:400.650000px;}
.yc_c00355{bottom:424.200000px;}
.yb_c00355{bottom:448.950000px;}
.ya_c00355{bottom:474.300000px;}
.y9_c00355{bottom:498.600000px;}
.y8_c00355{bottom:523.200000px;}
.y7_c00355{bottom:548.100000px;}
.y6_c00355{bottom:572.850000px;}
.y5_c00355{bottom:598.050000px;}
.y4_c00355{bottom:622.050000px;}
.y3_c00355{bottom:672.300000px;}
.y2_c00355{bottom:697.050000px;}
.y1_c00355{bottom:746.550000px;}
.h4_c00355{height:13.200074px;}
.h5_c00355{height:43.804688px;}
.h3_c00355{height:80.758301px;}
.h2_c00355{height:87.361816px;}
.h1_c00355{height:827.250000px;}
.h0_c00355{height:827.550000px;}
.w2_c00355{width:104.875500px;}
.w0_c00355{width:572.100000px;}
.w1_c00355{width:572.250000px;}
.x0_c00355{left:0.000000px;}
.x7_c00355{left:37.800000px;}
.x5_c00355{left:39.450000px;}
.x6_c00355{left:54.600000px;}
.x3_c00355{left:103.500000px;}
.x4_c00355{left:105.300000px;}
.x2_c00355{left:131.700000px;}
.x1_c00355{left:153.900000px;}
.x9_c00355{left:237.864258px;}
.x8_c00355{left:505.950000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls2_c00355{letter-spacing:0.000000pt;}
.ls4_c00355{letter-spacing:2.666667pt;}
.ls0_c00355{letter-spacing:3.429333pt;}
.ls3_c00355{letter-spacing:5.333333pt;}
.ls1_c00355{letter-spacing:99.789333pt;}
.ws3_c00355{word-spacing:-41.797333pt;}
.ws5_c00355{word-spacing:-20.114667pt;}
.ws1_c00355{word-spacing:-17.544000pt;}
.ws2_c00355{word-spacing:-14.781333pt;}
.ws4_c00355{word-spacing:-0.429333pt;}
.ws6_c00355{word-spacing:0.000000pt;}
.ws0_c00355{word-spacing:2.760000pt;}
._21_c00355{margin-left:-22.632000pt;}
._23_c00355{margin-left:-18.208000pt;}
._1e_c00355{margin-left:-16.637333pt;}
._13_c00355{margin-left:-14.658667pt;}
._12_c00355{margin-left:-11.040000pt;}
._19_c00355{margin-left:-9.690667pt;}
._1a_c00355{margin-left:-8.648000pt;}
._18_c00355{margin-left:-7.544000pt;}
._d_c00355{margin-left:-6.624000pt;}
._e_c00355{margin-left:-5.581333pt;}
._10_c00355{margin-left:-4.600000pt;}
._11_c00355{margin-left:-3.557333pt;}
._f_c00355{margin-left:-2.208000pt;}
._14_c00355{margin-left:-1.165333pt;}
._15_c00355{width:1.533333pt;}
._c_c00355{width:3.312000pt;}
._b_c00355{width:4.293333pt;}
._16_c00355{width:5.336000pt;}
._17_c00355{width:6.501333pt;}
._3_c00355{width:7.728000pt;}
._8_c00355{width:9.200000pt;}
._1d_c00355{width:10.258667pt;}
._0_c00355{width:11.653333pt;}
._1_c00355{width:12.696000pt;}
._2_c00355{width:14.168000pt;}
._2b_c00355{width:15.333333pt;}
._28_c00355{width:16.253333pt;}
._29_c00355{width:17.480000pt;}
._7_c00355{width:18.645333pt;}
._5_c00355{width:21.016000pt;}
._26_c00355{width:21.957333pt;}
._6_c00355{width:24.248000pt;}
._9_c00355{width:25.168000pt;}
._2a_c00355{width:28.690667pt;}
._1c_c00355{width:33.981333pt;}
._4_c00355{width:34.874667pt;}
._1f_c00355{width:36.738667pt;}
._a_c00355{width:38.373333pt;}
._25_c00355{width:81.512000pt;}
._27_c00355{width:83.352000pt;}
._20_c00355{width:87.216000pt;}
._24_c00355{width:183.877333pt;}
._22_c00355{width:191.053333pt;}
._1b_c00355{width:238.648000pt;}
.fs3_c00355{font-size:42.666667pt;}
.fs1_c00355{font-size:50.666667pt;}
.fs2_c00355{font-size:58.666667pt;}
.fs0_c00355{font-size:61.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y1b_c00355{bottom:2.760000pt;}
.y1a_c00355{bottom:6.425212pt;}
.y19_c00355{bottom:67.600000pt;}
.y18_c00355{bottom:112.533333pt;}
.y17_c00355{bottom:134.666667pt;}
.y16_c00355{bottom:157.200000pt;}
.y15_c00355{bottom:179.466667pt;}
.y14_c00355{bottom:199.866667pt;}
.y13_c00355{bottom:223.600000pt;}
.y12_c00355{bottom:246.000000pt;}
.y11_c00355{bottom:267.866667pt;}
.y10_c00355{bottom:288.666667pt;}
.yf_c00355{bottom:310.533333pt;}
.ye_c00355{bottom:333.066667pt;}
.yd_c00355{bottom:356.133333pt;}
.yc_c00355{bottom:377.066667pt;}
.yb_c00355{bottom:399.066667pt;}
.ya_c00355{bottom:421.600000pt;}
.y9_c00355{bottom:443.200000pt;}
.y8_c00355{bottom:465.066667pt;}
.y7_c00355{bottom:487.200000pt;}
.y6_c00355{bottom:509.200000pt;}
.y5_c00355{bottom:531.600000pt;}
.y4_c00355{bottom:552.933333pt;}
.y3_c00355{bottom:597.600000pt;}
.y2_c00355{bottom:619.600000pt;}
.y1_c00355{bottom:663.600000pt;}
.h4_c00355{height:11.733399pt;}
.h5_c00355{height:38.937500pt;}
.h3_c00355{height:71.785156pt;}
.h2_c00355{height:77.654948pt;}
.h1_c00355{height:735.333333pt;}
.h0_c00355{height:735.600000pt;}
.w2_c00355{width:93.222667pt;}
.w0_c00355{width:508.533333pt;}
.w1_c00355{width:508.666667pt;}
.x0_c00355{left:0.000000pt;}
.x7_c00355{left:33.600000pt;}
.x5_c00355{left:35.066667pt;}
.x6_c00355{left:48.533333pt;}
.x3_c00355{left:92.000000pt;}
.x4_c00355{left:93.600000pt;}
.x2_c00355{left:117.066667pt;}
.x1_c00355{left:136.800000pt;}
.x9_c00355{left:211.434896pt;}
.x8_c00355{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_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_2c07b13a84c5c3e325bd6d0e.woff2')format("woff");}.ff1_c00356{font-family:ff1_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:ff2_c00356;src:url('chunks/assets/font_3fa0b595786bcb0206f8b89d.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_96cf595cbb205f9d8dff574d.woff2')format("woff");}.ff3_c00356{font-family:ff3_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:ff4_c00356;src:url('chunks/assets/font_91253fdc557610c5061acabb.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_8928f98f87c3132e1cc3f21f.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;}
.ls6_c00356{letter-spacing:0.000000px;}
.ls2_c00356{letter-spacing:3.771000px;}
.ls4_c00356{letter-spacing:6.000000px;}
.ls0_c00356{letter-spacing:19.725000px;}
.ls5_c00356{letter-spacing:30.000000px;}
.ls1_c00356{letter-spacing:30.732000px;}
.ls7_c00356{letter-spacing:84.000000px;}
.ls3_c00356{letter-spacing:112.371000px;}
.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;}
}
.ws3_c00356{word-spacing:-100.629000px;}
.ws1_c00356{word-spacing:-52.500000px;}
.ws0_c00356{word-spacing:-22.629000px;}
.ws4_c00356{word-spacing:-16.629000px;}
.ws2_c00356{word-spacing:-13.014000px;}
.ws6_c00356{word-spacing:0.000000px;}
.ws5_c00356{word-spacing:1.836000px;}
._23_c00356{margin-left:-31.740000px;}
._22_c00356{margin-left:-23.988000px;}
._14_c00356{margin-left:-18.492000px;}
._0_c00356{margin-left:-17.181000px;}
._1b_c00356{margin-left:-15.945000px;}
._24_c00356{margin-left:-14.373000px;}
._20_c00356{margin-left:-12.975000px;}
._27_c00356{margin-left:-11.364000px;}
._1_c00356{margin-left:-9.177000px;}
._17_c00356{margin-left:-8.091000px;}
._13_c00356{margin-left:-6.912000px;}
._1f_c00356{margin-left:-5.784000px;}
._f_c00356{margin-left:-4.770000px;}
._9_c00356{margin-left:-3.582000px;}
._e_c00356{margin-left:-2.484000px;}
._7_c00356{margin-left:-1.224000px;}
._11_c00356{width:1.014000px;}
._2_c00356{width:2.070000px;}
._6_c00356{width:3.186000px;}
._5_c00356{width:4.590000px;}
._4_c00356{width:5.670000px;}
._3_c00356{width:6.696000px;}
._b_c00356{width:7.812000px;}
._8_c00356{width:8.874000px;}
._a_c00356{width:10.008000px;}
._16_c00356{width:11.640000px;}
._18_c00356{width:12.738000px;}
._19_c00356{width:14.103000px;}
._c_c00356{width:15.570000px;}
._10_c00356{width:17.676000px;}
._1d_c00356{width:18.888000px;}
._d_c00356{width:21.438000px;}
._26_c00356{width:22.794000px;}
._1a_c00356{width:36.579000px;}
._28_c00356{width:42.504000px;}
._21_c00356{width:43.674000px;}
._12_c00356{width:47.616000px;}
._1c_c00356{width:56.133000px;}
._25_c00356{width:204.255000px;}
._15_c00356{width:206.694000px;}
._1e_c00356{width:473.400000px;}
._29_c00356{width:520.515000px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(128,128,128);}
.fc0_c00356{color:rgb(0,0,0);}
.fs1_c00356{font-size:45.000000px;}
.fs4_c00356{font-size:48.000000px;}
.fs2_c00356{font-size:54.000000px;}
.fs0_c00356{font-size:69.000000px;}
.fs3_c00356{font-size:75.000000px;}
.y0_c00356{bottom:0.000000px;}
.y1e_c00356{bottom:3.105000px;}
.y1d_c00356{bottom:7.228357px;}
.y1c_c00356{bottom:71.580000px;}
.y1b_c00356{bottom:96.930000px;}
.y1a_c00356{bottom:122.280000px;}
.y19_c00356{bottom:147.180000px;}
.y18_c00356{bottom:171.780000px;}
.y17_c00356{bottom:197.130000px;}
.y16_c00356{bottom:222.030000px;}
.y15_c00356{bottom:246.480000px;}
.y14_c00356{bottom:270.330000px;}
.y13_c00356{bottom:295.980000px;}
.y12_c00356{bottom:320.580000px;}
.y11_c00356{bottom:345.030000px;}
.y10_c00356{bottom:369.930000px;}
.yf_c00356{bottom:394.230000px;}
.ye_c00356{bottom:418.530000px;}
.yd_c00356{bottom:443.880000px;}
.yc_c00356{bottom:493.530000px;}
.yb_c00356{bottom:516.330000px;}
.ya_c00356{bottom:565.680000px;}
.y9_c00356{bottom:612.330000px;}
.y8_c00356{bottom:630.480000px;}
.y7_c00356{bottom:647.430000px;}
.y1_c00356{bottom:652.080000px;}
.y6_c00356{bottom:664.980000px;}
.y5_c00356{bottom:682.380000px;}
.y4_c00356{bottom:699.930000px;}
.y3_c00356{bottom:717.630000px;}
.y2_c00356{bottom:751.980000px;}
.h6_c00356{height:13.200074px;}
.h7_c00356{height:43.804688px;}
.h2_c00356{height:44.143066px;}
.h3_c00356{height:68.370117px;}
.h4_c00356{height:80.758301px;}
.h1_c00356{height:87.361816px;}
.h5_c00356{height:87.780762px;}
.h0_c00356{height:819.750000px;}
.w2_c00356{width:104.875500px;}
.w1_c00356{width:573.750000px;}
.w0_c00356{width:574.050000px;}
.x0_c00356{left:0.000000px;}
.xa_c00356{left:30.750000px;}
.xb_c00356{left:33.150000px;}
.x8_c00356{left:34.500000px;}
.x9_c00356{left:35.700000px;}
.x5_c00356{left:36.900000px;}
.x4_c00356{left:38.100000px;}
.x3_c00356{left:55.800000px;}
.x7_c00356{left:59.850000px;}
.x6_c00356{left:161.400000px;}
.x2_c00356{left:180.300000px;}
.xd_c00356{left:238.839249px;}
.xc_c00356{left:286.200000px;}
.x1_c00356{left:514.050000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls6_c00356{letter-spacing:0.000000pt;}
.ls2_c00356{letter-spacing:3.352000pt;}
.ls4_c00356{letter-spacing:5.333333pt;}
.ls0_c00356{letter-spacing:17.533333pt;}
.ls5_c00356{letter-spacing:26.666667pt;}
.ls1_c00356{letter-spacing:27.317333pt;}
.ls7_c00356{letter-spacing:74.666667pt;}
.ls3_c00356{letter-spacing:99.885333pt;}
.ws3_c00356{word-spacing:-89.448000pt;}
.ws1_c00356{word-spacing:-46.666667pt;}
.ws0_c00356{word-spacing:-20.114667pt;}
.ws4_c00356{word-spacing:-14.781333pt;}
.ws2_c00356{word-spacing:-11.568000pt;}
.ws6_c00356{word-spacing:0.000000pt;}
.ws5_c00356{word-spacing:1.632000pt;}
._23_c00356{margin-left:-28.213333pt;}
._22_c00356{margin-left:-21.322667pt;}
._14_c00356{margin-left:-16.437333pt;}
._0_c00356{margin-left:-15.272000pt;}
._1b_c00356{margin-left:-14.173333pt;}
._24_c00356{margin-left:-12.776000pt;}
._20_c00356{margin-left:-11.533333pt;}
._27_c00356{margin-left:-10.101333pt;}
._1_c00356{margin-left:-8.157333pt;}
._17_c00356{margin-left:-7.192000pt;}
._13_c00356{margin-left:-6.144000pt;}
._1f_c00356{margin-left:-5.141333pt;}
._f_c00356{margin-left:-4.240000pt;}
._9_c00356{margin-left:-3.184000pt;}
._e_c00356{margin-left:-2.208000pt;}
._7_c00356{margin-left:-1.088000pt;}
._11_c00356{width:0.901333pt;}
._2_c00356{width:1.840000pt;}
._6_c00356{width:2.832000pt;}
._5_c00356{width:4.080000pt;}
._4_c00356{width:5.040000pt;}
._3_c00356{width:5.952000pt;}
._b_c00356{width:6.944000pt;}
._8_c00356{width:7.888000pt;}
._a_c00356{width:8.896000pt;}
._16_c00356{width:10.346667pt;}
._18_c00356{width:11.322667pt;}
._19_c00356{width:12.536000pt;}
._c_c00356{width:13.840000pt;}
._10_c00356{width:15.712000pt;}
._1d_c00356{width:16.789333pt;}
._d_c00356{width:19.056000pt;}
._26_c00356{width:20.261333pt;}
._1a_c00356{width:32.514667pt;}
._28_c00356{width:37.781333pt;}
._21_c00356{width:38.821333pt;}
._12_c00356{width:42.325333pt;}
._1c_c00356{width:49.896000pt;}
._25_c00356{width:181.560000pt;}
._15_c00356{width:183.728000pt;}
._1e_c00356{width:420.800000pt;}
._29_c00356{width:462.680000pt;}
.fs1_c00356{font-size:40.000000pt;}
.fs4_c00356{font-size:42.666667pt;}
.fs2_c00356{font-size:48.000000pt;}
.fs0_c00356{font-size:61.333333pt;}
.fs3_c00356{font-size:66.666667pt;}
.y0_c00356{bottom:0.000000pt;}
.y1e_c00356{bottom:2.760000pt;}
.y1d_c00356{bottom:6.425206pt;}
.y1c_c00356{bottom:63.626667pt;}
.y1b_c00356{bottom:86.160000pt;}
.y1a_c00356{bottom:108.693333pt;}
.y19_c00356{bottom:130.826667pt;}
.y18_c00356{bottom:152.693333pt;}
.y17_c00356{bottom:175.226667pt;}
.y16_c00356{bottom:197.360000pt;}
.y15_c00356{bottom:219.093333pt;}
.y14_c00356{bottom:240.293333pt;}
.y13_c00356{bottom:263.093333pt;}
.y12_c00356{bottom:284.960000pt;}
.y11_c00356{bottom:306.693333pt;}
.y10_c00356{bottom:328.826667pt;}
.yf_c00356{bottom:350.426667pt;}
.ye_c00356{bottom:372.026667pt;}
.yd_c00356{bottom:394.560000pt;}
.yc_c00356{bottom:438.693333pt;}
.yb_c00356{bottom:458.960000pt;}
.ya_c00356{bottom:502.826667pt;}
.y9_c00356{bottom:544.293333pt;}
.y8_c00356{bottom:560.426667pt;}
.y7_c00356{bottom:575.493333pt;}
.y1_c00356{bottom:579.626667pt;}
.y6_c00356{bottom:591.093333pt;}
.y5_c00356{bottom:606.560000pt;}
.y4_c00356{bottom:622.160000pt;}
.y3_c00356{bottom:637.893333pt;}
.y2_c00356{bottom:668.426667pt;}
.h6_c00356{height:11.733399pt;}
.h7_c00356{height:38.937500pt;}
.h2_c00356{height:39.238281pt;}
.h3_c00356{height:60.773438pt;}
.h4_c00356{height:71.785156pt;}
.h1_c00356{height:77.654948pt;}
.h5_c00356{height:78.027344pt;}
.h0_c00356{height:728.666667pt;}
.w2_c00356{width:93.222667pt;}
.w1_c00356{width:510.000000pt;}
.w0_c00356{width:510.266667pt;}
.x0_c00356{left:0.000000pt;}
.xa_c00356{left:27.333333pt;}
.xb_c00356{left:29.466667pt;}
.x8_c00356{left:30.666667pt;}
.x9_c00356{left:31.733333pt;}
.x5_c00356{left:32.800000pt;}
.x4_c00356{left:33.866667pt;}
.x3_c00356{left:49.600000pt;}
.x7_c00356{left:53.200000pt;}
.x6_c00356{left:143.466667pt;}
.x2_c00356{left:160.266667pt;}
.xd_c00356{left:212.301554pt;}
.xc_c00356{left:254.400000pt;}
.x1_c00356{left:456.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_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_21d97c329e6271bfbdcce393.woff2')format("woff");}.ff1_c00357{font-family:ff1_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:ff2_c00357;src:url('chunks/assets/font_5053ea5727f4bb164be08481.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_d2c9bba1146aac9e4b0852a2.woff2')format("woff");}.ff3_c00357{font-family:ff3_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:ff4_c00357;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff4_c00357{font-family:ff4_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:ff5_c00357;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00357{font-family:ff5_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;}
.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;}
.ls3_c00357{letter-spacing:-6.000000px;}
.ls2_c00357{letter-spacing:0.000000px;}
.ls1_c00357{letter-spacing:6.000000px;}
.ls0_c00357{letter-spacing:19.800000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00357{word-spacing:-56.235000px;}
.ws1_c00357{word-spacing:-25.723200px;}
.ws4_c00357{word-spacing:-22.629000px;}
.ws0_c00357{word-spacing:-16.629000px;}
.ws3_c00357{word-spacing:-7.530000px;}
.ws5_c00357{word-spacing:0.000000px;}
._21_c00357{margin-left:-28.773000px;}
._1f_c00357{margin-left:-23.391000px;}
._22_c00357{margin-left:-19.420800px;}
._a_c00357{margin-left:-17.043000px;}
._8_c00357{margin-left:-15.663000px;}
._f_c00357{margin-left:-12.744000px;}
._13_c00357{margin-left:-11.040000px;}
._1_c00357{margin-left:-9.384000px;}
._0_c00357{margin-left:-7.659000px;}
._2_c00357{margin-left:-6.003000px;}
._3_c00357{margin-left:-4.140000px;}
._d_c00357{margin-left:-3.105000px;}
._5_c00357{margin-left:-1.863000px;}
._7_c00357{width:1.656000px;}
._c_c00357{width:3.174000px;}
._e_c00357{width:4.485000px;}
._b_c00357{width:5.727000px;}
._6_c00357{width:7.659000px;}
._1c_c00357{width:8.763000px;}
._9_c00357{width:10.143000px;}
._16_c00357{width:11.316000px;}
._12_c00357{width:12.558000px;}
._1e_c00357{width:14.280000px;}
._25_c00357{width:15.597000px;}
._23_c00357{width:17.319000px;}
._10_c00357{width:18.846000px;}
._1a_c00357{width:20.631000px;}
._1b_c00357{width:24.417000px;}
._27_c00357{width:27.117000px;}
._26_c00357{width:29.748000px;}
._17_c00357{width:33.051000px;}
._1d_c00357{width:38.088000px;}
._14_c00357{width:46.675800px;}
._24_c00357{width:88.665000px;}
._28_c00357{width:90.252000px;}
._11_c00357{width:91.905000px;}
._20_c00357{width:121.095000px;}
._18_c00357{width:128.478000px;}
._19_c00357{width:303.249000px;}
._15_c00357{width:376.077000px;}
._4_c00357{width:379.341000px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(128,128,128);}
.fc0_c00357{color:rgb(0,0,0);}
.fs3_c00357{font-size:48.000000px;}
.fs1_c00357{font-size:55.200000px;}
.fs2_c00357{font-size:66.000000px;}
.fs0_c00357{font-size:69.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1a_c00357{bottom:3.105000px;}
.y19_c00357{bottom:7.228355px;}
.y18_c00357{bottom:84.735000px;}
.y17_c00357{bottom:110.685000px;}
.y16_c00357{bottom:134.685000px;}
.y15_c00357{bottom:159.885000px;}
.y14_c00357{bottom:184.935000px;}
.y13_c00357{bottom:234.885000px;}
.y12_c00357{bottom:283.785000px;}
.y11_c00357{bottom:308.385000px;}
.y10_c00357{bottom:332.685000px;}
.yf_c00357{bottom:357.435000px;}
.ye_c00357{bottom:382.335000px;}
.yd_c00357{bottom:407.385000px;}
.yc_c00357{bottom:431.985000px;}
.yb_c00357{bottom:456.285000px;}
.ya_c00357{bottom:506.535000px;}
.y9_c00357{bottom:555.435000px;}
.y8_c00357{bottom:605.385000px;}
.y7_c00357{bottom:629.985000px;}
.y6_c00357{bottom:655.635000px;}
.y5_c00357{bottom:679.935000px;}
.y4_c00357{bottom:705.585000px;}
.y3_c00357{bottom:730.635000px;}
.y2_c00357{bottom:755.535000px;}
.y1_c00357{bottom:779.985000px;}
.h4_c00357{height:13.200074px;}
.h5_c00357{height:43.804688px;}
.h3_c00357{height:80.758301px;}
.h2_c00357{height:87.361816px;}
.h0_c00357{height:815.925000px;}
.h1_c00357{height:816.000000px;}
.w2_c00357{width:104.875500px;}
.w0_c00357{width:563.775000px;}
.w1_c00357{width:564.000000px;}
.x0_c00357{left:0.000000px;}
.x9_c00357{left:35.100000px;}
.x4_c00357{left:40.050000px;}
.xa_c00357{left:51.750000px;}
.x3_c00357{left:57.300000px;}
.xb_c00357{left:94.200000px;}
.xf_c00357{left:97.650000px;}
.xc_c00357{left:99.900000px;}
.x8_c00357{left:101.250000px;}
.x2_c00357{left:105.600000px;}
.xe_c00357{left:109.350000px;}
.x6_c00357{left:115.050000px;}
.x1_c00357{left:120.600000px;}
.x7_c00357{left:125.250000px;}
.x5_c00357{left:150.450000px;}
.xd_c00357{left:196.800000px;}
.x10_c00357{left:233.701767px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls3_c00357{letter-spacing:-5.333333pt;}
.ls2_c00357{letter-spacing:0.000000pt;}
.ls1_c00357{letter-spacing:5.333333pt;}
.ls0_c00357{letter-spacing:17.600000pt;}
.ws2_c00357{word-spacing:-49.986667pt;}
.ws1_c00357{word-spacing:-22.865067pt;}
.ws4_c00357{word-spacing:-20.114667pt;}
.ws0_c00357{word-spacing:-14.781333pt;}
.ws3_c00357{word-spacing:-6.693333pt;}
.ws5_c00357{word-spacing:0.000000pt;}
._21_c00357{margin-left:-25.576000pt;}
._1f_c00357{margin-left:-20.792000pt;}
._22_c00357{margin-left:-17.262933pt;}
._a_c00357{margin-left:-15.149333pt;}
._8_c00357{margin-left:-13.922667pt;}
._f_c00357{margin-left:-11.328000pt;}
._13_c00357{margin-left:-9.813333pt;}
._1_c00357{margin-left:-8.341333pt;}
._0_c00357{margin-left:-6.808000pt;}
._2_c00357{margin-left:-5.336000pt;}
._3_c00357{margin-left:-3.680000pt;}
._d_c00357{margin-left:-2.760000pt;}
._5_c00357{margin-left:-1.656000pt;}
._7_c00357{width:1.472000pt;}
._c_c00357{width:2.821333pt;}
._e_c00357{width:3.986667pt;}
._b_c00357{width:5.090667pt;}
._6_c00357{width:6.808000pt;}
._1c_c00357{width:7.789333pt;}
._9_c00357{width:9.016000pt;}
._16_c00357{width:10.058667pt;}
._12_c00357{width:11.162667pt;}
._1e_c00357{width:12.693333pt;}
._25_c00357{width:13.864000pt;}
._23_c00357{width:15.394667pt;}
._10_c00357{width:16.752000pt;}
._1a_c00357{width:18.338667pt;}
._1b_c00357{width:21.704000pt;}
._27_c00357{width:24.104000pt;}
._26_c00357{width:26.442667pt;}
._17_c00357{width:29.378667pt;}
._1d_c00357{width:33.856000pt;}
._14_c00357{width:41.489600pt;}
._24_c00357{width:78.813333pt;}
._28_c00357{width:80.224000pt;}
._11_c00357{width:81.693333pt;}
._20_c00357{width:107.640000pt;}
._18_c00357{width:114.202667pt;}
._19_c00357{width:269.554667pt;}
._15_c00357{width:334.290667pt;}
._4_c00357{width:337.192000pt;}
.fs3_c00357{font-size:42.666667pt;}
.fs1_c00357{font-size:49.066667pt;}
.fs2_c00357{font-size:58.666667pt;}
.fs0_c00357{font-size:61.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y1a_c00357{bottom:2.760000pt;}
.y19_c00357{bottom:6.425204pt;}
.y18_c00357{bottom:75.320000pt;}
.y17_c00357{bottom:98.386667pt;}
.y16_c00357{bottom:119.720000pt;}
.y15_c00357{bottom:142.120000pt;}
.y14_c00357{bottom:164.386667pt;}
.y13_c00357{bottom:208.786667pt;}
.y12_c00357{bottom:252.253333pt;}
.y11_c00357{bottom:274.120000pt;}
.y10_c00357{bottom:295.720000pt;}
.yf_c00357{bottom:317.720000pt;}
.ye_c00357{bottom:339.853333pt;}
.yd_c00357{bottom:362.120000pt;}
.yc_c00357{bottom:383.986667pt;}
.yb_c00357{bottom:405.586667pt;}
.ya_c00357{bottom:450.253333pt;}
.y9_c00357{bottom:493.720000pt;}
.y8_c00357{bottom:538.120000pt;}
.y7_c00357{bottom:559.986667pt;}
.y6_c00357{bottom:582.786667pt;}
.y5_c00357{bottom:604.386667pt;}
.y4_c00357{bottom:627.186667pt;}
.y3_c00357{bottom:649.453333pt;}
.y2_c00357{bottom:671.586667pt;}
.y1_c00357{bottom:693.320000pt;}
.h4_c00357{height:11.733399pt;}
.h5_c00357{height:38.937500pt;}
.h3_c00357{height:71.785156pt;}
.h2_c00357{height:77.654948pt;}
.h0_c00357{height:725.266667pt;}
.h1_c00357{height:725.333333pt;}
.w2_c00357{width:93.222667pt;}
.w0_c00357{width:501.133333pt;}
.w1_c00357{width:501.333333pt;}
.x0_c00357{left:0.000000pt;}
.x9_c00357{left:31.200000pt;}
.x4_c00357{left:35.600000pt;}
.xa_c00357{left:46.000000pt;}
.x3_c00357{left:50.933333pt;}
.xb_c00357{left:83.733333pt;}
.xf_c00357{left:86.800000pt;}
.xc_c00357{left:88.800000pt;}
.x8_c00357{left:90.000000pt;}
.x2_c00357{left:93.866667pt;}
.xe_c00357{left:97.200000pt;}
.x6_c00357{left:102.266667pt;}
.x1_c00357{left:107.200000pt;}
.x7_c00357{left:111.333333pt;}
.x5_c00357{left:133.733333pt;}
.xd_c00357{left:174.933333pt;}
.x10_c00357{left:207.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_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_47a4f674dafaaef58840a761.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_24b624d6b523c87f0d6e4224.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_8b50a62eb44cb7e75d4084df.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_053c463f4ef3b24fac5a1be1.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_967850f94fd319be8b38ee5f.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_0deb8a0db465a67d6316f6cb.woff2')format("woff");}.ff6_c00358{font-family:ff6_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:ff7_c00358;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00358{font-family:ff7_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;}
.lsd_c00358{letter-spacing:-12.000000px;}
.ls9_c00358{letter-spacing:0.000000px;}
.lsa_c00358{letter-spacing:3.000000px;}
.ls4_c00358{letter-spacing:3.600000px;}
.ls8_c00358{letter-spacing:4.800000px;}
.lsb_c00358{letter-spacing:6.000000px;}
.ls2_c00358{letter-spacing:12.600000px;}
.ls5_c00358{letter-spacing:16.125000px;}
.ls1_c00358{letter-spacing:17.700000px;}
.lsc_c00358{letter-spacing:18.000000px;}
.ls6_c00358{letter-spacing:26.571000px;}
.ls7_c00358{letter-spacing:36.171000px;}
.ls3_c00358{letter-spacing:148.971000px;}
.ls0_c00358{letter-spacing:425.802000px;}
.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:-44.340000px;}
.ws3_c00358{word-spacing:-19.521000px;}
.ws2_c00358{word-spacing:-16.629000px;}
.ws1_c00358{word-spacing:-13.303200px;}
.ws4_c00358{word-spacing:0.000000px;}
._33_c00358{margin-left:-36.087000px;}
._2e_c00358{margin-left:-33.258000px;}
._30_c00358{margin-left:-29.016000px;}
._23_c00358{margin-left:-23.184000px;}
._e_c00358{margin-left:-19.935000px;}
._1f_c00358{margin-left:-16.923000px;}
._11_c00358{margin-left:-15.486000px;}
._f_c00358{margin-left:-14.469000px;}
._2c_c00358{margin-left:-13.089000px;}
._c_c00358{margin-left:-10.983000px;}
._24_c00358{margin-left:-8.916000px;}
._d_c00358{margin-left:-7.782000px;}
._4_c00358{margin-left:-6.486000px;}
._5_c00358{margin-left:-5.022000px;}
._3_c00358{margin-left:-3.519000px;}
._2_c00358{margin-left:-1.914000px;}
._1_c00358{width:1.386000px;}
._12_c00358{width:2.616000px;}
._0_c00358{width:3.630000px;}
._b_c00358{width:5.268000px;}
._1b_c00358{width:6.417000px;}
._8_c00358{width:8.073000px;}
._7_c00358{width:9.177000px;}
._15_c00358{width:10.695000px;}
._10_c00358{width:12.402000px;}
._1d_c00358{width:13.731000px;}
._6_c00358{width:14.973000px;}
._9_c00358{width:17.802000px;}
._25_c00358{width:19.011000px;}
._17_c00358{width:20.631000px;}
._a_c00358{width:21.735000px;}
._21_c00358{width:23.973000px;}
._18_c00358{width:25.254000px;}
._26_c00358{width:26.520000px;}
._1c_c00358{width:31.365000px;}
._28_c00358{width:33.942000px;}
._2d_c00358{width:35.652000px;}
._14_c00358{width:37.788000px;}
._1e_c00358{width:41.883000px;}
._2b_c00358{width:43.011000px;}
._1a_c00358{width:55.251000px;}
._16_c00358{width:84.690000px;}
._27_c00358{width:86.943000px;}
._13_c00358{width:88.089000px;}
._2f_c00358{width:93.438000px;}
._19_c00358{width:100.089000px;}
._31_c00358{width:111.711000px;}
._2a_c00358{width:120.159000px;}
._20_c00358{width:122.736000px;}
._29_c00358{width:141.192000px;}
._32_c00358{width:155.091000px;}
._22_c00358{width:191.904000px;}
._34_c00358{width:561.504000px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(128,128,128);}
.fc0_c00358{color:rgb(0,0,0);}
.fs8_c00358{font-size:48.000000px;}
.fs4_c00358{font-size:55.200000px;}
.fs2_c00358{font-size:60.000000px;}
.fs7_c00358{font-size:63.000000px;}
.fs0_c00358{font-size:66.000000px;}
.fs3_c00358{font-size:69.000000px;}
.fs1_c00358{font-size:78.000000px;}
.fs5_c00358{font-size:81.000000px;}
.fs6_c00358{font-size:84.000000px;}
.y0_c00358{bottom:0.000000px;}
.y20_c00358{bottom:3.105000px;}
.y1f_c00358{bottom:7.228371px;}
.y1e_c00358{bottom:72.015000px;}
.y1d_c00358{bottom:94.215000px;}
.y1c_c00358{bottom:119.865000px;}
.y1b_c00358{bottom:144.915000px;}
.y1a_c00358{bottom:169.815000px;}
.y19_c00358{bottom:194.865000px;}
.y18_c00358{bottom:219.765000px;}
.y17_c00358{bottom:244.665000px;}
.y16_c00358{bottom:269.415000px;}
.y15_c00358{bottom:294.615000px;}
.y14_c00358{bottom:319.365000px;}
.y13_c00358{bottom:343.665000px;}
.y12_c00358{bottom:368.865000px;}
.y11_c00358{bottom:393.315000px;}
.y10_c00358{bottom:418.515000px;}
.yf_c00358{bottom:443.115000px;}
.ye_c00358{bottom:468.165000px;}
.yd_c00358{bottom:492.165000px;}
.yc_c00358{bottom:517.065000px;}
.yb_c00358{bottom:540.765000px;}
.ya_c00358{bottom:565.965000px;}
.y9_c00358{bottom:590.715000px;}
.y8_c00358{bottom:615.615000px;}
.y7_c00358{bottom:639.615000px;}
.y6_c00358{bottom:664.215000px;}
.y5_c00358{bottom:689.865000px;}
.y4_c00358{bottom:713.865000px;}
.y3_c00358{bottom:739.515000px;}
.y2_c00358{bottom:764.415000px;}
.y1_c00358{bottom:788.115000px;}
.h7_c00358{height:13.200074px;}
.h8_c00358{height:43.804688px;}
.h4_c00358{height:80.758301px;}
.h3_c00358{height:87.361816px;}
.h2_c00358{height:98.756836px;}
.h5_c00358{height:102.555176px;}
.h6_c00358{height:106.353516px;}
.h0_c00358{height:825.675000px;}
.h1_c00358{height:825.750000px;}
.w2_c00358{width:104.875500px;}
.w1_c00358{width:578.250000px;}
.w0_c00358{width:578.325000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:38.100000px;}
.x3_c00358{left:39.450000px;}
.x4_c00358{left:41.250000px;}
.x5_c00358{left:42.600000px;}
.x6_c00358{left:44.550000px;}
.x7_c00358{left:46.350000px;}
.x9_c00358{left:48.000000px;}
.x8_c00358{left:72.600000px;}
.x1_c00358{left:209.550000px;}
.xb_c00358{left:240.976730px;}
.xa_c00358{left:284.250000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.lsd_c00358{letter-spacing:-10.666667pt;}
.ls9_c00358{letter-spacing:0.000000pt;}
.lsa_c00358{letter-spacing:2.666667pt;}
.ls4_c00358{letter-spacing:3.200000pt;}
.ls8_c00358{letter-spacing:4.266667pt;}
.lsb_c00358{letter-spacing:5.333333pt;}
.ls2_c00358{letter-spacing:11.200000pt;}
.ls5_c00358{letter-spacing:14.333333pt;}
.ls1_c00358{letter-spacing:15.733333pt;}
.lsc_c00358{letter-spacing:16.000000pt;}
.ls6_c00358{letter-spacing:23.618667pt;}
.ls7_c00358{letter-spacing:32.152000pt;}
.ls3_c00358{letter-spacing:132.418667pt;}
.ls0_c00358{letter-spacing:378.490667pt;}
.ws0_c00358{word-spacing:-39.413333pt;}
.ws3_c00358{word-spacing:-17.352000pt;}
.ws2_c00358{word-spacing:-14.781333pt;}
.ws1_c00358{word-spacing:-11.825067pt;}
.ws4_c00358{word-spacing:0.000000pt;}
._33_c00358{margin-left:-32.077333pt;}
._2e_c00358{margin-left:-29.562667pt;}
._30_c00358{margin-left:-25.792000pt;}
._23_c00358{margin-left:-20.608000pt;}
._e_c00358{margin-left:-17.720000pt;}
._1f_c00358{margin-left:-15.042667pt;}
._11_c00358{margin-left:-13.765333pt;}
._f_c00358{margin-left:-12.861333pt;}
._2c_c00358{margin-left:-11.634667pt;}
._c_c00358{margin-left:-9.762667pt;}
._24_c00358{margin-left:-7.925333pt;}
._d_c00358{margin-left:-6.917333pt;}
._4_c00358{margin-left:-5.765333pt;}
._5_c00358{margin-left:-4.464000pt;}
._3_c00358{margin-left:-3.128000pt;}
._2_c00358{margin-left:-1.701333pt;}
._1_c00358{width:1.232000pt;}
._12_c00358{width:2.325333pt;}
._0_c00358{width:3.226667pt;}
._b_c00358{width:4.682667pt;}
._1b_c00358{width:5.704000pt;}
._8_c00358{width:7.176000pt;}
._7_c00358{width:8.157333pt;}
._15_c00358{width:9.506667pt;}
._10_c00358{width:11.024000pt;}
._1d_c00358{width:12.205333pt;}
._6_c00358{width:13.309333pt;}
._9_c00358{width:15.824000pt;}
._25_c00358{width:16.898667pt;}
._17_c00358{width:18.338667pt;}
._a_c00358{width:19.320000pt;}
._21_c00358{width:21.309333pt;}
._18_c00358{width:22.448000pt;}
._26_c00358{width:23.573333pt;}
._1c_c00358{width:27.880000pt;}
._28_c00358{width:30.170667pt;}
._2d_c00358{width:31.690667pt;}
._14_c00358{width:33.589333pt;}
._1e_c00358{width:37.229333pt;}
._2b_c00358{width:38.232000pt;}
._1a_c00358{width:49.112000pt;}
._16_c00358{width:75.280000pt;}
._27_c00358{width:77.282667pt;}
._13_c00358{width:78.301333pt;}
._2f_c00358{width:83.056000pt;}
._19_c00358{width:88.968000pt;}
._31_c00358{width:99.298667pt;}
._2a_c00358{width:106.808000pt;}
._20_c00358{width:109.098667pt;}
._29_c00358{width:125.504000pt;}
._32_c00358{width:137.858667pt;}
._22_c00358{width:170.581333pt;}
._34_c00358{width:499.114667pt;}
.fs8_c00358{font-size:42.666667pt;}
.fs4_c00358{font-size:49.066667pt;}
.fs2_c00358{font-size:53.333333pt;}
.fs7_c00358{font-size:56.000000pt;}
.fs0_c00358{font-size:58.666667pt;}
.fs3_c00358{font-size:61.333333pt;}
.fs1_c00358{font-size:69.333333pt;}
.fs5_c00358{font-size:72.000000pt;}
.fs6_c00358{font-size:74.666667pt;}
.y0_c00358{bottom:0.000000pt;}
.y20_c00358{bottom:2.760000pt;}
.y1f_c00358{bottom:6.425219pt;}
.y1e_c00358{bottom:64.013333pt;}
.y1d_c00358{bottom:83.746667pt;}
.y1c_c00358{bottom:106.546667pt;}
.y1b_c00358{bottom:128.813333pt;}
.y1a_c00358{bottom:150.946667pt;}
.y19_c00358{bottom:173.213333pt;}
.y18_c00358{bottom:195.346667pt;}
.y17_c00358{bottom:217.480000pt;}
.y16_c00358{bottom:239.480000pt;}
.y15_c00358{bottom:261.880000pt;}
.y14_c00358{bottom:283.880000pt;}
.y13_c00358{bottom:305.480000pt;}
.y12_c00358{bottom:327.880000pt;}
.y11_c00358{bottom:349.613333pt;}
.y10_c00358{bottom:372.013333pt;}
.yf_c00358{bottom:393.880000pt;}
.ye_c00358{bottom:416.146667pt;}
.yd_c00358{bottom:437.480000pt;}
.yc_c00358{bottom:459.613333pt;}
.yb_c00358{bottom:480.680000pt;}
.ya_c00358{bottom:503.080000pt;}
.y9_c00358{bottom:525.080000pt;}
.y8_c00358{bottom:547.213333pt;}
.y7_c00358{bottom:568.546667pt;}
.y6_c00358{bottom:590.413333pt;}
.y5_c00358{bottom:613.213333pt;}
.y4_c00358{bottom:634.546667pt;}
.y3_c00358{bottom:657.346667pt;}
.y2_c00358{bottom:679.480000pt;}
.y1_c00358{bottom:700.546667pt;}
.h7_c00358{height:11.733399pt;}
.h8_c00358{height:38.937500pt;}
.h4_c00358{height:71.785156pt;}
.h3_c00358{height:77.654948pt;}
.h2_c00358{height:87.783854pt;}
.h5_c00358{height:91.160156pt;}
.h6_c00358{height:94.536458pt;}
.h0_c00358{height:733.933333pt;}
.h1_c00358{height:734.000000pt;}
.w2_c00358{width:93.222667pt;}
.w1_c00358{width:514.000000pt;}
.w0_c00358{width:514.066667pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:33.866667pt;}
.x3_c00358{left:35.066667pt;}
.x4_c00358{left:36.666667pt;}
.x5_c00358{left:37.866667pt;}
.x6_c00358{left:39.600000pt;}
.x7_c00358{left:41.200000pt;}
.x9_c00358{left:42.666667pt;}
.x8_c00358{left:64.533333pt;}
.x1_c00358{left:186.266667pt;}
.xb_c00358{left:214.201538pt;}
.xa_c00358{left:252.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_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_a3ea9a5ef0b1faa60bd5d853.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_b3d753ac68734a09674ccdd0.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_053c463f4ef3b24fac5a1be1.woff2')format("woff");}.ff3_c00359{font-family:ff3_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:ff4_c00359;src:url('chunks/assets/font_95c6b2961327c14e377ccc2d.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;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_c00359;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00359{font-family:ff5_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;}
.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;}
.ls4_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:6.000000px;}
.ls2_c00359{letter-spacing:6.570000px;}
.ls1_c00359{letter-spacing:11.400000px;}
.ls3_c00359{letter-spacing:15.072000px;}
.ls5_c00359{letter-spacing:51.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:-67.629000px;}
.ws2_c00359{word-spacing:-19.737000px;}
.ws3_c00359{word-spacing:-16.629000px;}
.ws0_c00359{word-spacing:-9.399000px;}
.ws4_c00359{word-spacing:0.000000px;}
._2_c00359{margin-left:-21.528000px;}
._0_c00359{margin-left:-20.079000px;}
._16_c00359{margin-left:-16.560000px;}
._13_c00359{margin-left:-14.973000px;}
._c_c00359{margin-left:-13.455000px;}
._3_c00359{margin-left:-11.385000px;}
._1_c00359{margin-left:-9.729000px;}
._b_c00359{margin-left:-8.556000px;}
._12_c00359{margin-left:-7.176000px;}
._e_c00359{margin-left:-5.175000px;}
._f_c00359{margin-left:-4.002000px;}
._7_c00359{margin-left:-2.760000px;}
._6_c00359{margin-left:-1.242000px;}
._a_c00359{width:1.311000px;}
._9_c00359{width:2.346000px;}
._8_c00359{width:3.450000px;}
._11_c00359{width:4.692000px;}
._d_c00359{width:6.693000px;}
._10_c00359{width:7.866000px;}
._4_c00359{width:9.660000px;}
._18_c00359{width:10.695000px;}
._22_c00359{width:12.024000px;}
._15_c00359{width:13.248000px;}
._14_c00359{width:14.352000px;}
._1d_c00359{width:16.146000px;}
._1c_c00359{width:17.901000px;}
._20_c00359{width:19.014000px;}
._17_c00359{width:20.148000px;}
._21_c00359{width:21.912000px;}
._1f_c00359{width:23.253000px;}
._1e_c00359{width:26.427000px;}
._1b_c00359{width:30.153000px;}
._1a_c00359{width:35.397000px;}
._19_c00359{width:37.329000px;}
._27_c00359{width:67.323000px;}
._28_c00359{width:73.380000px;}
._23_c00359{width:87.558000px;}
._25_c00359{width:222.714000px;}
._26_c00359{width:238.698000px;}
._24_c00359{width:254.046000px;}
._5_c00359{width:379.602000px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(128,128,128);}
.fc0_c00359{color:rgb(0,0,0);}
.fs1_c00359{font-size:39.000000px;}
.fs4_c00359{font-size:48.000000px;}
.fs3_c00359{font-size:57.000000px;}
.fs2_c00359{font-size:66.000000px;}
.fs0_c00359{font-size:69.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1c_c00359{bottom:3.105000px;}
.y1b_c00359{bottom:7.228357px;}
.y1a_c00359{bottom:65.580000px;}
.y19_c00359{bottom:99.330000px;}
.y18_c00359{bottom:115.380000px;}
.y17_c00359{bottom:139.680000px;}
.y16_c00359{bottom:165.480000px;}
.y15_c00359{bottom:190.380000px;}
.y14_c00359{bottom:215.280000px;}
.y13_c00359{bottom:240.330000px;}
.y12_c00359{bottom:265.380000px;}
.y11_c00359{bottom:289.980000px;}
.y10_c00359{bottom:314.580000px;}
.yf_c00359{bottom:338.130000px;}
.ye_c00359{bottom:363.180000px;}
.yd_c00359{bottom:387.780000px;}
.yc_c00359{bottom:436.830000px;}
.yb_c00359{bottom:486.330000px;}
.ya_c00359{bottom:524.580000px;}
.y9_c00359{bottom:541.980000px;}
.y8_c00359{bottom:586.530000px;}
.y7_c00359{bottom:636.180000px;}
.y6_c00359{bottom:660.930000px;}
.y5_c00359{bottom:686.130000px;}
.y4_c00359{bottom:710.730000px;}
.y3_c00359{bottom:735.780000px;}
.y2_c00359{bottom:760.680000px;}
.y1_c00359{bottom:785.130000px;}
.h6_c00359{height:13.200074px;}
.h7_c00359{height:43.804688px;}
.h4_c00359{height:45.645996px;}
.h3_c00359{height:49.378418px;}
.h5_c00359{height:66.713379px;}
.h2_c00359{height:80.758301px;}
.h1_c00359{height:87.361816px;}
.h0_c00359{height:819.750000px;}
.w2_c00359{width:104.875500px;}
.w1_c00359{width:566.250000px;}
.w0_c00359{width:566.475000px;}
.x0_c00359{left:0.000000px;}
.xb_c00359{left:28.800000px;}
.xe_c00359{left:31.500000px;}
.xd_c00359{left:45.600000px;}
.xc_c00359{left:73.950000px;}
.x2_c00359{left:91.500000px;}
.x9_c00359{left:92.550000px;}
.xa_c00359{left:93.600000px;}
.x1_c00359{left:108.450000px;}
.x5_c00359{left:109.650000px;}
.x6_c00359{left:116.100000px;}
.x8_c00359{left:117.450000px;}
.x3_c00359{left:122.850000px;}
.x4_c00359{left:193.050000px;}
.x7_c00359{left:226.350000px;}
.x10_c00359{left:235.051758px;}
.xf_c00359{left:500.550000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls4_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:5.333333pt;}
.ls2_c00359{letter-spacing:5.840000pt;}
.ls1_c00359{letter-spacing:10.133333pt;}
.ls3_c00359{letter-spacing:13.397333pt;}
.ls5_c00359{letter-spacing:45.333333pt;}
.ws1_c00359{word-spacing:-60.114667pt;}
.ws2_c00359{word-spacing:-17.544000pt;}
.ws3_c00359{word-spacing:-14.781333pt;}
.ws0_c00359{word-spacing:-8.354667pt;}
.ws4_c00359{word-spacing:0.000000pt;}
._2_c00359{margin-left:-19.136000pt;}
._0_c00359{margin-left:-17.848000pt;}
._16_c00359{margin-left:-14.720000pt;}
._13_c00359{margin-left:-13.309333pt;}
._c_c00359{margin-left:-11.960000pt;}
._3_c00359{margin-left:-10.120000pt;}
._1_c00359{margin-left:-8.648000pt;}
._b_c00359{margin-left:-7.605333pt;}
._12_c00359{margin-left:-6.378667pt;}
._e_c00359{margin-left:-4.600000pt;}
._f_c00359{margin-left:-3.557333pt;}
._7_c00359{margin-left:-2.453333pt;}
._6_c00359{margin-left:-1.104000pt;}
._a_c00359{width:1.165333pt;}
._9_c00359{width:2.085333pt;}
._8_c00359{width:3.066667pt;}
._11_c00359{width:4.170667pt;}
._d_c00359{width:5.949333pt;}
._10_c00359{width:6.992000pt;}
._4_c00359{width:8.586667pt;}
._18_c00359{width:9.506667pt;}
._22_c00359{width:10.688000pt;}
._15_c00359{width:11.776000pt;}
._14_c00359{width:12.757333pt;}
._1d_c00359{width:14.352000pt;}
._1c_c00359{width:15.912000pt;}
._20_c00359{width:16.901333pt;}
._17_c00359{width:17.909333pt;}
._21_c00359{width:19.477333pt;}
._1f_c00359{width:20.669333pt;}
._1e_c00359{width:23.490667pt;}
._1b_c00359{width:26.802667pt;}
._1a_c00359{width:31.464000pt;}
._19_c00359{width:33.181333pt;}
._27_c00359{width:59.842667pt;}
._28_c00359{width:65.226667pt;}
._23_c00359{width:77.829333pt;}
._25_c00359{width:197.968000pt;}
._26_c00359{width:212.176000pt;}
._24_c00359{width:225.818667pt;}
._5_c00359{width:337.424000pt;}
.fs1_c00359{font-size:34.666667pt;}
.fs4_c00359{font-size:42.666667pt;}
.fs3_c00359{font-size:50.666667pt;}
.fs2_c00359{font-size:58.666667pt;}
.fs0_c00359{font-size:61.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y1c_c00359{bottom:2.760000pt;}
.y1b_c00359{bottom:6.425206pt;}
.y1a_c00359{bottom:58.293333pt;}
.y19_c00359{bottom:88.293333pt;}
.y18_c00359{bottom:102.560000pt;}
.y17_c00359{bottom:124.160000pt;}
.y16_c00359{bottom:147.093333pt;}
.y15_c00359{bottom:169.226667pt;}
.y14_c00359{bottom:191.360000pt;}
.y13_c00359{bottom:213.626667pt;}
.y12_c00359{bottom:235.893333pt;}
.y11_c00359{bottom:257.760000pt;}
.y10_c00359{bottom:279.626667pt;}
.yf_c00359{bottom:300.560000pt;}
.ye_c00359{bottom:322.826667pt;}
.yd_c00359{bottom:344.693333pt;}
.yc_c00359{bottom:388.293333pt;}
.yb_c00359{bottom:432.293333pt;}
.ya_c00359{bottom:466.293333pt;}
.y9_c00359{bottom:481.760000pt;}
.y8_c00359{bottom:521.360000pt;}
.y7_c00359{bottom:565.493333pt;}
.y6_c00359{bottom:587.493333pt;}
.y5_c00359{bottom:609.893333pt;}
.y4_c00359{bottom:631.760000pt;}
.y3_c00359{bottom:654.026667pt;}
.y2_c00359{bottom:676.160000pt;}
.y1_c00359{bottom:697.893333pt;}
.h6_c00359{height:11.733399pt;}
.h7_c00359{height:38.937500pt;}
.h4_c00359{height:40.574219pt;}
.h3_c00359{height:43.891927pt;}
.h5_c00359{height:59.300781pt;}
.h2_c00359{height:71.785156pt;}
.h1_c00359{height:77.654948pt;}
.h0_c00359{height:728.666667pt;}
.w2_c00359{width:93.222667pt;}
.w1_c00359{width:503.333333pt;}
.w0_c00359{width:503.533333pt;}
.x0_c00359{left:0.000000pt;}
.xb_c00359{left:25.600000pt;}
.xe_c00359{left:28.000000pt;}
.xd_c00359{left:40.533333pt;}
.xc_c00359{left:65.733333pt;}
.x2_c00359{left:81.333333pt;}
.x9_c00359{left:82.266667pt;}
.xa_c00359{left:83.200000pt;}
.x1_c00359{left:96.400000pt;}
.x5_c00359{left:97.466667pt;}
.x6_c00359{left:103.200000pt;}
.x8_c00359{left:104.400000pt;}
.x3_c00359{left:109.200000pt;}
.x4_c00359{left:171.600000pt;}
.x7_c00359{left:201.200000pt;}
.x10_c00359{left:208.934896pt;}
.xf_c00359{left:444.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_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_487089d8ba74885e858b6559.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_8cf8194fb95fcb76d6fb7df9.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_38bc2e22337429d841129e1c.woff2')format("woff");}.ff3_c00360{font-family:ff3_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:ff4_c00360;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00360{font-family:ff5_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);}
.v1_c00360{vertical-align:-97.200000px;}
.v0_c00360{vertical-align:0.000000px;}
.ls4_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:4.272000px;}
.ls2_c00360{letter-spacing:4.800000px;}
.ls3_c00360{letter-spacing:6.000000px;}
.ls1_c00360{letter-spacing:29.571000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:-56.235000px;}
.ws4_c00360{word-spacing:-22.629000px;}
.ws0_c00360{word-spacing:-16.629000px;}
.ws5_c00360{word-spacing:0.000000px;}
.ws2_c00360{word-spacing:6.141000px;}
.ws3_c00360{word-spacing:372.141000px;}
._28_c00360{margin-left:-21.252000px;}
._1d_c00360{margin-left:-18.147000px;}
._1f_c00360{margin-left:-16.974000px;}
._14_c00360{margin-left:-15.663000px;}
._20_c00360{margin-left:-14.628000px;}
._9_c00360{margin-left:-12.933000px;}
._23_c00360{margin-left:-11.307000px;}
._0_c00360{margin-left:-9.660000px;}
._17_c00360{margin-left:-8.142000px;}
._5_c00360{margin-left:-6.417000px;}
._4_c00360{margin-left:-5.175000px;}
._6_c00360{margin-left:-3.795000px;}
._8_c00360{margin-left:-2.208000px;}
._13_c00360{margin-left:-1.104000px;}
._2_c00360{width:1.794000px;}
._f_c00360{width:3.588000px;}
._a_c00360{width:4.692000px;}
._e_c00360{width:6.141000px;}
._11_c00360{width:7.314000px;}
._d_c00360{width:8.349000px;}
._c_c00360{width:10.074000px;}
._10_c00360{width:11.730000px;}
._3_c00360{width:13.938000px;}
._1b_c00360{width:15.042000px;}
._22_c00360{width:16.137000px;}
._b_c00360{width:17.802000px;}
._1a_c00360{width:19.803000px;}
._16_c00360{width:22.218000px;}
._24_c00360{width:24.219000px;}
._2d_c00360{width:26.289000px;}
._2c_c00360{width:28.704000px;}
._25_c00360{width:31.809000px;}
._2a_c00360{width:33.603000px;}
._29_c00360{width:36.156000px;}
._18_c00360{width:37.329000px;}
._12_c00360{width:82.110000px;}
._1e_c00360{width:97.425000px;}
._1c_c00360{width:124.998000px;}
._21_c00360{width:151.248000px;}
._1_c00360{width:176.001000px;}
._19_c00360{width:180.642000px;}
._27_c00360{width:191.682000px;}
._15_c00360{width:225.768000px;}
._26_c00360{width:263.649000px;}
._7_c00360{width:420.189000px;}
._2b_c00360{width:752.376000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(128,128,128);}
.fc0_c00360{color:rgb(0,0,0);}
.fs3_c00360{font-size:48.000000px;}
.fs1_c00360{font-size:55.200000px;}
.fs2_c00360{font-size:66.000000px;}
.fs0_c00360{font-size:69.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1e_c00360{bottom:3.105000px;}
.y1d_c00360{bottom:7.228357px;}
.y1c_c00360{bottom:63.480000px;}
.y1b_c00360{bottom:87.030000px;}
.y1a_c00360{bottom:113.130000px;}
.y19_c00360{bottom:137.430000px;}
.y18_c00360{bottom:162.330000px;}
.y17_c00360{bottom:187.680000px;}
.y16_c00360{bottom:212.730000px;}
.y15_c00360{bottom:237.930000px;}
.y14_c00360{bottom:262.680000px;}
.y13_c00360{bottom:287.280000px;}
.y12_c00360{bottom:312.480000px;}
.y11_c00360{bottom:336.930000px;}
.y10_c00360{bottom:361.230000px;}
.yf_c00360{bottom:386.130000px;}
.ye_c00360{bottom:459.780000px;}
.yd_c00360{bottom:485.730000px;}
.yc_c00360{bottom:510.330000px;}
.yb_c00360{bottom:534.630000px;}
.ya_c00360{bottom:559.230000px;}
.y9_c00360{bottom:583.830000px;}
.y8_c00360{bottom:608.280000px;}
.y7_c00360{bottom:633.780000px;}
.y6_c00360{bottom:658.230000px;}
.y5_c00360{bottom:683.130000px;}
.y4_c00360{bottom:708.030000px;}
.y3_c00360{bottom:732.480000px;}
.y2_c00360{bottom:757.380000px;}
.y1_c00360{bottom:782.280000px;}
.h4_c00360{height:13.200074px;}
.h5_c00360{height:43.804688px;}
.h3_c00360{height:80.758301px;}
.h2_c00360{height:87.361816px;}
.h0_c00360{height:822.450000px;}
.h1_c00360{height:822.750000px;}
.w2_c00360{width:104.875500px;}
.w0_c00360{width:575.625000px;}
.w1_c00360{width:576.000000px;}
.x0_c00360{left:0.000000px;}
.x3_c00360{left:37.050000px;}
.x2_c00360{left:38.100000px;}
.x4_c00360{left:39.450000px;}
.x5_c00360{left:40.800000px;}
.x7_c00360{left:41.850000px;}
.x8_c00360{left:43.200000px;}
.x6_c00360{left:65.850000px;}
.x1_c00360{left:155.700000px;}
.xa_c00360{left:239.626740px;}
.x9_c00360{left:436.950000px;}
@media print{
.v1_c00360{vertical-align:-86.400000pt;}
.v0_c00360{vertical-align:0.000000pt;}
.ls4_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:3.797333pt;}
.ls2_c00360{letter-spacing:4.266667pt;}
.ls3_c00360{letter-spacing:5.333333pt;}
.ls1_c00360{letter-spacing:26.285333pt;}
.ws1_c00360{word-spacing:-49.986667pt;}
.ws4_c00360{word-spacing:-20.114667pt;}
.ws0_c00360{word-spacing:-14.781333pt;}
.ws5_c00360{word-spacing:0.000000pt;}
.ws2_c00360{word-spacing:5.458667pt;}
.ws3_c00360{word-spacing:330.792000pt;}
._28_c00360{margin-left:-18.890667pt;}
._1d_c00360{margin-left:-16.130667pt;}
._1f_c00360{margin-left:-15.088000pt;}
._14_c00360{margin-left:-13.922667pt;}
._20_c00360{margin-left:-13.002667pt;}
._9_c00360{margin-left:-11.496000pt;}
._23_c00360{margin-left:-10.050667pt;}
._0_c00360{margin-left:-8.586667pt;}
._17_c00360{margin-left:-7.237333pt;}
._5_c00360{margin-left:-5.704000pt;}
._4_c00360{margin-left:-4.600000pt;}
._6_c00360{margin-left:-3.373333pt;}
._8_c00360{margin-left:-1.962667pt;}
._13_c00360{margin-left:-0.981333pt;}
._2_c00360{width:1.594667pt;}
._f_c00360{width:3.189333pt;}
._a_c00360{width:4.170667pt;}
._e_c00360{width:5.458667pt;}
._11_c00360{width:6.501333pt;}
._d_c00360{width:7.421333pt;}
._c_c00360{width:8.954667pt;}
._10_c00360{width:10.426667pt;}
._3_c00360{width:12.389333pt;}
._1b_c00360{width:13.370667pt;}
._22_c00360{width:14.344000pt;}
._b_c00360{width:15.824000pt;}
._1a_c00360{width:17.602667pt;}
._16_c00360{width:19.749333pt;}
._24_c00360{width:21.528000pt;}
._2d_c00360{width:23.368000pt;}
._2c_c00360{width:25.514667pt;}
._25_c00360{width:28.274667pt;}
._2a_c00360{width:29.869333pt;}
._29_c00360{width:32.138667pt;}
._18_c00360{width:33.181333pt;}
._12_c00360{width:72.986667pt;}
._1e_c00360{width:86.600000pt;}
._1c_c00360{width:111.109333pt;}
._21_c00360{width:134.442667pt;}
._1_c00360{width:156.445333pt;}
._19_c00360{width:160.570667pt;}
._27_c00360{width:170.384000pt;}
._15_c00360{width:200.682667pt;}
._26_c00360{width:234.354667pt;}
._7_c00360{width:373.501333pt;}
._2b_c00360{width:668.778667pt;}
.fs3_c00360{font-size:42.666667pt;}
.fs1_c00360{font-size:49.066667pt;}
.fs2_c00360{font-size:58.666667pt;}
.fs0_c00360{font-size:61.333333pt;}
.y0_c00360{bottom:0.000000pt;}
.y1e_c00360{bottom:2.760000pt;}
.y1d_c00360{bottom:6.425206pt;}
.y1c_c00360{bottom:56.426667pt;}
.y1b_c00360{bottom:77.360000pt;}
.y1a_c00360{bottom:100.560000pt;}
.y19_c00360{bottom:122.160000pt;}
.y18_c00360{bottom:144.293333pt;}
.y17_c00360{bottom:166.826667pt;}
.y16_c00360{bottom:189.093333pt;}
.y15_c00360{bottom:211.493333pt;}
.y14_c00360{bottom:233.493333pt;}
.y13_c00360{bottom:255.360000pt;}
.y12_c00360{bottom:277.760000pt;}
.y11_c00360{bottom:299.493333pt;}
.y10_c00360{bottom:321.093333pt;}
.yf_c00360{bottom:343.226667pt;}
.ye_c00360{bottom:408.693333pt;}
.yd_c00360{bottom:431.760000pt;}
.yc_c00360{bottom:453.626667pt;}
.yb_c00360{bottom:475.226667pt;}
.ya_c00360{bottom:497.093333pt;}
.y9_c00360{bottom:518.960000pt;}
.y8_c00360{bottom:540.693333pt;}
.y7_c00360{bottom:563.360000pt;}
.y6_c00360{bottom:585.093333pt;}
.y5_c00360{bottom:607.226667pt;}
.y4_c00360{bottom:629.360000pt;}
.y3_c00360{bottom:651.093333pt;}
.y2_c00360{bottom:673.226667pt;}
.y1_c00360{bottom:695.360000pt;}
.h4_c00360{height:11.733399pt;}
.h5_c00360{height:38.937500pt;}
.h3_c00360{height:71.785156pt;}
.h2_c00360{height:77.654948pt;}
.h0_c00360{height:731.066667pt;}
.h1_c00360{height:731.333333pt;}
.w2_c00360{width:93.222667pt;}
.w0_c00360{width:511.666667pt;}
.w1_c00360{width:512.000000pt;}
.x0_c00360{left:0.000000pt;}
.x3_c00360{left:32.933333pt;}
.x2_c00360{left:33.866667pt;}
.x4_c00360{left:35.066667pt;}
.x5_c00360{left:36.266667pt;}
.x7_c00360{left:37.200000pt;}
.x8_c00360{left:38.400000pt;}
.x6_c00360{left:58.533333pt;}
.x1_c00360{left:138.400000pt;}
.xa_c00360{left:213.001546pt;}
.x9_c00360{left:388.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_602f77b1380e1de54c7ee1d9.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.568848;font-style:normal;font-weight:normal;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_8b99531761c01bf99fef0598.woff2')format("woff");}.ff2_c00361{font-family:ff2_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:ff3_c00361;src:url('chunks/assets/font_9aabe0743e2c29fb334053d0.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;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_c00361;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;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_c00361;src:url('chunks/assets/font_f6d8fa841fd5fb55b36c1c69.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_bf357a74c431f14a8fe238f1.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00361;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff7_c00361{font-family:ff7_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:ff8_c00361;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00361{font-family:ff8_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;}
.ls3_c00361{letter-spacing:0.000000px;}
.ls4_c00361{letter-spacing:3.000000px;}
.ls2_c00361{letter-spacing:6.000000px;}
.ls1_c00361{letter-spacing:25.800000px;}
.ls0_c00361{letter-spacing:33.171000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-38.136000px;}
.ws4_c00361{word-spacing:-18.075000px;}
.ws1_c00361{word-spacing:-16.629000px;}
.ws2_c00361{word-spacing:-0.207000px;}
.ws5_c00361{word-spacing:0.000000px;}
.ws3_c00361{word-spacing:5.340000px;}
._28_c00361{margin-left:-25.668000px;}
._20_c00361{margin-left:-21.114000px;}
._17_c00361{margin-left:-16.836000px;}
._24_c00361{margin-left:-15.111000px;}
._1_c00361{margin-left:-13.938000px;}
._2d_c00361{margin-left:-12.420000px;}
._19_c00361{margin-left:-11.385000px;}
._14_c00361{margin-left:-9.867000px;}
._1f_c00361{margin-left:-8.763000px;}
._7_c00361{margin-left:-6.762000px;}
._c_c00361{margin-left:-5.037000px;}
._0_c00361{margin-left:-3.864000px;}
._6_c00361{margin-left:-2.622000px;}
._3_c00361{margin-left:-1.587000px;}
._e_c00361{width:1.104000px;}
._5_c00361{width:2.346000px;}
._4_c00361{width:3.381000px;}
._b_c00361{width:4.692000px;}
._8_c00361{width:6.072000px;}
._9_c00361{width:7.176000px;}
._2f_c00361{width:8.253000px;}
._a_c00361{width:9.453000px;}
._1c_c00361{width:10.557000px;}
._10_c00361{width:11.592000px;}
._2c_c00361{width:12.696000px;}
._d_c00361{width:14.076000px;}
._18_c00361{width:15.111000px;}
._2b_c00361{width:16.974000px;}
._f_c00361{width:18.699000px;}
._26_c00361{width:20.631000px;}
._1e_c00361{width:21.666000px;}
._16_c00361{width:23.253000px;}
._13_c00361{width:24.702000px;}
._21_c00361{width:25.815000px;}
._23_c00361{width:27.324000px;}
._29_c00361{width:29.220000px;}
._22_c00361{width:30.360000px;}
._12_c00361{width:34.500000px;}
._30_c00361{width:38.262000px;}
._1d_c00361{width:39.537000px;}
._27_c00361{width:47.307000px;}
._31_c00361{width:49.578000px;}
._2a_c00361{width:59.112000px;}
._11_c00361{width:60.204000px;}
._1b_c00361{width:86.319000px;}
._25_c00361{width:98.325000px;}
._2e_c00361{width:154.383000px;}
._1a_c00361{width:209.139000px;}
._15_c00361{width:405.444000px;}
._2_c00361{width:463.896000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(128,128,128);}
.fc0_c00361{color:rgb(0,0,0);}
.fs3_c00361{font-size:45.000000px;}
.fs7_c00361{font-size:48.000000px;}
.fs2_c00361{font-size:57.000000px;}
.fs4_c00361{font-size:60.000000px;}
.fs5_c00361{font-size:66.000000px;}
.fs0_c00361{font-size:69.000000px;}
.fs6_c00361{font-size:75.000000px;}
.fs1_c00361{font-size:84.000000px;}
.y0_c00361{bottom:0.000000px;}
.y1e_c00361{bottom:3.105000px;}
.y1d_c00361{bottom:7.228363px;}
.y1c_c00361{bottom:65.550000px;}
.y1b_c00361{bottom:90.150000px;}
.y1a_c00361{bottom:115.200000px;}
.y19_c00361{bottom:141.750000px;}
.y18_c00361{bottom:165.150000px;}
.y17_c00361{bottom:215.700000px;}
.y16_c00361{bottom:266.700000px;}
.y15_c00361{bottom:290.700000px;}
.y14_c00361{bottom:315.600000px;}
.y13_c00361{bottom:339.900000px;}
.y12_c00361{bottom:365.250000px;}
.y11_c00361{bottom:389.100000px;}
.y10_c00361{bottom:413.550000px;}
.yf_c00361{bottom:439.050000px;}
.ye_c00361{bottom:463.350000px;}
.yd_c00361{bottom:488.700000px;}
.yc_c00361{bottom:513.900000px;}
.yb_c00361{bottom:538.650000px;}
.ya_c00361{bottom:563.700000px;}
.y9_c00361{bottom:588.300000px;}
.y8_c00361{bottom:612.900000px;}
.y7_c00361{bottom:637.950000px;}
.y6_c00361{bottom:663.150000px;}
.y5_c00361{bottom:687.150000px;}
.y4_c00361{bottom:711.900000px;}
.y3_c00361{bottom:736.500000px;}
.y2_c00361{bottom:761.700000px;}
.y1_c00361{bottom:786.450000px;}
.h6_c00361{height:13.200074px;}
.h7_c00361{height:43.804688px;}
.h3_c00361{height:80.758301px;}
.h2_c00361{height:87.361816px;}
.h4_c00361{height:91.056000px;}
.h5_c00361{height:94.958496px;}
.h1_c00361{height:827.250000px;}
.h0_c00361{height:827.550000px;}
.w2_c00361{width:104.875500px;}
.w0_c00361{width:572.100000px;}
.w1_c00361{width:572.250000px;}
.x0_c00361{left:0.000000px;}
.xa_c00361{left:31.500000px;}
.x8_c00361{left:35.400000px;}
.x9_c00361{left:50.250000px;}
.x4_c00361{left:51.600000px;}
.x5_c00361{left:74.550000px;}
.xd_c00361{left:92.850000px;}
.x3_c00361{left:94.800000px;}
.x7_c00361{left:95.850000px;}
.xe_c00361{left:96.900000px;}
.x2_c00361{left:98.850000px;}
.x6_c00361{left:100.200000px;}
.x1_c00361{left:112.950000px;}
.xc_c00361{left:121.800000px;}
.xb_c00361{left:144.750000px;}
.x10_c00361{left:237.864258px;}
.xf_c00361{left:528.300000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls3_c00361{letter-spacing:0.000000pt;}
.ls4_c00361{letter-spacing:2.666667pt;}
.ls2_c00361{letter-spacing:5.333333pt;}
.ls1_c00361{letter-spacing:22.933333pt;}
.ls0_c00361{letter-spacing:29.485333pt;}
.ws0_c00361{word-spacing:-33.898667pt;}
.ws4_c00361{word-spacing:-16.066667pt;}
.ws1_c00361{word-spacing:-14.781333pt;}
.ws2_c00361{word-spacing:-0.184000pt;}
.ws5_c00361{word-spacing:0.000000pt;}
.ws3_c00361{word-spacing:4.746667pt;}
._28_c00361{margin-left:-22.816000pt;}
._20_c00361{margin-left:-18.768000pt;}
._17_c00361{margin-left:-14.965333pt;}
._24_c00361{margin-left:-13.432000pt;}
._1_c00361{margin-left:-12.389333pt;}
._2d_c00361{margin-left:-11.040000pt;}
._19_c00361{margin-left:-10.120000pt;}
._14_c00361{margin-left:-8.770667pt;}
._1f_c00361{margin-left:-7.789333pt;}
._7_c00361{margin-left:-6.010667pt;}
._c_c00361{margin-left:-4.477333pt;}
._0_c00361{margin-left:-3.434667pt;}
._6_c00361{margin-left:-2.330667pt;}
._3_c00361{margin-left:-1.410667pt;}
._e_c00361{width:0.981333pt;}
._5_c00361{width:2.085333pt;}
._4_c00361{width:3.005333pt;}
._b_c00361{width:4.170667pt;}
._8_c00361{width:5.397333pt;}
._9_c00361{width:6.378667pt;}
._2f_c00361{width:7.336000pt;}
._a_c00361{width:8.402667pt;}
._1c_c00361{width:9.384000pt;}
._10_c00361{width:10.304000pt;}
._2c_c00361{width:11.285333pt;}
._d_c00361{width:12.512000pt;}
._18_c00361{width:13.432000pt;}
._2b_c00361{width:15.088000pt;}
._f_c00361{width:16.621333pt;}
._26_c00361{width:18.338667pt;}
._1e_c00361{width:19.258667pt;}
._16_c00361{width:20.669333pt;}
._13_c00361{width:21.957333pt;}
._21_c00361{width:22.946667pt;}
._23_c00361{width:24.288000pt;}
._29_c00361{width:25.973333pt;}
._22_c00361{width:26.986667pt;}
._12_c00361{width:30.666667pt;}
._30_c00361{width:34.010667pt;}
._1d_c00361{width:35.144000pt;}
._27_c00361{width:42.050667pt;}
._31_c00361{width:44.069333pt;}
._2a_c00361{width:52.544000pt;}
._11_c00361{width:53.514667pt;}
._1b_c00361{width:76.728000pt;}
._25_c00361{width:87.400000pt;}
._2e_c00361{width:137.229333pt;}
._1a_c00361{width:185.901333pt;}
._15_c00361{width:360.394667pt;}
._2_c00361{width:412.352000pt;}
.fs3_c00361{font-size:40.000000pt;}
.fs7_c00361{font-size:42.666667pt;}
.fs2_c00361{font-size:50.666667pt;}
.fs4_c00361{font-size:53.333333pt;}
.fs5_c00361{font-size:58.666667pt;}
.fs0_c00361{font-size:61.333333pt;}
.fs6_c00361{font-size:66.666667pt;}
.fs1_c00361{font-size:74.666667pt;}
.y0_c00361{bottom:0.000000pt;}
.y1e_c00361{bottom:2.760000pt;}
.y1d_c00361{bottom:6.425212pt;}
.y1c_c00361{bottom:58.266667pt;}
.y1b_c00361{bottom:80.133333pt;}
.y1a_c00361{bottom:102.400000pt;}
.y19_c00361{bottom:126.000000pt;}
.y18_c00361{bottom:146.800000pt;}
.y17_c00361{bottom:191.733333pt;}
.y16_c00361{bottom:237.066667pt;}
.y15_c00361{bottom:258.400000pt;}
.y14_c00361{bottom:280.533333pt;}
.y13_c00361{bottom:302.133333pt;}
.y12_c00361{bottom:324.666667pt;}
.y11_c00361{bottom:345.866667pt;}
.y10_c00361{bottom:367.600000pt;}
.yf_c00361{bottom:390.266667pt;}
.ye_c00361{bottom:411.866667pt;}
.yd_c00361{bottom:434.400000pt;}
.yc_c00361{bottom:456.800000pt;}
.yb_c00361{bottom:478.800000pt;}
.ya_c00361{bottom:501.066667pt;}
.y9_c00361{bottom:522.933333pt;}
.y8_c00361{bottom:544.800000pt;}
.y7_c00361{bottom:567.066667pt;}
.y6_c00361{bottom:589.466667pt;}
.y5_c00361{bottom:610.800000pt;}
.y4_c00361{bottom:632.800000pt;}
.y3_c00361{bottom:654.666667pt;}
.y2_c00361{bottom:677.066667pt;}
.y1_c00361{bottom:699.066667pt;}
.h6_c00361{height:11.733399pt;}
.h7_c00361{height:38.937500pt;}
.h3_c00361{height:71.785156pt;}
.h2_c00361{height:77.654948pt;}
.h4_c00361{height:80.938667pt;}
.h5_c00361{height:84.407552pt;}
.h1_c00361{height:735.333333pt;}
.h0_c00361{height:735.600000pt;}
.w2_c00361{width:93.222667pt;}
.w0_c00361{width:508.533333pt;}
.w1_c00361{width:508.666667pt;}
.x0_c00361{left:0.000000pt;}
.xa_c00361{left:28.000000pt;}
.x8_c00361{left:31.466667pt;}
.x9_c00361{left:44.666667pt;}
.x4_c00361{left:45.866667pt;}
.x5_c00361{left:66.266667pt;}
.xd_c00361{left:82.533333pt;}
.x3_c00361{left:84.266667pt;}
.x7_c00361{left:85.200000pt;}
.xe_c00361{left:86.133333pt;}
.x2_c00361{left:87.866667pt;}
.x6_c00361{left:89.066667pt;}
.x1_c00361{left:100.400000pt;}
.xc_c00361{left:108.266667pt;}
.xb_c00361{left:128.666667pt;}
.x10_c00361{left:211.434896pt;}
.xf_c00361{left:469.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_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_aeb0f12ca203c50ab351abec.woff2')format("woff");}.ff1_c00362{font-family:ff1_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:ff2_c00362;src:url('chunks/assets/font_7e8214d4b687baa9998e59fb.woff2')format("woff");}.ff2_c00362{font-family:ff2_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:ff3_c00362;src:url('chunks/assets/font_7180f0e882fc8aec699fc917.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00362{font-family:ff4_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;}
.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;}
.ls1_c00362{letter-spacing:0.000000px;}
.ls3_c00362{letter-spacing:3.000000px;}
.ls2_c00362{letter-spacing:6.000000px;}
.ls0_c00362{letter-spacing:19.953000px;}
.ls4_c00362{letter-spacing:51.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00362{word-spacing:-67.629000px;}
.ws1_c00362{word-spacing:-47.022000px;}
.ws0_c00362{word-spacing:-16.629000px;}
.ws3_c00362{word-spacing:0.000000px;}
._1e_c00362{margin-left:-23.805000px;}
._1d_c00362{margin-left:-21.942000px;}
._1c_c00362{margin-left:-20.052000px;}
._21_c00362{margin-left:-17.250000px;}
._10_c00362{margin-left:-15.870000px;}
._1b_c00362{margin-left:-13.455000px;}
._f_c00362{margin-left:-12.282000px;}
._d_c00362{margin-left:-10.350000px;}
._5_c00362{margin-left:-9.039000px;}
._16_c00362{margin-left:-7.866000px;}
._3_c00362{margin-left:-6.348000px;}
._4_c00362{margin-left:-5.313000px;}
._14_c00362{margin-left:-4.209000px;}
._2_c00362{margin-left:-2.967000px;}
._6_c00362{margin-left:-1.863000px;}
._19_c00362{width:1.173000px;}
._c_c00362{width:2.277000px;}
._9_c00362{width:3.381000px;}
._8_c00362{width:4.485000px;}
._1_c00362{width:5.865000px;}
._0_c00362{width:7.521000px;}
._18_c00362{width:8.556000px;}
._e_c00362{width:10.074000px;}
._13_c00362{width:12.075000px;}
._b_c00362{width:13.386000px;}
._a_c00362{width:14.835000px;}
._12_c00362{width:16.077000px;}
._11_c00362{width:17.733000px;}
._15_c00362{width:19.251000px;}
._27_c00362{width:20.976000px;}
._25_c00362{width:23.598000px;}
._23_c00362{width:27.609000px;}
._28_c00362{width:31.740000px;}
._22_c00362{width:33.159000px;}
._26_c00362{width:53.289000px;}
._17_c00362{width:92.508000px;}
._20_c00362{width:96.939000px;}
._1a_c00362{width:99.429000px;}
._1f_c00362{width:151.110000px;}
._29_c00362{width:436.122000px;}
._7_c00362{width:487.692000px;}
._24_c00362{width:1342.044000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(128,128,128);}
.fc0_c00362{color:rgb(0,0,0);}
.fs2_c00362{font-size:48.000000px;}
.fs1_c00362{font-size:66.000000px;}
.fs0_c00362{font-size:69.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1e_c00362{bottom:3.105000px;}
.y1d_c00362{bottom:7.228371px;}
.y1c_c00362{bottom:62.415000px;}
.y1b_c00362{bottom:87.465000px;}
.y1a_c00362{bottom:113.115000px;}
.y19_c00362{bottom:136.365000px;}
.y18_c00362{bottom:162.465000px;}
.y17_c00362{bottom:211.365000px;}
.y16_c00362{bottom:264.915000px;}
.y15_c00362{bottom:286.515000px;}
.y14_c00362{bottom:312.315000px;}
.y13_c00362{bottom:336.915000px;}
.y12_c00362{bottom:360.765000px;}
.y11_c00362{bottom:385.515000px;}
.y10_c00362{bottom:409.815000px;}
.yf_c00362{bottom:436.065000px;}
.ye_c00362{bottom:460.815000px;}
.yd_c00362{bottom:486.015000px;}
.yc_c00362{bottom:509.865000px;}
.yb_c00362{bottom:534.615000px;}
.ya_c00362{bottom:559.365000px;}
.y9_c00362{bottom:583.965000px;}
.y8_c00362{bottom:609.315000px;}
.y7_c00362{bottom:634.215000px;}
.y6_c00362{bottom:658.815000px;}
.y5_c00362{bottom:683.115000px;}
.y4_c00362{bottom:708.765000px;}
.y3_c00362{bottom:732.765000px;}
.y2_c00362{bottom:758.115000px;}
.y1_c00362{bottom:781.965000px;}
.h4_c00362{height:13.200074px;}
.h5_c00362{height:43.804688px;}
.h2_c00362{height:80.758301px;}
.h3_c00362{height:87.361816px;}
.h1_c00362{height:831.000000px;}
.h0_c00362{height:831.075000px;}
.w2_c00362{width:104.875500px;}
.w0_c00362{width:582.375000px;}
.w1_c00362{width:582.750000px;}
.x0_c00362{left:0.000000px;}
.x7_c00362{left:33.750000px;}
.x3_c00362{left:34.800000px;}
.x5_c00362{left:36.000000px;}
.x2_c00362{left:37.500000px;}
.x4_c00362{left:39.750000px;}
.x6_c00362{left:163.350000px;}
.x1_c00362{left:200.850000px;}
.x9_c00362{left:243.001740px;}
.x8_c00362{left:318.300000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls1_c00362{letter-spacing:0.000000pt;}
.ls3_c00362{letter-spacing:2.666667pt;}
.ls2_c00362{letter-spacing:5.333333pt;}
.ls0_c00362{letter-spacing:17.736000pt;}
.ls4_c00362{letter-spacing:45.333333pt;}
.ws2_c00362{word-spacing:-60.114667pt;}
.ws1_c00362{word-spacing:-41.797333pt;}
.ws0_c00362{word-spacing:-14.781333pt;}
.ws3_c00362{word-spacing:0.000000pt;}
._1e_c00362{margin-left:-21.160000pt;}
._1d_c00362{margin-left:-19.504000pt;}
._1c_c00362{margin-left:-17.824000pt;}
._21_c00362{margin-left:-15.333333pt;}
._10_c00362{margin-left:-14.106667pt;}
._1b_c00362{margin-left:-11.960000pt;}
._f_c00362{margin-left:-10.917333pt;}
._d_c00362{margin-left:-9.200000pt;}
._5_c00362{margin-left:-8.034667pt;}
._16_c00362{margin-left:-6.992000pt;}
._3_c00362{margin-left:-5.642667pt;}
._4_c00362{margin-left:-4.722667pt;}
._14_c00362{margin-left:-3.741333pt;}
._2_c00362{margin-left:-2.637333pt;}
._6_c00362{margin-left:-1.656000pt;}
._19_c00362{width:1.042667pt;}
._c_c00362{width:2.024000pt;}
._9_c00362{width:3.005333pt;}
._8_c00362{width:3.986667pt;}
._1_c00362{width:5.213333pt;}
._0_c00362{width:6.685333pt;}
._18_c00362{width:7.605333pt;}
._e_c00362{width:8.954667pt;}
._13_c00362{width:10.733333pt;}
._b_c00362{width:11.898667pt;}
._a_c00362{width:13.186667pt;}
._12_c00362{width:14.290667pt;}
._11_c00362{width:15.762667pt;}
._15_c00362{width:17.112000pt;}
._27_c00362{width:18.645333pt;}
._25_c00362{width:20.976000pt;}
._23_c00362{width:24.541333pt;}
._28_c00362{width:28.213333pt;}
._22_c00362{width:29.474667pt;}
._26_c00362{width:47.368000pt;}
._17_c00362{width:82.229333pt;}
._20_c00362{width:86.168000pt;}
._1a_c00362{width:88.381333pt;}
._1f_c00362{width:134.320000pt;}
._29_c00362{width:387.664000pt;}
._7_c00362{width:433.504000pt;}
._24_c00362{width:1192.928000pt;}
.fs2_c00362{font-size:42.666667pt;}
.fs1_c00362{font-size:58.666667pt;}
.fs0_c00362{font-size:61.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y1e_c00362{bottom:2.760000pt;}
.y1d_c00362{bottom:6.425219pt;}
.y1c_c00362{bottom:55.480000pt;}
.y1b_c00362{bottom:77.746667pt;}
.y1a_c00362{bottom:100.546667pt;}
.y19_c00362{bottom:121.213333pt;}
.y18_c00362{bottom:144.413333pt;}
.y17_c00362{bottom:187.880000pt;}
.y16_c00362{bottom:235.480000pt;}
.y15_c00362{bottom:254.680000pt;}
.y14_c00362{bottom:277.613333pt;}
.y13_c00362{bottom:299.480000pt;}
.y12_c00362{bottom:320.680000pt;}
.y11_c00362{bottom:342.680000pt;}
.y10_c00362{bottom:364.280000pt;}
.yf_c00362{bottom:387.613333pt;}
.ye_c00362{bottom:409.613333pt;}
.yd_c00362{bottom:432.013333pt;}
.yc_c00362{bottom:453.213333pt;}
.yb_c00362{bottom:475.213333pt;}
.ya_c00362{bottom:497.213333pt;}
.y9_c00362{bottom:519.080000pt;}
.y8_c00362{bottom:541.613333pt;}
.y7_c00362{bottom:563.746667pt;}
.y6_c00362{bottom:585.613333pt;}
.y5_c00362{bottom:607.213333pt;}
.y4_c00362{bottom:630.013333pt;}
.y3_c00362{bottom:651.346667pt;}
.y2_c00362{bottom:673.880000pt;}
.y1_c00362{bottom:695.080000pt;}
.h4_c00362{height:11.733399pt;}
.h5_c00362{height:38.937500pt;}
.h2_c00362{height:71.785156pt;}
.h3_c00362{height:77.654948pt;}
.h1_c00362{height:738.666667pt;}
.h0_c00362{height:738.733333pt;}
.w2_c00362{width:93.222667pt;}
.w0_c00362{width:517.666667pt;}
.w1_c00362{width:518.000000pt;}
.x0_c00362{left:0.000000pt;}
.x7_c00362{left:30.000000pt;}
.x3_c00362{left:30.933333pt;}
.x5_c00362{left:32.000000pt;}
.x2_c00362{left:33.333333pt;}
.x4_c00362{left:35.333333pt;}
.x6_c00362{left:145.200000pt;}
.x1_c00362{left:178.533333pt;}
.x9_c00362{left:216.001546pt;}
.x8_c00362{left:282.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_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_6d696d38aa4cb787a515d8ba.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_13a58ece7d55797d780364ad.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_0b3299596b87b9e0685dded2.woff2')format("woff");}.ff3_c00363{font-family:ff3_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:ff4_c00363;src:url('chunks/assets/font_7032d0abf3391d8e5f464061.woff2')format("woff");}.ff4_c00363{font-family:ff4_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:ff5_c00363;src:url('chunks/assets/font_3fa0b595786bcb0206f8b89d.woff2')format("woff");}.ff5_c00363{font-family:ff5_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:ff6_c00363;src:url('chunks/assets/font_80d0171e61ec56a93c873ddc.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;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_c00363;src:url('chunks/assets/font_a77aea930440edd4b978a21c.woff2')format("woff");}.ff7_c00363{font-family:ff7_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:ff8_c00363;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c00363{font-family:ff8_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:ff9_c00363;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00363{font-family:ff9_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;}
.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;}
.ls7_c00363{letter-spacing:0.000000px;}
.ls3_c00363{letter-spacing:1.971000px;}
.ls2_c00363{letter-spacing:2.400000px;}
.ls5_c00363{letter-spacing:3.000000px;}
.ls6_c00363{letter-spacing:6.000000px;}
.ls0_c00363{letter-spacing:8.220000px;}
.ls9_c00363{letter-spacing:9.000000px;}
.ls4_c00363{letter-spacing:14.400000px;}
.ls8_c00363{letter-spacing:30.000000px;}
.ls1_c00363{letter-spacing:35.688000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:-52.500000px;}
.ws0_c00363{word-spacing:-44.988000px;}
.ws2_c00363{word-spacing:-18.954000px;}
.ws4_c00363{word-spacing:-16.629000px;}
.ws3_c00363{word-spacing:-3.093000px;}
.ws5_c00363{word-spacing:0.000000px;}
._2c_c00363{margin-left:-26.358000px;}
._f_c00363{margin-left:-21.873000px;}
._27_c00363{margin-left:-19.182000px;}
._15_c00363{margin-left:-17.181000px;}
._a_c00363{margin-left:-14.628000px;}
._1_c00363{margin-left:-12.696000px;}
._2_c00363{margin-left:-11.661000px;}
._13_c00363{margin-left:-10.568400px;}
._0_c00363{margin-left:-9.453000px;}
._e_c00363{margin-left:-7.521000px;}
._16_c00363{margin-left:-6.348000px;}
._b_c00363{margin-left:-5.106000px;}
._3_c00363{margin-left:-3.933000px;}
._4_c00363{margin-left:-2.139000px;}
._12_c00363{margin-left:-1.104000px;}
._19_c00363{width:1.011000px;}
._7_c00363{width:2.070000px;}
._8_c00363{width:3.312000px;}
._9_c00363{width:4.899000px;}
._11_c00363{width:6.900000px;}
._1d_c00363{width:8.697000px;}
._d_c00363{width:9.798000px;}
._30_c00363{width:10.971000px;}
._14_c00363{width:12.075000px;}
._29_c00363{width:13.466400px;}
._18_c00363{width:14.649000px;}
._1c_c00363{width:16.032000px;}
._1a_c00363{width:17.178000px;}
._c_c00363{width:18.216000px;}
._1b_c00363{width:19.425000px;}
._1f_c00363{width:20.691000px;}
._2e_c00363{width:22.083600px;}
._1e_c00363{width:24.477000px;}
._23_c00363{width:28.005000px;}
._21_c00363{width:29.055000px;}
._24_c00363{width:30.339000px;}
._22_c00363{width:31.905000px;}
._25_c00363{width:33.345000px;}
._20_c00363{width:43.182000px;}
._2a_c00363{width:47.094600px;}
._10_c00363{width:57.753000px;}
._2b_c00363{width:60.582000px;}
._17_c00363{width:63.885000px;}
._2f_c00363{width:88.473000px;}
._6_c00363{width:90.114000px;}
._2d_c00363{width:139.701000px;}
._5_c00363{width:370.677000px;}
._28_c00363{width:393.162000px;}
._26_c00363{width:418.455000px;}
.fc2_c00363{color:transparent;}
.fc1_c00363{color:rgb(128,128,128);}
.fc0_c00363{color:rgb(0,0,0);}
.fs3_c00363{font-size:45.000000px;}
.fsa_c00363{font-size:48.000000px;}
.fs6_c00363{font-size:51.000000px;}
.fs5_c00363{font-size:54.000000px;}
.fs1_c00363{font-size:55.200000px;}
.fs2_c00363{font-size:57.000000px;}
.fs4_c00363{font-size:66.000000px;}
.fs0_c00363{font-size:69.000000px;}
.fs9_c00363{font-size:81.000000px;}
.fs7_c00363{font-size:87.000000px;}
.fs8_c00363{font-size:96.000000px;}
.y0_c00363{bottom:0.000000px;}
.y1f_c00363{bottom:3.105000px;}
.y1e_c00363{bottom:7.228363px;}
.y1d_c00363{bottom:59.400000px;}
.y1c_c00363{bottom:83.700000px;}
.y1b_c00363{bottom:109.650000px;}
.y1a_c00363{bottom:135.000000px;}
.y19_c00363{bottom:159.600000px;}
.y18_c00363{bottom:184.950000px;}
.y17_c00363{bottom:209.700000px;}
.y16_c00363{bottom:235.200000px;}
.y15_c00363{bottom:259.500000px;}
.y14_c00363{bottom:285.150000px;}
.y13_c00363{bottom:309.600000px;}
.y12_c00363{bottom:333.900000px;}
.y11_c00363{bottom:358.800000px;}
.y9_c00363{bottom:370.950000px;}
.y10_c00363{bottom:384.450000px;}
.yf_c00363{bottom:409.800000px;}
.ye_c00363{bottom:434.700000px;}
.yd_c00363{bottom:484.650000px;}
.yc_c00363{bottom:549.000000px;}
.yb_c00363{bottom:566.700000px;}
.ya_c00363{bottom:584.250000px;}
.y8_c00363{bottom:619.950000px;}
.y6_c00363{bottom:657.000000px;}
.y5_c00363{bottom:682.350000px;}
.y4_c00363{bottom:707.700000px;}
.y7_c00363{bottom:722.850000px;}
.y3_c00363{bottom:732.750000px;}
.y2_c00363{bottom:757.650000px;}
.y1_c00363{bottom:782.250000px;}
.ha_c00363{height:13.200074px;}
.hb_c00363{height:43.804688px;}
.h5_c00363{height:44.143066px;}
.h7_c00363{height:68.370117px;}
.h4_c00363{height:72.168457px;}
.h6_c00363{height:77.247070px;}
.h3_c00363{height:80.758301px;}
.h2_c00363{height:87.361816px;}
.h8_c00363{height:96.750000px;}
.h9_c00363{height:102.555176px;}
.h1_c00363{height:827.250000px;}
.h0_c00363{height:827.550000px;}
.w2_c00363{width:104.875500px;}
.w0_c00363{width:572.100000px;}
.w1_c00363{width:572.250000px;}
.x0_c00363{left:0.000000px;}
.xe_c00363{left:39.600000px;}
.x6_c00363{left:41.100000px;}
.xd_c00363{left:54.300000px;}
.xf_c00363{left:57.150000px;}
.x3_c00363{left:81.600000px;}
.x5_c00363{left:100.200000px;}
.x8_c00363{left:101.250000px;}
.xc_c00363{left:102.600000px;}
.x9_c00363{left:104.550000px;}
.x4_c00363{left:105.600000px;}
.x2_c00363{left:107.700000px;}
.x1_c00363{left:122.550000px;}
.xb_c00363{left:126.300000px;}
.xa_c00363{left:150.150000px;}
.x11_c00363{left:237.864258px;}
.x7_c00363{left:246.600000px;}
.x10_c00363{left:522.900000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls7_c00363{letter-spacing:0.000000pt;}
.ls3_c00363{letter-spacing:1.752000pt;}
.ls2_c00363{letter-spacing:2.133333pt;}
.ls5_c00363{letter-spacing:2.666667pt;}
.ls6_c00363{letter-spacing:5.333333pt;}
.ls0_c00363{letter-spacing:7.306667pt;}
.ls9_c00363{letter-spacing:8.000000pt;}
.ls4_c00363{letter-spacing:12.800000pt;}
.ls8_c00363{letter-spacing:26.666667pt;}
.ls1_c00363{letter-spacing:31.722667pt;}
.ws1_c00363{word-spacing:-46.666667pt;}
.ws0_c00363{word-spacing:-39.989333pt;}
.ws2_c00363{word-spacing:-16.848000pt;}
.ws4_c00363{word-spacing:-14.781333pt;}
.ws3_c00363{word-spacing:-2.749333pt;}
.ws5_c00363{word-spacing:0.000000pt;}
._2c_c00363{margin-left:-23.429333pt;}
._f_c00363{margin-left:-19.442667pt;}
._27_c00363{margin-left:-17.050667pt;}
._15_c00363{margin-left:-15.272000pt;}
._a_c00363{margin-left:-13.002667pt;}
._1_c00363{margin-left:-11.285333pt;}
._2_c00363{margin-left:-10.365333pt;}
._13_c00363{margin-left:-9.394133pt;}
._0_c00363{margin-left:-8.402667pt;}
._e_c00363{margin-left:-6.685333pt;}
._16_c00363{margin-left:-5.642667pt;}
._b_c00363{margin-left:-4.538667pt;}
._3_c00363{margin-left:-3.496000pt;}
._4_c00363{margin-left:-1.901333pt;}
._12_c00363{margin-left:-0.981333pt;}
._19_c00363{width:0.898667pt;}
._7_c00363{width:1.840000pt;}
._8_c00363{width:2.944000pt;}
._9_c00363{width:4.354667pt;}
._11_c00363{width:6.133333pt;}
._1d_c00363{width:7.730667pt;}
._d_c00363{width:8.709333pt;}
._30_c00363{width:9.752000pt;}
._14_c00363{width:10.733333pt;}
._29_c00363{width:11.970133pt;}
._18_c00363{width:13.021333pt;}
._1c_c00363{width:14.250667pt;}
._1a_c00363{width:15.269333pt;}
._c_c00363{width:16.192000pt;}
._1b_c00363{width:17.266667pt;}
._1f_c00363{width:18.392000pt;}
._2e_c00363{width:19.629867pt;}
._1e_c00363{width:21.757333pt;}
._23_c00363{width:24.893333pt;}
._21_c00363{width:25.826667pt;}
._24_c00363{width:26.968000pt;}
._22_c00363{width:28.360000pt;}
._25_c00363{width:29.640000pt;}
._20_c00363{width:38.384000pt;}
._2a_c00363{width:41.861867pt;}
._10_c00363{width:51.336000pt;}
._2b_c00363{width:53.850667pt;}
._17_c00363{width:56.786667pt;}
._2f_c00363{width:78.642667pt;}
._6_c00363{width:80.101333pt;}
._2d_c00363{width:124.178667pt;}
._5_c00363{width:329.490667pt;}
._28_c00363{width:349.477333pt;}
._26_c00363{width:371.960000pt;}
.fs3_c00363{font-size:40.000000pt;}
.fsa_c00363{font-size:42.666667pt;}
.fs6_c00363{font-size:45.333333pt;}
.fs5_c00363{font-size:48.000000pt;}
.fs1_c00363{font-size:49.066667pt;}
.fs2_c00363{font-size:50.666667pt;}
.fs4_c00363{font-size:58.666667pt;}
.fs0_c00363{font-size:61.333333pt;}
.fs9_c00363{font-size:72.000000pt;}
.fs7_c00363{font-size:77.333333pt;}
.fs8_c00363{font-size:85.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y1f_c00363{bottom:2.760000pt;}
.y1e_c00363{bottom:6.425212pt;}
.y1d_c00363{bottom:52.800000pt;}
.y1c_c00363{bottom:74.400000pt;}
.y1b_c00363{bottom:97.466667pt;}
.y1a_c00363{bottom:120.000000pt;}
.y19_c00363{bottom:141.866667pt;}
.y18_c00363{bottom:164.400000pt;}
.y17_c00363{bottom:186.400000pt;}
.y16_c00363{bottom:209.066667pt;}
.y15_c00363{bottom:230.666667pt;}
.y14_c00363{bottom:253.466667pt;}
.y13_c00363{bottom:275.200000pt;}
.y12_c00363{bottom:296.800000pt;}
.y11_c00363{bottom:318.933333pt;}
.y9_c00363{bottom:329.733333pt;}
.y10_c00363{bottom:341.733333pt;}
.yf_c00363{bottom:364.266667pt;}
.ye_c00363{bottom:386.400000pt;}
.yd_c00363{bottom:430.800000pt;}
.yc_c00363{bottom:488.000000pt;}
.yb_c00363{bottom:503.733333pt;}
.ya_c00363{bottom:519.333333pt;}
.y8_c00363{bottom:551.066667pt;}
.y6_c00363{bottom:584.000000pt;}
.y5_c00363{bottom:606.533333pt;}
.y4_c00363{bottom:629.066667pt;}
.y7_c00363{bottom:642.533333pt;}
.y3_c00363{bottom:651.333333pt;}
.y2_c00363{bottom:673.466667pt;}
.y1_c00363{bottom:695.333333pt;}
.ha_c00363{height:11.733399pt;}
.hb_c00363{height:38.937500pt;}
.h5_c00363{height:39.238281pt;}
.h7_c00363{height:60.773438pt;}
.h4_c00363{height:64.149740pt;}
.h6_c00363{height:68.664062pt;}
.h3_c00363{height:71.785156pt;}
.h2_c00363{height:77.654948pt;}
.h8_c00363{height:86.000000pt;}
.h9_c00363{height:91.160156pt;}
.h1_c00363{height:735.333333pt;}
.h0_c00363{height:735.600000pt;}
.w2_c00363{width:93.222667pt;}
.w0_c00363{width:508.533333pt;}
.w1_c00363{width:508.666667pt;}
.x0_c00363{left:0.000000pt;}
.xe_c00363{left:35.200000pt;}
.x6_c00363{left:36.533333pt;}
.xd_c00363{left:48.266667pt;}
.xf_c00363{left:50.800000pt;}
.x3_c00363{left:72.533333pt;}
.x5_c00363{left:89.066667pt;}
.x8_c00363{left:90.000000pt;}
.xc_c00363{left:91.200000pt;}
.x9_c00363{left:92.933333pt;}
.x4_c00363{left:93.866667pt;}
.x2_c00363{left:95.733333pt;}
.x1_c00363{left:108.933333pt;}
.xb_c00363{left:112.266667pt;}
.xa_c00363{left:133.466667pt;}
.x11_c00363{left:211.434896pt;}
.x7_c00363{left:219.200000pt;}
.x10_c00363{left:464.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_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_8999bbe2c888cd277b176a60.woff2')format("woff");}.ff1_c00364{font-family:ff1_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:ff2_c00364;src:url('chunks/assets/font_9317916282524bc325df3267.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;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_c00364;src:url('chunks/assets/font_a5585da54831f255413bb936.woff2')format("woff");}.ff3_c00364{font-family:ff3_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:ff4_c00364;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00364{font-family:ff4_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;}
.ls5_c00364{letter-spacing:-6.000000px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls2_c00364{letter-spacing:3.000000px;}
.ls3_c00364{letter-spacing:6.000000px;}
.ls0_c00364{letter-spacing:21.048000px;}
.ls4_c00364{letter-spacing:48.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00364{word-spacing:-72.582000px;}
.ws0_c00364{word-spacing:-24.582000px;}
.ws2_c00364{word-spacing:-16.629000px;}
.ws3_c00364{word-spacing:0.000000px;}
._27_c00364{margin-left:-34.782000px;}
._25_c00364{margin-left:-31.620000px;}
._22_c00364{margin-left:-30.534000px;}
._8_c00364{margin-left:-29.478000px;}
._9_c00364{margin-left:-26.112000px;}
._26_c00364{margin-left:-24.600000px;}
._7_c00364{margin-left:-23.256000px;}
._1_c00364{margin-left:-22.032000px;}
._3_c00364{margin-left:-20.604000px;}
._6_c00364{margin-left:-19.278000px;}
._24_c00364{margin-left:-17.826000px;}
._4_c00364{margin-left:-16.728000px;}
._1f_c00364{margin-left:-15.198000px;}
._5_c00364{margin-left:-13.566000px;}
._1e_c00364{margin-left:-11.604000px;}
._2_c00364{margin-left:-10.404000px;}
._21_c00364{margin-left:-9.306000px;}
._0_c00364{margin-left:-7.854000px;}
._e_c00364{margin-left:-5.946000px;}
._13_c00364{margin-left:-4.416000px;}
._12_c00364{margin-left:-3.312000px;}
._d_c00364{margin-left:-1.962000px;}
._f_c00364{width:1.686000px;}
._c_c00364{width:2.721000px;}
._b_c00364{width:4.524000px;}
._1d_c00364{width:6.015000px;}
._10_c00364{width:7.509000px;}
._11_c00364{width:9.177000px;}
._18_c00364{width:11.454000px;}
._1b_c00364{width:12.858000px;}
._23_c00364{width:14.280000px;}
._17_c00364{width:15.801000px;}
._16_c00364{width:17.286000px;}
._19_c00364{width:18.363000px;}
._1a_c00364{width:19.953000px;}
._2f_c00364{width:20.958000px;}
._35_c00364{width:21.981000px;}
._29_c00364{width:24.006000px;}
._15_c00364{width:25.827000px;}
._33_c00364{width:28.641000px;}
._2c_c00364{width:30.276000px;}
._1c_c00364{width:31.326000px;}
._30_c00364{width:32.478000px;}
._2d_c00364{width:34.215000px;}
._34_c00364{width:35.775000px;}
._31_c00364{width:37.935000px;}
._2b_c00364{width:45.288000px;}
._2e_c00364{width:55.173000px;}
._14_c00364{width:79.074000px;}
._32_c00364{width:94.296000px;}
._2a_c00364{width:185.112000px;}
._36_c00364{width:457.854000px;}
._28_c00364{width:470.730000px;}
._20_c00364{width:487.614000px;}
._a_c00364{width:504.336000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(128,128,128);}
.fc0_c00364{color:rgb(0,0,0);}
.fs4_c00364{font-size:48.000000px;}
.fs2_c00364{font-size:69.000000px;}
.fs3_c00364{font-size:72.000000px;}
.fs1_c00364{font-size:78.000000px;}
.fs0_c00364{font-size:102.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1a_c00364{bottom:3.105000px;}
.y19_c00364{bottom:7.228371px;}
.y18_c00364{bottom:63.915000px;}
.y17_c00364{bottom:88.215000px;}
.y16_c00364{bottom:113.715000px;}
.y15_c00364{bottom:138.765000px;}
.y14_c00364{bottom:163.365000px;}
.y13_c00364{bottom:187.965000px;}
.y12_c00364{bottom:213.315000px;}
.y11_c00364{bottom:237.915000px;}
.y10_c00364{bottom:262.965000px;}
.yf_c00364{bottom:287.865000px;}
.ye_c00364{bottom:312.165000px;}
.yd_c00364{bottom:337.215000px;}
.yc_c00364{bottom:386.565000px;}
.yb_c00364{bottom:411.465000px;}
.ya_c00364{bottom:510.315000px;}
.y9_c00364{bottom:534.615000px;}
.y8_c00364{bottom:559.665000px;}
.y7_c00364{bottom:585.015000px;}
.y6_c00364{bottom:634.215000px;}
.y5_c00364{bottom:683.415000px;}
.y4_c00364{bottom:709.065000px;}
.y3_c00364{bottom:734.415000px;}
.y2_c00364{bottom:759.465000px;}
.y1_c00364{bottom:783.015000px;}
.h7_c00364{height:13.200074px;}
.h8_c00364{height:43.804688px;}
.h6_c00364{height:80.758301px;}
.h3_c00364{height:87.361816px;}
.h5_c00364{height:91.291992px;}
.h2_c00364{height:119.381836px;}
.h4_c00364{height:129.143555px;}
.h1_c00364{height:831.000000px;}
.h0_c00364{height:831.075000px;}
.w2_c00364{width:104.875500px;}
.w0_c00364{width:582.375000px;}
.w1_c00364{width:582.750000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:39.750000px;}
.x3_c00364{left:41.100000px;}
.x7_c00364{left:42.150000px;}
.x9_c00364{left:43.500000px;}
.xa_c00364{left:44.550000px;}
.x8_c00364{left:46.950000px;}
.x5_c00364{left:63.750000px;}
.x6_c00364{left:66.150000px;}
.x4_c00364{left:173.850000px;}
.x1_c00364{left:195.750000px;}
.xc_c00364{left:243.001740px;}
.xb_c00364{left:307.350000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls5_c00364{letter-spacing:-5.333333pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls2_c00364{letter-spacing:2.666667pt;}
.ls3_c00364{letter-spacing:5.333333pt;}
.ls0_c00364{letter-spacing:18.709333pt;}
.ls4_c00364{letter-spacing:42.666667pt;}
.ws1_c00364{word-spacing:-64.517333pt;}
.ws0_c00364{word-spacing:-21.850667pt;}
.ws2_c00364{word-spacing:-14.781333pt;}
.ws3_c00364{word-spacing:0.000000pt;}
._27_c00364{margin-left:-30.917333pt;}
._25_c00364{margin-left:-28.106667pt;}
._22_c00364{margin-left:-27.141333pt;}
._8_c00364{margin-left:-26.202667pt;}
._9_c00364{margin-left:-23.210667pt;}
._26_c00364{margin-left:-21.866667pt;}
._7_c00364{margin-left:-20.672000pt;}
._1_c00364{margin-left:-19.584000pt;}
._3_c00364{margin-left:-18.314667pt;}
._6_c00364{margin-left:-17.136000pt;}
._24_c00364{margin-left:-15.845333pt;}
._4_c00364{margin-left:-14.869333pt;}
._1f_c00364{margin-left:-13.509333pt;}
._5_c00364{margin-left:-12.058667pt;}
._1e_c00364{margin-left:-10.314667pt;}
._2_c00364{margin-left:-9.248000pt;}
._21_c00364{margin-left:-8.272000pt;}
._0_c00364{margin-left:-6.981333pt;}
._e_c00364{margin-left:-5.285333pt;}
._13_c00364{margin-left:-3.925333pt;}
._12_c00364{margin-left:-2.944000pt;}
._d_c00364{margin-left:-1.744000pt;}
._f_c00364{width:1.498667pt;}
._c_c00364{width:2.418667pt;}
._b_c00364{width:4.021333pt;}
._1d_c00364{width:5.346667pt;}
._10_c00364{width:6.674667pt;}
._11_c00364{width:8.157333pt;}
._18_c00364{width:10.181333pt;}
._1b_c00364{width:11.429333pt;}
._23_c00364{width:12.693333pt;}
._17_c00364{width:14.045333pt;}
._16_c00364{width:15.365333pt;}
._19_c00364{width:16.322667pt;}
._1a_c00364{width:17.736000pt;}
._2f_c00364{width:18.629333pt;}
._35_c00364{width:19.538667pt;}
._29_c00364{width:21.338667pt;}
._15_c00364{width:22.957333pt;}
._33_c00364{width:25.458667pt;}
._2c_c00364{width:26.912000pt;}
._1c_c00364{width:27.845333pt;}
._30_c00364{width:28.869333pt;}
._2d_c00364{width:30.413333pt;}
._34_c00364{width:31.800000pt;}
._31_c00364{width:33.720000pt;}
._2b_c00364{width:40.256000pt;}
._2e_c00364{width:49.042667pt;}
._14_c00364{width:70.288000pt;}
._32_c00364{width:83.818667pt;}
._2a_c00364{width:164.544000pt;}
._36_c00364{width:406.981333pt;}
._28_c00364{width:418.426667pt;}
._20_c00364{width:433.434667pt;}
._a_c00364{width:448.298667pt;}
.fs4_c00364{font-size:42.666667pt;}
.fs2_c00364{font-size:61.333333pt;}
.fs3_c00364{font-size:64.000000pt;}
.fs1_c00364{font-size:69.333333pt;}
.fs0_c00364{font-size:90.666667pt;}
.y0_c00364{bottom:0.000000pt;}
.y1a_c00364{bottom:2.760000pt;}
.y19_c00364{bottom:6.425219pt;}
.y18_c00364{bottom:56.813333pt;}
.y17_c00364{bottom:78.413333pt;}
.y16_c00364{bottom:101.080000pt;}
.y15_c00364{bottom:123.346667pt;}
.y14_c00364{bottom:145.213333pt;}
.y13_c00364{bottom:167.080000pt;}
.y12_c00364{bottom:189.613333pt;}
.y11_c00364{bottom:211.480000pt;}
.y10_c00364{bottom:233.746667pt;}
.yf_c00364{bottom:255.880000pt;}
.ye_c00364{bottom:277.480000pt;}
.yd_c00364{bottom:299.746667pt;}
.yc_c00364{bottom:343.613333pt;}
.yb_c00364{bottom:365.746667pt;}
.ya_c00364{bottom:453.613333pt;}
.y9_c00364{bottom:475.213333pt;}
.y8_c00364{bottom:497.480000pt;}
.y7_c00364{bottom:520.013333pt;}
.y6_c00364{bottom:563.746667pt;}
.y5_c00364{bottom:607.480000pt;}
.y4_c00364{bottom:630.280000pt;}
.y3_c00364{bottom:652.813333pt;}
.y2_c00364{bottom:675.080000pt;}
.y1_c00364{bottom:696.013333pt;}
.h7_c00364{height:11.733399pt;}
.h8_c00364{height:38.937500pt;}
.h6_c00364{height:71.785156pt;}
.h3_c00364{height:77.654948pt;}
.h5_c00364{height:81.148438pt;}
.h2_c00364{height:106.117188pt;}
.h4_c00364{height:114.794271pt;}
.h1_c00364{height:738.666667pt;}
.h0_c00364{height:738.733333pt;}
.w2_c00364{width:93.222667pt;}
.w0_c00364{width:517.666667pt;}
.w1_c00364{width:518.000000pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:35.333333pt;}
.x3_c00364{left:36.533333pt;}
.x7_c00364{left:37.466667pt;}
.x9_c00364{left:38.666667pt;}
.xa_c00364{left:39.600000pt;}
.x8_c00364{left:41.733333pt;}
.x5_c00364{left:56.666667pt;}
.x6_c00364{left:58.800000pt;}
.x4_c00364{left:154.533333pt;}
.x1_c00364{left:174.000000pt;}
.xc_c00364{left:216.001546pt;}
.xb_c00364{left:273.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_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_a0a4cd0a6d6369ec7f1b770b.woff2')format("woff");}.ff1_c00365{font-family:ff1_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:ff2_c00365;src:url('chunks/assets/font_db50dc1750e199019f6969e7.woff2')format("woff");}.ff2_c00365{font-family:ff2_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:ff3_c00365;src:url('chunks/assets/font_d4ba998f96ae649b95c7a9aa.woff2')format("woff");}.ff3_c00365{font-family:ff3_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:ff4_c00365;src:url('chunks/assets/font_0382ad4f224f58ff582c46fe.woff2')format("woff");}.ff4_c00365{font-family:ff4_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:ff5_c00365;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00365{font-family:ff5_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;}
.ls3_c00365{letter-spacing:-6.000000px;}
.ls2_c00365{letter-spacing:0.000000px;}
.ls1_c00365{letter-spacing:6.000000px;}
.ls0_c00365{letter-spacing:13.200000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00365{word-spacing:-66.924000px;}
.ws0_c00365{word-spacing:-27.000000px;}
.ws1_c00365{word-spacing:-16.629000px;}
.ws3_c00365{word-spacing:0.000000px;}
._2b_c00365{margin-left:-31.122000px;}
._2c_c00365{margin-left:-28.314000px;}
._2d_c00365{margin-left:-24.570000px;}
._25_c00365{margin-left:-20.484000px;}
._2_c00365{margin-left:-18.975000px;}
._e_c00365{margin-left:-16.146000px;}
._12_c00365{margin-left:-14.214000px;}
._0_c00365{margin-left:-13.179000px;}
._10_c00365{margin-left:-10.794000px;}
._1_c00365{margin-left:-9.729000px;}
._11_c00365{margin-left:-8.181000px;}
._d_c00365{margin-left:-7.062000px;}
._f_c00365{margin-left:-5.388000px;}
._9_c00365{margin-left:-4.278000px;}
._a_c00365{margin-left:-3.036000px;}
._8_c00365{margin-left:-1.449000px;}
._5_c00365{width:1.932000px;}
._7_c00365{width:3.243000px;}
._4_c00365{width:4.416000px;}
._b_c00365{width:5.523000px;}
._6_c00365{width:6.900000px;}
._16_c00365{width:8.832000px;}
._13_c00365{width:10.419000px;}
._c_c00365{width:12.306000px;}
._15_c00365{width:13.743000px;}
._1a_c00365{width:15.111000px;}
._22_c00365{width:16.698000px;}
._17_c00365{width:17.868000px;}
._18_c00365{width:19.449000px;}
._28_c00365{width:20.466000px;}
._21_c00365{width:21.474000px;}
._1b_c00365{width:22.836000px;}
._27_c00365{width:24.771000px;}
._26_c00365{width:26.025000px;}
._29_c00365{width:27.186000px;}
._1d_c00365{width:28.704000px;}
._1e_c00365{width:30.843000px;}
._23_c00365{width:32.781000px;}
._1c_c00365{width:34.434000px;}
._2a_c00365{width:37.536000px;}
._1f_c00365{width:39.216000px;}
._24_c00365{width:43.398000px;}
._20_c00365{width:69.621000px;}
._19_c00365{width:93.840000px;}
._14_c00365{width:238.071000px;}
._3_c00365{width:377.541000px;}
.fc2_c00365{color:transparent;}
.fc1_c00365{color:rgb(128,128,128);}
.fc0_c00365{color:rgb(0,0,0);}
.fs3_c00365{font-size:48.000000px;}
.fs1_c00365{font-size:66.000000px;}
.fs0_c00365{font-size:69.000000px;}
.fs2_c00365{font-size:117.000000px;}
.y0_c00365{bottom:0.000000px;}
.y20_c00365{bottom:3.105000px;}
.y1f_c00365{bottom:7.228363px;}
.y1e_c00365{bottom:55.350000px;}
.y1d_c00365{bottom:79.950000px;}
.y1c_c00365{bottom:105.600000px;}
.y1b_c00365{bottom:130.650000px;}
.y1a_c00365{bottom:156.150000px;}
.y19_c00365{bottom:180.900000px;}
.y18_c00365{bottom:205.500000px;}
.y17_c00365{bottom:231.450000px;}
.y16_c00365{bottom:255.450000px;}
.y15_c00365{bottom:281.850000px;}
.y14_c00365{bottom:305.850000px;}
.y13_c00365{bottom:328.950000px;}
.y12_c00365{bottom:354.300000px;}
.y11_c00365{bottom:379.950000px;}
.y10_c00365{bottom:404.700000px;}
.yf_c00365{bottom:429.750000px;}
.ye_c00365{bottom:454.650000px;}
.yd_c00365{bottom:479.550000px;}
.yc_c00365{bottom:505.200000px;}
.yb_c00365{bottom:530.250000px;}
.ya_c00365{bottom:555.300000px;}
.y9_c00365{bottom:580.200000px;}
.y8_c00365{bottom:605.550000px;}
.y7_c00365{bottom:630.150000px;}
.y6_c00365{bottom:655.500000px;}
.y5_c00365{bottom:680.700000px;}
.y4_c00365{bottom:705.450000px;}
.y3_c00365{bottom:731.100000px;}
.y2_c00365{bottom:755.700000px;}
.y1_c00365{bottom:780.300000px;}
.h5_c00365{height:13.200074px;}
.h6_c00365{height:43.804688px;}
.h3_c00365{height:80.758301px;}
.h2_c00365{height:87.361816px;}
.h4_c00365{height:148.135254px;}
.h0_c00365{height:818.100000px;}
.h1_c00365{height:818.250000px;}
.w2_c00365{width:104.875500px;}
.w0_c00365{width:565.350000px;}
.w1_c00365{width:565.500000px;}
.x0_c00365{left:0.000000px;}
.x3_c00365{left:25.950000px;}
.xb_c00365{left:82.050000px;}
.x8_c00365{left:84.300000px;}
.x7_c00365{left:85.650000px;}
.xa_c00365{left:86.700000px;}
.x5_c00365{left:88.350000px;}
.x4_c00365{left:89.400000px;}
.x2_c00365{left:90.450000px;}
.x6_c00365{left:91.800000px;}
.x9_c00365{left:98.250000px;}
.x1_c00365{left:130.200000px;}
.xd_c00365{left:234.489258px;}
.xc_c00365{left:492.000000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls3_c00365{letter-spacing:-5.333333pt;}
.ls2_c00365{letter-spacing:0.000000pt;}
.ls1_c00365{letter-spacing:5.333333pt;}
.ls0_c00365{letter-spacing:11.733333pt;}
.ws2_c00365{word-spacing:-59.488000pt;}
.ws0_c00365{word-spacing:-24.000000pt;}
.ws1_c00365{word-spacing:-14.781333pt;}
.ws3_c00365{word-spacing:0.000000pt;}
._2b_c00365{margin-left:-27.664000pt;}
._2c_c00365{margin-left:-25.168000pt;}
._2d_c00365{margin-left:-21.840000pt;}
._25_c00365{margin-left:-18.208000pt;}
._2_c00365{margin-left:-16.866667pt;}
._e_c00365{margin-left:-14.352000pt;}
._12_c00365{margin-left:-12.634667pt;}
._0_c00365{margin-left:-11.714667pt;}
._10_c00365{margin-left:-9.594667pt;}
._1_c00365{margin-left:-8.648000pt;}
._11_c00365{margin-left:-7.272000pt;}
._d_c00365{margin-left:-6.277333pt;}
._f_c00365{margin-left:-4.789333pt;}
._9_c00365{margin-left:-3.802667pt;}
._a_c00365{margin-left:-2.698667pt;}
._8_c00365{margin-left:-1.288000pt;}
._5_c00365{width:1.717333pt;}
._7_c00365{width:2.882667pt;}
._4_c00365{width:3.925333pt;}
._b_c00365{width:4.909333pt;}
._6_c00365{width:6.133333pt;}
._16_c00365{width:7.850667pt;}
._13_c00365{width:9.261333pt;}
._c_c00365{width:10.938667pt;}
._15_c00365{width:12.216000pt;}
._1a_c00365{width:13.432000pt;}
._22_c00365{width:14.842667pt;}
._17_c00365{width:15.882667pt;}
._18_c00365{width:17.288000pt;}
._28_c00365{width:18.192000pt;}
._21_c00365{width:19.088000pt;}
._1b_c00365{width:20.298667pt;}
._27_c00365{width:22.018667pt;}
._26_c00365{width:23.133333pt;}
._29_c00365{width:24.165333pt;}
._1d_c00365{width:25.514667pt;}
._1e_c00365{width:27.416000pt;}
._23_c00365{width:29.138667pt;}
._1c_c00365{width:30.608000pt;}
._2a_c00365{width:33.365333pt;}
._1f_c00365{width:34.858667pt;}
._24_c00365{width:38.576000pt;}
._20_c00365{width:61.885333pt;}
._19_c00365{width:83.413333pt;}
._14_c00365{width:211.618667pt;}
._3_c00365{width:335.592000pt;}
.fs3_c00365{font-size:42.666667pt;}
.fs1_c00365{font-size:58.666667pt;}
.fs0_c00365{font-size:61.333333pt;}
.fs2_c00365{font-size:104.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y20_c00365{bottom:2.760000pt;}
.y1f_c00365{bottom:6.425212pt;}
.y1e_c00365{bottom:49.200000pt;}
.y1d_c00365{bottom:71.066667pt;}
.y1c_c00365{bottom:93.866667pt;}
.y1b_c00365{bottom:116.133333pt;}
.y1a_c00365{bottom:138.800000pt;}
.y19_c00365{bottom:160.800000pt;}
.y18_c00365{bottom:182.666667pt;}
.y17_c00365{bottom:205.733333pt;}
.y16_c00365{bottom:227.066667pt;}
.y15_c00365{bottom:250.533333pt;}
.y14_c00365{bottom:271.866667pt;}
.y13_c00365{bottom:292.400000pt;}
.y12_c00365{bottom:314.933333pt;}
.y11_c00365{bottom:337.733333pt;}
.y10_c00365{bottom:359.733333pt;}
.yf_c00365{bottom:382.000000pt;}
.ye_c00365{bottom:404.133333pt;}
.yd_c00365{bottom:426.266667pt;}
.yc_c00365{bottom:449.066667pt;}
.yb_c00365{bottom:471.333333pt;}
.ya_c00365{bottom:493.600000pt;}
.y9_c00365{bottom:515.733333pt;}
.y8_c00365{bottom:538.266667pt;}
.y7_c00365{bottom:560.133333pt;}
.y6_c00365{bottom:582.666667pt;}
.y5_c00365{bottom:605.066667pt;}
.y4_c00365{bottom:627.066667pt;}
.y3_c00365{bottom:649.866667pt;}
.y2_c00365{bottom:671.733333pt;}
.y1_c00365{bottom:693.600000pt;}
.h5_c00365{height:11.733399pt;}
.h6_c00365{height:38.937500pt;}
.h3_c00365{height:71.785156pt;}
.h2_c00365{height:77.654948pt;}
.h4_c00365{height:131.675781pt;}
.h0_c00365{height:727.200000pt;}
.h1_c00365{height:727.333333pt;}
.w2_c00365{width:93.222667pt;}
.w0_c00365{width:502.533333pt;}
.w1_c00365{width:502.666667pt;}
.x0_c00365{left:0.000000pt;}
.x3_c00365{left:23.066667pt;}
.xb_c00365{left:72.933333pt;}
.x8_c00365{left:74.933333pt;}
.x7_c00365{left:76.133333pt;}
.xa_c00365{left:77.066667pt;}
.x5_c00365{left:78.533333pt;}
.x4_c00365{left:79.466667pt;}
.x2_c00365{left:80.400000pt;}
.x6_c00365{left:81.600000pt;}
.x9_c00365{left:87.333333pt;}
.x1_c00365{left:115.733333pt;}
.xd_c00365{left:208.434896pt;}
.xc_c00365{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_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_04b05eaf46755a1190b6b630.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.480469;font-style:normal;font-weight:normal;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_5149ad8837ab02248eab3858.woff2')format("woff");}.ff2_c00366{font-family:ff2_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:ff3_c00366;src:url('chunks/assets/font_68cc7199ffd42d8934b8922a.woff2')format("woff");}.ff3_c00366{font-family:ff3_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:ff4_c00366;src:url('chunks/assets/font_33810bed7329c0f77ca0dc70.woff2')format("woff");}.ff4_c00366{font-family:ff4_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:ff5_c00366;src:url('chunks/assets/font_0f221cd4e24ef0bb2ef69b69.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;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_c00366;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00366{font-family:ff6_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;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls7_c00366{letter-spacing:0.000000px;}
.lsb_c00366{letter-spacing:3.000000px;}
.ls8_c00366{letter-spacing:6.000000px;}
.ls2_c00366{letter-spacing:11.949000px;}
.ls3_c00366{letter-spacing:15.600000px;}
.ls1_c00366{letter-spacing:18.000000px;}
.lsa_c00366{letter-spacing:30.000000px;}
.ls5_c00366{letter-spacing:35.571000px;}
.ls6_c00366{letter-spacing:38.571000px;}
.ls9_c00366{letter-spacing:51.000000px;}
.ls4_c00366{letter-spacing:93.771000px;}
.ls0_c00366{letter-spacing:369.771000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-67.629000px;}
.ws3_c00366{word-spacing:-46.629000px;}
.ws5_c00366{word-spacing:-37.320000px;}
.ws0_c00366{word-spacing:-22.629000px;}
.ws8_c00366{word-spacing:-14.784000px;}
.ws2_c00366{word-spacing:-13.014000px;}
.ws6_c00366{word-spacing:-0.690000px;}
.ws9_c00366{word-spacing:0.000000px;}
.ws7_c00366{word-spacing:4.692000px;}
.ws4_c00366{word-spacing:5.805000px;}
._2f_c00366{margin-left:-39.537000px;}
._24_c00366{margin-left:-29.394000px;}
._10_c00366{margin-left:-26.289000px;}
._17_c00366{margin-left:-23.190000px;}
._e_c00366{margin-left:-17.550000px;}
._19_c00366{margin-left:-16.170000px;}
._16_c00366{margin-left:-14.562000px;}
._5_c00366{margin-left:-13.110000px;}
._d_c00366{margin-left:-11.730000px;}
._11_c00366{margin-left:-9.801000px;}
._12_c00366{margin-left:-8.028000px;}
._0_c00366{margin-left:-6.141000px;}
._15_c00366{margin-left:-5.127000px;}
._4_c00366{margin-left:-4.026000px;}
._7_c00366{margin-left:-2.943000px;}
._6_c00366{margin-left:-1.656000px;}
._2_c00366{width:1.518000px;}
._b_c00366{width:3.243000px;}
._1a_c00366{width:4.347000px;}
._a_c00366{width:5.727000px;}
._9_c00366{width:7.452000px;}
._8_c00366{width:8.625000px;}
._f_c00366{width:10.419000px;}
._2c_c00366{width:11.661000px;}
._26_c00366{width:12.765000px;}
._3_c00366{width:14.421000px;}
._18_c00366{width:15.621000px;}
._2b_c00366{width:16.713000px;}
._13_c00366{width:18.564000px;}
._20_c00366{width:20.184000px;}
._1f_c00366{width:23.199000px;}
._1_c00366{width:28.704000px;}
._2d_c00366{width:32.094000px;}
._22_c00366{width:34.317000px;}
._1d_c00366{width:39.750000px;}
._27_c00366{width:49.866000px;}
._2a_c00366{width:55.200000px;}
._29_c00366{width:64.170000px;}
._c_c00366{width:97.977000px;}
._1c_c00366{width:105.768000px;}
._21_c00366{width:111.303000px;}
._25_c00366{width:138.198000px;}
._14_c00366{width:140.640000px;}
._2e_c00366{width:156.258000px;}
._1b_c00366{width:769.143000px;}
._28_c00366{width:1282.275000px;}
._23_c00366{width:1706.727000px;}
._1e_c00366{width:1784.841000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(128,128,128);}
.fc0_c00366{color:rgb(0,0,0);}
.fs4_c00366{font-size:45.000000px;}
.fs7_c00366{font-size:48.000000px;}
.fs2_c00366{font-size:54.000000px;}
.fs3_c00366{font-size:60.000000px;}
.fs1_c00366{font-size:66.000000px;}
.fs0_c00366{font-size:69.000000px;}
.fs6_c00366{font-size:75.000000px;}
.fs5_c00366{font-size:84.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1f_c00366{bottom:3.105000px;}
.y1e_c00366{bottom:7.228371px;}
.y1d_c00366{bottom:61.515000px;}
.y1c_c00366{bottom:84.465000px;}
.y1b_c00366{bottom:109.065000px;}
.y1a_c00366{bottom:133.965000px;}
.y19_c00366{bottom:158.265000px;}
.y18_c00366{bottom:183.615000px;}
.y17_c00366{bottom:208.215000px;}
.y16_c00366{bottom:233.265000px;}
.y15_c00366{bottom:258.315000px;}
.y14_c00366{bottom:282.915000px;}
.y13_c00366{bottom:308.565000px;}
.y12_c00366{bottom:332.415000px;}
.y11_c00366{bottom:382.065000px;}
.y10_c00366{bottom:403.665000px;}
.yf_c00366{bottom:422.265000px;}
.ye_c00366{bottom:440.115000px;}
.yd_c00366{bottom:457.665000px;}
.yc_c00366{bottom:492.765000px;}
.yb_c00366{bottom:513.015000px;}
.ya_c00366{bottom:529.665000px;}
.y9_c00366{bottom:554.865000px;}
.y8_c00366{bottom:579.615000px;}
.y7_c00366{bottom:604.815000px;}
.y6_c00366{bottom:629.865000px;}
.y5_c00366{bottom:654.765000px;}
.y4_c00366{bottom:679.515000px;}
.y3_c00366{bottom:704.715000px;}
.y2_c00366{bottom:754.365000px;}
.y1_c00366{bottom:778.965000px;}
.h8_c00366{height:13.200074px;}
.h9_c00366{height:43.804688px;}
.h5_c00366{height:68.370117px;}
.h4_c00366{height:75.966797px;}
.h3_c00366{height:80.758301px;}
.h2_c00366{height:87.361816px;}
.h6_c00366{height:89.628000px;}
.h7_c00366{height:94.958496px;}
.h1_c00366{height:831.000000px;}
.h0_c00366{height:831.075000px;}
.w2_c00366{width:104.875500px;}
.w0_c00366{width:582.375000px;}
.w1_c00366{width:582.750000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:28.650000px;}
.x6_c00366{left:31.350000px;}
.x5_c00366{left:33.150000px;}
.x7_c00366{left:35.100000px;}
.x9_c00366{left:49.500000px;}
.xa_c00366{left:55.800000px;}
.x4_c00366{left:57.150000px;}
.x3_c00366{left:166.350000px;}
.x8_c00366{left:175.050000px;}
.x1_c00366{left:189.000000px;}
.xc_c00366{left:243.001740px;}
.xb_c00366{left:451.200000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls7_c00366{letter-spacing:0.000000pt;}
.lsb_c00366{letter-spacing:2.666667pt;}
.ls8_c00366{letter-spacing:5.333333pt;}
.ls2_c00366{letter-spacing:10.621333pt;}
.ls3_c00366{letter-spacing:13.866667pt;}
.ls1_c00366{letter-spacing:16.000000pt;}
.lsa_c00366{letter-spacing:26.666667pt;}
.ls5_c00366{letter-spacing:31.618667pt;}
.ls6_c00366{letter-spacing:34.285333pt;}
.ls9_c00366{letter-spacing:45.333333pt;}
.ls4_c00366{letter-spacing:83.352000pt;}
.ls0_c00366{letter-spacing:328.685333pt;}
.ws1_c00366{word-spacing:-60.114667pt;}
.ws3_c00366{word-spacing:-41.448000pt;}
.ws5_c00366{word-spacing:-33.173333pt;}
.ws0_c00366{word-spacing:-20.114667pt;}
.ws8_c00366{word-spacing:-13.141333pt;}
.ws2_c00366{word-spacing:-11.568000pt;}
.ws6_c00366{word-spacing:-0.613333pt;}
.ws9_c00366{word-spacing:0.000000pt;}
.ws7_c00366{word-spacing:4.170667pt;}
.ws4_c00366{word-spacing:5.160000pt;}
._2f_c00366{margin-left:-35.144000pt;}
._24_c00366{margin-left:-26.128000pt;}
._10_c00366{margin-left:-23.368000pt;}
._17_c00366{margin-left:-20.613333pt;}
._e_c00366{margin-left:-15.600000pt;}
._19_c00366{margin-left:-14.373333pt;}
._16_c00366{margin-left:-12.944000pt;}
._5_c00366{margin-left:-11.653333pt;}
._d_c00366{margin-left:-10.426667pt;}
._11_c00366{margin-left:-8.712000pt;}
._12_c00366{margin-left:-7.136000pt;}
._0_c00366{margin-left:-5.458667pt;}
._15_c00366{margin-left:-4.557333pt;}
._4_c00366{margin-left:-3.578667pt;}
._7_c00366{margin-left:-2.616000pt;}
._6_c00366{margin-left:-1.472000pt;}
._2_c00366{width:1.349333pt;}
._b_c00366{width:2.882667pt;}
._1a_c00366{width:3.864000pt;}
._a_c00366{width:5.090667pt;}
._9_c00366{width:6.624000pt;}
._8_c00366{width:7.666667pt;}
._f_c00366{width:9.261333pt;}
._2c_c00366{width:10.365333pt;}
._26_c00366{width:11.346667pt;}
._3_c00366{width:12.818667pt;}
._18_c00366{width:13.885333pt;}
._2b_c00366{width:14.856000pt;}
._13_c00366{width:16.501333pt;}
._20_c00366{width:17.941333pt;}
._1f_c00366{width:20.621333pt;}
._1_c00366{width:25.514667pt;}
._2d_c00366{width:28.528000pt;}
._22_c00366{width:30.504000pt;}
._1d_c00366{width:35.333333pt;}
._27_c00366{width:44.325333pt;}
._2a_c00366{width:49.066667pt;}
._29_c00366{width:57.040000pt;}
._c_c00366{width:87.090667pt;}
._1c_c00366{width:94.016000pt;}
._21_c00366{width:98.936000pt;}
._25_c00366{width:122.842667pt;}
._14_c00366{width:125.013333pt;}
._2e_c00366{width:138.896000pt;}
._1b_c00366{width:683.682667pt;}
._28_c00366{width:1139.800000pt;}
._23_c00366{width:1517.090667pt;}
._1e_c00366{width:1586.525333pt;}
.fs4_c00366{font-size:40.000000pt;}
.fs7_c00366{font-size:42.666667pt;}
.fs2_c00366{font-size:48.000000pt;}
.fs3_c00366{font-size:53.333333pt;}
.fs1_c00366{font-size:58.666667pt;}
.fs0_c00366{font-size:61.333333pt;}
.fs6_c00366{font-size:66.666667pt;}
.fs5_c00366{font-size:74.666667pt;}
.y0_c00366{bottom:0.000000pt;}
.y1f_c00366{bottom:2.760000pt;}
.y1e_c00366{bottom:6.425219pt;}
.y1d_c00366{bottom:54.680000pt;}
.y1c_c00366{bottom:75.080000pt;}
.y1b_c00366{bottom:96.946667pt;}
.y1a_c00366{bottom:119.080000pt;}
.y19_c00366{bottom:140.680000pt;}
.y18_c00366{bottom:163.213333pt;}
.y17_c00366{bottom:185.080000pt;}
.y16_c00366{bottom:207.346667pt;}
.y15_c00366{bottom:229.613333pt;}
.y14_c00366{bottom:251.480000pt;}
.y13_c00366{bottom:274.280000pt;}
.y12_c00366{bottom:295.480000pt;}
.y11_c00366{bottom:339.613333pt;}
.y10_c00366{bottom:358.813333pt;}
.yf_c00366{bottom:375.346667pt;}
.ye_c00366{bottom:391.213333pt;}
.yd_c00366{bottom:406.813333pt;}
.yc_c00366{bottom:438.013333pt;}
.yb_c00366{bottom:456.013333pt;}
.ya_c00366{bottom:470.813333pt;}
.y9_c00366{bottom:493.213333pt;}
.y8_c00366{bottom:515.213333pt;}
.y7_c00366{bottom:537.613333pt;}
.y6_c00366{bottom:559.880000pt;}
.y5_c00366{bottom:582.013333pt;}
.y4_c00366{bottom:604.013333pt;}
.y3_c00366{bottom:626.413333pt;}
.y2_c00366{bottom:670.546667pt;}
.y1_c00366{bottom:692.413333pt;}
.h8_c00366{height:11.733399pt;}
.h9_c00366{height:38.937500pt;}
.h5_c00366{height:60.773438pt;}
.h4_c00366{height:67.526042pt;}
.h3_c00366{height:71.785156pt;}
.h2_c00366{height:77.654948pt;}
.h6_c00366{height:79.669333pt;}
.h7_c00366{height:84.407552pt;}
.h1_c00366{height:738.666667pt;}
.h0_c00366{height:738.733333pt;}
.w2_c00366{width:93.222667pt;}
.w0_c00366{width:517.666667pt;}
.w1_c00366{width:518.000000pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:25.466667pt;}
.x6_c00366{left:27.866667pt;}
.x5_c00366{left:29.466667pt;}
.x7_c00366{left:31.200000pt;}
.x9_c00366{left:44.000000pt;}
.xa_c00366{left:49.600000pt;}
.x4_c00366{left:50.800000pt;}
.x3_c00366{left:147.866667pt;}
.x8_c00366{left:155.600000pt;}
.x1_c00366{left:168.000000pt;}
.xc_c00366{left:216.001546pt;}
.xb_c00366{left:401.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_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_f3baf54eb84f23f5182891aa.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.480469;font-style:normal;font-weight:normal;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_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.568848;font-style:normal;font-weight:normal;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_8d11381a6053b1044de59d2b.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.568848;font-style:normal;font-weight:normal;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_00058a28bc5c27e1b910ab16.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_9a9c037e850fdf804270a88e.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;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_c00367;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00367{font-family:ff6_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;}
.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;}
.ls7_c00367{letter-spacing:0.000000px;}
.ls3_c00367{letter-spacing:0.558000px;}
.ls8_c00367{letter-spacing:3.000000px;}
.ls6_c00367{letter-spacing:6.000000px;}
.ls2_c00367{letter-spacing:11.925000px;}
.ls1_c00367{letter-spacing:21.000000px;}
.ls9_c00367{letter-spacing:51.000000px;}
.ls4_c00367{letter-spacing:62.571000px;}
.ls5_c00367{letter-spacing:91.017000px;}
.ls0_c00367{letter-spacing:100.722000px;}
.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;}
}
.ws4_c00367{word-spacing:-67.629000px;}
.ws3_c00367{word-spacing:-47.022000px;}
.ws2_c00367{word-spacing:-22.629000px;}
.ws0_c00367{word-spacing:-20.460000px;}
.ws1_c00367{word-spacing:-16.629000px;}
.ws5_c00367{word-spacing:0.000000px;}
._24_c00367{margin-left:-56.928000px;}
._27_c00367{margin-left:-22.188000px;}
._1d_c00367{margin-left:-20.838000px;}
._1c_c00367{margin-left:-19.803000px;}
._20_c00367{margin-left:-16.491000px;}
._15_c00367{margin-left:-15.255000px;}
._1e_c00367{margin-left:-13.938000px;}
._1b_c00367{margin-left:-12.792000px;}
._1f_c00367{margin-left:-11.388000px;}
._10_c00367{margin-left:-10.143000px;}
._e_c00367{margin-left:-8.622000px;}
._f_c00367{margin-left:-7.275000px;}
._d_c00367{margin-left:-5.910000px;}
._1_c00367{margin-left:-4.005000px;}
._2_c00367{margin-left:-2.760000px;}
._0_c00367{margin-left:-1.320000px;}
._3_c00367{width:1.725000px;}
._4_c00367{width:3.312000px;}
._c_c00367{width:4.821000px;}
._7_c00367{width:6.555000px;}
._b_c00367{width:7.752000px;}
._5_c00367{width:8.901000px;}
._6_c00367{width:10.557000px;}
._16_c00367{width:11.694000px;}
._13_c00367{width:13.050000px;}
._26_c00367{width:14.226000px;}
._9_c00367{width:15.525000px;}
._8_c00367{width:16.806000px;}
._14_c00367{width:18.708000px;}
._11_c00367{width:20.454000px;}
._12_c00367{width:23.754000px;}
._19_c00367{width:26.991000px;}
._17_c00367{width:28.233000px;}
._22_c00367{width:30.612000px;}
._a_c00367{width:32.505000px;}
._23_c00367{width:34.614000px;}
._28_c00367{width:44.298000px;}
._21_c00367{width:86.709000px;}
._18_c00367{width:139.467000px;}
._1a_c00367{width:362.454000px;}
._25_c00367{width:687.429000px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(128,128,128);}
.fc0_c00367{color:rgb(0,0,0);}
.fs6_c00367{font-size:48.000000px;}
.fs4_c00367{font-size:51.000000px;}
.fs1_c00367{font-size:57.000000px;}
.fs0_c00367{font-size:60.000000px;}
.fs5_c00367{font-size:63.000000px;}
.fs3_c00367{font-size:66.000000px;}
.fs2_c00367{font-size:69.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1f_c00367{bottom:3.105000px;}
.y1e_c00367{bottom:7.228355px;}
.y1d_c00367{bottom:54.585000px;}
.y1c_c00367{bottom:79.185000px;}
.y1b_c00367{bottom:104.985000px;}
.y1a_c00367{bottom:129.585000px;}
.y19_c00367{bottom:154.935000px;}
.y18_c00367{bottom:179.535000px;}
.y17_c00367{bottom:204.885000px;}
.y16_c00367{bottom:229.785000px;}
.y15_c00367{bottom:254.835000px;}
.y14_c00367{bottom:279.735000px;}
.y13_c00367{bottom:304.785000px;}
.y12_c00367{bottom:328.335000px;}
.y11_c00367{bottom:353.235000px;}
.y10_c00367{bottom:378.285000px;}
.yf_c00367{bottom:403.335000px;}
.ye_c00367{bottom:427.935000px;}
.yd_c00367{bottom:453.135000px;}
.yc_c00367{bottom:478.485000px;}
.yb_c00367{bottom:502.485000px;}
.ya_c00367{bottom:527.835000px;}
.y9_c00367{bottom:552.735000px;}
.y8_c00367{bottom:577.785000px;}
.y7_c00367{bottom:602.685000px;}
.y6_c00367{bottom:626.985000px;}
.y5_c00367{bottom:652.335000px;}
.y4_c00367{bottom:677.235000px;}
.y3_c00367{bottom:702.285000px;}
.y2_c00367{bottom:727.935000px;}
.y1_c00367{bottom:751.635000px;}
.h3_c00367{height:13.200074px;}
.h4_c00367{height:43.804688px;}
.h2_c00367{height:87.361816px;}
.h0_c00367{height:815.925000px;}
.h1_c00367{height:816.000000px;}
.w2_c00367{width:104.875500px;}
.w0_c00367{width:563.775000px;}
.w1_c00367{width:564.000000px;}
.x0_c00367{left:0.000000px;}
.x8_c00367{left:34.200000px;}
.x2_c00367{left:36.150000px;}
.xf_c00367{left:48.900000px;}
.x6_c00367{left:49.950000px;}
.x1_c00367{left:52.350000px;}
.xd_c00367{left:66.600000px;}
.xc_c00367{left:74.700000px;}
.x4_c00367{left:97.950000px;}
.x3_c00367{left:99.900000px;}
.x9_c00367{left:100.950000px;}
.xb_c00367{left:102.000000px;}
.xe_c00367{left:104.250000px;}
.xa_c00367{left:125.850000px;}
.x7_c00367{left:154.200000px;}
.x5_c00367{left:227.550000px;}
.x11_c00367{left:233.701767px;}
.x10_c00367{left:521.400000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls7_c00367{letter-spacing:0.000000pt;}
.ls3_c00367{letter-spacing:0.496000pt;}
.ls8_c00367{letter-spacing:2.666667pt;}
.ls6_c00367{letter-spacing:5.333333pt;}
.ls2_c00367{letter-spacing:10.600000pt;}
.ls1_c00367{letter-spacing:18.666667pt;}
.ls9_c00367{letter-spacing:45.333333pt;}
.ls4_c00367{letter-spacing:55.618667pt;}
.ls5_c00367{letter-spacing:80.904000pt;}
.ls0_c00367{letter-spacing:89.530667pt;}
.ws4_c00367{word-spacing:-60.114667pt;}
.ws3_c00367{word-spacing:-41.797333pt;}
.ws2_c00367{word-spacing:-20.114667pt;}
.ws0_c00367{word-spacing:-18.186667pt;}
.ws1_c00367{word-spacing:-14.781333pt;}
.ws5_c00367{word-spacing:0.000000pt;}
._24_c00367{margin-left:-50.602667pt;}
._27_c00367{margin-left:-19.722667pt;}
._1d_c00367{margin-left:-18.522667pt;}
._1c_c00367{margin-left:-17.602667pt;}
._20_c00367{margin-left:-14.658667pt;}
._15_c00367{margin-left:-13.560000pt;}
._1e_c00367{margin-left:-12.389333pt;}
._1b_c00367{margin-left:-11.370667pt;}
._1f_c00367{margin-left:-10.122667pt;}
._10_c00367{margin-left:-9.016000pt;}
._e_c00367{margin-left:-7.664000pt;}
._f_c00367{margin-left:-6.466667pt;}
._d_c00367{margin-left:-5.253333pt;}
._1_c00367{margin-left:-3.560000pt;}
._2_c00367{margin-left:-2.453333pt;}
._0_c00367{margin-left:-1.173333pt;}
._3_c00367{width:1.533333pt;}
._4_c00367{width:2.944000pt;}
._c_c00367{width:4.285333pt;}
._7_c00367{width:5.826667pt;}
._b_c00367{width:6.890667pt;}
._5_c00367{width:7.912000pt;}
._6_c00367{width:9.384000pt;}
._16_c00367{width:10.394667pt;}
._13_c00367{width:11.600000pt;}
._26_c00367{width:12.645333pt;}
._9_c00367{width:13.800000pt;}
._8_c00367{width:14.938667pt;}
._14_c00367{width:16.629333pt;}
._11_c00367{width:18.181333pt;}
._12_c00367{width:21.114667pt;}
._19_c00367{width:23.992000pt;}
._17_c00367{width:25.096000pt;}
._22_c00367{width:27.210667pt;}
._a_c00367{width:28.893333pt;}
._23_c00367{width:30.768000pt;}
._28_c00367{width:39.376000pt;}
._21_c00367{width:77.074667pt;}
._18_c00367{width:123.970667pt;}
._1a_c00367{width:322.181333pt;}
._25_c00367{width:611.048000pt;}
.fs6_c00367{font-size:42.666667pt;}
.fs4_c00367{font-size:45.333333pt;}
.fs1_c00367{font-size:50.666667pt;}
.fs0_c00367{font-size:53.333333pt;}
.fs5_c00367{font-size:56.000000pt;}
.fs3_c00367{font-size:58.666667pt;}
.fs2_c00367{font-size:61.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y1f_c00367{bottom:2.760000pt;}
.y1e_c00367{bottom:6.425204pt;}
.y1d_c00367{bottom:48.520000pt;}
.y1c_c00367{bottom:70.386667pt;}
.y1b_c00367{bottom:93.320000pt;}
.y1a_c00367{bottom:115.186667pt;}
.y19_c00367{bottom:137.720000pt;}
.y18_c00367{bottom:159.586667pt;}
.y17_c00367{bottom:182.120000pt;}
.y16_c00367{bottom:204.253333pt;}
.y15_c00367{bottom:226.520000pt;}
.y14_c00367{bottom:248.653333pt;}
.y13_c00367{bottom:270.920000pt;}
.y12_c00367{bottom:291.853333pt;}
.y11_c00367{bottom:313.986667pt;}
.y10_c00367{bottom:336.253333pt;}
.yf_c00367{bottom:358.520000pt;}
.ye_c00367{bottom:380.386667pt;}
.yd_c00367{bottom:402.786667pt;}
.yc_c00367{bottom:425.320000pt;}
.yb_c00367{bottom:446.653333pt;}
.ya_c00367{bottom:469.186667pt;}
.y9_c00367{bottom:491.320000pt;}
.y8_c00367{bottom:513.586667pt;}
.y7_c00367{bottom:535.720000pt;}
.y6_c00367{bottom:557.320000pt;}
.y5_c00367{bottom:579.853333pt;}
.y4_c00367{bottom:601.986667pt;}
.y3_c00367{bottom:624.253333pt;}
.y2_c00367{bottom:647.053333pt;}
.y1_c00367{bottom:668.120000pt;}
.h3_c00367{height:11.733399pt;}
.h4_c00367{height:38.937500pt;}
.h2_c00367{height:77.654948pt;}
.h0_c00367{height:725.266667pt;}
.h1_c00367{height:725.333333pt;}
.w2_c00367{width:93.222667pt;}
.w0_c00367{width:501.133333pt;}
.w1_c00367{width:501.333333pt;}
.x0_c00367{left:0.000000pt;}
.x8_c00367{left:30.400000pt;}
.x2_c00367{left:32.133333pt;}
.xf_c00367{left:43.466667pt;}
.x6_c00367{left:44.400000pt;}
.x1_c00367{left:46.533333pt;}
.xd_c00367{left:59.200000pt;}
.xc_c00367{left:66.400000pt;}
.x4_c00367{left:87.066667pt;}
.x3_c00367{left:88.800000pt;}
.x9_c00367{left:89.733333pt;}
.xb_c00367{left:90.666667pt;}
.xe_c00367{left:92.666667pt;}
.xa_c00367{left:111.866667pt;}
.x7_c00367{left:137.066667pt;}
.x5_c00367{left:202.266667pt;}
.x11_c00367{left:207.734904pt;}
.x10_c00367{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_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_b1e7b2dedacff21129b792e9.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_75fbe97fbc13b37509425bdd.woff2')format("woff");}.ff2_c00368{font-family:ff2_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:ff3_c00368;src:url('chunks/assets/font_6c821ad62f12bb7fb1c98ed4.woff2')format("woff");}.ff3_c00368{font-family:ff3_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:ff4_c00368;src:url('chunks/assets/font_bac32c3a8b782e037cb094f1.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls2_c00368{letter-spacing:0.600000px;}
.ls5_c00368{letter-spacing:3.000000px;}
.ls6_c00368{letter-spacing:6.000000px;}
.ls3_c00368{letter-spacing:9.000000px;}
.ls1_c00368{letter-spacing:37.371000px;}
.ls7_c00368{letter-spacing:51.000000px;}
.ls0_c00368{letter-spacing:429.171000px;}
.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;}
}
.ws1_c00368{word-spacing:-67.629000px;}
.ws0_c00368{word-spacing:-47.022000px;}
.ws2_c00368{word-spacing:-22.629000px;}
.ws3_c00368{word-spacing:0.000000px;}
._20_c00368{margin-left:-60.588000px;}
._2d_c00368{margin-left:-29.970000px;}
._2e_c00368{margin-left:-26.679000px;}
._3_c00368{margin-left:-23.700000px;}
._2c_c00368{margin-left:-20.958000px;}
._2f_c00368{margin-left:-18.153000px;}
._24_c00368{margin-left:-16.629000px;}
._28_c00368{margin-left:-14.694000px;}
._1_c00368{margin-left:-12.600000px;}
._2_c00368{margin-left:-10.650000px;}
._26_c00368{margin-left:-9.597000px;}
._0_c00368{margin-left:-8.550000px;}
._16_c00368{margin-left:-7.383000px;}
._11_c00368{margin-left:-6.141000px;}
._10_c00368{margin-left:-4.830000px;}
._8_c00368{margin-left:-3.381000px;}
._7_c00368{margin-left:-2.139000px;}
._a_c00368{margin-left:-1.035000px;}
._4_c00368{width:1.518000px;}
._5_c00368{width:2.829000px;}
._e_c00368{width:3.864000px;}
._18_c00368{width:4.986000px;}
._c_c00368{width:6.003000px;}
._b_c00368{width:7.245000px;}
._9_c00368{width:8.907000px;}
._12_c00368{width:10.551000px;}
._6_c00368{width:12.765000px;}
._d_c00368{width:13.800000px;}
._f_c00368{width:14.835000px;}
._15_c00368{width:16.284000px;}
._19_c00368{width:17.595000px;}
._1e_c00368{width:18.837000px;}
._1b_c00368{width:21.510000px;}
._14_c00368{width:25.473000px;}
._1c_c00368{width:29.508000px;}
._1a_c00368{width:31.653000px;}
._25_c00368{width:42.225000px;}
._2a_c00368{width:56.721000px;}
._27_c00368{width:68.931000px;}
._23_c00368{width:74.652000px;}
._1f_c00368{width:78.300000px;}
._22_c00368{width:80.265000px;}
._2b_c00368{width:88.437000px;}
._29_c00368{width:111.504000px;}
._1d_c00368{width:145.143000px;}
._13_c00368{width:194.586000px;}
._17_c00368{width:197.478000px;}
._21_c00368{width:937.794000px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(128,128,128);}
.fc0_c00368{color:rgb(0,0,0);}
.fs3_c00368{font-size:48.000000px;}
.fs2_c00368{font-size:66.000000px;}
.fs1_c00368{font-size:69.000000px;}
.fs0_c00368{font-size:75.000000px;}
.y0_c00368{bottom:0.000000px;}
.y20_c00368{bottom:3.105000px;}
.y1f_c00368{bottom:7.228371px;}
.y1e_c00368{bottom:62.565000px;}
.y1d_c00368{bottom:86.715000px;}
.y1c_c00368{bottom:112.065000px;}
.y1b_c00368{bottom:137.115000px;}
.y1a_c00368{bottom:162.015000px;}
.y19_c00368{bottom:187.065000px;}
.y18_c00368{bottom:212.265000px;}
.y17_c00368{bottom:237.015000px;}
.y16_c00368{bottom:262.215000px;}
.y15_c00368{bottom:286.665000px;}
.y14_c00368{bottom:311.865000px;}
.y13_c00368{bottom:359.865000px;}
.y12_c00368{bottom:385.065000px;}
.y11_c00368{bottom:410.865000px;}
.y10_c00368{bottom:435.165000px;}
.yf_c00368{bottom:460.065000px;}
.y1_c00368{bottom:474.165000px;}
.ye_c00368{bottom:484.965000px;}
.yd_c00368{bottom:510.015000px;}
.yc_c00368{bottom:533.715000px;}
.yb_c00368{bottom:558.315000px;}
.ya_c00368{bottom:583.215000px;}
.y9_c00368{bottom:607.965000px;}
.y8_c00368{bottom:633.165000px;}
.y7_c00368{bottom:657.465000px;}
.y6_c00368{bottom:682.515000px;}
.y5_c00368{bottom:707.415000px;}
.y4_c00368{bottom:732.465000px;}
.y3_c00368{bottom:757.365000px;}
.y2_c00368{bottom:781.065000px;}
.h6_c00368{height:13.200074px;}
.h7_c00368{height:43.804688px;}
.h2_c00368{height:73.571777px;}
.h5_c00368{height:80.758301px;}
.h4_c00368{height:83.563477px;}
.h3_c00368{height:87.361816px;}
.h1_c00368{height:831.000000px;}
.h0_c00368{height:831.075000px;}
.w2_c00368{width:104.875500px;}
.w0_c00368{width:582.375000px;}
.w1_c00368{width:582.750000px;}
.x0_c00368{left:0.000000px;}
.x3_c00368{left:35.700000px;}
.x5_c00368{left:37.500000px;}
.x4_c00368{left:38.700000px;}
.x6_c00368{left:40.050000px;}
.x9_c00368{left:41.550000px;}
.xa_c00368{left:42.900000px;}
.x8_c00368{left:168.450000px;}
.x7_c00368{left:183.600000px;}
.x2_c00368{left:208.800000px;}
.xc_c00368{left:243.001740px;}
.xb_c00368{left:415.350000px;}
.x1_c00368{left:501.450000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls2_c00368{letter-spacing:0.533333pt;}
.ls5_c00368{letter-spacing:2.666667pt;}
.ls6_c00368{letter-spacing:5.333333pt;}
.ls3_c00368{letter-spacing:8.000000pt;}
.ls1_c00368{letter-spacing:33.218667pt;}
.ls7_c00368{letter-spacing:45.333333pt;}
.ls0_c00368{letter-spacing:381.485333pt;}
.ws1_c00368{word-spacing:-60.114667pt;}
.ws0_c00368{word-spacing:-41.797333pt;}
.ws2_c00368{word-spacing:-20.114667pt;}
.ws3_c00368{word-spacing:0.000000pt;}
._20_c00368{margin-left:-53.856000pt;}
._2d_c00368{margin-left:-26.640000pt;}
._2e_c00368{margin-left:-23.714667pt;}
._3_c00368{margin-left:-21.066667pt;}
._2c_c00368{margin-left:-18.629333pt;}
._2f_c00368{margin-left:-16.136000pt;}
._24_c00368{margin-left:-14.781333pt;}
._28_c00368{margin-left:-13.061333pt;}
._1_c00368{margin-left:-11.200000pt;}
._2_c00368{margin-left:-9.466667pt;}
._26_c00368{margin-left:-8.530667pt;}
._0_c00368{margin-left:-7.600000pt;}
._16_c00368{margin-left:-6.562667pt;}
._11_c00368{margin-left:-5.458667pt;}
._10_c00368{margin-left:-4.293333pt;}
._8_c00368{margin-left:-3.005333pt;}
._7_c00368{margin-left:-1.901333pt;}
._a_c00368{margin-left:-0.920000pt;}
._4_c00368{width:1.349333pt;}
._5_c00368{width:2.514667pt;}
._e_c00368{width:3.434667pt;}
._18_c00368{width:4.432000pt;}
._c_c00368{width:5.336000pt;}
._b_c00368{width:6.440000pt;}
._9_c00368{width:7.917333pt;}
._12_c00368{width:9.378667pt;}
._6_c00368{width:11.346667pt;}
._d_c00368{width:12.266667pt;}
._f_c00368{width:13.186667pt;}
._15_c00368{width:14.474667pt;}
._19_c00368{width:15.640000pt;}
._1e_c00368{width:16.744000pt;}
._1b_c00368{width:19.120000pt;}
._14_c00368{width:22.642667pt;}
._1c_c00368{width:26.229333pt;}
._1a_c00368{width:28.136000pt;}
._25_c00368{width:37.533333pt;}
._2a_c00368{width:50.418667pt;}
._27_c00368{width:61.272000pt;}
._23_c00368{width:66.357333pt;}
._1f_c00368{width:69.600000pt;}
._22_c00368{width:71.346667pt;}
._2b_c00368{width:78.610667pt;}
._29_c00368{width:99.114667pt;}
._1d_c00368{width:129.016000pt;}
._13_c00368{width:172.965333pt;}
._17_c00368{width:175.536000pt;}
._21_c00368{width:833.594667pt;}
.fs3_c00368{font-size:42.666667pt;}
.fs2_c00368{font-size:58.666667pt;}
.fs1_c00368{font-size:61.333333pt;}
.fs0_c00368{font-size:66.666667pt;}
.y0_c00368{bottom:0.000000pt;}
.y20_c00368{bottom:2.760000pt;}
.y1f_c00368{bottom:6.425219pt;}
.y1e_c00368{bottom:55.613333pt;}
.y1d_c00368{bottom:77.080000pt;}
.y1c_c00368{bottom:99.613333pt;}
.y1b_c00368{bottom:121.880000pt;}
.y1a_c00368{bottom:144.013333pt;}
.y19_c00368{bottom:166.280000pt;}
.y18_c00368{bottom:188.680000pt;}
.y17_c00368{bottom:210.680000pt;}
.y16_c00368{bottom:233.080000pt;}
.y15_c00368{bottom:254.813333pt;}
.y14_c00368{bottom:277.213333pt;}
.y13_c00368{bottom:319.880000pt;}
.y12_c00368{bottom:342.280000pt;}
.y11_c00368{bottom:365.213333pt;}
.y10_c00368{bottom:386.813333pt;}
.yf_c00368{bottom:408.946667pt;}
.y1_c00368{bottom:421.480000pt;}
.ye_c00368{bottom:431.080000pt;}
.yd_c00368{bottom:453.346667pt;}
.yc_c00368{bottom:474.413333pt;}
.yb_c00368{bottom:496.280000pt;}
.ya_c00368{bottom:518.413333pt;}
.y9_c00368{bottom:540.413333pt;}
.y8_c00368{bottom:562.813333pt;}
.y7_c00368{bottom:584.413333pt;}
.y6_c00368{bottom:606.680000pt;}
.y5_c00368{bottom:628.813333pt;}
.y4_c00368{bottom:651.080000pt;}
.y3_c00368{bottom:673.213333pt;}
.y2_c00368{bottom:694.280000pt;}
.h6_c00368{height:11.733399pt;}
.h7_c00368{height:38.937500pt;}
.h2_c00368{height:65.397135pt;}
.h5_c00368{height:71.785156pt;}
.h4_c00368{height:74.278646pt;}
.h3_c00368{height:77.654948pt;}
.h1_c00368{height:738.666667pt;}
.h0_c00368{height:738.733333pt;}
.w2_c00368{width:93.222667pt;}
.w0_c00368{width:517.666667pt;}
.w1_c00368{width:518.000000pt;}
.x0_c00368{left:0.000000pt;}
.x3_c00368{left:31.733333pt;}
.x5_c00368{left:33.333333pt;}
.x4_c00368{left:34.400000pt;}
.x6_c00368{left:35.600000pt;}
.x9_c00368{left:36.933333pt;}
.xa_c00368{left:38.133333pt;}
.x8_c00368{left:149.733333pt;}
.x7_c00368{left:163.200000pt;}
.x2_c00368{left:185.600000pt;}
.xc_c00368{left:216.001546pt;}
.xb_c00368{left:369.200000pt;}
.x1_c00368{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_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_4fc9bdc5c2354bdb515e7abd.woff2')format("woff");}.ff1_c00369{font-family:ff1_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:ff2_c00369;src:url('chunks/assets/font_eaf1c7a5316c86892363aa5b.woff2')format("woff");}.ff2_c00369{font-family:ff2_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:ff3_c00369;src:url('chunks/assets/font_47670cd8cae7386fefceda68.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;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_c00369;src:url('chunks/assets/font_86795ab76c1aaba7a516fb7e.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;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_c00369;src:url('chunks/assets/font_2977228aa03b995ef97c5f51.woff2')format("woff");}.ff5_c00369{font-family:ff5_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:ff6_c00369;src:url('chunks/assets/font_f162107b46a45b374885537f.woff2')format("woff");}.ff6_c00369{font-family:ff6_c00369;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00369;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff7_c00369{font-family:ff7_c00369;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_c00369;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00369{font-family:ff8_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;}
.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;}
.ls7_c00369{letter-spacing:-6.000000px;}
.ls6_c00369{letter-spacing:0.000000px;}
.ls4_c00369{letter-spacing:4.458000px;}
.ls1_c00369{letter-spacing:4.680000px;}
.ls8_c00369{letter-spacing:6.000000px;}
.ls5_c00369{letter-spacing:17.325000px;}
.ls2_c00369{letter-spacing:19.200000px;}
.ls0_c00369{letter-spacing:33.771000px;}
.ls3_c00369{letter-spacing:36.771000px;}
.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;}
}
.ws2_c00369{word-spacing:-27.000000px;}
.ws1_c00369{word-spacing:-16.629000px;}
.ws0_c00369{word-spacing:-0.759000px;}
.ws3_c00369{word-spacing:-0.621000px;}
.ws4_c00369{word-spacing:-0.090000px;}
.ws5_c00369{word-spacing:0.000000px;}
._26_c00369{margin-left:-29.946000px;}
._21_c00369{margin-left:-19.752000px;}
._8_c00369{margin-left:-18.567000px;}
._d_c00369{margin-left:-17.388000px;}
._24_c00369{margin-left:-15.042000px;}
._28_c00369{margin-left:-13.755000px;}
._19_c00369{margin-left:-12.696000px;}
._e_c00369{margin-left:-11.340000px;}
._2_c00369{margin-left:-10.215000px;}
._4_c00369{margin-left:-8.694000px;}
._20_c00369{margin-left:-7.371000px;}
._10_c00369{margin-left:-6.306000px;}
._5_c00369{margin-left:-5.037000px;}
._6_c00369{margin-left:-4.002000px;}
._14_c00369{margin-left:-2.967000px;}
._13_c00369{margin-left:-1.725000px;}
._15_c00369{width:1.863000px;}
._16_c00369{width:3.795000px;}
._17_c00369{width:4.968000px;}
._7_c00369{width:6.306000px;}
._18_c00369{width:7.965000px;}
._a_c00369{width:10.005000px;}
._1a_c00369{width:11.379000px;}
._1b_c00369{width:12.708000px;}
._9_c00369{width:13.800000px;}
._1c_c00369{width:15.981000px;}
._1_c00369{width:17.733000px;}
._c_c00369{width:19.101000px;}
._1f_c00369{width:20.514000px;}
._0_c00369{width:21.735000px;}
._b_c00369{width:24.702000px;}
._3_c00369{width:27.150000px;}
._23_c00369{width:29.265000px;}
._1d_c00369{width:38.127000px;}
._f_c00369{width:79.809000px;}
._22_c00369{width:90.018000px;}
._27_c00369{width:181.332000px;}
._12_c00369{width:192.318000px;}
._25_c00369{width:209.553000px;}
._1e_c00369{width:255.873000px;}
._11_c00369{width:1376.256000px;}
._29_c00369{width:1386.570000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(128,128,128);}
.fc0_c00369{color:rgb(0,0,0);}
.fs4_c00369{font-size:42.000000px;}
.fs5_c00369{font-size:48.000000px;}
.fs3_c00369{font-size:66.000000px;}
.fs0_c00369{font-size:69.000000px;}
.fs2_c00369{font-size:75.000000px;}
.fs1_c00369{font-size:90.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1f_c00369{bottom:3.105000px;}
.y1e_c00369{bottom:7.228355px;}
.y1d_c00369{bottom:53.235000px;}
.y1c_c00369{bottom:77.535000px;}
.y1b_c00369{bottom:103.485000px;}
.y1a_c00369{bottom:128.535000px;}
.y19_c00369{bottom:153.435000px;}
.y18_c00369{bottom:178.785000px;}
.y17_c00369{bottom:202.785000px;}
.y16_c00369{bottom:227.385000px;}
.y15_c00369{bottom:254.385000px;}
.y14_c00369{bottom:278.685000px;}
.y13_c00369{bottom:303.735000px;}
.y12_c00369{bottom:328.035000px;}
.y11_c00369{bottom:352.335000px;}
.y10_c00369{bottom:377.535000px;}
.yf_c00369{bottom:402.885000px;}
.ye_c00369{bottom:427.485000px;}
.yd_c00369{bottom:452.535000px;}
.yc_c00369{bottom:478.485000px;}
.yb_c00369{bottom:502.485000px;}
.ya_c00369{bottom:527.535000px;}
.y9_c00369{bottom:551.835000px;}
.y8_c00369{bottom:577.335000px;}
.y7_c00369{bottom:601.335000px;}
.y6_c00369{bottom:627.735000px;}
.y5_c00369{bottom:652.335000px;}
.y4_c00369{bottom:677.385000px;}
.y3_c00369{bottom:704.235000px;}
.y2_c00369{bottom:709.035000px;}
.y1_c00369{bottom:726.885000px;}
.h6_c00369{height:13.200074px;}
.h7_c00369{height:43.804688px;}
.h3_c00369{height:44.814000px;}
.h5_c00369{height:80.758301px;}
.h4_c00369{height:87.361816px;}
.h2_c00369{height:96.030000px;}
.h0_c00369{height:815.925000px;}
.h1_c00369{height:816.000000px;}
.w2_c00369{width:104.875500px;}
.w0_c00369{width:563.775000px;}
.w1_c00369{width:564.000000px;}
.x0_c00369{left:0.000000px;}
.xa_c00369{left:32.700000px;}
.x8_c00369{left:34.050000px;}
.xc_c00369{left:37.800000px;}
.xd_c00369{left:40.800000px;}
.x7_c00369{left:50.850000px;}
.xf_c00369{left:94.500000px;}
.xe_c00369{left:96.150000px;}
.x9_c00369{left:97.500000px;}
.x6_c00369{left:99.450000px;}
.x5_c00369{left:100.500000px;}
.x2_c00369{left:102.600000px;}
.x3_c00369{left:110.700000px;}
.xb_c00369{left:122.550000px;}
.x4_c00369{left:124.800000px;}
.x1_c00369{left:145.050000px;}
.x10_c00369{left:233.701767px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls7_c00369{letter-spacing:-5.333333pt;}
.ls6_c00369{letter-spacing:0.000000pt;}
.ls4_c00369{letter-spacing:3.962667pt;}
.ls1_c00369{letter-spacing:4.160000pt;}
.ls8_c00369{letter-spacing:5.333333pt;}
.ls5_c00369{letter-spacing:15.400000pt;}
.ls2_c00369{letter-spacing:17.066667pt;}
.ls0_c00369{letter-spacing:30.018667pt;}
.ls3_c00369{letter-spacing:32.685333pt;}
.ws2_c00369{word-spacing:-24.000000pt;}
.ws1_c00369{word-spacing:-14.781333pt;}
.ws0_c00369{word-spacing:-0.674667pt;}
.ws3_c00369{word-spacing:-0.552000pt;}
.ws4_c00369{word-spacing:-0.080000pt;}
.ws5_c00369{word-spacing:0.000000pt;}
._26_c00369{margin-left:-26.618667pt;}
._21_c00369{margin-left:-17.557333pt;}
._8_c00369{margin-left:-16.504000pt;}
._d_c00369{margin-left:-15.456000pt;}
._24_c00369{margin-left:-13.370667pt;}
._28_c00369{margin-left:-12.226667pt;}
._19_c00369{margin-left:-11.285333pt;}
._e_c00369{margin-left:-10.080000pt;}
._2_c00369{margin-left:-9.080000pt;}
._4_c00369{margin-left:-7.728000pt;}
._20_c00369{margin-left:-6.552000pt;}
._10_c00369{margin-left:-5.605333pt;}
._5_c00369{margin-left:-4.477333pt;}
._6_c00369{margin-left:-3.557333pt;}
._14_c00369{margin-left:-2.637333pt;}
._13_c00369{margin-left:-1.533333pt;}
._15_c00369{width:1.656000pt;}
._16_c00369{width:3.373333pt;}
._17_c00369{width:4.416000pt;}
._7_c00369{width:5.605333pt;}
._18_c00369{width:7.080000pt;}
._a_c00369{width:8.893333pt;}
._1a_c00369{width:10.114667pt;}
._1b_c00369{width:11.296000pt;}
._9_c00369{width:12.266667pt;}
._1c_c00369{width:14.205333pt;}
._1_c00369{width:15.762667pt;}
._c_c00369{width:16.978667pt;}
._1f_c00369{width:18.234667pt;}
._0_c00369{width:19.320000pt;}
._b_c00369{width:21.957333pt;}
._3_c00369{width:24.133333pt;}
._23_c00369{width:26.013333pt;}
._1d_c00369{width:33.890667pt;}
._f_c00369{width:70.941333pt;}
._22_c00369{width:80.016000pt;}
._27_c00369{width:161.184000pt;}
._12_c00369{width:170.949333pt;}
._25_c00369{width:186.269333pt;}
._1e_c00369{width:227.442667pt;}
._11_c00369{width:1223.338667pt;}
._29_c00369{width:1232.506667pt;}
.fs4_c00369{font-size:37.333333pt;}
.fs5_c00369{font-size:42.666667pt;}
.fs3_c00369{font-size:58.666667pt;}
.fs0_c00369{font-size:61.333333pt;}
.fs2_c00369{font-size:66.666667pt;}
.fs1_c00369{font-size:80.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y1f_c00369{bottom:2.760000pt;}
.y1e_c00369{bottom:6.425204pt;}
.y1d_c00369{bottom:47.320000pt;}
.y1c_c00369{bottom:68.920000pt;}
.y1b_c00369{bottom:91.986667pt;}
.y1a_c00369{bottom:114.253333pt;}
.y19_c00369{bottom:136.386667pt;}
.y18_c00369{bottom:158.920000pt;}
.y17_c00369{bottom:180.253333pt;}
.y16_c00369{bottom:202.120000pt;}
.y15_c00369{bottom:226.120000pt;}
.y14_c00369{bottom:247.720000pt;}
.y13_c00369{bottom:269.986667pt;}
.y12_c00369{bottom:291.586667pt;}
.y11_c00369{bottom:313.186667pt;}
.y10_c00369{bottom:335.586667pt;}
.yf_c00369{bottom:358.120000pt;}
.ye_c00369{bottom:379.986667pt;}
.yd_c00369{bottom:402.253333pt;}
.yc_c00369{bottom:425.320000pt;}
.yb_c00369{bottom:446.653333pt;}
.ya_c00369{bottom:468.920000pt;}
.y9_c00369{bottom:490.520000pt;}
.y8_c00369{bottom:513.186667pt;}
.y7_c00369{bottom:534.520000pt;}
.y6_c00369{bottom:557.986667pt;}
.y5_c00369{bottom:579.853333pt;}
.y4_c00369{bottom:602.120000pt;}
.y3_c00369{bottom:625.986667pt;}
.y2_c00369{bottom:630.253333pt;}
.y1_c00369{bottom:646.120000pt;}
.h6_c00369{height:11.733399pt;}
.h7_c00369{height:38.937500pt;}
.h3_c00369{height:39.834667pt;}
.h5_c00369{height:71.785156pt;}
.h4_c00369{height:77.654948pt;}
.h2_c00369{height:85.360000pt;}
.h0_c00369{height:725.266667pt;}
.h1_c00369{height:725.333333pt;}
.w2_c00369{width:93.222667pt;}
.w0_c00369{width:501.133333pt;}
.w1_c00369{width:501.333333pt;}
.x0_c00369{left:0.000000pt;}
.xa_c00369{left:29.066667pt;}
.x8_c00369{left:30.266667pt;}
.xc_c00369{left:33.600000pt;}
.xd_c00369{left:36.266667pt;}
.x7_c00369{left:45.200000pt;}
.xf_c00369{left:84.000000pt;}
.xe_c00369{left:85.466667pt;}
.x9_c00369{left:86.666667pt;}
.x6_c00369{left:88.400000pt;}
.x5_c00369{left:89.333333pt;}
.x2_c00369{left:91.200000pt;}
.x3_c00369{left:98.400000pt;}
.xb_c00369{left:108.933333pt;}
.x4_c00369{left:110.933333pt;}
.x1_c00369{left:128.933333pt;}
.x10_c00369{left:207.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_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_a217407060e3be80a74ea0ac.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_47abdd21f9c7b8054b04c9fe.woff2')format("woff");}.ff2_c00370{font-family:ff2_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:ff3_c00370;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00370{font-family:ff3_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;}
.ls1_c00370{letter-spacing:0.000000px;}
.ls2_c00370{letter-spacing:6.000000px;}
.ls4_c00370{letter-spacing:33.000000px;}
.ls0_c00370{letter-spacing:37.971000px;}
.ls3_c00370{letter-spacing:51.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:-67.629000px;}
.ws2_c00370{word-spacing:-46.737000px;}
.ws0_c00370{word-spacing:-16.629000px;}
.ws3_c00370{word-spacing:0.000000px;}
._25_c00370{margin-left:-59.076000px;}
._10_c00370{margin-left:-22.839000px;}
._1a_c00370{margin-left:-20.976000px;}
._24_c00370{margin-left:-18.906000px;}
._1b_c00370{margin-left:-16.146000px;}
._23_c00370{margin-left:-14.247000px;}
._19_c00370{margin-left:-12.834000px;}
._e_c00370{margin-left:-11.730000px;}
._4_c00370{margin-left:-9.729000px;}
._c_c00370{margin-left:-7.797000px;}
._f_c00370{margin-left:-6.762000px;}
._b_c00370{margin-left:-5.658000px;}
._7_c00370{margin-left:-4.002000px;}
._0_c00370{margin-left:-2.346000px;}
._1_c00370{margin-left:-1.173000px;}
._3_c00370{width:1.173000px;}
._8_c00370{width:2.415000px;}
._15_c00370{width:4.140000px;}
._14_c00370{width:6.072000px;}
._6_c00370{width:7.797000px;}
._13_c00370{width:8.970000px;}
._d_c00370{width:10.971000px;}
._12_c00370{width:13.179000px;}
._a_c00370{width:14.766000px;}
._11_c00370{width:17.319000px;}
._9_c00370{width:18.423000px;}
._5_c00370{width:19.665000px;}
._16_c00370{width:20.769000px;}
._21_c00370{width:22.356000px;}
._26_c00370{width:24.909000px;}
._1d_c00370{width:31.395000px;}
._1c_c00370{width:33.672000px;}
._18_c00370{width:35.190000px;}
._27_c00370{width:37.398000px;}
._22_c00370{width:72.726000px;}
._20_c00370{width:90.030000px;}
._28_c00370{width:92.046000px;}
._17_c00370{width:94.731000px;}
._1e_c00370{width:182.541000px;}
._1f_c00370{width:232.458000px;}
._2_c00370{width:512.832000px;}
._29_c00370{width:535.233000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(128,128,128);}
.fc0_c00370{color:rgb(0,0,0);}
.fs2_c00370{font-size:48.000000px;}
.fs1_c00370{font-size:57.000000px;}
.fs0_c00370{font-size:69.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1d_c00370{bottom:3.105000px;}
.y1c_c00370{bottom:7.228371px;}
.y1b_c00370{bottom:67.515000px;}
.y1a_c00370{bottom:91.215000px;}
.y19_c00370{bottom:138.015000px;}
.y18_c00370{bottom:164.715000px;}
.y17_c00370{bottom:189.465000px;}
.y16_c00370{bottom:214.365000px;}
.y15_c00370{bottom:239.265000px;}
.y14_c00370{bottom:264.615000px;}
.y13_c00370{bottom:288.915000px;}
.y12_c00370{bottom:314.265000px;}
.y11_c00370{bottom:338.865000px;}
.y10_c00370{bottom:363.465000px;}
.yf_c00370{bottom:388.215000px;}
.ye_c00370{bottom:413.415000px;}
.yd_c00370{bottom:437.865000px;}
.yc_c00370{bottom:462.465000px;}
.yb_c00370{bottom:511.065000px;}
.ya_c00370{bottom:560.265000px;}
.y9_c00370{bottom:585.015000px;}
.y8_c00370{bottom:609.915000px;}
.y7_c00370{bottom:634.815000px;}
.y6_c00370{bottom:659.565000px;}
.y5_c00370{bottom:683.865000px;}
.y4_c00370{bottom:709.215000px;}
.y3_c00370{bottom:733.815000px;}
.y2_c00370{bottom:758.715000px;}
.y1_c00370{bottom:783.465000px;}
.h5_c00370{height:13.200074px;}
.h6_c00370{height:43.804688px;}
.h4_c00370{height:66.713379px;}
.h3_c00370{height:80.758301px;}
.h2_c00370{height:87.361816px;}
.h1_c00370{height:831.000000px;}
.h0_c00370{height:831.075000px;}
.w2_c00370{width:104.875500px;}
.w0_c00370{width:582.375000px;}
.w1_c00370{width:582.750000px;}
.x0_c00370{left:0.000000px;}
.x9_c00370{left:34.800000px;}
.x8_c00370{left:36.000000px;}
.x7_c00370{left:38.700000px;}
.x4_c00370{left:39.750000px;}
.x3_c00370{left:40.800000px;}
.xd_c00370{left:45.600000px;}
.x2_c00370{left:50.400000px;}
.xa_c00370{left:64.050000px;}
.x6_c00370{left:66.150000px;}
.xb_c00370{left:76.650000px;}
.x5_c00370{left:165.750000px;}
.xc_c00370{left:193.050000px;}
.x1_c00370{left:196.800000px;}
.xf_c00370{left:243.001740px;}
.xe_c00370{left:287.550000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls1_c00370{letter-spacing:0.000000pt;}
.ls2_c00370{letter-spacing:5.333333pt;}
.ls4_c00370{letter-spacing:29.333333pt;}
.ls0_c00370{letter-spacing:33.752000pt;}
.ls3_c00370{letter-spacing:45.333333pt;}
.ws1_c00370{word-spacing:-60.114667pt;}
.ws2_c00370{word-spacing:-41.544000pt;}
.ws0_c00370{word-spacing:-14.781333pt;}
.ws3_c00370{word-spacing:0.000000pt;}
._25_c00370{margin-left:-52.512000pt;}
._10_c00370{margin-left:-20.301333pt;}
._1a_c00370{margin-left:-18.645333pt;}
._24_c00370{margin-left:-16.805333pt;}
._1b_c00370{margin-left:-14.352000pt;}
._23_c00370{margin-left:-12.664000pt;}
._19_c00370{margin-left:-11.408000pt;}
._e_c00370{margin-left:-10.426667pt;}
._4_c00370{margin-left:-8.648000pt;}
._c_c00370{margin-left:-6.930667pt;}
._f_c00370{margin-left:-6.010667pt;}
._b_c00370{margin-left:-5.029333pt;}
._7_c00370{margin-left:-3.557333pt;}
._0_c00370{margin-left:-2.085333pt;}
._1_c00370{margin-left:-1.042667pt;}
._3_c00370{width:1.042667pt;}
._8_c00370{width:2.146667pt;}
._15_c00370{width:3.680000pt;}
._14_c00370{width:5.397333pt;}
._6_c00370{width:6.930667pt;}
._13_c00370{width:7.973333pt;}
._d_c00370{width:9.752000pt;}
._12_c00370{width:11.714667pt;}
._a_c00370{width:13.125333pt;}
._11_c00370{width:15.394667pt;}
._9_c00370{width:16.376000pt;}
._5_c00370{width:17.480000pt;}
._16_c00370{width:18.461333pt;}
._21_c00370{width:19.872000pt;}
._26_c00370{width:22.141333pt;}
._1d_c00370{width:27.906667pt;}
._1c_c00370{width:29.930667pt;}
._18_c00370{width:31.280000pt;}
._27_c00370{width:33.242667pt;}
._22_c00370{width:64.645333pt;}
._20_c00370{width:80.026667pt;}
._28_c00370{width:81.818667pt;}
._17_c00370{width:84.205333pt;}
._1e_c00370{width:162.258667pt;}
._1f_c00370{width:206.629333pt;}
._2_c00370{width:455.850667pt;}
._29_c00370{width:475.762667pt;}
.fs2_c00370{font-size:42.666667pt;}
.fs1_c00370{font-size:50.666667pt;}
.fs0_c00370{font-size:61.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y1d_c00370{bottom:2.760000pt;}
.y1c_c00370{bottom:6.425219pt;}
.y1b_c00370{bottom:60.013333pt;}
.y1a_c00370{bottom:81.080000pt;}
.y19_c00370{bottom:122.680000pt;}
.y18_c00370{bottom:146.413333pt;}
.y17_c00370{bottom:168.413333pt;}
.y16_c00370{bottom:190.546667pt;}
.y15_c00370{bottom:212.680000pt;}
.y14_c00370{bottom:235.213333pt;}
.y13_c00370{bottom:256.813333pt;}
.y12_c00370{bottom:279.346667pt;}
.y11_c00370{bottom:301.213333pt;}
.y10_c00370{bottom:323.080000pt;}
.yf_c00370{bottom:345.080000pt;}
.ye_c00370{bottom:367.480000pt;}
.yd_c00370{bottom:389.213333pt;}
.yc_c00370{bottom:411.080000pt;}
.yb_c00370{bottom:454.280000pt;}
.ya_c00370{bottom:498.013333pt;}
.y9_c00370{bottom:520.013333pt;}
.y8_c00370{bottom:542.146667pt;}
.y7_c00370{bottom:564.280000pt;}
.y6_c00370{bottom:586.280000pt;}
.y5_c00370{bottom:607.880000pt;}
.y4_c00370{bottom:630.413333pt;}
.y3_c00370{bottom:652.280000pt;}
.y2_c00370{bottom:674.413333pt;}
.y1_c00370{bottom:696.413333pt;}
.h5_c00370{height:11.733399pt;}
.h6_c00370{height:38.937500pt;}
.h4_c00370{height:59.300781pt;}
.h3_c00370{height:71.785156pt;}
.h2_c00370{height:77.654948pt;}
.h1_c00370{height:738.666667pt;}
.h0_c00370{height:738.733333pt;}
.w2_c00370{width:93.222667pt;}
.w0_c00370{width:517.666667pt;}
.w1_c00370{width:518.000000pt;}
.x0_c00370{left:0.000000pt;}
.x9_c00370{left:30.933333pt;}
.x8_c00370{left:32.000000pt;}
.x7_c00370{left:34.400000pt;}
.x4_c00370{left:35.333333pt;}
.x3_c00370{left:36.266667pt;}
.xd_c00370{left:40.533333pt;}
.x2_c00370{left:44.800000pt;}
.xa_c00370{left:56.933333pt;}
.x6_c00370{left:58.800000pt;}
.xb_c00370{left:68.133333pt;}
.x5_c00370{left:147.333333pt;}
.xc_c00370{left:171.600000pt;}
.x1_c00370{left:174.933333pt;}
.xf_c00370{left:216.001546pt;}
.xe_c00370{left:255.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_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_8adf57f5da6ebc777286e4c7.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.568848;font-style:normal;font-weight:normal;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_3a9a60def191e0646d9de2cf.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.480469;font-style:normal;font-weight:normal;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_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_1ea8648d769619c2bcd97d24.woff2')format("woff");}.ff4_c00371{font-family:ff4_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:ff5_c00371;src:url('chunks/assets/font_ab2529df15d2eb47ee158a28.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;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_c00371;src:url('chunks/assets/font_1851b94acef1a33e8893a820.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00371;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00371{font-family:ff7_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;}
.ls6_c00371{letter-spacing:-6.000000px;}
.ls3_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:3.600000px;}
.ls2_c00371{letter-spacing:6.000000px;}
.ls5_c00371{letter-spacing:12.000000px;}
.ls4_c00371{letter-spacing:18.000000px;}
.ls0_c00371{letter-spacing:19.800000px;}
.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;}
}
.ws1_c00371{word-spacing:-34.629000px;}
.ws2_c00371{word-spacing:-27.000000px;}
.ws0_c00371{word-spacing:-16.629000px;}
.ws4_c00371{word-spacing:-13.521000px;}
.ws3_c00371{word-spacing:-0.054000px;}
.ws5_c00371{word-spacing:0.000000px;}
._20_c00371{margin-left:-20.424000px;}
._22_c00371{margin-left:-18.906000px;}
._19_c00371{margin-left:-17.802000px;}
._11_c00371{margin-left:-15.663000px;}
._1d_c00371{margin-left:-14.559000px;}
._13_c00371{margin-left:-13.317000px;}
._1a_c00371{margin-left:-11.109000px;}
._1c_c00371{margin-left:-9.867000px;}
._6_c00371{margin-left:-8.556000px;}
._14_c00371{margin-left:-7.245000px;}
._9_c00371{margin-left:-5.796000px;}
._5_c00371{margin-left:-4.278000px;}
._12_c00371{margin-left:-3.243000px;}
._0_c00371{margin-left:-2.208000px;}
._3_c00371{margin-left:-1.173000px;}
._c_c00371{width:1.035000px;}
._7_c00371{width:2.070000px;}
._2_c00371{width:3.450000px;}
._8_c00371{width:4.830000px;}
._e_c00371{width:6.831000px;}
._4_c00371{width:8.004000px;}
._10_c00371{width:9.522000px;}
._f_c00371{width:11.247000px;}
._17_c00371{width:12.420000px;}
._16_c00371{width:13.731000px;}
._a_c00371{width:14.835000px;}
._2c_c00371{width:16.083000px;}
._b_c00371{width:17.733000px;}
._d_c00371{width:19.458000px;}
._1f_c00371{width:20.700000px;}
._18_c00371{width:23.046000px;}
._15_c00371{width:24.702000px;}
._24_c00371{width:26.289000px;}
._23_c00371{width:27.669000px;}
._27_c00371{width:30.015000px;}
._28_c00371{width:32.982000px;}
._25_c00371{width:35.328000px;}
._29_c00371{width:37.191000px;}
._2a_c00371{width:42.849000px;}
._26_c00371{width:48.852000px;}
._1e_c00371{width:82.800000px;}
._1b_c00371{width:99.183000px;}
._21_c00371{width:102.219000px;}
._2d_c00371{width:351.348000px;}
._1_c00371{width:373.323000px;}
._2b_c00371{width:1194.825000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(128,128,128);}
.fc0_c00371{color:rgb(0,0,0);}
.fs6_c00371{font-size:48.000000px;}
.fs3_c00371{font-size:54.000000px;}
.fs4_c00371{font-size:57.000000px;}
.fs2_c00371{font-size:60.000000px;}
.fs1_c00371{font-size:66.000000px;}
.fs0_c00371{font-size:69.000000px;}
.fs5_c00371{font-size:81.000000px;}
.y0_c00371{bottom:0.000000px;}
.y20_c00371{bottom:3.105000px;}
.y1f_c00371{bottom:7.228355px;}
.y1e_c00371{bottom:54.285000px;}
.y1d_c00371{bottom:79.185000px;}
.y1c_c00371{bottom:106.635000px;}
.y1b_c00371{bottom:128.835000px;}
.y1a_c00371{bottom:156.585000px;}
.y19_c00371{bottom:181.935000px;}
.y18_c00371{bottom:206.835000px;}
.y17_c00371{bottom:231.735000px;}
.y16_c00371{bottom:257.085000px;}
.y15_c00371{bottom:282.135000px;}
.y14_c00371{bottom:305.985000px;}
.y13_c00371{bottom:331.035000px;}
.y12_c00371{bottom:355.635000px;}
.y11_c00371{bottom:379.935000px;}
.y10_c00371{bottom:405.885000px;}
.yf_c00371{bottom:430.185000px;}
.ye_c00371{bottom:455.835000px;}
.yd_c00371{bottom:480.885000px;}
.yc_c00371{bottom:505.785000px;}
.yb_c00371{bottom:530.085000px;}
.ya_c00371{bottom:555.435000px;}
.y9_c00371{bottom:580.185000px;}
.y8_c00371{bottom:604.485000px;}
.y7_c00371{bottom:629.985000px;}
.y6_c00371{bottom:655.035000px;}
.y5_c00371{bottom:679.935000px;}
.y4_c00371{bottom:704.385000px;}
.y3_c00371{bottom:728.985000px;}
.y2_c00371{bottom:754.185000px;}
.y1_c00371{bottom:779.235000px;}
.h7_c00371{height:13.200074px;}
.h8_c00371{height:43.804688px;}
.h4_c00371{height:58.857422px;}
.h5_c00371{height:72.168457px;}
.h3_c00371{height:80.758301px;}
.h2_c00371{height:87.361816px;}
.h6_c00371{height:94.803223px;}
.h0_c00371{height:815.925000px;}
.h1_c00371{height:816.000000px;}
.w2_c00371{width:104.875500px;}
.w0_c00371{width:563.775000px;}
.w1_c00371{width:564.000000px;}
.x0_c00371{left:0.000000px;}
.xe_c00371{left:20.250000px;}
.xb_c00371{left:21.300000px;}
.x7_c00371{left:39.900000px;}
.xd_c00371{left:82.050000px;}
.xc_c00371{left:83.400000px;}
.xa_c00371{left:84.450000px;}
.x8_c00371{left:87.150000px;}
.x9_c00371{left:88.500000px;}
.x6_c00371{left:89.550000px;}
.x5_c00371{left:90.750000px;}
.x4_c00371{left:91.800000px;}
.x2_c00371{left:93.150000px;}
.x1_c00371{left:109.050000px;}
.x3_c00371{left:117.900000px;}
.x10_c00371{left:233.701767px;}
.xf_c00371{left:502.650000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls6_c00371{letter-spacing:-5.333333pt;}
.ls3_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:3.200000pt;}
.ls2_c00371{letter-spacing:5.333333pt;}
.ls5_c00371{letter-spacing:10.666667pt;}
.ls4_c00371{letter-spacing:16.000000pt;}
.ls0_c00371{letter-spacing:17.600000pt;}
.ws1_c00371{word-spacing:-30.781333pt;}
.ws2_c00371{word-spacing:-24.000000pt;}
.ws0_c00371{word-spacing:-14.781333pt;}
.ws4_c00371{word-spacing:-12.018667pt;}
.ws3_c00371{word-spacing:-0.048000pt;}
.ws5_c00371{word-spacing:0.000000pt;}
._20_c00371{margin-left:-18.154667pt;}
._22_c00371{margin-left:-16.805333pt;}
._19_c00371{margin-left:-15.824000pt;}
._11_c00371{margin-left:-13.922667pt;}
._1d_c00371{margin-left:-12.941333pt;}
._13_c00371{margin-left:-11.837333pt;}
._1a_c00371{margin-left:-9.874667pt;}
._1c_c00371{margin-left:-8.770667pt;}
._6_c00371{margin-left:-7.605333pt;}
._14_c00371{margin-left:-6.440000pt;}
._9_c00371{margin-left:-5.152000pt;}
._5_c00371{margin-left:-3.802667pt;}
._12_c00371{margin-left:-2.882667pt;}
._0_c00371{margin-left:-1.962667pt;}
._3_c00371{margin-left:-1.042667pt;}
._c_c00371{width:0.920000pt;}
._7_c00371{width:1.840000pt;}
._2_c00371{width:3.066667pt;}
._8_c00371{width:4.293333pt;}
._e_c00371{width:6.072000pt;}
._4_c00371{width:7.114667pt;}
._10_c00371{width:8.464000pt;}
._f_c00371{width:9.997333pt;}
._17_c00371{width:11.040000pt;}
._16_c00371{width:12.205333pt;}
._a_c00371{width:13.186667pt;}
._2c_c00371{width:14.296000pt;}
._b_c00371{width:15.762667pt;}
._d_c00371{width:17.296000pt;}
._1f_c00371{width:18.400000pt;}
._18_c00371{width:20.485333pt;}
._15_c00371{width:21.957333pt;}
._24_c00371{width:23.368000pt;}
._23_c00371{width:24.594667pt;}
._27_c00371{width:26.680000pt;}
._28_c00371{width:29.317333pt;}
._25_c00371{width:31.402667pt;}
._29_c00371{width:33.058667pt;}
._2a_c00371{width:38.088000pt;}
._26_c00371{width:43.424000pt;}
._1e_c00371{width:73.600000pt;}
._1b_c00371{width:88.162667pt;}
._21_c00371{width:90.861333pt;}
._2d_c00371{width:312.309333pt;}
._1_c00371{width:331.842667pt;}
._2b_c00371{width:1062.066667pt;}
.fs6_c00371{font-size:42.666667pt;}
.fs3_c00371{font-size:48.000000pt;}
.fs4_c00371{font-size:50.666667pt;}
.fs2_c00371{font-size:53.333333pt;}
.fs1_c00371{font-size:58.666667pt;}
.fs0_c00371{font-size:61.333333pt;}
.fs5_c00371{font-size:72.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y20_c00371{bottom:2.760000pt;}
.y1f_c00371{bottom:6.425204pt;}
.y1e_c00371{bottom:48.253333pt;}
.y1d_c00371{bottom:70.386667pt;}
.y1c_c00371{bottom:94.786667pt;}
.y1b_c00371{bottom:114.520000pt;}
.y1a_c00371{bottom:139.186667pt;}
.y19_c00371{bottom:161.720000pt;}
.y18_c00371{bottom:183.853333pt;}
.y17_c00371{bottom:205.986667pt;}
.y16_c00371{bottom:228.520000pt;}
.y15_c00371{bottom:250.786667pt;}
.y14_c00371{bottom:271.986667pt;}
.y13_c00371{bottom:294.253333pt;}
.y12_c00371{bottom:316.120000pt;}
.y11_c00371{bottom:337.720000pt;}
.y10_c00371{bottom:360.786667pt;}
.yf_c00371{bottom:382.386667pt;}
.ye_c00371{bottom:405.186667pt;}
.yd_c00371{bottom:427.453333pt;}
.yc_c00371{bottom:449.586667pt;}
.yb_c00371{bottom:471.186667pt;}
.ya_c00371{bottom:493.720000pt;}
.y9_c00371{bottom:515.720000pt;}
.y8_c00371{bottom:537.320000pt;}
.y7_c00371{bottom:559.986667pt;}
.y6_c00371{bottom:582.253333pt;}
.y5_c00371{bottom:604.386667pt;}
.y4_c00371{bottom:626.120000pt;}
.y3_c00371{bottom:647.986667pt;}
.y2_c00371{bottom:670.386667pt;}
.y1_c00371{bottom:692.653333pt;}
.h7_c00371{height:11.733399pt;}
.h8_c00371{height:38.937500pt;}
.h4_c00371{height:52.317708pt;}
.h5_c00371{height:64.149740pt;}
.h3_c00371{height:71.785156pt;}
.h2_c00371{height:77.654948pt;}
.h6_c00371{height:84.269531pt;}
.h0_c00371{height:725.266667pt;}
.h1_c00371{height:725.333333pt;}
.w2_c00371{width:93.222667pt;}
.w0_c00371{width:501.133333pt;}
.w1_c00371{width:501.333333pt;}
.x0_c00371{left:0.000000pt;}
.xe_c00371{left:18.000000pt;}
.xb_c00371{left:18.933333pt;}
.x7_c00371{left:35.466667pt;}
.xd_c00371{left:72.933333pt;}
.xc_c00371{left:74.133333pt;}
.xa_c00371{left:75.066667pt;}
.x8_c00371{left:77.466667pt;}
.x9_c00371{left:78.666667pt;}
.x6_c00371{left:79.600000pt;}
.x5_c00371{left:80.666667pt;}
.x4_c00371{left:81.600000pt;}
.x2_c00371{left:82.800000pt;}
.x1_c00371{left:96.933333pt;}
.x3_c00371{left:104.800000pt;}
.x10_c00371{left:207.734904pt;}
.xf_c00371{left:446.800000pt;}
}





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

.ir_c00372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_e24000911c9a0f7a9eb01657.woff2')format("woff");}.ff1_c00372{font-family:ff1_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:ff2_c00372;src:url('chunks/assets/font_31906fc7970ba8a4d5a8d490.woff2')format("woff");}.ff2_c00372{font-family:ff2_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:ff3_c00372;src:url('chunks/assets/font_df6c4ef5e3bdb5b5e8da384d.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;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_c00372;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00372{font-family:ff4_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;}
.v1_c00372{vertical-align:18.000000px;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls2_c00372{letter-spacing:3.000000px;}
.ls0_c00372{letter-spacing:6.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-16.629000px;}
.ws2_c00372{word-spacing:0.000000px;}
.ws1_c00372{word-spacing:1517.862000px;}
._2d_c00372{margin-left:-32.328000px;}
._2f_c00372{margin-left:-21.621000px;}
._15_c00372{margin-left:-19.371000px;}
._21_c00372{margin-left:-18.009000px;}
._11_c00372{margin-left:-16.611000px;}
._f_c00372{margin-left:-15.525000px;}
._2b_c00372{margin-left:-14.148000px;}
._b_c00372{margin-left:-13.041000px;}
._29_c00372{margin-left:-11.694000px;}
._14_c00372{margin-left:-10.032000px;}
._2_c00372{margin-left:-8.763000px;}
._8_c00372{margin-left:-7.590000px;}
._7_c00372{margin-left:-6.555000px;}
._3_c00372{margin-left:-5.313000px;}
._4_c00372{margin-left:-3.933000px;}
._6_c00372{margin-left:-2.553000px;}
._5_c00372{margin-left:-1.173000px;}
._0_c00372{width:1.578000px;}
._c_c00372{width:2.925000px;}
._9_c00372{width:4.071000px;}
._a_c00372{width:5.934000px;}
._10_c00372{width:7.314000px;}
._1d_c00372{width:9.276000px;}
._d_c00372{width:10.698000px;}
._13_c00372{width:12.144000px;}
._17_c00372{width:13.257000px;}
._19_c00372{width:14.490000px;}
._12_c00372{width:15.594000px;}
._25_c00372{width:16.710000px;}
._18_c00372{width:17.829000px;}
._26_c00372{width:19.389000px;}
._1b_c00372{width:21.891000px;}
._1c_c00372{width:23.382000px;}
._2c_c00372{width:26.631000px;}
._22_c00372{width:28.083000px;}
._e_c00372{width:30.498000px;}
._24_c00372{width:33.276000px;}
._28_c00372{width:34.389000px;}
._20_c00372{width:41.064000px;}
._1e_c00372{width:44.541000px;}
._1f_c00372{width:62.100000px;}
._1a_c00372{width:93.135000px;}
._16_c00372{width:104.484000px;}
._27_c00372{width:115.383000px;}
._23_c00372{width:169.155000px;}
._2a_c00372{width:250.881000px;}
._2e_c00372{width:375.762000px;}
._1_c00372{width:517.983000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(128,128,128);}
.fc0_c00372{color:rgb(0,0,0);}
.fs2_c00372{font-size:42.000000px;}
.fs3_c00372{font-size:45.000000px;}
.fs4_c00372{font-size:48.000000px;}
.fs1_c00372{font-size:63.000000px;}
.fs0_c00372{font-size:69.000000px;}
.y0_c00372{bottom:0.000000px;}
.y1e_c00372{bottom:3.105000px;}
.y1d_c00372{bottom:7.228363px;}
.y1c_c00372{bottom:95.250000px;}
.y1b_c00372{bottom:110.400000px;}
.y1a_c00372{bottom:134.700000px;}
.y19_c00372{bottom:159.750000px;}
.y18_c00372{bottom:184.350000px;}
.y17_c00372{bottom:209.700000px;}
.y16_c00372{bottom:234.000000px;}
.y15_c00372{bottom:258.150000px;}
.y14_c00372{bottom:284.550000px;}
.y13_c00372{bottom:307.800000px;}
.y12_c00372{bottom:332.400000px;}
.y11_c00372{bottom:356.700000px;}
.y10_c00372{bottom:383.100000px;}
.yf_c00372{bottom:408.000000px;}
.ye_c00372{bottom:432.750000px;}
.yd_c00372{bottom:457.650000px;}
.yc_c00372{bottom:483.600000px;}
.yb_c00372{bottom:507.000000px;}
.ya_c00372{bottom:536.700000px;}
.y9_c00372{bottom:555.900000px;}
.y8_c00372{bottom:607.500000px;}
.y7_c00372{bottom:631.350000px;}
.y6_c00372{bottom:656.700000px;}
.y5_c00372{bottom:681.450000px;}
.y4_c00372{bottom:706.500000px;}
.y3_c00372{bottom:731.400000px;}
.y2_c00372{bottom:756.600000px;}
.y1_c00372{bottom:781.200000px;}
.h6_c00372{height:13.200074px;}
.h7_c00372{height:43.804688px;}
.h5_c00372{height:44.814000px;}
.h4_c00372{height:73.735840px;}
.h2_c00372{height:80.758301px;}
.h1_c00372{height:87.361816px;}
.h3_c00372{height:98.758301px;}
.h0_c00372{height:823.500000px;}
.w1_c00372{width:104.875500px;}
.w0_c00372{width:576.750000px;}
.x0_c00372{left:0.000000px;}
.xa_c00372{left:32.850000px;}
.x8_c00372{left:34.500000px;}
.x2_c00372{left:36.000000px;}
.x4_c00372{left:37.200000px;}
.x9_c00372{left:38.250000px;}
.x3_c00372{left:60.750000px;}
.x7_c00372{left:62.100000px;}
.x5_c00372{left:67.950000px;}
.x1_c00372{left:192.750000px;}
.x6_c00372{left:194.850000px;}
.xc_c00372{left:240.189240px;}
.xb_c00372{left:496.800000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.v1_c00372{vertical-align:16.000000pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls2_c00372{letter-spacing:2.666667pt;}
.ls0_c00372{letter-spacing:5.333333pt;}
.ws0_c00372{word-spacing:-14.781333pt;}
.ws2_c00372{word-spacing:0.000000pt;}
.ws1_c00372{word-spacing:1349.210667pt;}
._2d_c00372{margin-left:-28.736000pt;}
._2f_c00372{margin-left:-19.218667pt;}
._15_c00372{margin-left:-17.218667pt;}
._21_c00372{margin-left:-16.008000pt;}
._11_c00372{margin-left:-14.765333pt;}
._f_c00372{margin-left:-13.800000pt;}
._2b_c00372{margin-left:-12.576000pt;}
._b_c00372{margin-left:-11.592000pt;}
._29_c00372{margin-left:-10.394667pt;}
._14_c00372{margin-left:-8.917333pt;}
._2_c00372{margin-left:-7.789333pt;}
._8_c00372{margin-left:-6.746667pt;}
._7_c00372{margin-left:-5.826667pt;}
._3_c00372{margin-left:-4.722667pt;}
._4_c00372{margin-left:-3.496000pt;}
._6_c00372{margin-left:-2.269333pt;}
._5_c00372{margin-left:-1.042667pt;}
._0_c00372{width:1.402667pt;}
._c_c00372{width:2.600000pt;}
._9_c00372{width:3.618667pt;}
._a_c00372{width:5.274667pt;}
._10_c00372{width:6.501333pt;}
._1d_c00372{width:8.245333pt;}
._d_c00372{width:9.509333pt;}
._13_c00372{width:10.794667pt;}
._17_c00372{width:11.784000pt;}
._19_c00372{width:12.880000pt;}
._12_c00372{width:13.861333pt;}
._25_c00372{width:14.853333pt;}
._18_c00372{width:15.848000pt;}
._26_c00372{width:17.234667pt;}
._1b_c00372{width:19.458667pt;}
._1c_c00372{width:20.784000pt;}
._2c_c00372{width:23.672000pt;}
._22_c00372{width:24.962667pt;}
._e_c00372{width:27.109333pt;}
._24_c00372{width:29.578667pt;}
._28_c00372{width:30.568000pt;}
._20_c00372{width:36.501333pt;}
._1e_c00372{width:39.592000pt;}
._1f_c00372{width:55.200000pt;}
._1a_c00372{width:82.786667pt;}
._16_c00372{width:92.874667pt;}
._27_c00372{width:102.562667pt;}
._23_c00372{width:150.360000pt;}
._2a_c00372{width:223.005333pt;}
._2e_c00372{width:334.010667pt;}
._1_c00372{width:460.429333pt;}
.fs2_c00372{font-size:37.333333pt;}
.fs3_c00372{font-size:40.000000pt;}
.fs4_c00372{font-size:42.666667pt;}
.fs1_c00372{font-size:56.000000pt;}
.fs0_c00372{font-size:61.333333pt;}
.y0_c00372{bottom:0.000000pt;}
.y1e_c00372{bottom:2.760000pt;}
.y1d_c00372{bottom:6.425212pt;}
.y1c_c00372{bottom:84.666667pt;}
.y1b_c00372{bottom:98.133333pt;}
.y1a_c00372{bottom:119.733333pt;}
.y19_c00372{bottom:142.000000pt;}
.y18_c00372{bottom:163.866667pt;}
.y17_c00372{bottom:186.400000pt;}
.y16_c00372{bottom:208.000000pt;}
.y15_c00372{bottom:229.466667pt;}
.y14_c00372{bottom:252.933333pt;}
.y13_c00372{bottom:273.600000pt;}
.y12_c00372{bottom:295.466667pt;}
.y11_c00372{bottom:317.066667pt;}
.y10_c00372{bottom:340.533333pt;}
.yf_c00372{bottom:362.666667pt;}
.ye_c00372{bottom:384.666667pt;}
.yd_c00372{bottom:406.800000pt;}
.yc_c00372{bottom:429.866667pt;}
.yb_c00372{bottom:450.666667pt;}
.ya_c00372{bottom:477.066667pt;}
.y9_c00372{bottom:494.133333pt;}
.y8_c00372{bottom:540.000000pt;}
.y7_c00372{bottom:561.200000pt;}
.y6_c00372{bottom:583.733333pt;}
.y5_c00372{bottom:605.733333pt;}
.y4_c00372{bottom:628.000000pt;}
.y3_c00372{bottom:650.133333pt;}
.y2_c00372{bottom:672.533333pt;}
.y1_c00372{bottom:694.400000pt;}
.h6_c00372{height:11.733399pt;}
.h7_c00372{height:38.937500pt;}
.h5_c00372{height:39.834667pt;}
.h4_c00372{height:65.542969pt;}
.h2_c00372{height:71.785156pt;}
.h1_c00372{height:77.654948pt;}
.h3_c00372{height:87.785156pt;}
.h0_c00372{height:732.000000pt;}
.w1_c00372{width:93.222667pt;}
.w0_c00372{width:512.666667pt;}
.x0_c00372{left:0.000000pt;}
.xa_c00372{left:29.200000pt;}
.x8_c00372{left:30.666667pt;}
.x2_c00372{left:32.000000pt;}
.x4_c00372{left:33.066667pt;}
.x9_c00372{left:34.000000pt;}
.x3_c00372{left:54.000000pt;}
.x7_c00372{left:55.200000pt;}
.x5_c00372{left:60.400000pt;}
.x1_c00372{left:171.333333pt;}
.x6_c00372{left:173.200000pt;}
.xc_c00372{left:213.501546pt;}
.xb_c00372{left:441.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_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_8355a1467bf0ab93911b26dc.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.437000;font-style:normal;font-weight:normal;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_37643fede3fb4b5283d58fca.woff2')format("woff");}.ff2_c00373{font-family:ff2_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:ff3_c00373;src:url('chunks/assets/font_2cd8ed67d18a5adc1bcb82c8.woff2')format("woff");}.ff3_c00373{font-family:ff3_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:ff4_c00373;src:url('chunks/assets/font_df7b6154e90c1f9bf8a4af6c.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_8928f98f87c3132e1cc3f21f.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;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00373{vertical-align:-75.600000px;}
.v0_c00373{vertical-align:0.000000px;}
.ls6_c00373{letter-spacing:0.000000px;}
.ls4_c00373{letter-spacing:6.000000px;}
.ls7_c00373{letter-spacing:9.000000px;}
.ls5_c00373{letter-spacing:14.325000px;}
.ls2_c00373{letter-spacing:15.525000px;}
.ls3_c00373{letter-spacing:16.971000px;}
.ls8_c00373{letter-spacing:24.000000px;}
.ls0_c00373{letter-spacing:45.171000px;}
.ls1_c00373{letter-spacing:46.371000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00373{word-spacing:-22.629000px;}
.ws3_c00373{word-spacing:-16.629000px;}
.ws5_c00373{word-spacing:-13.014000px;}
.ws1_c00373{word-spacing:-1.770000px;}
.ws4_c00373{word-spacing:-0.483000px;}
.ws6_c00373{word-spacing:0.000000px;}
.ws0_c00373{word-spacing:0.018000px;}
._23_c00373{margin-left:-39.048000px;}
._27_c00373{margin-left:-27.612000px;}
._1b_c00373{margin-left:-22.218000px;}
._1d_c00373{margin-left:-16.422000px;}
._15_c00373{margin-left:-14.628000px;}
._1e_c00373{margin-left:-13.248000px;}
._19_c00373{margin-left:-11.799000px;}
._10_c00373{margin-left:-9.867000px;}
._11_c00373{margin-left:-8.694000px;}
._12_c00373{margin-left:-7.107000px;}
._14_c00373{margin-left:-6.072000px;}
._17_c00373{margin-left:-4.899000px;}
._e_c00373{margin-left:-3.726000px;}
._f_c00373{margin-left:-2.346000px;}
._d_c00373{margin-left:-1.311000px;}
._26_c00373{width:1.035000px;}
._c_c00373{width:2.070000px;}
._b_c00373{width:3.312000px;}
._18_c00373{width:4.692000px;}
._9_c00373{width:5.739000px;}
._7_c00373{width:6.798000px;}
._3_c00373{width:7.986000px;}
._13_c00373{width:9.384000px;}
._5_c00373{width:10.695000px;}
._8_c00373{width:12.009000px;}
._0_c00373{width:13.398000px;}
._16_c00373{width:15.051000px;}
._a_c00373{width:16.698000px;}
._1_c00373{width:17.952000px;}
._2_c00373{width:19.074000px;}
._2a_c00373{width:20.202000px;}
._4_c00373{width:21.714000px;}
._2d_c00373{width:22.725000px;}
._29_c00373{width:31.524000px;}
._1c_c00373{width:32.568000px;}
._24_c00373{width:35.565000px;}
._6_c00373{width:37.422000px;}
._1f_c00373{width:39.657000px;}
._2b_c00373{width:43.038000px;}
._21_c00373{width:49.044000px;}
._2c_c00373{width:62.178000px;}
._28_c00373{width:64.656000px;}
._1a_c00373{width:99.156000px;}
._20_c00373{width:104.466000px;}
._25_c00373{width:145.920000px;}
._22_c00373{width:163.038000px;}
._2e_c00373{width:1083.096000px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(128,128,128);}
.fc0_c00373{color:rgb(0,0,0);}
.fs2_c00373{font-size:45.000000px;}
.fs4_c00373{font-size:48.000000px;}
.fs3_c00373{font-size:54.000000px;}
.fs0_c00373{font-size:66.000000px;}
.fs1_c00373{font-size:69.000000px;}
.y0_c00373{bottom:0.000000px;}
.y21_c00373{bottom:3.105000px;}
.y20_c00373{bottom:7.228363px;}
.y1c_c00373{bottom:97.650000px;}
.y1b_c00373{bottom:115.050000px;}
.y1a_c00373{bottom:132.750000px;}
.y19_c00373{bottom:150.600000px;}
.y18_c00373{bottom:167.850000px;}
.y17_c00373{bottom:185.700000px;}
.y16_c00373{bottom:203.250000px;}
.y15_c00373{bottom:220.350000px;}
.y14_c00373{bottom:238.950000px;}
.y13_c00373{bottom:275.100000px;}
.y12_c00373{bottom:300.450000px;}
.y11_c00373{bottom:325.050000px;}
.y10_c00373{bottom:348.750000px;}
.yf_c00373{bottom:373.950000px;}
.ye_c00373{bottom:399.000000px;}
.yd_c00373{bottom:423.300000px;}
.yc_c00373{bottom:448.500000px;}
.yb_c00373{bottom:473.250000px;}
.ya_c00373{bottom:498.450000px;}
.y1f_c00373{bottom:503.250000px;}
.y1e_c00373{bottom:520.200000px;}
.y9_c00373{bottom:523.200000px;}
.y8_c00373{bottom:547.500000px;}
.y1d_c00373{bottom:556.200000px;}
.y7_c00373{bottom:572.850000px;}
.y6_c00373{bottom:598.050000px;}
.y5_c00373{bottom:623.250000px;}
.y4_c00373{bottom:648.000000px;}
.y3_c00373{bottom:672.000000px;}
.y2_c00373{bottom:697.200000px;}
.y1_c00373{bottom:747.450000px;}
.h6_c00373{height:13.200074px;}
.h7_c00373{height:43.804688px;}
.h5_c00373{height:68.370117px;}
.h4_c00373{height:69.168000px;}
.h3_c00373{height:80.758301px;}
.h2_c00373{height:87.361816px;}
.h1_c00373{height:827.250000px;}
.h0_c00373{height:827.550000px;}
.w2_c00373{width:104.875500px;}
.w0_c00373{width:572.100000px;}
.w1_c00373{width:572.250000px;}
.x0_c00373{left:0.000000px;}
.xf_c00373{left:32.100000px;}
.x8_c00373{left:34.050000px;}
.x9_c00373{left:35.100000px;}
.xa_c00373{left:38.100000px;}
.x6_c00373{left:42.000000px;}
.x5_c00373{left:50.250000px;}
.xd_c00373{left:82.650000px;}
.x7_c00373{left:94.800000px;}
.xe_c00373{left:96.600000px;}
.x3_c00373{left:99.600000px;}
.x4_c00373{left:101.250000px;}
.xc_c00373{left:117.900000px;}
.x2_c00373{left:125.850000px;}
.x1_c00373{left:134.550000px;}
.x10_c00373{left:237.864258px;}
.xb_c00373{left:240.750000px;}
@media print{
.v1_c00373{vertical-align:-67.200000pt;}
.v0_c00373{vertical-align:0.000000pt;}
.ls6_c00373{letter-spacing:0.000000pt;}
.ls4_c00373{letter-spacing:5.333333pt;}
.ls7_c00373{letter-spacing:8.000000pt;}
.ls5_c00373{letter-spacing:12.733333pt;}
.ls2_c00373{letter-spacing:13.800000pt;}
.ls3_c00373{letter-spacing:15.085333pt;}
.ls8_c00373{letter-spacing:21.333333pt;}
.ls0_c00373{letter-spacing:40.152000pt;}
.ls1_c00373{letter-spacing:41.218667pt;}
.ws2_c00373{word-spacing:-20.114667pt;}
.ws3_c00373{word-spacing:-14.781333pt;}
.ws5_c00373{word-spacing:-11.568000pt;}
.ws1_c00373{word-spacing:-1.573333pt;}
.ws4_c00373{word-spacing:-0.429333pt;}
.ws6_c00373{word-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.016000pt;}
._23_c00373{margin-left:-34.709333pt;}
._27_c00373{margin-left:-24.544000pt;}
._1b_c00373{margin-left:-19.749333pt;}
._1d_c00373{margin-left:-14.597333pt;}
._15_c00373{margin-left:-13.002667pt;}
._1e_c00373{margin-left:-11.776000pt;}
._19_c00373{margin-left:-10.488000pt;}
._10_c00373{margin-left:-8.770667pt;}
._11_c00373{margin-left:-7.728000pt;}
._12_c00373{margin-left:-6.317333pt;}
._14_c00373{margin-left:-5.397333pt;}
._17_c00373{margin-left:-4.354667pt;}
._e_c00373{margin-left:-3.312000pt;}
._f_c00373{margin-left:-2.085333pt;}
._d_c00373{margin-left:-1.165333pt;}
._26_c00373{width:0.920000pt;}
._c_c00373{width:1.840000pt;}
._b_c00373{width:2.944000pt;}
._18_c00373{width:4.170667pt;}
._9_c00373{width:5.101333pt;}
._7_c00373{width:6.042667pt;}
._3_c00373{width:7.098667pt;}
._13_c00373{width:8.341333pt;}
._5_c00373{width:9.506667pt;}
._8_c00373{width:10.674667pt;}
._0_c00373{width:11.909333pt;}
._16_c00373{width:13.378667pt;}
._a_c00373{width:14.842667pt;}
._1_c00373{width:15.957333pt;}
._2_c00373{width:16.954667pt;}
._2a_c00373{width:17.957333pt;}
._4_c00373{width:19.301333pt;}
._2d_c00373{width:20.200000pt;}
._29_c00373{width:28.021333pt;}
._1c_c00373{width:28.949333pt;}
._24_c00373{width:31.613333pt;}
._6_c00373{width:33.264000pt;}
._1f_c00373{width:35.250667pt;}
._2b_c00373{width:38.256000pt;}
._21_c00373{width:43.594667pt;}
._2c_c00373{width:55.269333pt;}
._28_c00373{width:57.472000pt;}
._1a_c00373{width:88.138667pt;}
._20_c00373{width:92.858667pt;}
._25_c00373{width:129.706667pt;}
._22_c00373{width:144.922667pt;}
._2e_c00373{width:962.752000pt;}
.fs2_c00373{font-size:40.000000pt;}
.fs4_c00373{font-size:42.666667pt;}
.fs3_c00373{font-size:48.000000pt;}
.fs0_c00373{font-size:58.666667pt;}
.fs1_c00373{font-size:61.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y21_c00373{bottom:2.760000pt;}
.y20_c00373{bottom:6.425212pt;}
.y1c_c00373{bottom:86.800000pt;}
.y1b_c00373{bottom:102.266667pt;}
.y1a_c00373{bottom:118.000000pt;}
.y19_c00373{bottom:133.866667pt;}
.y18_c00373{bottom:149.200000pt;}
.y17_c00373{bottom:165.066667pt;}
.y16_c00373{bottom:180.666667pt;}
.y15_c00373{bottom:195.866667pt;}
.y14_c00373{bottom:212.400000pt;}
.y13_c00373{bottom:244.533333pt;}
.y12_c00373{bottom:267.066667pt;}
.y11_c00373{bottom:288.933333pt;}
.y10_c00373{bottom:310.000000pt;}
.yf_c00373{bottom:332.400000pt;}
.ye_c00373{bottom:354.666667pt;}
.yd_c00373{bottom:376.266667pt;}
.yc_c00373{bottom:398.666667pt;}
.yb_c00373{bottom:420.666667pt;}
.ya_c00373{bottom:443.066667pt;}
.y1f_c00373{bottom:447.333333pt;}
.y1e_c00373{bottom:462.400000pt;}
.y9_c00373{bottom:465.066667pt;}
.y8_c00373{bottom:486.666667pt;}
.y1d_c00373{bottom:494.400000pt;}
.y7_c00373{bottom:509.200000pt;}
.y6_c00373{bottom:531.600000pt;}
.y5_c00373{bottom:554.000000pt;}
.y4_c00373{bottom:576.000000pt;}
.y3_c00373{bottom:597.333333pt;}
.y2_c00373{bottom:619.733333pt;}
.y1_c00373{bottom:664.400000pt;}
.h6_c00373{height:11.733399pt;}
.h7_c00373{height:38.937500pt;}
.h5_c00373{height:60.773438pt;}
.h4_c00373{height:61.482667pt;}
.h3_c00373{height:71.785156pt;}
.h2_c00373{height:77.654948pt;}
.h1_c00373{height:735.333333pt;}
.h0_c00373{height:735.600000pt;}
.w2_c00373{width:93.222667pt;}
.w0_c00373{width:508.533333pt;}
.w1_c00373{width:508.666667pt;}
.x0_c00373{left:0.000000pt;}
.xf_c00373{left:28.533333pt;}
.x8_c00373{left:30.266667pt;}
.x9_c00373{left:31.200000pt;}
.xa_c00373{left:33.866667pt;}
.x6_c00373{left:37.333333pt;}
.x5_c00373{left:44.666667pt;}
.xd_c00373{left:73.466667pt;}
.x7_c00373{left:84.266667pt;}
.xe_c00373{left:85.866667pt;}
.x3_c00373{left:88.533333pt;}
.x4_c00373{left:90.000000pt;}
.xc_c00373{left:104.800000pt;}
.x2_c00373{left:111.866667pt;}
.x1_c00373{left:119.600000pt;}
.x10_c00373{left:211.434896pt;}
.xb_c00373{left:214.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_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_08f752e0f1338a486809ad40.woff2')format("woff");}.ff1_c00374{font-family:ff1_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:ff2_c00374;src:url('chunks/assets/font_991a6a399248a4bee3369965.woff2')format("woff");}.ff2_c00374{font-family:ff2_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:ff3_c00374;src:url('chunks/assets/font_cd9f79be3c260ef5e2511cf9.woff2')format("woff");}.ff3_c00374{font-family:ff3_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:ff4_c00374;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00374{font-family:ff4_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:ff5_c00374;src:url('chunks/assets/font_e69092a017fec667f2894728.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls5_c00374{letter-spacing:0.000000px;}
.ls4_c00374{letter-spacing:6.000000px;}
.ls2_c00374{letter-spacing:10.200000px;}
.ls1_c00374{letter-spacing:11.400000px;}
.ls3_c00374{letter-spacing:21.423000px;}
.ls0_c00374{letter-spacing:375.171000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-22.629000px;}
.ws1_c00374{word-spacing:-17.250000px;}
.ws2_c00374{word-spacing:-13.737000px;}
.ws3_c00374{word-spacing:-0.828000px;}
.ws4_c00374{word-spacing:0.000000px;}
._18_c00374{margin-left:-41.676000px;}
._8_c00374{margin-left:-32.379000px;}
._2b_c00374{margin-left:-27.186000px;}
._30_c00374{margin-left:-23.214000px;}
._11_c00374{margin-left:-20.904000px;}
._9_c00374{margin-left:-18.198000px;}
._25_c00374{margin-left:-15.939000px;}
._13_c00374{margin-left:-14.751000px;}
._32_c00374{margin-left:-13.485000px;}
._16_c00374{margin-left:-11.865000px;}
._15_c00374{margin-left:-10.650000px;}
._10_c00374{margin-left:-8.556000px;}
._b_c00374{margin-left:-7.314000px;}
._0_c00374{margin-left:-5.244000px;}
._e_c00374{margin-left:-4.140000px;}
._c_c00374{margin-left:-3.105000px;}
._6_c00374{margin-left:-1.794000px;}
._f_c00374{width:1.104000px;}
._14_c00374{width:2.346000px;}
._3_c00374{width:3.519000px;}
._d_c00374{width:5.520000px;}
._2_c00374{width:7.245000px;}
._2e_c00374{width:8.298000px;}
._4_c00374{width:9.315000px;}
._12_c00374{width:10.692000px;}
._5_c00374{width:11.937000px;}
._23_c00374{width:13.800000px;}
._26_c00374{width:14.886000px;}
._2d_c00374{width:16.149000px;}
._1f_c00374{width:17.802000px;}
._1e_c00374{width:19.320000px;}
._2a_c00374{width:21.114000px;}
._7_c00374{width:22.839000px;}
._20_c00374{width:23.874000px;}
._1a_c00374{width:27.666000px;}
._22_c00374{width:29.502000px;}
._21_c00374{width:34.101000px;}
._17_c00374{width:35.613000px;}
._1b_c00374{width:37.743000px;}
._19_c00374{width:40.089000px;}
._24_c00374{width:45.678000px;}
._28_c00374{width:50.922000px;}
._a_c00374{width:55.953000px;}
._1c_c00374{width:68.931000px;}
._29_c00374{width:75.141000px;}
._1_c00374{width:90.780000px;}
._2c_c00374{width:95.145000px;}
._2f_c00374{width:98.466000px;}
._31_c00374{width:180.534000px;}
._27_c00374{width:445.410000px;}
._1d_c00374{width:744.093000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(128,128,128);}
.fc0_c00374{color:rgb(0,0,0);}
.fs3_c00374{font-size:45.000000px;}
.fs4_c00374{font-size:48.000000px;}
.fs2_c00374{font-size:57.000000px;}
.fs1_c00374{font-size:66.000000px;}
.fs0_c00374{font-size:69.000000px;}
.y0_c00374{bottom:0.000000px;}
.y20_c00374{bottom:3.105000px;}
.y1f_c00374{bottom:7.228371px;}
.y1e_c00374{bottom:64.815000px;}
.y1d_c00374{bottom:90.915000px;}
.y1c_c00374{bottom:116.865000px;}
.y1b_c00374{bottom:140.415000px;}
.y1a_c00374{bottom:165.465000px;}
.y19_c00374{bottom:190.665000px;}
.y18_c00374{bottom:216.015000px;}
.y17_c00374{bottom:241.065000px;}
.y16_c00374{bottom:265.665000px;}
.y15_c00374{bottom:290.265000px;}
.y14_c00374{bottom:315.315000px;}
.y13_c00374{bottom:340.515000px;}
.y12_c00374{bottom:364.965000px;}
.y11_c00374{bottom:390.165000px;}
.y10_c00374{bottom:414.765000px;}
.yf_c00374{bottom:440.115000px;}
.ye_c00374{bottom:464.865000px;}
.yd_c00374{bottom:489.165000px;}
.yc_c00374{bottom:514.065000px;}
.yb_c00374{bottom:539.115000px;}
.ya_c00374{bottom:562.665000px;}
.y9_c00374{bottom:588.015000px;}
.y8_c00374{bottom:637.965000px;}
.y7_c00374{bottom:659.865000px;}
.y6_c00374{bottom:691.665000px;}
.y5_c00374{bottom:709.515000px;}
.y4_c00374{bottom:727.365000px;}
.y3_c00374{bottom:744.915000px;}
.y2_c00374{bottom:762.765000px;}
.y1_c00374{bottom:781.665000px;}
.h5_c00374{height:13.200074px;}
.h6_c00374{height:43.804688px;}
.h4_c00374{height:69.539062px;}
.h3_c00374{height:72.168457px;}
.h2_c00374{height:87.361816px;}
.h1_c00374{height:831.000000px;}
.h0_c00374{height:831.075000px;}
.w2_c00374{width:104.875500px;}
.w0_c00374{width:582.375000px;}
.w1_c00374{width:582.750000px;}
.x0_c00374{left:0.000000px;}
.x3_c00374{left:33.000000px;}
.x7_c00374{left:34.050000px;}
.x9_c00374{left:35.100000px;}
.x6_c00374{left:40.500000px;}
.x2_c00374{left:48.300000px;}
.x8_c00374{left:57.000000px;}
.x5_c00374{left:65.850000px;}
.x4_c00374{left:143.400000px;}
.x1_c00374{left:169.350000px;}
.xb_c00374{left:243.001740px;}
.xa_c00374{left:467.100000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls5_c00374{letter-spacing:0.000000pt;}
.ls4_c00374{letter-spacing:5.333333pt;}
.ls2_c00374{letter-spacing:9.066667pt;}
.ls1_c00374{letter-spacing:10.133333pt;}
.ls3_c00374{letter-spacing:19.042667pt;}
.ls0_c00374{letter-spacing:333.485333pt;}
.ws0_c00374{word-spacing:-20.114667pt;}
.ws1_c00374{word-spacing:-15.333333pt;}
.ws2_c00374{word-spacing:-12.210667pt;}
.ws3_c00374{word-spacing:-0.736000pt;}
.ws4_c00374{word-spacing:0.000000pt;}
._18_c00374{margin-left:-37.045333pt;}
._8_c00374{margin-left:-28.781333pt;}
._2b_c00374{margin-left:-24.165333pt;}
._30_c00374{margin-left:-20.634667pt;}
._11_c00374{margin-left:-18.581333pt;}
._9_c00374{margin-left:-16.176000pt;}
._25_c00374{margin-left:-14.168000pt;}
._13_c00374{margin-left:-13.112000pt;}
._32_c00374{margin-left:-11.986667pt;}
._16_c00374{margin-left:-10.546667pt;}
._15_c00374{margin-left:-9.466667pt;}
._10_c00374{margin-left:-7.605333pt;}
._b_c00374{margin-left:-6.501333pt;}
._0_c00374{margin-left:-4.661333pt;}
._e_c00374{margin-left:-3.680000pt;}
._c_c00374{margin-left:-2.760000pt;}
._6_c00374{margin-left:-1.594667pt;}
._f_c00374{width:0.981333pt;}
._14_c00374{width:2.085333pt;}
._3_c00374{width:3.128000pt;}
._d_c00374{width:4.906667pt;}
._2_c00374{width:6.440000pt;}
._2e_c00374{width:7.376000pt;}
._4_c00374{width:8.280000pt;}
._12_c00374{width:9.504000pt;}
._5_c00374{width:10.610667pt;}
._23_c00374{width:12.266667pt;}
._26_c00374{width:13.232000pt;}
._2d_c00374{width:14.354667pt;}
._1f_c00374{width:15.824000pt;}
._1e_c00374{width:17.173333pt;}
._2a_c00374{width:18.768000pt;}
._7_c00374{width:20.301333pt;}
._20_c00374{width:21.221333pt;}
._1a_c00374{width:24.592000pt;}
._22_c00374{width:26.224000pt;}
._21_c00374{width:30.312000pt;}
._17_c00374{width:31.656000pt;}
._1b_c00374{width:33.549333pt;}
._19_c00374{width:35.634667pt;}
._24_c00374{width:40.602667pt;}
._28_c00374{width:45.264000pt;}
._a_c00374{width:49.736000pt;}
._1c_c00374{width:61.272000pt;}
._29_c00374{width:66.792000pt;}
._1_c00374{width:80.693333pt;}
._2c_c00374{width:84.573333pt;}
._2f_c00374{width:87.525333pt;}
._31_c00374{width:160.474667pt;}
._27_c00374{width:395.920000pt;}
._1d_c00374{width:661.416000pt;}
.fs3_c00374{font-size:40.000000pt;}
.fs4_c00374{font-size:42.666667pt;}
.fs2_c00374{font-size:50.666667pt;}
.fs1_c00374{font-size:58.666667pt;}
.fs0_c00374{font-size:61.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y20_c00374{bottom:2.760000pt;}
.y1f_c00374{bottom:6.425219pt;}
.y1e_c00374{bottom:57.613333pt;}
.y1d_c00374{bottom:80.813333pt;}
.y1c_c00374{bottom:103.880000pt;}
.y1b_c00374{bottom:124.813333pt;}
.y1a_c00374{bottom:147.080000pt;}
.y19_c00374{bottom:169.480000pt;}
.y18_c00374{bottom:192.013333pt;}
.y17_c00374{bottom:214.280000pt;}
.y16_c00374{bottom:236.146667pt;}
.y15_c00374{bottom:258.013333pt;}
.y14_c00374{bottom:280.280000pt;}
.y13_c00374{bottom:302.680000pt;}
.y12_c00374{bottom:324.413333pt;}
.y11_c00374{bottom:346.813333pt;}
.y10_c00374{bottom:368.680000pt;}
.yf_c00374{bottom:391.213333pt;}
.ye_c00374{bottom:413.213333pt;}
.yd_c00374{bottom:434.813333pt;}
.yc_c00374{bottom:456.946667pt;}
.yb_c00374{bottom:479.213333pt;}
.ya_c00374{bottom:500.146667pt;}
.y9_c00374{bottom:522.680000pt;}
.y8_c00374{bottom:567.080000pt;}
.y7_c00374{bottom:586.546667pt;}
.y6_c00374{bottom:614.813333pt;}
.y5_c00374{bottom:630.680000pt;}
.y4_c00374{bottom:646.546667pt;}
.y3_c00374{bottom:662.146667pt;}
.y2_c00374{bottom:678.013333pt;}
.y1_c00374{bottom:694.813333pt;}
.h5_c00374{height:11.733399pt;}
.h6_c00374{height:38.937500pt;}
.h4_c00374{height:61.812500pt;}
.h3_c00374{height:64.149740pt;}
.h2_c00374{height:77.654948pt;}
.h1_c00374{height:738.666667pt;}
.h0_c00374{height:738.733333pt;}
.w2_c00374{width:93.222667pt;}
.w0_c00374{width:517.666667pt;}
.w1_c00374{width:518.000000pt;}
.x0_c00374{left:0.000000pt;}
.x3_c00374{left:29.333333pt;}
.x7_c00374{left:30.266667pt;}
.x9_c00374{left:31.200000pt;}
.x6_c00374{left:36.000000pt;}
.x2_c00374{left:42.933333pt;}
.x8_c00374{left:50.666667pt;}
.x5_c00374{left:58.533333pt;}
.x4_c00374{left:127.466667pt;}
.x1_c00374{left:150.533333pt;}
.xb_c00374{left:216.001546pt;}
.xa_c00374{left:415.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_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_b34cbadf45621e94d917f25e.woff2')format("woff");}.ff1_c00375{font-family:ff1_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:ff2_c00375;src:url('chunks/assets/font_9b25481bcd56591237c0b303.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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00375{font-family:ff4_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;}
.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:42.000000px;}
.ls2_c00375{letter-spacing:0.000000px;}
.ls1_c00375{letter-spacing:6.000000px;}
.ls0_c00375{letter-spacing:17.400000px;}
.ls3_c00375{letter-spacing:30.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:-46.629000px;}
.ws3_c00375{word-spacing:-16.629000px;}
.ws0_c00375{word-spacing:-1.173000px;}
.ws4_c00375{word-spacing:0.000000px;}
.ws1_c00375{word-spacing:37.911000px;}
._35_c00375{margin-left:-64.377000px;}
._30_c00375{margin-left:-29.670000px;}
._2a_c00375{margin-left:-24.357000px;}
._29_c00375{margin-left:-22.878000px;}
._26_c00375{margin-left:-20.355000px;}
._23_c00375{margin-left:-17.829000px;}
._33_c00375{margin-left:-16.353000px;}
._2_c00375{margin-left:-14.835000px;}
._24_c00375{margin-left:-12.972000px;}
._18_c00375{margin-left:-11.439000px;}
._d_c00375{margin-left:-10.005000px;}
._14_c00375{margin-left:-8.763000px;}
._e_c00375{margin-left:-6.969000px;}
._19_c00375{margin-left:-5.727000px;}
._0_c00375{margin-left:-4.623000px;}
._5_c00375{margin-left:-3.450000px;}
._4_c00375{margin-left:-2.208000px;}
._10_c00375{margin-left:-1.173000px;}
._9_c00375{width:1.311000px;}
._6_c00375{width:2.898000px;}
._7_c00375{width:4.485000px;}
._13_c00375{width:5.505000px;}
._8_c00375{width:6.555000px;}
._a_c00375{width:7.797000px;}
._31_c00375{width:8.886000px;}
._12_c00375{width:10.143000px;}
._22_c00375{width:11.178000px;}
._11_c00375{width:12.336000px;}
._32_c00375{width:13.386000px;}
._15_c00375{width:14.421000px;}
._c_c00375{width:15.525000px;}
._1a_c00375{width:16.713000px;}
._16_c00375{width:18.147000px;}
._17_c00375{width:19.518000px;}
._2b_c00375{width:21.645000px;}
._1b_c00375{width:22.701000px;}
._1c_c00375{width:24.288000px;}
._1d_c00375{width:26.979000px;}
._1f_c00375{width:28.428000px;}
._f_c00375{width:30.429000px;}
._20_c00375{width:32.085000px;}
._21_c00375{width:33.120000px;}
._1e_c00375{width:34.224000px;}
._28_c00375{width:36.357000px;}
._2f_c00375{width:38.571000px;}
._34_c00375{width:52.686000px;}
._2c_c00375{width:54.096000px;}
._2d_c00375{width:71.379000px;}
._1_c00375{width:85.353000px;}
._27_c00375{width:93.027000px;}
._36_c00375{width:100.338000px;}
._b_c00375{width:119.301000px;}
._2e_c00375{width:161.604000px;}
._25_c00375{width:170.637000px;}
._3_c00375{width:374.898000px;}
.fc2_c00375{color:transparent;}
.fc1_c00375{color:rgb(128,128,128);}
.fc0_c00375{color:rgb(0,0,0);}
.fs2_c00375{font-size:48.000000px;}
.fs1_c00375{font-size:66.000000px;}
.fs0_c00375{font-size:69.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1d_c00375{bottom:3.105000px;}
.y1c_c00375{bottom:7.228363px;}
.y1b_c00375{bottom:63.750000px;}
.y1a_c00375{bottom:88.800000px;}
.y19_c00375{bottom:116.100000px;}
.y18_c00375{bottom:142.050000px;}
.y17_c00375{bottom:166.050000px;}
.y16_c00375{bottom:192.000000px;}
.y15_c00375{bottom:216.900000px;}
.y14_c00375{bottom:242.700000px;}
.y13_c00375{bottom:266.550000px;}
.y12_c00375{bottom:291.900000px;}
.y11_c00375{bottom:316.500000px;}
.y10_c00375{bottom:341.100000px;}
.yf_c00375{bottom:366.450000px;}
.ye_c00375{bottom:391.050000px;}
.yd_c00375{bottom:416.100000px;}
.yc_c00375{bottom:440.400000px;}
.yb_c00375{bottom:490.350000px;}
.ya_c00375{bottom:540.900000px;}
.y9_c00375{bottom:564.900000px;}
.y8_c00375{bottom:590.250000px;}
.y7_c00375{bottom:615.300000px;}
.y6_c00375{bottom:629.100000px;}
.y5_c00375{bottom:664.800000px;}
.y4_c00375{bottom:689.550000px;}
.y3_c00375{bottom:739.800000px;}
.y2_c00375{bottom:764.700000px;}
.y1_c00375{bottom:789.450000px;}
.h5_c00375{height:13.200074px;}
.h6_c00375{height:43.804688px;}
.h4_c00375{height:80.758301px;}
.h2_c00375{height:87.361816px;}
.h3_c00375{height:129.361816px;}
.h1_c00375{height:827.250000px;}
.h0_c00375{height:827.550000px;}
.w2_c00375{width:104.875500px;}
.w0_c00375{width:572.100000px;}
.w1_c00375{width:572.250000px;}
.x0_c00375{left:0.000000px;}
.xd_c00375{left:40.500000px;}
.x5_c00375{left:42.300000px;}
.x3_c00375{left:44.250000px;}
.xe_c00375{left:57.150000px;}
.xa_c00375{left:100.650000px;}
.xb_c00375{left:101.700000px;}
.xc_c00375{left:104.700000px;}
.x9_c00375{left:105.900000px;}
.x6_c00375{left:108.000000px;}
.x2_c00375{left:109.050000px;}
.x1_c00375{left:123.150000px;}
.x8_c00375{left:130.950000px;}
.x4_c00375{left:134.100000px;}
.x7_c00375{left:186.300000px;}
.x10_c00375{left:237.864258px;}
.xf_c00375{left:515.400000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:37.333333pt;}
.ls2_c00375{letter-spacing:0.000000pt;}
.ls1_c00375{letter-spacing:5.333333pt;}
.ls0_c00375{letter-spacing:15.466667pt;}
.ls3_c00375{letter-spacing:26.666667pt;}
.ws2_c00375{word-spacing:-41.448000pt;}
.ws3_c00375{word-spacing:-14.781333pt;}
.ws0_c00375{word-spacing:-1.042667pt;}
.ws4_c00375{word-spacing:0.000000pt;}
.ws1_c00375{word-spacing:33.698667pt;}
._35_c00375{margin-left:-57.224000pt;}
._30_c00375{margin-left:-26.373333pt;}
._2a_c00375{margin-left:-21.650667pt;}
._29_c00375{margin-left:-20.336000pt;}
._26_c00375{margin-left:-18.093333pt;}
._23_c00375{margin-left:-15.848000pt;}
._33_c00375{margin-left:-14.536000pt;}
._2_c00375{margin-left:-13.186667pt;}
._24_c00375{margin-left:-11.530667pt;}
._18_c00375{margin-left:-10.168000pt;}
._d_c00375{margin-left:-8.893333pt;}
._14_c00375{margin-left:-7.789333pt;}
._e_c00375{margin-left:-6.194667pt;}
._19_c00375{margin-left:-5.090667pt;}
._0_c00375{margin-left:-4.109333pt;}
._5_c00375{margin-left:-3.066667pt;}
._4_c00375{margin-left:-1.962667pt;}
._10_c00375{margin-left:-1.042667pt;}
._9_c00375{width:1.165333pt;}
._6_c00375{width:2.576000pt;}
._7_c00375{width:3.986667pt;}
._13_c00375{width:4.893333pt;}
._8_c00375{width:5.826667pt;}
._a_c00375{width:6.930667pt;}
._31_c00375{width:7.898667pt;}
._12_c00375{width:9.016000pt;}
._22_c00375{width:9.936000pt;}
._11_c00375{width:10.965333pt;}
._32_c00375{width:11.898667pt;}
._15_c00375{width:12.818667pt;}
._c_c00375{width:13.800000pt;}
._1a_c00375{width:14.856000pt;}
._16_c00375{width:16.130667pt;}
._17_c00375{width:17.349333pt;}
._2b_c00375{width:19.240000pt;}
._1b_c00375{width:20.178667pt;}
._1c_c00375{width:21.589333pt;}
._1d_c00375{width:23.981333pt;}
._1f_c00375{width:25.269333pt;}
._f_c00375{width:27.048000pt;}
._20_c00375{width:28.520000pt;}
._21_c00375{width:29.440000pt;}
._1e_c00375{width:30.421333pt;}
._28_c00375{width:32.317333pt;}
._2f_c00375{width:34.285333pt;}
._34_c00375{width:46.832000pt;}
._2c_c00375{width:48.085333pt;}
._2d_c00375{width:63.448000pt;}
._1_c00375{width:75.869333pt;}
._27_c00375{width:82.690667pt;}
._36_c00375{width:89.189333pt;}
._b_c00375{width:106.045333pt;}
._2e_c00375{width:143.648000pt;}
._25_c00375{width:151.677333pt;}
._3_c00375{width:333.242667pt;}
.fs2_c00375{font-size:42.666667pt;}
.fs1_c00375{font-size:58.666667pt;}
.fs0_c00375{font-size:61.333333pt;}
.y0_c00375{bottom:0.000000pt;}
.y1d_c00375{bottom:2.760000pt;}
.y1c_c00375{bottom:6.425212pt;}
.y1b_c00375{bottom:56.666667pt;}
.y1a_c00375{bottom:78.933333pt;}
.y19_c00375{bottom:103.200000pt;}
.y18_c00375{bottom:126.266667pt;}
.y17_c00375{bottom:147.600000pt;}
.y16_c00375{bottom:170.666667pt;}
.y15_c00375{bottom:192.800000pt;}
.y14_c00375{bottom:215.733333pt;}
.y13_c00375{bottom:236.933333pt;}
.y12_c00375{bottom:259.466667pt;}
.y11_c00375{bottom:281.333333pt;}
.y10_c00375{bottom:303.200000pt;}
.yf_c00375{bottom:325.733333pt;}
.ye_c00375{bottom:347.600000pt;}
.yd_c00375{bottom:369.866667pt;}
.yc_c00375{bottom:391.466667pt;}
.yb_c00375{bottom:435.866667pt;}
.ya_c00375{bottom:480.800000pt;}
.y9_c00375{bottom:502.133333pt;}
.y8_c00375{bottom:524.666667pt;}
.y7_c00375{bottom:546.933333pt;}
.y6_c00375{bottom:559.200000pt;}
.y5_c00375{bottom:590.933333pt;}
.y4_c00375{bottom:612.933333pt;}
.y3_c00375{bottom:657.600000pt;}
.y2_c00375{bottom:679.733333pt;}
.y1_c00375{bottom:701.733333pt;}
.h5_c00375{height:11.733399pt;}
.h6_c00375{height:38.937500pt;}
.h4_c00375{height:71.785156pt;}
.h2_c00375{height:77.654948pt;}
.h3_c00375{height:114.988281pt;}
.h1_c00375{height:735.333333pt;}
.h0_c00375{height:735.600000pt;}
.w2_c00375{width:93.222667pt;}
.w0_c00375{width:508.533333pt;}
.w1_c00375{width:508.666667pt;}
.x0_c00375{left:0.000000pt;}
.xd_c00375{left:36.000000pt;}
.x5_c00375{left:37.600000pt;}
.x3_c00375{left:39.333333pt;}
.xe_c00375{left:50.800000pt;}
.xa_c00375{left:89.466667pt;}
.xb_c00375{left:90.400000pt;}
.xc_c00375{left:93.066667pt;}
.x9_c00375{left:94.133333pt;}
.x6_c00375{left:96.000000pt;}
.x2_c00375{left:96.933333pt;}
.x1_c00375{left:109.466667pt;}
.x8_c00375{left:116.400000pt;}
.x4_c00375{left:119.200000pt;}
.x7_c00375{left:165.600000pt;}
.x10_c00375{left:211.434896pt;}
.xf_c00375{left:458.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_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_215084be5d0feaad87e229b2.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_f79bb4b0bd3fc49723c84cfe.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_c0664f115c40f445e2f55961.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00376{font-family:ff4_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;}
.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;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:2.400000px;}
.ls3_c00376{letter-spacing:3.000000px;}
.ls2_c00376{letter-spacing:6.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00376{word-spacing:-22.629000px;}
.ws2_c00376{word-spacing:-18.075000px;}
.ws0_c00376{word-spacing:-0.690000px;}
.ws3_c00376{word-spacing:0.000000px;}
._2a_c00376{margin-left:-60.099000px;}
._a_c00376{margin-left:-34.224000px;}
._1f_c00376{margin-left:-26.289000px;}
._1e_c00376{margin-left:-24.426000px;}
._1a_c00376{margin-left:-22.722000px;}
._7_c00376{margin-left:-16.767000px;}
._13_c00376{margin-left:-15.387000px;}
._18_c00376{margin-left:-13.179000px;}
._16_c00376{margin-left:-11.316000px;}
._19_c00376{margin-left:-9.315000px;}
._17_c00376{margin-left:-7.659000px;}
._3_c00376{margin-left:-6.417000px;}
._2_c00376{margin-left:-5.175000px;}
._4_c00376{margin-left:-3.795000px;}
._11_c00376{margin-left:-2.553000px;}
._5_c00376{margin-left:-1.449000px;}
._0_c00376{width:1.242000px;}
._f_c00376{width:2.829000px;}
._10_c00376{width:4.140000px;}
._e_c00376{width:5.175000px;}
._d_c00376{width:6.417000px;}
._20_c00376{width:7.521000px;}
._c_c00376{width:8.694000px;}
._28_c00376{width:9.729000px;}
._1c_c00376{width:11.178000px;}
._1_c00376{width:12.696000px;}
._21_c00376{width:14.559000px;}
._6_c00376{width:16.353000px;}
._2c_c00376{width:17.526000px;}
._12_c00376{width:18.699000px;}
._15_c00376{width:20.424000px;}
._14_c00376{width:21.942000px;}
._27_c00376{width:24.510000px;}
._26_c00376{width:25.902000px;}
._1b_c00376{width:27.414000px;}
._2e_c00376{width:29.256000px;}
._23_c00376{width:34.893000px;}
._25_c00376{width:36.876000px;}
._24_c00376{width:45.747000px;}
._9_c00376{width:59.340000px;}
._b_c00376{width:91.701000px;}
._29_c00376{width:93.771000px;}
._1d_c00376{width:100.446000px;}
._22_c00376{width:130.617000px;}
._2d_c00376{width:229.821000px;}
._8_c00376{width:348.795000px;}
._2b_c00376{width:960.225000px;}
.fc2_c00376{color:transparent;}
.fc1_c00376{color:rgb(128,128,128);}
.fc0_c00376{color:rgb(0,0,0);}
.fs3_c00376{font-size:48.000000px;}
.fs1_c00376{font-size:66.000000px;}
.fs0_c00376{font-size:69.000000px;}
.fs2_c00376{font-size:75.000000px;}
.y0_c00376{bottom:0.000000px;}
.y1d_c00376{bottom:3.105000px;}
.y1c_c00376{bottom:7.228371px;}
.y1b_c00376{bottom:61.065000px;}
.y1a_c00376{bottom:85.515000px;}
.y19_c00376{bottom:111.015000px;}
.y18_c00376{bottom:135.765000px;}
.y17_c00376{bottom:160.665000px;}
.y16_c00376{bottom:185.715000px;}
.y15_c00376{bottom:210.615000px;}
.y14_c00376{bottom:235.965000px;}
.y13_c00376{bottom:260.565000px;}
.y12_c00376{bottom:285.165000px;}
.y11_c00376{bottom:309.915000px;}
.y10_c00376{bottom:335.565000px;}
.yf_c00376{bottom:360.165000px;}
.ye_c00376{bottom:381.165000px;}
.yd_c00376{bottom:409.815000px;}
.yc_c00376{bottom:434.415000px;}
.yb_c00376{bottom:459.465000px;}
.ya_c00376{bottom:509.715000px;}
.y9_c00376{bottom:534.315000px;}
.y8_c00376{bottom:559.215000px;}
.y7_c00376{bottom:607.815000px;}
.y6_c00376{bottom:657.915000px;}
.y5_c00376{bottom:683.565000px;}
.y4_c00376{bottom:708.165000px;}
.y3_c00376{bottom:733.365000px;}
.y2_c00376{bottom:758.115000px;}
.y1_c00376{bottom:783.465000px;}
.h5_c00376{height:13.200074px;}
.h6_c00376{height:43.804688px;}
.h3_c00376{height:80.758301px;}
.h2_c00376{height:87.361816px;}
.h4_c00376{height:94.958496px;}
.h1_c00376{height:831.000000px;}
.h0_c00376{height:831.075000px;}
.w2_c00376{width:104.875500px;}
.w0_c00376{width:582.375000px;}
.w1_c00376{width:582.750000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:31.950000px;}
.x3_c00376{left:33.750000px;}
.x4_c00376{left:35.700000px;}
.x8_c00376{left:37.500000px;}
.x6_c00376{left:59.100000px;}
.x7_c00376{left:60.450000px;}
.x5_c00376{left:70.950000px;}
.x1_c00376{left:202.200000px;}
.xa_c00376{left:243.001740px;}
.x9_c00376{left:446.250000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:2.133333pt;}
.ls3_c00376{letter-spacing:2.666667pt;}
.ls2_c00376{letter-spacing:5.333333pt;}
.ws1_c00376{word-spacing:-20.114667pt;}
.ws2_c00376{word-spacing:-16.066667pt;}
.ws0_c00376{word-spacing:-0.613333pt;}
.ws3_c00376{word-spacing:0.000000pt;}
._2a_c00376{margin-left:-53.421333pt;}
._a_c00376{margin-left:-30.421333pt;}
._1f_c00376{margin-left:-23.368000pt;}
._1e_c00376{margin-left:-21.712000pt;}
._1a_c00376{margin-left:-20.197333pt;}
._7_c00376{margin-left:-14.904000pt;}
._13_c00376{margin-left:-13.677333pt;}
._18_c00376{margin-left:-11.714667pt;}
._16_c00376{margin-left:-10.058667pt;}
._19_c00376{margin-left:-8.280000pt;}
._17_c00376{margin-left:-6.808000pt;}
._3_c00376{margin-left:-5.704000pt;}
._2_c00376{margin-left:-4.600000pt;}
._4_c00376{margin-left:-3.373333pt;}
._11_c00376{margin-left:-2.269333pt;}
._5_c00376{margin-left:-1.288000pt;}
._0_c00376{width:1.104000pt;}
._f_c00376{width:2.514667pt;}
._10_c00376{width:3.680000pt;}
._e_c00376{width:4.600000pt;}
._d_c00376{width:5.704000pt;}
._20_c00376{width:6.685333pt;}
._c_c00376{width:7.728000pt;}
._28_c00376{width:8.648000pt;}
._1c_c00376{width:9.936000pt;}
._1_c00376{width:11.285333pt;}
._21_c00376{width:12.941333pt;}
._6_c00376{width:14.536000pt;}
._2c_c00376{width:15.578667pt;}
._12_c00376{width:16.621333pt;}
._15_c00376{width:18.154667pt;}
._14_c00376{width:19.504000pt;}
._27_c00376{width:21.786667pt;}
._26_c00376{width:23.024000pt;}
._1b_c00376{width:24.368000pt;}
._2e_c00376{width:26.005333pt;}
._23_c00376{width:31.016000pt;}
._25_c00376{width:32.778667pt;}
._24_c00376{width:40.664000pt;}
._9_c00376{width:52.746667pt;}
._b_c00376{width:81.512000pt;}
._29_c00376{width:83.352000pt;}
._1d_c00376{width:89.285333pt;}
._22_c00376{width:116.104000pt;}
._2d_c00376{width:204.285333pt;}
._8_c00376{width:310.040000pt;}
._2b_c00376{width:853.533333pt;}
.fs3_c00376{font-size:42.666667pt;}
.fs1_c00376{font-size:58.666667pt;}
.fs0_c00376{font-size:61.333333pt;}
.fs2_c00376{font-size:66.666667pt;}
.y0_c00376{bottom:0.000000pt;}
.y1d_c00376{bottom:2.760000pt;}
.y1c_c00376{bottom:6.425219pt;}
.y1b_c00376{bottom:54.280000pt;}
.y1a_c00376{bottom:76.013333pt;}
.y19_c00376{bottom:98.680000pt;}
.y18_c00376{bottom:120.680000pt;}
.y17_c00376{bottom:142.813333pt;}
.y16_c00376{bottom:165.080000pt;}
.y15_c00376{bottom:187.213333pt;}
.y14_c00376{bottom:209.746667pt;}
.y13_c00376{bottom:231.613333pt;}
.y12_c00376{bottom:253.480000pt;}
.y11_c00376{bottom:275.480000pt;}
.y10_c00376{bottom:298.280000pt;}
.yf_c00376{bottom:320.146667pt;}
.ye_c00376{bottom:338.813333pt;}
.yd_c00376{bottom:364.280000pt;}
.yc_c00376{bottom:386.146667pt;}
.yb_c00376{bottom:408.413333pt;}
.ya_c00376{bottom:453.080000pt;}
.y9_c00376{bottom:474.946667pt;}
.y8_c00376{bottom:497.080000pt;}
.y7_c00376{bottom:540.280000pt;}
.y6_c00376{bottom:584.813333pt;}
.y5_c00376{bottom:607.613333pt;}
.y4_c00376{bottom:629.480000pt;}
.y3_c00376{bottom:651.880000pt;}
.y2_c00376{bottom:673.880000pt;}
.y1_c00376{bottom:696.413333pt;}
.h5_c00376{height:11.733399pt;}
.h6_c00376{height:38.937500pt;}
.h3_c00376{height:71.785156pt;}
.h2_c00376{height:77.654948pt;}
.h4_c00376{height:84.407552pt;}
.h1_c00376{height:738.666667pt;}
.h0_c00376{height:738.733333pt;}
.w2_c00376{width:93.222667pt;}
.w0_c00376{width:517.666667pt;}
.w1_c00376{width:518.000000pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:28.400000pt;}
.x3_c00376{left:30.000000pt;}
.x4_c00376{left:31.733333pt;}
.x8_c00376{left:33.333333pt;}
.x6_c00376{left:52.533333pt;}
.x7_c00376{left:53.733333pt;}
.x5_c00376{left:63.066667pt;}
.x1_c00376{left:179.733333pt;}
.xa_c00376{left:216.001546pt;}
.x9_c00376{left:396.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_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_d4f563d81c5d0c6973b3fec2.woff2')format("woff");}.ff1_c00377{font-family:ff1_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:ff2_c00377;src:url('chunks/assets/font_3651aedb085bcac15693f252.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_0122742f0d66205f1c5c61b4.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;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_c00377;src:url('chunks/assets/font_a50cdd6b5710d97566355bb6.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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls3_c00377{letter-spacing:-6.000000px;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls1_c00377{letter-spacing:2.400000px;}
.ls0_c00377{letter-spacing:6.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-22.896000px;}
.ws1_c00377{word-spacing:-16.629000px;}
.ws2_c00377{word-spacing:0.000000px;}
._16_c00377{margin-left:-34.086000px;}
._26_c00377{margin-left:-26.289000px;}
._4_c00377{margin-left:-24.288000px;}
._20_c00377{margin-left:-16.215000px;}
._1e_c00377{margin-left:-14.490000px;}
._18_c00377{margin-left:-13.179000px;}
._1f_c00377{margin-left:-11.178000px;}
._13_c00377{margin-left:-9.522000px;}
._6_c00377{margin-left:-7.935000px;}
._12_c00377{margin-left:-6.072000px;}
._15_c00377{margin-left:-4.968000px;}
._14_c00377{margin-left:-3.933000px;}
._7_c00377{margin-left:-2.622000px;}
._1_c00377{margin-left:-1.242000px;}
._3_c00377{width:2.001000px;}
._2_c00377{width:3.312000px;}
._e_c00377{width:4.554000px;}
._f_c00377{width:5.589000px;}
._10_c00377{width:6.624000px;}
._19_c00377{width:7.812000px;}
._a_c00377{width:8.970000px;}
._17_c00377{width:10.695000px;}
._b_c00377{width:12.489000px;}
._d_c00377{width:14.076000px;}
._c_c00377{width:15.387000px;}
._1a_c00377{width:17.391000px;}
._9_c00377{width:18.423000px;}
._8_c00377{width:20.769000px;}
._1d_c00377{width:22.329000px;}
._1c_c00377{width:24.552000px;}
._1b_c00377{width:27.168000px;}
._24_c00377{width:35.886000px;}
._27_c00377{width:58.374000px;}
._28_c00377{width:61.272000px;}
._25_c00377{width:64.110000px;}
._5_c00377{width:189.198000px;}
._23_c00377{width:209.583000px;}
._21_c00377{width:280.071000px;}
._11_c00377{width:316.434000px;}
._0_c00377{width:375.618000px;}
._22_c00377{width:633.690000px;}
._29_c00377{width:1337.847000px;}
.fc2_c00377{color:transparent;}
.fc1_c00377{color:rgb(128,128,128);}
.fc0_c00377{color:rgb(0,0,0);}
.fs1_c00377{font-size:45.000000px;}
.fs5_c00377{font-size:48.000000px;}
.fs4_c00377{font-size:66.000000px;}
.fs0_c00377{font-size:69.000000px;}
.fs3_c00377{font-size:84.000000px;}
.fs2_c00377{font-size:96.000000px;}
.y0_c00377{bottom:0.000000px;}
.y1f_c00377{bottom:3.105000px;}
.y1e_c00377{bottom:7.228363px;}
.y1d_c00377{bottom:54.600000px;}
.y1c_c00377{bottom:81.900000px;}
.y1b_c00377{bottom:105.300000px;}
.y1a_c00377{bottom:131.550000px;}
.y19_c00377{bottom:157.200000px;}
.y18_c00377{bottom:182.550000px;}
.y17_c00377{bottom:206.550000px;}
.y16_c00377{bottom:232.500000px;}
.y15_c00377{bottom:257.100000px;}
.y14_c00377{bottom:282.150000px;}
.y13_c00377{bottom:306.750000px;}
.y12_c00377{bottom:330.750000px;}
.y11_c00377{bottom:355.950000px;}
.y10_c00377{bottom:379.650000px;}
.yf_c00377{bottom:405.300000px;}
.ye_c00377{bottom:430.950000px;}
.yd_c00377{bottom:456.900000px;}
.yc_c00377{bottom:481.650000px;}
.yb_c00377{bottom:505.950000px;}
.ya_c00377{bottom:538.200000px;}
.y9_c00377{bottom:585.450000px;}
.y8_c00377{bottom:602.100000px;}
.y7_c00377{bottom:629.100000px;}
.y6_c00377{bottom:653.700000px;}
.y5_c00377{bottom:678.750000px;}
.y4_c00377{bottom:703.650000px;}
.y3_c00377{bottom:728.400000px;}
.y2_c00377{bottom:752.850000px;}
.y1_c00377{bottom:778.500000px;}
.h7_c00377{height:13.200074px;}
.h8_c00377{height:43.804688px;}
.h4_c00377{height:52.668457px;}
.h3_c00377{height:56.975098px;}
.h6_c00377{height:80.758301px;}
.h2_c00377{height:87.361816px;}
.h5_c00377{height:106.353516px;}
.h1_c00377{height:827.250000px;}
.h0_c00377{height:827.550000px;}
.w2_c00377{width:104.875500px;}
.w0_c00377{width:572.100000px;}
.w1_c00377{width:572.250000px;}
.x0_c00377{left:0.000000px;}
.xd_c00377{left:37.200000px;}
.xb_c00377{left:39.450000px;}
.xe_c00377{left:40.950000px;}
.x4_c00377{left:42.300000px;}
.x2_c00377{left:48.000000px;}
.x5_c00377{left:93.150000px;}
.x10_c00377{left:101.250000px;}
.xf_c00377{left:102.600000px;}
.x8_c00377{left:103.950000px;}
.xc_c00377{left:105.600000px;}
.x6_c00377{left:106.650000px;}
.x3_c00377{left:107.700000px;}
.x1_c00377{left:121.200000px;}
.x7_c00377{left:123.600000px;}
.xa_c00377{left:130.350000px;}
.x9_c00377{left:142.800000px;}
.x11_c00377{left:237.864258px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls3_c00377{letter-spacing:-5.333333pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls1_c00377{letter-spacing:2.133333pt;}
.ls0_c00377{letter-spacing:5.333333pt;}
.ws0_c00377{word-spacing:-20.352000pt;}
.ws1_c00377{word-spacing:-14.781333pt;}
.ws2_c00377{word-spacing:0.000000pt;}
._16_c00377{margin-left:-30.298667pt;}
._26_c00377{margin-left:-23.368000pt;}
._4_c00377{margin-left:-21.589333pt;}
._20_c00377{margin-left:-14.413333pt;}
._1e_c00377{margin-left:-12.880000pt;}
._18_c00377{margin-left:-11.714667pt;}
._1f_c00377{margin-left:-9.936000pt;}
._13_c00377{margin-left:-8.464000pt;}
._6_c00377{margin-left:-7.053333pt;}
._12_c00377{margin-left:-5.397333pt;}
._15_c00377{margin-left:-4.416000pt;}
._14_c00377{margin-left:-3.496000pt;}
._7_c00377{margin-left:-2.330667pt;}
._1_c00377{margin-left:-1.104000pt;}
._3_c00377{width:1.778667pt;}
._2_c00377{width:2.944000pt;}
._e_c00377{width:4.048000pt;}
._f_c00377{width:4.968000pt;}
._10_c00377{width:5.888000pt;}
._19_c00377{width:6.944000pt;}
._a_c00377{width:7.973333pt;}
._17_c00377{width:9.506667pt;}
._b_c00377{width:11.101333pt;}
._d_c00377{width:12.512000pt;}
._c_c00377{width:13.677333pt;}
._1a_c00377{width:15.458667pt;}
._9_c00377{width:16.376000pt;}
._8_c00377{width:18.461333pt;}
._1d_c00377{width:19.848000pt;}
._1c_c00377{width:21.824000pt;}
._1b_c00377{width:24.149333pt;}
._24_c00377{width:31.898667pt;}
._27_c00377{width:51.888000pt;}
._28_c00377{width:54.464000pt;}
._25_c00377{width:56.986667pt;}
._5_c00377{width:168.176000pt;}
._23_c00377{width:186.296000pt;}
._21_c00377{width:248.952000pt;}
._11_c00377{width:281.274667pt;}
._0_c00377{width:333.882667pt;}
._22_c00377{width:563.280000pt;}
._29_c00377{width:1189.197333pt;}
.fs1_c00377{font-size:40.000000pt;}
.fs5_c00377{font-size:42.666667pt;}
.fs4_c00377{font-size:58.666667pt;}
.fs0_c00377{font-size:61.333333pt;}
.fs3_c00377{font-size:74.666667pt;}
.fs2_c00377{font-size:85.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y1f_c00377{bottom:2.760000pt;}
.y1e_c00377{bottom:6.425212pt;}
.y1d_c00377{bottom:48.533333pt;}
.y1c_c00377{bottom:72.800000pt;}
.y1b_c00377{bottom:93.600000pt;}
.y1a_c00377{bottom:116.933333pt;}
.y19_c00377{bottom:139.733333pt;}
.y18_c00377{bottom:162.266667pt;}
.y17_c00377{bottom:183.600000pt;}
.y16_c00377{bottom:206.666667pt;}
.y15_c00377{bottom:228.533333pt;}
.y14_c00377{bottom:250.800000pt;}
.y13_c00377{bottom:272.666667pt;}
.y12_c00377{bottom:294.000000pt;}
.y11_c00377{bottom:316.400000pt;}
.y10_c00377{bottom:337.466667pt;}
.yf_c00377{bottom:360.266667pt;}
.ye_c00377{bottom:383.066667pt;}
.yd_c00377{bottom:406.133333pt;}
.yc_c00377{bottom:428.133333pt;}
.yb_c00377{bottom:449.733333pt;}
.ya_c00377{bottom:478.400000pt;}
.y9_c00377{bottom:520.400000pt;}
.y8_c00377{bottom:535.200000pt;}
.y7_c00377{bottom:559.200000pt;}
.y6_c00377{bottom:581.066667pt;}
.y5_c00377{bottom:603.333333pt;}
.y4_c00377{bottom:625.466667pt;}
.y3_c00377{bottom:647.466667pt;}
.y2_c00377{bottom:669.200000pt;}
.y1_c00377{bottom:692.000000pt;}
.h7_c00377{height:11.733399pt;}
.h8_c00377{height:38.937500pt;}
.h4_c00377{height:46.816406pt;}
.h3_c00377{height:50.644531pt;}
.h6_c00377{height:71.785156pt;}
.h2_c00377{height:77.654948pt;}
.h5_c00377{height:94.536458pt;}
.h1_c00377{height:735.333333pt;}
.h0_c00377{height:735.600000pt;}
.w2_c00377{width:93.222667pt;}
.w0_c00377{width:508.533333pt;}
.w1_c00377{width:508.666667pt;}
.x0_c00377{left:0.000000pt;}
.xd_c00377{left:33.066667pt;}
.xb_c00377{left:35.066667pt;}
.xe_c00377{left:36.400000pt;}
.x4_c00377{left:37.600000pt;}
.x2_c00377{left:42.666667pt;}
.x5_c00377{left:82.800000pt;}
.x10_c00377{left:90.000000pt;}
.xf_c00377{left:91.200000pt;}
.x8_c00377{left:92.400000pt;}
.xc_c00377{left:93.866667pt;}
.x6_c00377{left:94.800000pt;}
.x3_c00377{left:95.733333pt;}
.x1_c00377{left:107.733333pt;}
.x7_c00377{left:109.866667pt;}
.xa_c00377{left:115.866667pt;}
.x9_c00377{left:126.933333pt;}
.x11_c00377{left:211.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_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_f2279846d8ac0a681f96c884.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_5d41b9578e7f681572f93116.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_c547db5f3d2a2d43cc65e577.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;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_c00378;src:url('chunks/assets/font_c12afbd660f05d7a9b00377c.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_c94284847bd5753dda904316.woff2')format("woff");}.ff5_c00378{font-family:ff5_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:ff6_c00378;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00378{font-family:ff6_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);}
.v1_c00378{vertical-align:-48.600000px;}
.v0_c00378{vertical-align:0.000000px;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:4.022400px;}
.ls2_c00378{letter-spacing:6.000000px;}
.ls3_c00378{letter-spacing:30.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;}
}
.ws2_c00378{word-spacing:-35.208000px;}
.ws4_c00378{word-spacing:-19.521000px;}
.ws3_c00378{word-spacing:-13.014000px;}
.ws1_c00378{word-spacing:-10.845000px;}
.ws5_c00378{word-spacing:0.000000px;}
.ws0_c00378{word-spacing:286.341000px;}
._17_c00378{margin-left:-29.049000px;}
._11_c00378{margin-left:-26.565000px;}
._18_c00378{margin-left:-22.002000px;}
._14_c00378{margin-left:-20.493000px;}
._1b_c00378{margin-left:-19.389000px;}
._a_c00378{margin-left:-16.905000px;}
._1e_c00378{margin-left:-15.801000px;}
._9_c00378{margin-left:-13.662000px;}
._28_c00378{margin-left:-12.381000px;}
._f_c00378{margin-left:-10.695000px;}
._3_c00378{margin-left:-9.177000px;}
._10_c00378{margin-left:-7.590000px;}
._7_c00378{margin-left:-6.348000px;}
._2_c00378{margin-left:-4.347000px;}
._1_c00378{margin-left:-3.312000px;}
._e_c00378{margin-left:-2.277000px;}
._4_c00378{margin-left:-1.242000px;}
._d_c00378{width:1.104000px;}
._0_c00378{width:2.691000px;}
._19_c00378{width:4.623000px;}
._5_c00378{width:5.934000px;}
._2c_c00378{width:6.954000px;}
._c_c00378{width:8.004000px;}
._13_c00378{width:9.063000px;}
._6_c00378{width:10.116000px;}
._29_c00378{width:11.535000px;}
._b_c00378{width:13.317000px;}
._1a_c00378{width:15.111000px;}
._23_c00378{width:16.872000px;}
._8_c00378{width:18.765000px;}
._12_c00378{width:20.217000px;}
._30_c00378{width:22.170000px;}
._21_c00378{width:23.820000px;}
._2a_c00378{width:26.028000px;}
._2b_c00378{width:29.253000px;}
._15_c00378{width:36.936000px;}
._31_c00378{width:43.830000px;}
._25_c00378{width:46.827600px;}
._1c_c00378{width:73.872000px;}
._2e_c00378{width:77.343000px;}
._22_c00378{width:81.117000px;}
._20_c00378{width:85.575000px;}
._26_c00378{width:88.314000px;}
._24_c00378{width:95.664000px;}
._2d_c00378{width:103.320000px;}
._27_c00378{width:105.825000px;}
._16_c00378{width:114.630000px;}
._32_c00378{width:204.324000px;}
._1f_c00378{width:233.187000px;}
._1d_c00378{width:291.363000px;}
._33_c00378{width:474.183000px;}
._2f_c00378{width:599.364000px;}
.fc2_c00378{color:transparent;}
.fc1_c00378{color:rgb(128,128,128);}
.fc0_c00378{color:rgb(0,0,0);}
.fs1_c00378{font-size:42.000000px;}
.fs4_c00378{font-size:43.200000px;}
.fs2_c00378{font-size:45.000000px;}
.fs6_c00378{font-size:48.000000px;}
.fs3_c00378{font-size:54.000000px;}
.fs0_c00378{font-size:69.000000px;}
.fs5_c00378{font-size:81.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1b_c00378{bottom:3.105000px;}
.y1a_c00378{bottom:7.228371px;}
.y19_c00378{bottom:66.165000px;}
.y18_c00378{bottom:116.415000px;}
.y17_c00378{bottom:142.065000px;}
.y16_c00378{bottom:192.015000px;}
.y15_c00378{bottom:239.415000px;}
.y14_c00378{bottom:256.965000px;}
.y13_c00378{bottom:273.765000px;}
.y12_c00378{bottom:289.965000px;}
.y11_c00378{bottom:325.065000px;}
.y10_c00378{bottom:369.315000px;}
.yf_c00378{bottom:385.065000px;}
.ye_c00378{bottom:402.765000px;}
.yd_c00378{bottom:420.165000px;}
.yc_c00378{bottom:437.865000px;}
.yb_c00378{bottom:455.415000px;}
.ya_c00378{bottom:472.815000px;}
.y9_c00378{bottom:489.465000px;}
.y8_c00378{bottom:507.315000px;}
.y7_c00378{bottom:549.465000px;}
.y6_c00378{bottom:563.715000px;}
.y5_c00378{bottom:587.265000px;}
.y4_c00378{bottom:611.865000px;}
.y3_c00378{bottom:637.065000px;}
.y2_c00378{bottom:661.815000px;}
.y1_c00378{bottom:686.565000px;}
.h9_c00378{height:13.200074px;}
.ha_c00378{height:43.804688px;}
.h5_c00378{height:44.814000px;}
.h7_c00378{height:63.202148px;}
.h6_c00378{height:68.370117px;}
.h3_c00378{height:80.758301px;}
.h4_c00378{height:86.761816px;}
.h2_c00378{height:87.361816px;}
.h8_c00378{height:102.555176px;}
.h1_c00378{height:831.000000px;}
.h0_c00378{height:831.075000px;}
.w2_c00378{width:104.875500px;}
.w0_c00378{width:582.375000px;}
.w1_c00378{width:582.750000px;}
.x0_c00378{left:0.000000px;}
.x6_c00378{left:30.000000px;}
.x2_c00378{left:31.050000px;}
.xc_c00378{left:33.300000px;}
.x8_c00378{left:37.050000px;}
.xa_c00378{left:41.100000px;}
.x5_c00378{left:47.250000px;}
.x9_c00378{left:49.200000px;}
.x1_c00378{left:56.250000px;}
.x7_c00378{left:114.000000px;}
.xb_c00378{left:117.450000px;}
.x4_c00378{left:180.900000px;}
.xe_c00378{left:243.001740px;}
.xd_c00378{left:281.100000px;}
.x3_c00378{left:419.850000px;}
@media print{
.v1_c00378{vertical-align:-43.200000pt;}
.v0_c00378{vertical-align:0.000000pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:3.575467pt;}
.ls2_c00378{letter-spacing:5.333333pt;}
.ls3_c00378{letter-spacing:26.666667pt;}
.ws2_c00378{word-spacing:-31.296000pt;}
.ws4_c00378{word-spacing:-17.352000pt;}
.ws3_c00378{word-spacing:-11.568000pt;}
.ws1_c00378{word-spacing:-9.640000pt;}
.ws5_c00378{word-spacing:0.000000pt;}
.ws0_c00378{word-spacing:254.525333pt;}
._17_c00378{margin-left:-25.821333pt;}
._11_c00378{margin-left:-23.613333pt;}
._18_c00378{margin-left:-19.557333pt;}
._14_c00378{margin-left:-18.216000pt;}
._1b_c00378{margin-left:-17.234667pt;}
._a_c00378{margin-left:-15.026667pt;}
._1e_c00378{margin-left:-14.045333pt;}
._9_c00378{margin-left:-12.144000pt;}
._28_c00378{margin-left:-11.005333pt;}
._f_c00378{margin-left:-9.506667pt;}
._3_c00378{margin-left:-8.157333pt;}
._10_c00378{margin-left:-6.746667pt;}
._7_c00378{margin-left:-5.642667pt;}
._2_c00378{margin-left:-3.864000pt;}
._1_c00378{margin-left:-2.944000pt;}
._e_c00378{margin-left:-2.024000pt;}
._4_c00378{margin-left:-1.104000pt;}
._d_c00378{width:0.981333pt;}
._0_c00378{width:2.392000pt;}
._19_c00378{width:4.109333pt;}
._5_c00378{width:5.274667pt;}
._2c_c00378{width:6.181333pt;}
._c_c00378{width:7.114667pt;}
._13_c00378{width:8.056000pt;}
._6_c00378{width:8.992000pt;}
._29_c00378{width:10.253333pt;}
._b_c00378{width:11.837333pt;}
._1a_c00378{width:13.432000pt;}
._23_c00378{width:14.997333pt;}
._8_c00378{width:16.680000pt;}
._12_c00378{width:17.970667pt;}
._30_c00378{width:19.706667pt;}
._21_c00378{width:21.173333pt;}
._2a_c00378{width:23.136000pt;}
._2b_c00378{width:26.002667pt;}
._15_c00378{width:32.832000pt;}
._31_c00378{width:38.960000pt;}
._25_c00378{width:41.624533pt;}
._1c_c00378{width:65.664000pt;}
._2e_c00378{width:68.749333pt;}
._22_c00378{width:72.104000pt;}
._20_c00378{width:76.066667pt;}
._26_c00378{width:78.501333pt;}
._24_c00378{width:85.034667pt;}
._2d_c00378{width:91.840000pt;}
._27_c00378{width:94.066667pt;}
._16_c00378{width:101.893333pt;}
._32_c00378{width:181.621333pt;}
._1f_c00378{width:207.277333pt;}
._1d_c00378{width:258.989333pt;}
._33_c00378{width:421.496000pt;}
._2f_c00378{width:532.768000pt;}
.fs1_c00378{font-size:37.333333pt;}
.fs4_c00378{font-size:38.400000pt;}
.fs2_c00378{font-size:40.000000pt;}
.fs6_c00378{font-size:42.666667pt;}
.fs3_c00378{font-size:48.000000pt;}
.fs0_c00378{font-size:61.333333pt;}
.fs5_c00378{font-size:72.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y1b_c00378{bottom:2.760000pt;}
.y1a_c00378{bottom:6.425219pt;}
.y19_c00378{bottom:58.813333pt;}
.y18_c00378{bottom:103.480000pt;}
.y17_c00378{bottom:126.280000pt;}
.y16_c00378{bottom:170.680000pt;}
.y15_c00378{bottom:212.813333pt;}
.y14_c00378{bottom:228.413333pt;}
.y13_c00378{bottom:243.346667pt;}
.y12_c00378{bottom:257.746667pt;}
.y11_c00378{bottom:288.946667pt;}
.y10_c00378{bottom:328.280000pt;}
.yf_c00378{bottom:342.280000pt;}
.ye_c00378{bottom:358.013333pt;}
.yd_c00378{bottom:373.480000pt;}
.yc_c00378{bottom:389.213333pt;}
.yb_c00378{bottom:404.813333pt;}
.ya_c00378{bottom:420.280000pt;}
.y9_c00378{bottom:435.080000pt;}
.y8_c00378{bottom:450.946667pt;}
.y7_c00378{bottom:488.413333pt;}
.y6_c00378{bottom:501.080000pt;}
.y5_c00378{bottom:522.013333pt;}
.y4_c00378{bottom:543.880000pt;}
.y3_c00378{bottom:566.280000pt;}
.y2_c00378{bottom:588.280000pt;}
.y1_c00378{bottom:610.280000pt;}
.h9_c00378{height:11.733399pt;}
.ha_c00378{height:38.937500pt;}
.h5_c00378{height:39.834667pt;}
.h7_c00378{height:56.179688pt;}
.h6_c00378{height:60.773438pt;}
.h3_c00378{height:71.785156pt;}
.h4_c00378{height:77.121615pt;}
.h2_c00378{height:77.654948pt;}
.h8_c00378{height:91.160156pt;}
.h1_c00378{height:738.666667pt;}
.h0_c00378{height:738.733333pt;}
.w2_c00378{width:93.222667pt;}
.w0_c00378{width:517.666667pt;}
.w1_c00378{width:518.000000pt;}
.x0_c00378{left:0.000000pt;}
.x6_c00378{left:26.666667pt;}
.x2_c00378{left:27.600000pt;}
.xc_c00378{left:29.600000pt;}
.x8_c00378{left:32.933333pt;}
.xa_c00378{left:36.533333pt;}
.x5_c00378{left:42.000000pt;}
.x9_c00378{left:43.733333pt;}
.x1_c00378{left:50.000000pt;}
.x7_c00378{left:101.333333pt;}
.xb_c00378{left:104.400000pt;}
.x4_c00378{left:160.800000pt;}
.xe_c00378{left:216.001546pt;}
.xd_c00378{left:249.866667pt;}
.x3_c00378{left:373.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_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_44d2dcbe13570f4c98c0c3eb.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_ad64225e31d65e0524e43206.woff2')format("woff");}.ff2_c00379{font-family:ff2_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:ff3_c00379;src:url('chunks/assets/font_6148760e9eb815e47d9d3382.woff2')format("woff");}.ff3_c00379{font-family:ff3_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:ff4_c00379;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00379{font-family:ff5_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;}
.ls6_c00379{letter-spacing:0.000000px;}
.ls3_c00379{letter-spacing:1.800000px;}
.ls7_c00379{letter-spacing:3.000000px;}
.ls1_c00379{letter-spacing:4.560000px;}
.ls5_c00379{letter-spacing:6.000000px;}
.ls2_c00379{letter-spacing:13.125000px;}
.ls0_c00379{letter-spacing:14.325000px;}
.ls4_c00379{letter-spacing:65.571000px;}
.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;}
}
.ws2_c00379{word-spacing:-47.022000px;}
.ws3_c00379{word-spacing:-22.629000px;}
.ws0_c00379{word-spacing:-16.629000px;}
.ws4_c00379{word-spacing:0.000000px;}
.ws1_c00379{word-spacing:0.690000px;}
._28_c00379{margin-left:-28.170000px;}
._3_c00379{margin-left:-21.114000px;}
._2a_c00379{margin-left:-15.939000px;}
._1_c00379{margin-left:-14.421000px;}
._2_c00379{margin-left:-12.765000px;}
._1f_c00379{margin-left:-11.385000px;}
._0_c00379{margin-left:-10.005000px;}
._e_c00379{margin-left:-8.349000px;}
._13_c00379{margin-left:-7.314000px;}
._10_c00379{margin-left:-5.520000px;}
._7_c00379{margin-left:-4.209000px;}
._9_c00379{margin-left:-2.898000px;}
._5_c00379{margin-left:-1.863000px;}
._c_c00379{width:1.656000px;}
._11_c00379{width:3.036000px;}
._6_c00379{width:4.485000px;}
._b_c00379{width:6.210000px;}
._d_c00379{width:8.004000px;}
._8_c00379{width:9.039000px;}
._21_c00379{width:10.212000px;}
._25_c00379{width:11.247000px;}
._19_c00379{width:12.351000px;}
._12_c00379{width:13.869000px;}
._15_c00379{width:15.456000px;}
._14_c00379{width:16.560000px;}
._1d_c00379{width:18.012000px;}
._1e_c00379{width:19.734000px;}
._1a_c00379{width:21.114000px;}
._16_c00379{width:25.530000px;}
._29_c00379{width:30.486000px;}
._1c_c00379{width:32.430000px;}
._1b_c00379{width:37.605000px;}
._22_c00379{width:45.609000px;}
._18_c00379{width:51.888000px;}
._23_c00379{width:65.688000px;}
._24_c00379{width:93.495000px;}
._17_c00379{width:94.737000px;}
._27_c00379{width:100.023000px;}
._a_c00379{width:122.544000px;}
._26_c00379{width:142.692000px;}
._20_c00379{width:155.172000px;}
._f_c00379{width:156.354000px;}
._4_c00379{width:374.892000px;}
.fc2_c00379{color:transparent;}
.fc1_c00379{color:rgb(128,128,128);}
.fc0_c00379{color:rgb(0,0,0);}
.fs2_c00379{font-size:48.000000px;}
.fs1_c00379{font-size:66.000000px;}
.fs0_c00379{font-size:69.000000px;}
.y0_c00379{bottom:0.000000px;}
.y21_c00379{bottom:3.105000px;}
.y20_c00379{bottom:7.228369px;}
.y1d_c00379{bottom:83.670000px;}
.y1c_c00379{bottom:106.320000px;}
.y1b_c00379{bottom:131.970000px;}
.y1f_c00379{bottom:143.370000px;}
.y1a_c00379{bottom:156.570000px;}
.y19_c00379{bottom:181.470000px;}
.y18_c00379{bottom:206.220000px;}
.y17_c00379{bottom:231.420000px;}
.y16_c00379{bottom:256.170000px;}
.y15_c00379{bottom:281.370000px;}
.y14_c00379{bottom:305.370000px;}
.y13_c00379{bottom:329.670000px;}
.y12_c00379{bottom:354.270000px;}
.y11_c00379{bottom:379.620000px;}
.y10_c00379{bottom:403.620000px;}
.y1e_c00379{bottom:413.370000px;}
.yf_c00379{bottom:428.670000px;}
.ye_c00379{bottom:452.520000px;}
.yd_c00379{bottom:478.170000px;}
.yc_c00379{bottom:502.920000px;}
.yb_c00379{bottom:527.820000px;}
.ya_c00379{bottom:551.520000px;}
.y9_c00379{bottom:576.720000px;}
.y8_c00379{bottom:601.320000px;}
.y7_c00379{bottom:626.370000px;}
.y6_c00379{bottom:651.420000px;}
.y5_c00379{bottom:676.320000px;}
.y4_c00379{bottom:700.620000px;}
.y3_c00379{bottom:725.970000px;}
.y2_c00379{bottom:749.970000px;}
.y1_c00379{bottom:775.470000px;}
.h3_c00379{height:13.200073px;}
.h4_c00379{height:43.804688px;}
.h2_c00379{height:87.361816px;}
.h0_c00379{height:821.850000px;}
.h1_c00379{height:822.000000px;}
.w2_c00379{width:104.875500px;}
.w1_c00379{width:567.750000px;}
.w0_c00379{width:568.050000px;}
.x0_c00379{left:0.000000px;}
.xf_c00379{left:28.950000px;}
.x7_c00379{left:30.150000px;}
.x10_c00379{left:31.650000px;}
.x2_c00379{left:37.050000px;}
.xe_c00379{left:42.750000px;}
.x11_c00379{left:44.850000px;}
.x9_c00379{left:46.200000px;}
.x4_c00379{left:54.000000px;}
.xd_c00379{left:92.700000px;}
.xc_c00379{left:94.500000px;}
.xa_c00379{left:95.550000px;}
.x8_c00379{left:96.750000px;}
.x6_c00379{left:98.550000px;}
.x3_c00379{left:100.500000px;}
.x5_c00379{left:101.550000px;}
.x1_c00379{left:116.400000px;}
.xb_c00379{left:118.800000px;}
.x12_c00379{left:235.839249px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls6_c00379{letter-spacing:0.000000pt;}
.ls3_c00379{letter-spacing:1.600000pt;}
.ls7_c00379{letter-spacing:2.666667pt;}
.ls1_c00379{letter-spacing:4.053333pt;}
.ls5_c00379{letter-spacing:5.333333pt;}
.ls2_c00379{letter-spacing:11.666667pt;}
.ls0_c00379{letter-spacing:12.733333pt;}
.ls4_c00379{letter-spacing:58.285333pt;}
.ws2_c00379{word-spacing:-41.797333pt;}
.ws3_c00379{word-spacing:-20.114667pt;}
.ws0_c00379{word-spacing:-14.781333pt;}
.ws4_c00379{word-spacing:0.000000pt;}
.ws1_c00379{word-spacing:0.613333pt;}
._28_c00379{margin-left:-25.040000pt;}
._3_c00379{margin-left:-18.768000pt;}
._2a_c00379{margin-left:-14.168000pt;}
._1_c00379{margin-left:-12.818667pt;}
._2_c00379{margin-left:-11.346667pt;}
._1f_c00379{margin-left:-10.120000pt;}
._0_c00379{margin-left:-8.893333pt;}
._e_c00379{margin-left:-7.421333pt;}
._13_c00379{margin-left:-6.501333pt;}
._10_c00379{margin-left:-4.906667pt;}
._7_c00379{margin-left:-3.741333pt;}
._9_c00379{margin-left:-2.576000pt;}
._5_c00379{margin-left:-1.656000pt;}
._c_c00379{width:1.472000pt;}
._11_c00379{width:2.698667pt;}
._6_c00379{width:3.986667pt;}
._b_c00379{width:5.520000pt;}
._d_c00379{width:7.114667pt;}
._8_c00379{width:8.034667pt;}
._21_c00379{width:9.077333pt;}
._25_c00379{width:9.997333pt;}
._19_c00379{width:10.978667pt;}
._12_c00379{width:12.328000pt;}
._15_c00379{width:13.738667pt;}
._14_c00379{width:14.720000pt;}
._1d_c00379{width:16.010667pt;}
._1e_c00379{width:17.541333pt;}
._1a_c00379{width:18.768000pt;}
._16_c00379{width:22.693333pt;}
._29_c00379{width:27.098667pt;}
._1c_c00379{width:28.826667pt;}
._1b_c00379{width:33.426667pt;}
._22_c00379{width:40.541333pt;}
._18_c00379{width:46.122667pt;}
._23_c00379{width:58.389333pt;}
._24_c00379{width:83.106667pt;}
._17_c00379{width:84.210667pt;}
._27_c00379{width:88.909333pt;}
._a_c00379{width:108.928000pt;}
._26_c00379{width:126.837333pt;}
._20_c00379{width:137.930667pt;}
._f_c00379{width:138.981333pt;}
._4_c00379{width:333.237333pt;}
.fs2_c00379{font-size:42.666667pt;}
.fs1_c00379{font-size:58.666667pt;}
.fs0_c00379{font-size:61.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y21_c00379{bottom:2.760000pt;}
.y20_c00379{bottom:6.425217pt;}
.y1d_c00379{bottom:74.373333pt;}
.y1c_c00379{bottom:94.506667pt;}
.y1b_c00379{bottom:117.306667pt;}
.y1f_c00379{bottom:127.440000pt;}
.y1a_c00379{bottom:139.173333pt;}
.y19_c00379{bottom:161.306667pt;}
.y18_c00379{bottom:183.306667pt;}
.y17_c00379{bottom:205.706667pt;}
.y16_c00379{bottom:227.706667pt;}
.y15_c00379{bottom:250.106667pt;}
.y14_c00379{bottom:271.440000pt;}
.y13_c00379{bottom:293.040000pt;}
.y12_c00379{bottom:314.906667pt;}
.y11_c00379{bottom:337.440000pt;}
.y10_c00379{bottom:358.773333pt;}
.y1e_c00379{bottom:367.440000pt;}
.yf_c00379{bottom:381.040000pt;}
.ye_c00379{bottom:402.240000pt;}
.yd_c00379{bottom:425.040000pt;}
.yc_c00379{bottom:447.040000pt;}
.yb_c00379{bottom:469.173333pt;}
.ya_c00379{bottom:490.240000pt;}
.y9_c00379{bottom:512.640000pt;}
.y8_c00379{bottom:534.506667pt;}
.y7_c00379{bottom:556.773333pt;}
.y6_c00379{bottom:579.040000pt;}
.y5_c00379{bottom:601.173333pt;}
.y4_c00379{bottom:622.773333pt;}
.y3_c00379{bottom:645.306667pt;}
.y2_c00379{bottom:666.640000pt;}
.y1_c00379{bottom:689.306667pt;}
.h3_c00379{height:11.733399pt;}
.h4_c00379{height:38.937500pt;}
.h2_c00379{height:77.654948pt;}
.h0_c00379{height:730.533333pt;}
.h1_c00379{height:730.666667pt;}
.w2_c00379{width:93.222667pt;}
.w1_c00379{width:504.666667pt;}
.w0_c00379{width:504.933333pt;}
.x0_c00379{left:0.000000pt;}
.xf_c00379{left:25.733333pt;}
.x7_c00379{left:26.800000pt;}
.x10_c00379{left:28.133333pt;}
.x2_c00379{left:32.933333pt;}
.xe_c00379{left:38.000000pt;}
.x11_c00379{left:39.866667pt;}
.x9_c00379{left:41.066667pt;}
.x4_c00379{left:48.000000pt;}
.xd_c00379{left:82.400000pt;}
.xc_c00379{left:84.000000pt;}
.xa_c00379{left:84.933333pt;}
.x8_c00379{left:86.000000pt;}
.x6_c00379{left:87.600000pt;}
.x3_c00379{left:89.333333pt;}
.x5_c00379{left:90.266667pt;}
.x1_c00379{left:103.466667pt;}
.xb_c00379{left:105.600000pt;}
.x12_c00379{left:209.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5042db539fad49cf0f6e8066.woff2')format("woff");}.ff1_c00380{font-family:ff1_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:ff2_c00380;src:url('chunks/assets/font_4675af98a8400395d5a5c10b.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00380{font-family:ff3_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;}
.ls0_c00380{letter-spacing:0.000000px;}
.ls1_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:-16.629000px;}
.ws1_c00380{word-spacing:0.000000px;}
._2a_c00380{margin-left:-31.269000px;}
._a_c00380{margin-left:-21.528000px;}
._2e_c00380{margin-left:-19.770000px;}
._2c_c00380{margin-left:-18.306000px;}
._11_c00380{margin-left:-16.974000px;}
._2b_c00380{margin-left:-13.524000px;}
._9_c00380{margin-left:-12.144000px;}
._2d_c00380{margin-left:-10.692000px;}
._1c_c00380{margin-left:-9.498000px;}
._12_c00380{margin-left:-7.935000px;}
._7_c00380{margin-left:-6.486000px;}
._8_c00380{margin-left:-5.382000px;}
._6_c00380{margin-left:-3.933000px;}
._3_c00380{margin-left:-2.484000px;}
._0_c00380{margin-left:-1.035000px;}
._2_c00380{width:1.656000px;}
._4_c00380{width:3.174000px;}
._5_c00380{width:4.485000px;}
._f_c00380{width:5.865000px;}
._10_c00380{width:7.935000px;}
._19_c00380{width:9.591000px;}
._1a_c00380{width:11.316000px;}
._e_c00380{width:12.765000px;}
._b_c00380{width:14.904000px;}
._1b_c00380{width:16.146000px;}
._d_c00380{width:17.664000px;}
._28_c00380{width:19.389000px;}
._c_c00380{width:21.459000px;}
._27_c00380{width:23.322000px;}
._22_c00380{width:27.045000px;}
._16_c00380{width:28.497000px;}
._17_c00380{width:30.567000px;}
._18_c00380{width:31.740000px;}
._15_c00380{width:32.982000px;}
._14_c00380{width:34.707000px;}
._29_c00380{width:39.030000px;}
._1e_c00380{width:77.901000px;}
._1f_c00380{width:83.490000px;}
._24_c00380{width:87.717000px;}
._1d_c00380{width:107.433000px;}
._26_c00380{width:109.434000px;}
._20_c00380{width:154.305000px;}
._21_c00380{width:162.219000px;}
._13_c00380{width:209.208000px;}
._25_c00380{width:273.792000px;}
._23_c00380{width:304.566000px;}
._1_c00380{width:515.760000px;}
._30_c00380{width:576.426000px;}
._2f_c00380{width:911.916000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(128,128,128);}
.fc0_c00380{color:rgb(0,0,0);}
.fs1_c00380{font-size:48.000000px;}
.fs0_c00380{font-size:69.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1d_c00380{bottom:3.105000px;}
.y1c_c00380{bottom:7.228371px;}
.y1b_c00380{bottom:63.915000px;}
.y1a_c00380{bottom:90.165000px;}
.y19_c00380{bottom:115.215000px;}
.y18_c00380{bottom:139.365000px;}
.y17_c00380{bottom:165.015000px;}
.y16_c00380{bottom:189.015000px;}
.y15_c00380{bottom:214.965000px;}
.y14_c00380{bottom:239.715000px;}
.y13_c00380{bottom:264.615000px;}
.y12_c00380{bottom:288.015000px;}
.y11_c00380{bottom:315.015000px;}
.y10_c00380{bottom:339.315000px;}
.yf_c00380{bottom:364.215000px;}
.ye_c00380{bottom:388.215000px;}
.yd_c00380{bottom:412.515000px;}
.yc_c00380{bottom:437.865000px;}
.yb_c00380{bottom:484.665000px;}
.ya_c00380{bottom:511.665000px;}
.y9_c00380{bottom:535.965000px;}
.y8_c00380{bottom:560.565000px;}
.y7_c00380{bottom:584.865000px;}
.y6_c00380{bottom:609.915000px;}
.y5_c00380{bottom:659.265000px;}
.y4_c00380{bottom:709.065000px;}
.y3_c00380{bottom:733.815000px;}
.y2_c00380{bottom:759.015000px;}
.y1_c00380{bottom:783.465000px;}
.h5_c00380{height:13.200074px;}
.h6_c00380{height:43.804688px;}
.h4_c00380{height:56.179688px;}
.h3_c00380{height:80.758301px;}
.h2_c00380{height:87.361816px;}
.h1_c00380{height:831.000000px;}
.h0_c00380{height:831.075000px;}
.w2_c00380{width:104.875500px;}
.w0_c00380{width:582.375000px;}
.w1_c00380{width:582.750000px;}
.x0_c00380{left:0.000000px;}
.xa_c00380{left:34.800000px;}
.xb_c00380{left:35.850000px;}
.xc_c00380{left:37.200000px;}
.x9_c00380{left:38.250000px;}
.x3_c00380{left:40.500000px;}
.x4_c00380{left:42.750000px;}
.xe_c00380{left:44.250000px;}
.x7_c00380{left:58.050000px;}
.xd_c00380{left:61.200000px;}
.x8_c00380{left:63.150000px;}
.x2_c00380{left:66.150000px;}
.x6_c00380{left:67.950000px;}
.x5_c00380{left:120.450000px;}
.x1_c00380{left:200.700000px;}
.xf_c00380{left:243.001740px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:5.333333pt;}
.ws0_c00380{word-spacing:-14.781333pt;}
.ws1_c00380{word-spacing:0.000000pt;}
._2a_c00380{margin-left:-27.794667pt;}
._a_c00380{margin-left:-19.136000pt;}
._2e_c00380{margin-left:-17.573333pt;}
._2c_c00380{margin-left:-16.272000pt;}
._11_c00380{margin-left:-15.088000pt;}
._2b_c00380{margin-left:-12.021333pt;}
._9_c00380{margin-left:-10.794667pt;}
._2d_c00380{margin-left:-9.504000pt;}
._1c_c00380{margin-left:-8.442667pt;}
._12_c00380{margin-left:-7.053333pt;}
._7_c00380{margin-left:-5.765333pt;}
._8_c00380{margin-left:-4.784000pt;}
._6_c00380{margin-left:-3.496000pt;}
._3_c00380{margin-left:-2.208000pt;}
._0_c00380{margin-left:-0.920000pt;}
._2_c00380{width:1.472000pt;}
._4_c00380{width:2.821333pt;}
._5_c00380{width:3.986667pt;}
._f_c00380{width:5.213333pt;}
._10_c00380{width:7.053333pt;}
._19_c00380{width:8.525333pt;}
._1a_c00380{width:10.058667pt;}
._e_c00380{width:11.346667pt;}
._b_c00380{width:13.248000pt;}
._1b_c00380{width:14.352000pt;}
._d_c00380{width:15.701333pt;}
._28_c00380{width:17.234667pt;}
._c_c00380{width:19.074667pt;}
._27_c00380{width:20.730667pt;}
._22_c00380{width:24.040000pt;}
._16_c00380{width:25.330667pt;}
._17_c00380{width:27.170667pt;}
._18_c00380{width:28.213333pt;}
._15_c00380{width:29.317333pt;}
._14_c00380{width:30.850667pt;}
._29_c00380{width:34.693333pt;}
._1e_c00380{width:69.245333pt;}
._1f_c00380{width:74.213333pt;}
._24_c00380{width:77.970667pt;}
._1d_c00380{width:95.496000pt;}
._26_c00380{width:97.274667pt;}
._20_c00380{width:137.160000pt;}
._21_c00380{width:144.194667pt;}
._13_c00380{width:185.962667pt;}
._25_c00380{width:243.370667pt;}
._23_c00380{width:270.725333pt;}
._1_c00380{width:458.453333pt;}
._30_c00380{width:512.378667pt;}
._2f_c00380{width:810.592000pt;}
.fs1_c00380{font-size:42.666667pt;}
.fs0_c00380{font-size:61.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y1d_c00380{bottom:2.760000pt;}
.y1c_c00380{bottom:6.425219pt;}
.y1b_c00380{bottom:56.813333pt;}
.y1a_c00380{bottom:80.146667pt;}
.y19_c00380{bottom:102.413333pt;}
.y18_c00380{bottom:123.880000pt;}
.y17_c00380{bottom:146.680000pt;}
.y16_c00380{bottom:168.013333pt;}
.y15_c00380{bottom:191.080000pt;}
.y14_c00380{bottom:213.080000pt;}
.y13_c00380{bottom:235.213333pt;}
.y12_c00380{bottom:256.013333pt;}
.y11_c00380{bottom:280.013333pt;}
.y10_c00380{bottom:301.613333pt;}
.yf_c00380{bottom:323.746667pt;}
.ye_c00380{bottom:345.080000pt;}
.yd_c00380{bottom:366.680000pt;}
.yc_c00380{bottom:389.213333pt;}
.yb_c00380{bottom:430.813333pt;}
.ya_c00380{bottom:454.813333pt;}
.y9_c00380{bottom:476.413333pt;}
.y8_c00380{bottom:498.280000pt;}
.y7_c00380{bottom:519.880000pt;}
.y6_c00380{bottom:542.146667pt;}
.y5_c00380{bottom:586.013333pt;}
.y4_c00380{bottom:630.280000pt;}
.y3_c00380{bottom:652.280000pt;}
.y2_c00380{bottom:674.680000pt;}
.y1_c00380{bottom:696.413333pt;}
.h5_c00380{height:11.733399pt;}
.h6_c00380{height:38.937500pt;}
.h4_c00380{height:49.937500pt;}
.h3_c00380{height:71.785156pt;}
.h2_c00380{height:77.654948pt;}
.h1_c00380{height:738.666667pt;}
.h0_c00380{height:738.733333pt;}
.w2_c00380{width:93.222667pt;}
.w0_c00380{width:517.666667pt;}
.w1_c00380{width:518.000000pt;}
.x0_c00380{left:0.000000pt;}
.xa_c00380{left:30.933333pt;}
.xb_c00380{left:31.866667pt;}
.xc_c00380{left:33.066667pt;}
.x9_c00380{left:34.000000pt;}
.x3_c00380{left:36.000000pt;}
.x4_c00380{left:38.000000pt;}
.xe_c00380{left:39.333333pt;}
.x7_c00380{left:51.600000pt;}
.xd_c00380{left:54.400000pt;}
.x8_c00380{left:56.133333pt;}
.x2_c00380{left:58.800000pt;}
.x6_c00380{left:60.400000pt;}
.x5_c00380{left:107.066667pt;}
.x1_c00380{left:178.400000pt;}
.xf_c00380{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e5900e8ae99dd5cf25b35fe.woff2')format("woff");}.ff1_c00381{font-family:ff1_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:ff2_c00381;src:url('chunks/assets/font_d00a98e9000dc88499aa223a.woff2')format("woff");}.ff2_c00381{font-family:ff2_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:ff3_c00381;src:url('chunks/assets/font_5801a0aaacd64e2ebc6d53c2.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_bc1e22865c5112837b67cf5e.woff2')format("woff");}.ff4_c00381{font-family:ff4_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:ff5_c00381;src:url('chunks/assets/font_27b5602cc567dde3c54503a4.woff2')format("woff");}.ff5_c00381{font-family:ff5_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:ff6_c00381;src:url('chunks/assets/font_427b7dc39b6ab000da068168.woff2')format("woff");}.ff6_c00381{font-family:ff6_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:ff7_c00381;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00381{font-family:ff7_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);}
.v1_c00381{vertical-align:-56.400000px;}
.v0_c00381{vertical-align:0.000000px;}
.ls6_c00381{letter-spacing:0.000000px;}
.ls4_c00381{letter-spacing:1.800000px;}
.ls9_c00381{letter-spacing:3.000000px;}
.ls5_c00381{letter-spacing:6.000000px;}
.ls7_c00381{letter-spacing:9.000000px;}
.ls3_c00381{letter-spacing:15.771000px;}
.ls8_c00381{letter-spacing:18.000000px;}
.ls0_c00381{letter-spacing:24.846000px;}
.ls1_c00381{letter-spacing:29.400000px;}
.lsa_c00381{letter-spacing:30.000000px;}
.ls2_c00381{letter-spacing:36.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00381{word-spacing:-47.022000px;}
.ws7_c00381{word-spacing:-34.629000px;}
.ws5_c00381{word-spacing:-22.716000px;}
.ws9_c00381{word-spacing:-22.629000px;}
.ws2_c00381{word-spacing:-18.954000px;}
.ws0_c00381{word-spacing:-16.629000px;}
.ws1_c00381{word-spacing:-13.303200px;}
.ws3_c00381{word-spacing:-13.014000px;}
.ws4_c00381{word-spacing:-11.568000px;}
.wsb_c00381{word-spacing:0.000000px;}
.ws6_c00381{word-spacing:4.140000px;}
.wsa_c00381{word-spacing:34.929000px;}
._11_c00381{margin-left:-64.758000px;}
._35_c00381{margin-left:-33.252000px;}
._9_c00381{margin-left:-30.360000px;}
._36_c00381{margin-left:-26.892000px;}
._3_c00381{margin-left:-24.909000px;}
._18_c00381{margin-left:-20.217000px;}
._16_c00381{margin-left:-16.905000px;}
._15_c00381{margin-left:-15.255000px;}
._10_c00381{margin-left:-12.420000px;}
._0_c00381{margin-left:-10.488000px;}
._c_c00381{margin-left:-9.177000px;}
._f_c00381{margin-left:-7.590000px;}
._2_c00381{margin-left:-6.003000px;}
._1_c00381{margin-left:-4.278000px;}
._d_c00381{margin-left:-2.760000px;}
._5_c00381{margin-left:-1.587000px;}
._8_c00381{width:2.001000px;}
._7_c00381{width:3.105000px;}
._6_c00381{width:4.347000px;}
._17_c00381{width:5.796000px;}
._a_c00381{width:7.038000px;}
._b_c00381{width:8.694000px;}
._1e_c00381{width:9.759000px;}
._e_c00381{width:10.764000px;}
._13_c00381{width:11.937000px;}
._12_c00381{width:13.407000px;}
._1d_c00381{width:14.559000px;}
._1c_c00381{width:15.852000px;}
._26_c00381{width:16.932000px;}
._2b_c00381{width:18.699000px;}
._29_c00381{width:19.803000px;}
._28_c00381{width:21.321000px;}
._1b_c00381{width:23.133000px;}
._2c_c00381{width:25.560000px;}
._37_c00381{width:29.244000px;}
._22_c00381{width:31.050000px;}
._23_c00381{width:35.259000px;}
._20_c00381{width:36.609000px;}
._21_c00381{width:38.157000px;}
._24_c00381{width:39.882000px;}
._2f_c00381{width:42.987000px;}
._3b_c00381{width:53.652000px;}
._3a_c00381{width:64.941000px;}
._38_c00381{width:65.994000px;}
._19_c00381{width:73.209000px;}
._2a_c00381{width:84.435000px;}
._32_c00381{width:87.708000px;}
._25_c00381{width:97.500000px;}
._2d_c00381{width:99.567000px;}
._34_c00381{width:113.988000px;}
._2e_c00381{width:135.120000px;}
._27_c00381{width:140.001000px;}
._14_c00381{width:152.700000px;}
._39_c00381{width:168.588000px;}
._30_c00381{width:172.341000px;}
._33_c00381{width:181.125000px;}
._31_c00381{width:354.246000px;}
._4_c00381{width:382.353000px;}
._3c_c00381{width:422.511000px;}
._1a_c00381{width:734.298000px;}
._1f_c00381{width:762.984000px;}
.fc2_c00381{color:transparent;}
.fc1_c00381{color:rgb(128,128,128);}
.fc0_c00381{color:rgb(0,0,0);}
.fs6_c00381{font-size:45.000000px;}
.fs2_c00381{font-size:48.000000px;}
.fs3_c00381{font-size:51.000000px;}
.fs4_c00381{font-size:54.000000px;}
.fs1_c00381{font-size:55.200000px;}
.fs5_c00381{font-size:57.000000px;}
.fs7_c00381{font-size:66.000000px;}
.fs0_c00381{font-size:69.000000px;}
.y0_c00381{bottom:0.000000px;}
.y20_c00381{bottom:3.105000px;}
.y1f_c00381{bottom:7.228363px;}
.y1e_c00381{bottom:74.250000px;}
.y1d_c00381{bottom:92.850000px;}
.y1c_c00381{bottom:110.400000px;}
.y1b_c00381{bottom:128.250000px;}
.y1a_c00381{bottom:180.900000px;}
.y19_c00381{bottom:206.250000px;}
.y18_c00381{bottom:230.850000px;}
.y17_c00381{bottom:255.600000px;}
.y16_c00381{bottom:280.800000px;}
.y10_c00381{bottom:301.050000px;}
.y15_c00381{bottom:305.850000px;}
.yf_c00381{bottom:313.650000px;}
.y14_c00381{bottom:330.150000px;}
.y13_c00381{bottom:354.750000px;}
.y12_c00381{bottom:379.800000px;}
.y11_c00381{bottom:405.300000px;}
.ye_c00381{bottom:430.350000px;}
.yd_c00381{bottom:454.950000px;}
.yc_c00381{bottom:479.250000px;}
.yb_c00381{bottom:504.450000px;}
.ya_c00381{bottom:554.100000px;}
.y9_c00381{bottom:602.100000px;}
.y8_c00381{bottom:618.000000px;}
.y7_c00381{bottom:636.750000px;}
.y6_c00381{bottom:654.150000px;}
.y5_c00381{bottom:677.250000px;}
.y4_c00381{bottom:705.150000px;}
.y3_c00381{bottom:729.600000px;}
.y2_c00381{bottom:755.550000px;}
.y1_c00381{bottom:779.700000px;}
.h8_c00381{height:13.200074px;}
.h9_c00381{height:43.804688px;}
.h5_c00381{height:56.179688px;}
.h4_c00381{height:60.773438px;}
.h3_c00381{height:64.571777px;}
.h7_c00381{height:68.370117px;}
.h6_c00381{height:80.758301px;}
.h2_c00381{height:87.361816px;}
.h0_c00381{height:818.100000px;}
.h1_c00381{height:818.250000px;}
.w2_c00381{width:104.875500px;}
.w0_c00381{width:565.350000px;}
.w1_c00381{width:565.500000px;}
.x0_c00381{left:0.000000px;}
.x16_c00381{left:25.650000px;}
.xc_c00381{left:27.000000px;}
.xd_c00381{left:28.800000px;}
.x5_c00381{left:33.300000px;}
.x3_c00381{left:35.100000px;}
.x15_c00381{left:43.200000px;}
.x10_c00381{left:45.300000px;}
.x4_c00381{left:51.300000px;}
.x11_c00381{left:59.400000px;}
.xf_c00381{left:65.550000px;}
.xe_c00381{left:90.150000px;}
.x14_c00381{left:91.200000px;}
.xb_c00381{left:93.150000px;}
.x8_c00381{left:94.200000px;}
.x13_c00381{left:95.250000px;}
.x7_c00381{left:97.200000px;}
.x2_c00381{left:98.250000px;}
.x1_c00381{left:110.400000px;}
.x6_c00381{left:116.400000px;}
.xa_c00381{left:120.600000px;}
.x12_c00381{left:122.550000px;}
.x9_c00381{left:215.400000px;}
.x17_c00381{left:234.489258px;}
@media print{
.v1_c00381{vertical-align:-50.133333pt;}
.v0_c00381{vertical-align:0.000000pt;}
.ls6_c00381{letter-spacing:0.000000pt;}
.ls4_c00381{letter-spacing:1.600000pt;}
.ls9_c00381{letter-spacing:2.666667pt;}
.ls5_c00381{letter-spacing:5.333333pt;}
.ls7_c00381{letter-spacing:8.000000pt;}
.ls3_c00381{letter-spacing:14.018667pt;}
.ls8_c00381{letter-spacing:16.000000pt;}
.ls0_c00381{letter-spacing:22.085333pt;}
.ls1_c00381{letter-spacing:26.133333pt;}
.lsa_c00381{letter-spacing:26.666667pt;}
.ls2_c00381{letter-spacing:32.000000pt;}
.ws8_c00381{word-spacing:-41.797333pt;}
.ws7_c00381{word-spacing:-30.781333pt;}
.ws5_c00381{word-spacing:-20.192000pt;}
.ws9_c00381{word-spacing:-20.114667pt;}
.ws2_c00381{word-spacing:-16.848000pt;}
.ws0_c00381{word-spacing:-14.781333pt;}
.ws1_c00381{word-spacing:-11.825067pt;}
.ws3_c00381{word-spacing:-11.568000pt;}
.ws4_c00381{word-spacing:-10.282667pt;}
.wsb_c00381{word-spacing:0.000000pt;}
.ws6_c00381{word-spacing:3.680000pt;}
.wsa_c00381{word-spacing:31.048000pt;}
._11_c00381{margin-left:-57.562667pt;}
._35_c00381{margin-left:-29.557333pt;}
._9_c00381{margin-left:-26.986667pt;}
._36_c00381{margin-left:-23.904000pt;}
._3_c00381{margin-left:-22.141333pt;}
._18_c00381{margin-left:-17.970667pt;}
._16_c00381{margin-left:-15.026667pt;}
._15_c00381{margin-left:-13.560000pt;}
._10_c00381{margin-left:-11.040000pt;}
._0_c00381{margin-left:-9.322667pt;}
._c_c00381{margin-left:-8.157333pt;}
._f_c00381{margin-left:-6.746667pt;}
._2_c00381{margin-left:-5.336000pt;}
._1_c00381{margin-left:-3.802667pt;}
._d_c00381{margin-left:-2.453333pt;}
._5_c00381{margin-left:-1.410667pt;}
._8_c00381{width:1.778667pt;}
._7_c00381{width:2.760000pt;}
._6_c00381{width:3.864000pt;}
._17_c00381{width:5.152000pt;}
._a_c00381{width:6.256000pt;}
._b_c00381{width:7.728000pt;}
._1e_c00381{width:8.674667pt;}
._e_c00381{width:9.568000pt;}
._13_c00381{width:10.610667pt;}
._12_c00381{width:11.917333pt;}
._1d_c00381{width:12.941333pt;}
._1c_c00381{width:14.090667pt;}
._26_c00381{width:15.050667pt;}
._2b_c00381{width:16.621333pt;}
._29_c00381{width:17.602667pt;}
._28_c00381{width:18.952000pt;}
._1b_c00381{width:20.562667pt;}
._2c_c00381{width:22.720000pt;}
._37_c00381{width:25.994667pt;}
._22_c00381{width:27.600000pt;}
._23_c00381{width:31.341333pt;}
._20_c00381{width:32.541333pt;}
._21_c00381{width:33.917333pt;}
._24_c00381{width:35.450667pt;}
._2f_c00381{width:38.210667pt;}
._3b_c00381{width:47.690667pt;}
._3a_c00381{width:57.725333pt;}
._38_c00381{width:58.661333pt;}
._19_c00381{width:65.074667pt;}
._2a_c00381{width:75.053333pt;}
._32_c00381{width:77.962667pt;}
._25_c00381{width:86.666667pt;}
._2d_c00381{width:88.504000pt;}
._34_c00381{width:101.322667pt;}
._2e_c00381{width:120.106667pt;}
._27_c00381{width:124.445333pt;}
._14_c00381{width:135.733333pt;}
._39_c00381{width:149.856000pt;}
._30_c00381{width:153.192000pt;}
._33_c00381{width:161.000000pt;}
._31_c00381{width:314.885333pt;}
._4_c00381{width:339.869333pt;}
._3c_c00381{width:375.565333pt;}
._1a_c00381{width:652.709333pt;}
._1f_c00381{width:678.208000pt;}
.fs6_c00381{font-size:40.000000pt;}
.fs2_c00381{font-size:42.666667pt;}
.fs3_c00381{font-size:45.333333pt;}
.fs4_c00381{font-size:48.000000pt;}
.fs1_c00381{font-size:49.066667pt;}
.fs5_c00381{font-size:50.666667pt;}
.fs7_c00381{font-size:58.666667pt;}
.fs0_c00381{font-size:61.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y20_c00381{bottom:2.760000pt;}
.y1f_c00381{bottom:6.425212pt;}
.y1e_c00381{bottom:66.000000pt;}
.y1d_c00381{bottom:82.533333pt;}
.y1c_c00381{bottom:98.133333pt;}
.y1b_c00381{bottom:114.000000pt;}
.y1a_c00381{bottom:160.800000pt;}
.y19_c00381{bottom:183.333333pt;}
.y18_c00381{bottom:205.200000pt;}
.y17_c00381{bottom:227.200000pt;}
.y16_c00381{bottom:249.600000pt;}
.y10_c00381{bottom:267.600000pt;}
.y15_c00381{bottom:271.866667pt;}
.yf_c00381{bottom:278.800000pt;}
.y14_c00381{bottom:293.466667pt;}
.y13_c00381{bottom:315.333333pt;}
.y12_c00381{bottom:337.600000pt;}
.y11_c00381{bottom:360.266667pt;}
.ye_c00381{bottom:382.533333pt;}
.yd_c00381{bottom:404.400000pt;}
.yc_c00381{bottom:426.000000pt;}
.yb_c00381{bottom:448.400000pt;}
.ya_c00381{bottom:492.533333pt;}
.y9_c00381{bottom:535.200000pt;}
.y8_c00381{bottom:549.333333pt;}
.y7_c00381{bottom:566.000000pt;}
.y6_c00381{bottom:581.466667pt;}
.y5_c00381{bottom:602.000000pt;}
.y4_c00381{bottom:626.800000pt;}
.y3_c00381{bottom:648.533333pt;}
.y2_c00381{bottom:671.600000pt;}
.y1_c00381{bottom:693.066667pt;}
.h8_c00381{height:11.733399pt;}
.h9_c00381{height:38.937500pt;}
.h5_c00381{height:49.937500pt;}
.h4_c00381{height:54.020833pt;}
.h3_c00381{height:57.397135pt;}
.h7_c00381{height:60.773438pt;}
.h6_c00381{height:71.785156pt;}
.h2_c00381{height:77.654948pt;}
.h0_c00381{height:727.200000pt;}
.h1_c00381{height:727.333333pt;}
.w2_c00381{width:93.222667pt;}
.w0_c00381{width:502.533333pt;}
.w1_c00381{width:502.666667pt;}
.x0_c00381{left:0.000000pt;}
.x16_c00381{left:22.800000pt;}
.xc_c00381{left:24.000000pt;}
.xd_c00381{left:25.600000pt;}
.x5_c00381{left:29.600000pt;}
.x3_c00381{left:31.200000pt;}
.x15_c00381{left:38.400000pt;}
.x10_c00381{left:40.266667pt;}
.x4_c00381{left:45.600000pt;}
.x11_c00381{left:52.800000pt;}
.xf_c00381{left:58.266667pt;}
.xe_c00381{left:80.133333pt;}
.x14_c00381{left:81.066667pt;}
.xb_c00381{left:82.800000pt;}
.x8_c00381{left:83.733333pt;}
.x13_c00381{left:84.666667pt;}
.x7_c00381{left:86.400000pt;}
.x2_c00381{left:87.333333pt;}
.x1_c00381{left:98.133333pt;}
.x6_c00381{left:103.466667pt;}
.xa_c00381{left:107.200000pt;}
.x12_c00381{left:108.933333pt;}
.x9_c00381{left:191.466667pt;}
.x17_c00381{left:208.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_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_bc24ffd81ced28866f385abb.woff2')format("woff");}.ff1_c00382{font-family:ff1_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:ff2_c00382;src:url('chunks/assets/font_e50d9ae30c76beeb3fa29db8.woff2')format("woff");}.ff2_c00382{font-family:ff2_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:ff3_c00382;src:url('chunks/assets/font_f6e4d52aa9cedcaef19c995b.woff2')format("woff");}.ff3_c00382{font-family:ff3_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:ff4_c00382;src:url('chunks/assets/font_360bbbf50ee18557cca089cf.woff2')format("woff");}.ff4_c00382{font-family:ff4_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:ff5_c00382;src:url('chunks/assets/font_7942db1ffef73063932a4478.woff2')format("woff");}.ff5_c00382{font-family:ff5_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:ff6_c00382;src:url('chunks/assets/font_830fa3d63c3791126161691f.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;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_c00382;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00382{font-family:ff7_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;}
.m1_c00382{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_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);}
.m3_c00382{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);}
.m2_c00382{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_c00382{vertical-align:0.000000px;}
.ls3_c00382{letter-spacing:0.000000px;}
.ls6_c00382{letter-spacing:3.000000px;}
.ls0_c00382{letter-spacing:3.152400px;}
.ls5_c00382{letter-spacing:6.000000px;}
.ls1_c00382{letter-spacing:8.565000px;}
.ls4_c00382{letter-spacing:9.000000px;}
.ls2_c00382{letter-spacing:11.571000px;}
.ls7_c00382{letter-spacing:18.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00382{word-spacing:-42.582000px;}
.ws2_c00382{word-spacing:-25.629000px;}
.ws5_c00382{word-spacing:-24.582000px;}
.ws0_c00382{word-spacing:-23.946000px;}
.ws3_c00382{word-spacing:-16.629000px;}
.ws1_c00382{word-spacing:-13.737000px;}
.ws7_c00382{word-spacing:-0.726000px;}
.ws4_c00382{word-spacing:-0.069000px;}
.ws8_c00382{word-spacing:0.000000px;}
._2a_c00382{margin-left:-37.227000px;}
._2f_c00382{margin-left:-35.943000px;}
._35_c00382{margin-left:-34.548000px;}
._31_c00382{margin-left:-32.922000px;}
._2d_c00382{margin-left:-31.896000px;}
._1c_c00382{margin-left:-30.804000px;}
._19_c00382{margin-left:-29.781000px;}
._30_c00382{margin-left:-28.107000px;}
._1a_c00382{margin-left:-26.214000px;}
._29_c00382{margin-left:-24.801000px;}
._27_c00382{margin-left:-23.664000px;}
._2e_c00382{margin-left:-22.545000px;}
._24_c00382{margin-left:-21.543000px;}
._1f_c00382{margin-left:-20.502000px;}
._23_c00382{margin-left:-19.338000px;}
._20_c00382{margin-left:-18.096000px;}
._1b_c00382{margin-left:-16.707000px;}
._25_c00382{margin-left:-15.678000px;}
._21_c00382{margin-left:-14.505000px;}
._28_c00382{margin-left:-13.239000px;}
._1e_c00382{margin-left:-11.730000px;}
._1d_c00382{margin-left:-10.506000px;}
._22_c00382{margin-left:-8.670000px;}
._26_c00382{margin-left:-7.383000px;}
._d_c00382{margin-left:-6.243000px;}
._c_c00382{margin-left:-4.482000px;}
._11_c00382{margin-left:-2.952000px;}
._10_c00382{margin-left:-1.782000px;}
._6_c00382{width:1.863000px;}
._e_c00382{width:3.396000px;}
._a_c00382{width:4.455000px;}
._b_c00382{width:5.589000px;}
._3_c00382{width:7.098000px;}
._8_c00382{width:8.748000px;}
._1_c00382{width:9.984000px;}
._0_c00382{width:11.934000px;}
._13_c00382{width:13.278000px;}
._12_c00382{width:14.826000px;}
._f_c00382{width:15.876000px;}
._2_c00382{width:17.706000px;}
._15_c00382{width:19.446000px;}
._4_c00382{width:20.682000px;}
._14_c00382{width:21.783000px;}
._17_c00382{width:23.604000px;}
._34_c00382{width:25.254000px;}
._18_c00382{width:27.822000px;}
._33_c00382{width:31.197000px;}
._9_c00382{width:33.291000px;}
._7_c00382{width:35.964000px;}
._5_c00382{width:41.958000px;}
._36_c00382{width:43.452000px;}
._2b_c00382{width:48.306000px;}
._37_c00382{width:55.962000px;}
._2c_c00382{width:90.870000px;}
._3a_c00382{width:134.034000px;}
._32_c00382{width:140.013000px;}
._38_c00382{width:180.372000px;}
._16_c00382{width:296.583000px;}
._39_c00382{width:307.254000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(128,128,128);}
.fc0_c00382{color:rgb(0,0,0);}
.fs4_c00382{font-size:45.600000px;}
.fs8_c00382{font-size:48.000000px;}
.fs2_c00382{font-size:54.000000px;}
.fs3_c00382{font-size:57.000000px;}
.fs7_c00382{font-size:60.000000px;}
.fs5_c00382{font-size:69.000000px;}
.fs0_c00382{font-size:78.000000px;}
.fs1_c00382{font-size:81.000000px;}
.fs6_c00382{font-size:102.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1d_c00382{bottom:3.105000px;}
.y1c_c00382{bottom:7.228371px;}
.y1b_c00382{bottom:54.015000px;}
.y1a_c00382{bottom:82.065000px;}
.y19_c00382{bottom:107.715000px;}
.y18_c00382{bottom:132.765000px;}
.y17_c00382{bottom:157.365000px;}
.y16_c00382{bottom:182.565000px;}
.y15_c00382{bottom:207.615000px;}
.y14_c00382{bottom:232.665000px;}
.y13_c00382{bottom:257.265000px;}
.y12_c00382{bottom:282.165000px;}
.y11_c00382{bottom:307.215000px;}
.y10_c00382{bottom:332.115000px;}
.yf_c00382{bottom:356.865000px;}
.ye_c00382{bottom:381.765000px;}
.yd_c00382{bottom:406.815000px;}
.yc_c00382{bottom:432.015000px;}
.yb_c00382{bottom:456.015000px;}
.ya_c00382{bottom:481.065000px;}
.y9_c00382{bottom:505.965000px;}
.y8_c00382{bottom:529.965000px;}
.y7_c00382{bottom:554.865000px;}
.y6_c00382{bottom:579.165000px;}
.y5_c00382{bottom:604.515000px;}
.y4_c00382{bottom:653.865000px;}
.y3_c00382{bottom:693.615000px;}
.y2_c00382{bottom:711.465000px;}
.y1_c00382{bottom:730.365000px;}
.hb_c00382{height:13.200074px;}
.hc_c00382{height:43.804688px;}
.h3_c00382{height:56.592000px;}
.h4_c00382{height:66.713379px;}
.h5_c00382{height:72.168457px;}
.ha_c00382{height:75.966797px;}
.h6_c00382{height:80.758301px;}
.h7_c00382{height:87.361816px;}
.h2_c00382{height:102.555176px;}
.h9_c00382{height:119.381836px;}
.h8_c00382{height:129.143555px;}
.h1_c00382{height:831.000000px;}
.h0_c00382{height:831.075000px;}
.w2_c00382{width:104.875500px;}
.w0_c00382{width:582.375000px;}
.w1_c00382{width:582.750000px;}
.x0_c00382{left:0.000000px;}
.xb_c00382{left:31.950000px;}
.xc_c00382{left:33.000000px;}
.xa_c00382{left:34.650000px;}
.x6_c00382{left:36.450000px;}
.x8_c00382{left:37.500000px;}
.xd_c00382{left:38.850000px;}
.x2_c00382{left:41.400000px;}
.x3_c00382{left:53.100000px;}
.x7_c00382{left:60.750000px;}
.x9_c00382{left:64.800000px;}
.x1_c00382{left:128.700000px;}
.x10_c00382{left:243.001740px;}
.xe_c00382{left:303.450000px;}
.xf_c00382{left:308.100000px;}
.x4_c00382{left:383.850000px;}
.x5_c00382{left:418.800000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls3_c00382{letter-spacing:0.000000pt;}
.ls6_c00382{letter-spacing:2.666667pt;}
.ls0_c00382{letter-spacing:2.802133pt;}
.ls5_c00382{letter-spacing:5.333333pt;}
.ls1_c00382{letter-spacing:7.613333pt;}
.ls4_c00382{letter-spacing:8.000000pt;}
.ls2_c00382{letter-spacing:10.285333pt;}
.ls7_c00382{letter-spacing:16.000000pt;}
.ws6_c00382{word-spacing:-37.850667pt;}
.ws2_c00382{word-spacing:-22.781333pt;}
.ws5_c00382{word-spacing:-21.850667pt;}
.ws0_c00382{word-spacing:-21.285333pt;}
.ws3_c00382{word-spacing:-14.781333pt;}
.ws1_c00382{word-spacing:-12.210667pt;}
.ws7_c00382{word-spacing:-0.645333pt;}
.ws4_c00382{word-spacing:-0.061333pt;}
.ws8_c00382{word-spacing:0.000000pt;}
._2a_c00382{margin-left:-33.090667pt;}
._2f_c00382{margin-left:-31.949333pt;}
._35_c00382{margin-left:-30.709333pt;}
._31_c00382{margin-left:-29.264000pt;}
._2d_c00382{margin-left:-28.352000pt;}
._1c_c00382{margin-left:-27.381333pt;}
._19_c00382{margin-left:-26.472000pt;}
._30_c00382{margin-left:-24.984000pt;}
._1a_c00382{margin-left:-23.301333pt;}
._29_c00382{margin-left:-22.045333pt;}
._27_c00382{margin-left:-21.034667pt;}
._2e_c00382{margin-left:-20.040000pt;}
._24_c00382{margin-left:-19.149333pt;}
._1f_c00382{margin-left:-18.224000pt;}
._23_c00382{margin-left:-17.189333pt;}
._20_c00382{margin-left:-16.085333pt;}
._1b_c00382{margin-left:-14.850667pt;}
._25_c00382{margin-left:-13.936000pt;}
._21_c00382{margin-left:-12.893333pt;}
._28_c00382{margin-left:-11.768000pt;}
._1e_c00382{margin-left:-10.426667pt;}
._1d_c00382{margin-left:-9.338667pt;}
._22_c00382{margin-left:-7.706667pt;}
._26_c00382{margin-left:-6.562667pt;}
._d_c00382{margin-left:-5.549333pt;}
._c_c00382{margin-left:-3.984000pt;}
._11_c00382{margin-left:-2.624000pt;}
._10_c00382{margin-left:-1.584000pt;}
._6_c00382{width:1.656000pt;}
._e_c00382{width:3.018667pt;}
._a_c00382{width:3.960000pt;}
._b_c00382{width:4.968000pt;}
._3_c00382{width:6.309333pt;}
._8_c00382{width:7.776000pt;}
._1_c00382{width:8.874667pt;}
._0_c00382{width:10.608000pt;}
._13_c00382{width:11.802667pt;}
._12_c00382{width:13.178667pt;}
._f_c00382{width:14.112000pt;}
._2_c00382{width:15.738667pt;}
._15_c00382{width:17.285333pt;}
._4_c00382{width:18.384000pt;}
._14_c00382{width:19.362667pt;}
._17_c00382{width:20.981333pt;}
._34_c00382{width:22.448000pt;}
._18_c00382{width:24.730667pt;}
._33_c00382{width:27.730667pt;}
._9_c00382{width:29.592000pt;}
._7_c00382{width:31.968000pt;}
._5_c00382{width:37.296000pt;}
._36_c00382{width:38.624000pt;}
._2b_c00382{width:42.938667pt;}
._37_c00382{width:49.744000pt;}
._2c_c00382{width:80.773333pt;}
._3a_c00382{width:119.141333pt;}
._32_c00382{width:124.456000pt;}
._38_c00382{width:160.330667pt;}
._16_c00382{width:263.629333pt;}
._39_c00382{width:273.114667pt;}
.fs4_c00382{font-size:40.533333pt;}
.fs8_c00382{font-size:42.666667pt;}
.fs2_c00382{font-size:48.000000pt;}
.fs3_c00382{font-size:50.666667pt;}
.fs7_c00382{font-size:53.333333pt;}
.fs5_c00382{font-size:61.333333pt;}
.fs0_c00382{font-size:69.333333pt;}
.fs1_c00382{font-size:72.000000pt;}
.fs6_c00382{font-size:90.666667pt;}
.y0_c00382{bottom:0.000000pt;}
.y1d_c00382{bottom:2.760000pt;}
.y1c_c00382{bottom:6.425219pt;}
.y1b_c00382{bottom:48.013333pt;}
.y1a_c00382{bottom:72.946667pt;}
.y19_c00382{bottom:95.746667pt;}
.y18_c00382{bottom:118.013333pt;}
.y17_c00382{bottom:139.880000pt;}
.y16_c00382{bottom:162.280000pt;}
.y15_c00382{bottom:184.546667pt;}
.y14_c00382{bottom:206.813333pt;}
.y13_c00382{bottom:228.680000pt;}
.y12_c00382{bottom:250.813333pt;}
.y11_c00382{bottom:273.080000pt;}
.y10_c00382{bottom:295.213333pt;}
.yf_c00382{bottom:317.213333pt;}
.ye_c00382{bottom:339.346667pt;}
.yd_c00382{bottom:361.613333pt;}
.yc_c00382{bottom:384.013333pt;}
.yb_c00382{bottom:405.346667pt;}
.ya_c00382{bottom:427.613333pt;}
.y9_c00382{bottom:449.746667pt;}
.y8_c00382{bottom:471.080000pt;}
.y7_c00382{bottom:493.213333pt;}
.y6_c00382{bottom:514.813333pt;}
.y5_c00382{bottom:537.346667pt;}
.y4_c00382{bottom:581.213333pt;}
.y3_c00382{bottom:616.546667pt;}
.y2_c00382{bottom:632.413333pt;}
.y1_c00382{bottom:649.213333pt;}
.hb_c00382{height:11.733399pt;}
.hc_c00382{height:38.937500pt;}
.h3_c00382{height:50.304000pt;}
.h4_c00382{height:59.300781pt;}
.h5_c00382{height:64.149740pt;}
.ha_c00382{height:67.526042pt;}
.h6_c00382{height:71.785156pt;}
.h7_c00382{height:77.654948pt;}
.h2_c00382{height:91.160156pt;}
.h9_c00382{height:106.117188pt;}
.h8_c00382{height:114.794271pt;}
.h1_c00382{height:738.666667pt;}
.h0_c00382{height:738.733333pt;}
.w2_c00382{width:93.222667pt;}
.w0_c00382{width:517.666667pt;}
.w1_c00382{width:518.000000pt;}
.x0_c00382{left:0.000000pt;}
.xb_c00382{left:28.400000pt;}
.xc_c00382{left:29.333333pt;}
.xa_c00382{left:30.800000pt;}
.x6_c00382{left:32.400000pt;}
.x8_c00382{left:33.333333pt;}
.xd_c00382{left:34.533333pt;}
.x2_c00382{left:36.800000pt;}
.x3_c00382{left:47.200000pt;}
.x7_c00382{left:54.000000pt;}
.x9_c00382{left:57.600000pt;}
.x1_c00382{left:114.400000pt;}
.x10_c00382{left:216.001546pt;}
.xe_c00382{left:269.733333pt;}
.xf_c00382{left:273.866667pt;}
.x4_c00382{left:341.200000pt;}
.x5_c00382{left:372.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_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_ae5e5092913f34046b6f69ce.woff2')format("woff");}.ff1_c00383{font-family:ff1_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:ff2_c00383;src:url('chunks/assets/font_b167db4222b3139758610c4e.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.568848;font-style:normal;font-weight:normal;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_42030d8d832bceca00817f45.woff2')format("woff");}.ff3_c00383{font-family:ff3_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:ff4_c00383;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_864e7d0b35826056ecd73bd2.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;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_c00383;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00383{font-family:ff6_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;}
.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;}
.ls4_c00383{letter-spacing:-6.000000px;}
.ls2_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:3.000000px;}
.ls1_c00383{letter-spacing:6.000000px;}
.ls3_c00383{letter-spacing:9.000000px;}
.ls5_c00383{letter-spacing:18.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-47.022000px;}
.ws3_c00383{word-spacing:-27.000000px;}
.ws1_c00383{word-spacing:-25.629000px;}
.ws2_c00383{word-spacing:-16.629000px;}
.ws4_c00383{word-spacing:0.000000px;}
._11_c00383{margin-left:-23.415000px;}
._26_c00383{margin-left:-21.003000px;}
._1d_c00383{margin-left:-19.323000px;}
._d_c00383{margin-left:-16.242000px;}
._8_c00383{margin-left:-15.147000px;}
._1e_c00383{margin-left:-12.765000px;}
._19_c00383{margin-left:-11.583000px;}
._2c_c00383{margin-left:-10.203000px;}
._7_c00383{margin-left:-8.667000px;}
._6_c00383{margin-left:-7.086000px;}
._12_c00383{margin-left:-5.973000px;}
._9_c00383{margin-left:-4.548000px;}
._1_c00383{margin-left:-3.201000px;}
._3_c00383{margin-left:-1.284000px;}
._5_c00383{width:1.020000px;}
._4_c00383{width:2.802000px;}
._13_c00383{width:4.563000px;}
._a_c00383{width:6.030000px;}
._25_c00383{width:7.401000px;}
._c_c00383{width:8.487000px;}
._0_c00383{width:9.570000px;}
._b_c00383{width:10.902000px;}
._16_c00383{width:13.041000px;}
._10_c00383{width:14.883000px;}
._24_c00383{width:16.434000px;}
._1a_c00383{width:17.811000px;}
._e_c00383{width:18.864000px;}
._f_c00383{width:20.469000px;}
._1f_c00383{width:22.482000px;}
._15_c00383{width:26.202000px;}
._14_c00383{width:27.324000px;}
._21_c00383{width:28.530000px;}
._1b_c00383{width:30.525000px;}
._20_c00383{width:32.271000px;}
._17_c00383{width:34.050000px;}
._2a_c00383{width:41.340000px;}
._29_c00383{width:42.756000px;}
._1c_c00383{width:82.893000px;}
._18_c00383{width:87.498000px;}
._28_c00383{width:99.429000px;}
._27_c00383{width:146.742000px;}
._22_c00383{width:152.016000px;}
._2b_c00383{width:211.878000px;}
._23_c00383{width:231.348000px;}
._2_c00383{width:379.056000px;}
.fc2_c00383{color:transparent;}
.fc1_c00383{color:rgb(128,128,128);}
.fc0_c00383{color:rgb(0,0,0);}
.fs4_c00383{font-size:48.000000px;}
.fs0_c00383{font-size:66.000000px;}
.fs1_c00383{font-size:69.000000px;}
.fs3_c00383{font-size:78.000000px;}
.fs2_c00383{font-size:84.000000px;}
.y0_c00383{bottom:0.000000px;}
.y1d_c00383{bottom:3.105000px;}
.y1c_c00383{bottom:7.228369px;}
.y1b_c00383{bottom:49.320000px;}
.y1a_c00383{bottom:75.870000px;}
.y19_c00383{bottom:100.920000px;}
.y18_c00383{bottom:125.220000px;}
.y17_c00383{bottom:151.470000px;}
.y16_c00383{bottom:177.120000px;}
.y15_c00383{bottom:200.820000px;}
.y14_c00383{bottom:227.070000px;}
.y13_c00383{bottom:250.770000px;}
.y12_c00383{bottom:301.770000px;}
.y11_c00383{bottom:349.920000px;}
.y10_c00383{bottom:401.520000px;}
.yf_c00383{bottom:425.820000px;}
.ye_c00383{bottom:450.570000px;}
.yd_c00383{bottom:475.470000px;}
.yc_c00383{bottom:500.220000px;}
.yb_c00383{bottom:525.120000px;}
.ya_c00383{bottom:550.020000px;}
.y9_c00383{bottom:574.770000px;}
.y8_c00383{bottom:599.670000px;}
.y7_c00383{bottom:624.270000px;}
.y6_c00383{bottom:649.320000px;}
.y5_c00383{bottom:674.370000px;}
.y4_c00383{bottom:698.520000px;}
.y3_c00383{bottom:723.870000px;}
.y2_c00383{bottom:747.870000px;}
.y1_c00383{bottom:772.770000px;}
.h5_c00383{height:13.200073px;}
.h6_c00383{height:43.804688px;}
.h3_c00383{height:80.758301px;}
.h2_c00383{height:87.361816px;}
.h4_c00383{height:98.756836px;}
.h0_c00383{height:821.850000px;}
.h1_c00383{height:822.000000px;}
.w2_c00383{width:104.875500px;}
.w1_c00383{width:567.750000px;}
.w0_c00383{width:568.050000px;}
.x0_c00383{left:0.000000px;}
.x10_c00383{left:24.000000px;}
.xb_c00383{left:25.950000px;}
.x4_c00383{left:28.950000px;}
.x8_c00383{left:30.600000px;}
.x7_c00383{left:43.500000px;}
.x5_c00383{left:45.600000px;}
.xa_c00383{left:80.700000px;}
.xc_c00383{left:86.100000px;}
.x2_c00383{left:89.400000px;}
.x9_c00383{left:91.800000px;}
.x3_c00383{left:93.450000px;}
.xe_c00383{left:102.000000px;}
.x1_c00383{left:107.700000px;}
.xf_c00383{left:119.100000px;}
.xd_c00383{left:123.900000px;}
.x6_c00383{left:137.250000px;}
.x12_c00383{left:235.839249px;}
.x11_c00383{left:505.350000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls4_c00383{letter-spacing:-5.333333pt;}
.ls2_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:2.666667pt;}
.ls1_c00383{letter-spacing:5.333333pt;}
.ls3_c00383{letter-spacing:8.000000pt;}
.ls5_c00383{letter-spacing:16.000000pt;}
.ws0_c00383{word-spacing:-41.797333pt;}
.ws3_c00383{word-spacing:-24.000000pt;}
.ws1_c00383{word-spacing:-22.781333pt;}
.ws2_c00383{word-spacing:-14.781333pt;}
.ws4_c00383{word-spacing:0.000000pt;}
._11_c00383{margin-left:-20.813333pt;}
._26_c00383{margin-left:-18.669333pt;}
._1d_c00383{margin-left:-17.176000pt;}
._d_c00383{margin-left:-14.437333pt;}
._8_c00383{margin-left:-13.464000pt;}
._1e_c00383{margin-left:-11.346667pt;}
._19_c00383{margin-left:-10.296000pt;}
._2c_c00383{margin-left:-9.069333pt;}
._7_c00383{margin-left:-7.704000pt;}
._6_c00383{margin-left:-6.298667pt;}
._12_c00383{margin-left:-5.309333pt;}
._9_c00383{margin-left:-4.042667pt;}
._1_c00383{margin-left:-2.845333pt;}
._3_c00383{margin-left:-1.141333pt;}
._5_c00383{width:0.906667pt;}
._4_c00383{width:2.490667pt;}
._13_c00383{width:4.056000pt;}
._a_c00383{width:5.360000pt;}
._25_c00383{width:6.578667pt;}
._c_c00383{width:7.544000pt;}
._0_c00383{width:8.506667pt;}
._b_c00383{width:9.690667pt;}
._16_c00383{width:11.592000pt;}
._10_c00383{width:13.229333pt;}
._24_c00383{width:14.608000pt;}
._1a_c00383{width:15.832000pt;}
._e_c00383{width:16.768000pt;}
._f_c00383{width:18.194667pt;}
._1f_c00383{width:19.984000pt;}
._15_c00383{width:23.290667pt;}
._14_c00383{width:24.288000pt;}
._21_c00383{width:25.360000pt;}
._1b_c00383{width:27.133333pt;}
._20_c00383{width:28.685333pt;}
._17_c00383{width:30.266667pt;}
._2a_c00383{width:36.746667pt;}
._29_c00383{width:38.005333pt;}
._1c_c00383{width:73.682667pt;}
._18_c00383{width:77.776000pt;}
._28_c00383{width:88.381333pt;}
._27_c00383{width:130.437333pt;}
._22_c00383{width:135.125333pt;}
._2b_c00383{width:188.336000pt;}
._23_c00383{width:205.642667pt;}
._2_c00383{width:336.938667pt;}
.fs4_c00383{font-size:42.666667pt;}
.fs0_c00383{font-size:58.666667pt;}
.fs1_c00383{font-size:61.333333pt;}
.fs3_c00383{font-size:69.333333pt;}
.fs2_c00383{font-size:74.666667pt;}
.y0_c00383{bottom:0.000000pt;}
.y1d_c00383{bottom:2.760000pt;}
.y1c_c00383{bottom:6.425217pt;}
.y1b_c00383{bottom:43.840000pt;}
.y1a_c00383{bottom:67.440000pt;}
.y19_c00383{bottom:89.706667pt;}
.y18_c00383{bottom:111.306667pt;}
.y17_c00383{bottom:134.640000pt;}
.y16_c00383{bottom:157.440000pt;}
.y15_c00383{bottom:178.506667pt;}
.y14_c00383{bottom:201.840000pt;}
.y13_c00383{bottom:222.906667pt;}
.y12_c00383{bottom:268.240000pt;}
.y11_c00383{bottom:311.040000pt;}
.y10_c00383{bottom:356.906667pt;}
.yf_c00383{bottom:378.506667pt;}
.ye_c00383{bottom:400.506667pt;}
.yd_c00383{bottom:422.640000pt;}
.yc_c00383{bottom:444.640000pt;}
.yb_c00383{bottom:466.773333pt;}
.ya_c00383{bottom:488.906667pt;}
.y9_c00383{bottom:510.906667pt;}
.y8_c00383{bottom:533.040000pt;}
.y7_c00383{bottom:554.906667pt;}
.y6_c00383{bottom:577.173333pt;}
.y5_c00383{bottom:599.440000pt;}
.y4_c00383{bottom:620.906667pt;}
.y3_c00383{bottom:643.440000pt;}
.y2_c00383{bottom:664.773333pt;}
.y1_c00383{bottom:686.906667pt;}
.h5_c00383{height:11.733399pt;}
.h6_c00383{height:38.937500pt;}
.h3_c00383{height:71.785156pt;}
.h2_c00383{height:77.654948pt;}
.h4_c00383{height:87.783854pt;}
.h0_c00383{height:730.533333pt;}
.h1_c00383{height:730.666667pt;}
.w2_c00383{width:93.222667pt;}
.w1_c00383{width:504.666667pt;}
.w0_c00383{width:504.933333pt;}
.x0_c00383{left:0.000000pt;}
.x10_c00383{left:21.333333pt;}
.xb_c00383{left:23.066667pt;}
.x4_c00383{left:25.733333pt;}
.x8_c00383{left:27.200000pt;}
.x7_c00383{left:38.666667pt;}
.x5_c00383{left:40.533333pt;}
.xa_c00383{left:71.733333pt;}
.xc_c00383{left:76.533333pt;}
.x2_c00383{left:79.466667pt;}
.x9_c00383{left:81.600000pt;}
.x3_c00383{left:83.066667pt;}
.xe_c00383{left:90.666667pt;}
.x1_c00383{left:95.733333pt;}
.xf_c00383{left:105.866667pt;}
.xd_c00383{left:110.133333pt;}
.x6_c00383{left:122.000000pt;}
.x12_c00383{left:209.634888pt;}
.x11_c00383{left:449.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_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_3375dd81248f494ceb4cc7db.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_6ad82a1de217d35fe0eee6b0.woff2')format("woff");}.ff2_c00384{font-family:ff2_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:ff3_c00384;src:url('chunks/assets/font_ec99427aee9aadb05a551726.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00384{font-family:ff4_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;}
.ls5_c00384{letter-spacing:0.000000px;}
.ls6_c00384{letter-spacing:3.000000px;}
.ls7_c00384{letter-spacing:6.000000px;}
.ls3_c00384{letter-spacing:9.000000px;}
.ls4_c00384{letter-spacing:14.325000px;}
.ls2_c00384{letter-spacing:111.171000px;}
.ls1_c00384{letter-spacing:138.699000px;}
.ls0_c00384{letter-spacing:433.371000px;}
.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:-47.022000px;}
.ws2_c00384{word-spacing:-25.629000px;}
.ws3_c00384{word-spacing:-18.075000px;}
.ws1_c00384{word-spacing:-16.629000px;}
.ws4_c00384{word-spacing:0.000000px;}
._12_c00384{margin-left:-21.252000px;}
._d_c00384{margin-left:-14.559000px;}
._1e_c00384{margin-left:-12.903000px;}
._b_c00384{margin-left:-11.799000px;}
._15_c00384{margin-left:-10.575000px;}
._13_c00384{margin-left:-9.039000px;}
._1c_c00384{margin-left:-7.959000px;}
._16_c00384{margin-left:-6.951000px;}
._a_c00384{margin-left:-5.520000px;}
._6_c00384{margin-left:-4.347000px;}
._4_c00384{margin-left:-2.346000px;}
._5_c00384{margin-left:-1.035000px;}
._7_c00384{width:1.035000px;}
._0_c00384{width:2.139000px;}
._14_c00384{width:3.174000px;}
._e_c00384{width:4.623000px;}
._8_c00384{width:5.658000px;}
._18_c00384{width:6.828000px;}
._9_c00384{width:8.025000px;}
._17_c00384{width:9.402000px;}
._2_c00384{width:10.599000px;}
._3_c00384{width:12.012000px;}
._1_c00384{width:13.179000px;}
._1a_c00384{width:14.490000px;}
._19_c00384{width:16.026000px;}
._f_c00384{width:17.388000px;}
._10_c00384{width:19.458000px;}
._1f_c00384{width:20.838000px;}
._20_c00384{width:26.559000px;}
._11_c00384{width:28.842000px;}
._23_c00384{width:33.693000px;}
._1b_c00384{width:43.896000px;}
._24_c00384{width:62.745000px;}
._c_c00384{width:93.357000px;}
._22_c00384{width:94.647000px;}
._21_c00384{width:96.627000px;}
._1d_c00384{width:98.595000px;}
._25_c00384{width:178.365000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(128,128,128);}
.fc0_c00384{color:rgb(0,0,0);}
.fs3_c00384{font-size:48.000000px;}
.fs1_c00384{font-size:66.000000px;}
.fs0_c00384{font-size:69.000000px;}
.fs2_c00384{font-size:75.000000px;}
.y0_c00384{bottom:0.000000px;}
.y20_c00384{bottom:3.105000px;}
.y1f_c00384{bottom:7.228371px;}
.y1e_c00384{bottom:67.515000px;}
.y1d_c00384{bottom:89.115000px;}
.y1c_c00384{bottom:114.165000px;}
.y1b_c00384{bottom:139.515000px;}
.y1a_c00384{bottom:163.065000px;}
.y19_c00384{bottom:188.115000px;}
.y18_c00384{bottom:213.315000px;}
.y17_c00384{bottom:238.065000px;}
.y16_c00384{bottom:262.665000px;}
.y15_c00384{bottom:286.965000px;}
.y14_c00384{bottom:312.315000px;}
.y13_c00384{bottom:336.915000px;}
.y12_c00384{bottom:361.215000px;}
.y11_c00384{bottom:386.865000px;}
.y10_c00384{bottom:411.465000px;}
.yf_c00384{bottom:436.365000px;}
.ye_c00384{bottom:460.665000px;}
.yd_c00384{bottom:486.015000px;}
.yc_c00384{bottom:510.015000px;}
.yb_c00384{bottom:534.615000px;}
.ya_c00384{bottom:558.915000px;}
.y9_c00384{bottom:583.965000px;}
.y8_c00384{bottom:608.865000px;}
.y7_c00384{bottom:633.615000px;}
.y6_c00384{bottom:658.215000px;}
.y5_c00384{bottom:682.815000px;}
.y4_c00384{bottom:706.815000px;}
.y3_c00384{bottom:731.715000px;}
.y2_c00384{bottom:758.115000px;}
.y1_c00384{bottom:780.765000px;}
.h4_c00384{height:13.200074px;}
.h5_c00384{height:43.804688px;}
.h2_c00384{height:87.361816px;}
.h3_c00384{height:94.958496px;}
.h1_c00384{height:831.000000px;}
.h0_c00384{height:831.075000px;}
.w2_c00384{width:104.875500px;}
.w0_c00384{width:582.375000px;}
.w1_c00384{width:582.750000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:30.750000px;}
.x3_c00384{left:33.450000px;}
.x4_c00384{left:34.500000px;}
.x5_c00384{left:36.450000px;}
.x6_c00384{left:37.500000px;}
.x1_c00384{left:205.650000px;}
.x8_c00384{left:243.001740px;}
.x7_c00384{left:474.150000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls5_c00384{letter-spacing:0.000000pt;}
.ls6_c00384{letter-spacing:2.666667pt;}
.ls7_c00384{letter-spacing:5.333333pt;}
.ls3_c00384{letter-spacing:8.000000pt;}
.ls4_c00384{letter-spacing:12.733333pt;}
.ls2_c00384{letter-spacing:98.818667pt;}
.ls1_c00384{letter-spacing:123.288000pt;}
.ls0_c00384{letter-spacing:385.218667pt;}
.ws0_c00384{word-spacing:-41.797333pt;}
.ws2_c00384{word-spacing:-22.781333pt;}
.ws3_c00384{word-spacing:-16.066667pt;}
.ws1_c00384{word-spacing:-14.781333pt;}
.ws4_c00384{word-spacing:0.000000pt;}
._12_c00384{margin-left:-18.890667pt;}
._d_c00384{margin-left:-12.941333pt;}
._1e_c00384{margin-left:-11.469333pt;}
._b_c00384{margin-left:-10.488000pt;}
._15_c00384{margin-left:-9.400000pt;}
._13_c00384{margin-left:-8.034667pt;}
._1c_c00384{margin-left:-7.074667pt;}
._16_c00384{margin-left:-6.178667pt;}
._a_c00384{margin-left:-4.906667pt;}
._6_c00384{margin-left:-3.864000pt;}
._4_c00384{margin-left:-2.085333pt;}
._5_c00384{margin-left:-0.920000pt;}
._7_c00384{width:0.920000pt;}
._0_c00384{width:1.901333pt;}
._14_c00384{width:2.821333pt;}
._e_c00384{width:4.109333pt;}
._8_c00384{width:5.029333pt;}
._18_c00384{width:6.069333pt;}
._9_c00384{width:7.133333pt;}
._17_c00384{width:8.357333pt;}
._2_c00384{width:9.421333pt;}
._3_c00384{width:10.677333pt;}
._1_c00384{width:11.714667pt;}
._1a_c00384{width:12.880000pt;}
._19_c00384{width:14.245333pt;}
._f_c00384{width:15.456000pt;}
._10_c00384{width:17.296000pt;}
._1f_c00384{width:18.522667pt;}
._20_c00384{width:23.608000pt;}
._11_c00384{width:25.637333pt;}
._23_c00384{width:29.949333pt;}
._1b_c00384{width:39.018667pt;}
._24_c00384{width:55.773333pt;}
._c_c00384{width:82.984000pt;}
._22_c00384{width:84.130667pt;}
._21_c00384{width:85.890667pt;}
._1d_c00384{width:87.640000pt;}
._25_c00384{width:158.546667pt;}
.fs3_c00384{font-size:42.666667pt;}
.fs1_c00384{font-size:58.666667pt;}
.fs0_c00384{font-size:61.333333pt;}
.fs2_c00384{font-size:66.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y20_c00384{bottom:2.760000pt;}
.y1f_c00384{bottom:6.425219pt;}
.y1e_c00384{bottom:60.013333pt;}
.y1d_c00384{bottom:79.213333pt;}
.y1c_c00384{bottom:101.480000pt;}
.y1b_c00384{bottom:124.013333pt;}
.y1a_c00384{bottom:144.946667pt;}
.y19_c00384{bottom:167.213333pt;}
.y18_c00384{bottom:189.613333pt;}
.y17_c00384{bottom:211.613333pt;}
.y16_c00384{bottom:233.480000pt;}
.y15_c00384{bottom:255.080000pt;}
.y14_c00384{bottom:277.613333pt;}
.y13_c00384{bottom:299.480000pt;}
.y12_c00384{bottom:321.080000pt;}
.y11_c00384{bottom:343.880000pt;}
.y10_c00384{bottom:365.746667pt;}
.yf_c00384{bottom:387.880000pt;}
.ye_c00384{bottom:409.480000pt;}
.yd_c00384{bottom:432.013333pt;}
.yc_c00384{bottom:453.346667pt;}
.yb_c00384{bottom:475.213333pt;}
.ya_c00384{bottom:496.813333pt;}
.y9_c00384{bottom:519.080000pt;}
.y8_c00384{bottom:541.213333pt;}
.y7_c00384{bottom:563.213333pt;}
.y6_c00384{bottom:585.080000pt;}
.y5_c00384{bottom:606.946667pt;}
.y4_c00384{bottom:628.280000pt;}
.y3_c00384{bottom:650.413333pt;}
.y2_c00384{bottom:673.880000pt;}
.y1_c00384{bottom:694.013333pt;}
.h4_c00384{height:11.733399pt;}
.h5_c00384{height:38.937500pt;}
.h2_c00384{height:77.654948pt;}
.h3_c00384{height:84.407552pt;}
.h1_c00384{height:738.666667pt;}
.h0_c00384{height:738.733333pt;}
.w2_c00384{width:93.222667pt;}
.w0_c00384{width:517.666667pt;}
.w1_c00384{width:518.000000pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:27.333333pt;}
.x3_c00384{left:29.733333pt;}
.x4_c00384{left:30.666667pt;}
.x5_c00384{left:32.400000pt;}
.x6_c00384{left:33.333333pt;}
.x1_c00384{left:182.800000pt;}
.x8_c00384{left:216.001546pt;}
.x7_c00384{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_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_75c72eee448055d16e2c8913.woff2')format("woff");}.ff1_c00385{font-family:ff1_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:ff2_c00385;src:url('chunks/assets/font_da01a2e560bd170f85afb550.woff2')format("woff");}.ff2_c00385{font-family:ff2_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:ff3_c00385;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00385{font-family:ff3_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);}
.v1_c00385{vertical-align:-17.400000px;}
.v0_c00385{vertical-align:0.000000px;}
.ls3_c00385{letter-spacing:0.000000px;}
.ls2_c00385{letter-spacing:2.160000px;}
.ls4_c00385{letter-spacing:6.000000px;}
.ls1_c00385{letter-spacing:17.820000px;}
.ls0_c00385{letter-spacing:19.125000px;}
.ls5_c00385{letter-spacing:30.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00385{word-spacing:-60.954000px;}
.ws0_c00385{word-spacing:-32.361000px;}
.ws2_c00385{word-spacing:-22.629000px;}
.ws1_c00385{word-spacing:-22.512000px;}
.ws6_c00385{word-spacing:-18.075000px;}
.ws4_c00385{word-spacing:-13.014000px;}
.ws5_c00385{word-spacing:-10.530000px;}
.ws7_c00385{word-spacing:0.000000px;}
._4_c00385{margin-left:-21.045000px;}
._15_c00385{margin-left:-13.938000px;}
._3_c00385{margin-left:-12.282000px;}
._c_c00385{margin-left:-10.755000px;}
._b_c00385{margin-left:-8.559000px;}
._d_c00385{margin-left:-7.311000px;}
._18_c00385{margin-left:-6.072000px;}
._11_c00385{margin-left:-5.022000px;}
._5_c00385{margin-left:-3.450000px;}
._6_c00385{margin-left:-2.415000px;}
._0_c00385{margin-left:-1.242000px;}
._1_c00385{width:1.152000px;}
._2_c00385{width:2.688000px;}
._8_c00385{width:3.795000px;}
._e_c00385{width:4.899000px;}
._7_c00385{width:6.351000px;}
._f_c00385{width:8.487000px;}
._a_c00385{width:10.695000px;}
._9_c00385{width:12.855000px;}
._13_c00385{width:14.508000px;}
._14_c00385{width:15.885000px;}
._10_c00385{width:17.577000px;}
._17_c00385{width:21.354000px;}
._19_c00385{width:22.773000px;}
._12_c00385{width:24.771000px;}
._16_c00385{width:27.327000px;}
._1a_c00385{width:89.979000px;}
._1b_c00385{width:1454.898000px;}
.fc2_c00385{color:transparent;}
.fc1_c00385{color:rgb(128,128,128);}
.fc0_c00385{color:rgb(0,0,0);}
.fs5_c00385{font-size:45.000000px;}
.fs1_c00385{font-size:48.000000px;}
.fs4_c00385{font-size:54.000000px;}
.fs3_c00385{font-size:60.000000px;}
.fs2_c00385{font-size:66.000000px;}
.fs0_c00385{font-size:69.000000px;}
.fs6_c00385{font-size:75.000000px;}
.y0_c00385{bottom:0.000000px;}
.y14_c00385{bottom:3.105000px;}
.y13_c00385{bottom:7.228363px;}
.y12_c00385{bottom:66.450000px;}
.y11_c00385{bottom:107.100000px;}
.y10_c00385{bottom:491.700000px;}
.yf_c00385{bottom:508.050000px;}
.ye_c00385{bottom:526.500000px;}
.yd_c00385{bottom:543.750000px;}
.yc_c00385{bottom:561.300000px;}
.yb_c00385{bottom:596.400000px;}
.ya_c00385{bottom:635.100000px;}
.y9_c00385{bottom:658.500000px;}
.y8_c00385{bottom:682.350000px;}
.y4_c00385{bottom:691.500000px;}
.y3_c00385{bottom:703.950000px;}
.y7_c00385{bottom:708.450000px;}
.y2_c00385{bottom:727.350000px;}
.y6_c00385{bottom:732.600000px;}
.y1_c00385{bottom:744.900000px;}
.y5_c00385{bottom:757.950000px;}
.h9_c00385{height:13.200074px;}
.ha_c00385{height:43.804688px;}
.h3_c00385{height:56.179688px;}
.h7_c00385{height:68.370117px;}
.h6_c00385{height:75.966797px;}
.h5_c00385{height:77.247070px;}
.h8_c00385{height:77.558496px;}
.h2_c00385{height:80.758301px;}
.h4_c00385{height:87.361816px;}
.h1_c00385{height:827.250000px;}
.h0_c00385{height:827.550000px;}
.w2_c00385{width:104.875500px;}
.w0_c00385{width:572.100000px;}
.w1_c00385{width:572.250000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:28.350000px;}
.x1_c00385{left:39.450000px;}
.x9_c00385{left:41.550000px;}
.x3_c00385{left:44.100000px;}
.xa_c00385{left:86.700000px;}
.x4_c00385{left:91.800000px;}
.x5_c00385{left:93.450000px;}
.x6_c00385{left:94.500000px;}
.x8_c00385{left:111.150000px;}
.xb_c00385{left:237.864258px;}
.x7_c00385{left:244.350000px;}
@media print{
.v1_c00385{vertical-align:-15.466667pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls3_c00385{letter-spacing:0.000000pt;}
.ls2_c00385{letter-spacing:1.920000pt;}
.ls4_c00385{letter-spacing:5.333333pt;}
.ls1_c00385{letter-spacing:15.840000pt;}
.ls0_c00385{letter-spacing:17.000000pt;}
.ls5_c00385{letter-spacing:26.666667pt;}
.ws3_c00385{word-spacing:-54.181333pt;}
.ws0_c00385{word-spacing:-28.765333pt;}
.ws2_c00385{word-spacing:-20.114667pt;}
.ws1_c00385{word-spacing:-20.010667pt;}
.ws6_c00385{word-spacing:-16.066667pt;}
.ws4_c00385{word-spacing:-11.568000pt;}
.ws5_c00385{word-spacing:-9.360000pt;}
.ws7_c00385{word-spacing:0.000000pt;}
._4_c00385{margin-left:-18.706667pt;}
._15_c00385{margin-left:-12.389333pt;}
._3_c00385{margin-left:-10.917333pt;}
._c_c00385{margin-left:-9.560000pt;}
._b_c00385{margin-left:-7.608000pt;}
._d_c00385{margin-left:-6.498667pt;}
._18_c00385{margin-left:-5.397333pt;}
._11_c00385{margin-left:-4.464000pt;}
._5_c00385{margin-left:-3.066667pt;}
._6_c00385{margin-left:-2.146667pt;}
._0_c00385{margin-left:-1.104000pt;}
._1_c00385{width:1.024000pt;}
._2_c00385{width:2.389333pt;}
._8_c00385{width:3.373333pt;}
._e_c00385{width:4.354667pt;}
._7_c00385{width:5.645333pt;}
._f_c00385{width:7.544000pt;}
._a_c00385{width:9.506667pt;}
._9_c00385{width:11.426667pt;}
._13_c00385{width:12.896000pt;}
._14_c00385{width:14.120000pt;}
._10_c00385{width:15.624000pt;}
._17_c00385{width:18.981333pt;}
._19_c00385{width:20.242667pt;}
._12_c00385{width:22.018667pt;}
._16_c00385{width:24.290667pt;}
._1a_c00385{width:79.981333pt;}
._1b_c00385{width:1293.242667pt;}
.fs5_c00385{font-size:40.000000pt;}
.fs1_c00385{font-size:42.666667pt;}
.fs4_c00385{font-size:48.000000pt;}
.fs3_c00385{font-size:53.333333pt;}
.fs2_c00385{font-size:58.666667pt;}
.fs0_c00385{font-size:61.333333pt;}
.fs6_c00385{font-size:66.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y14_c00385{bottom:2.760000pt;}
.y13_c00385{bottom:6.425212pt;}
.y12_c00385{bottom:59.066667pt;}
.y11_c00385{bottom:95.200000pt;}
.y10_c00385{bottom:437.066667pt;}
.yf_c00385{bottom:451.600000pt;}
.ye_c00385{bottom:468.000000pt;}
.yd_c00385{bottom:483.333333pt;}
.yc_c00385{bottom:498.933333pt;}
.yb_c00385{bottom:530.133333pt;}
.ya_c00385{bottom:564.533333pt;}
.y9_c00385{bottom:585.333333pt;}
.y8_c00385{bottom:606.533333pt;}
.y4_c00385{bottom:614.666667pt;}
.y3_c00385{bottom:625.733333pt;}
.y7_c00385{bottom:629.733333pt;}
.y2_c00385{bottom:646.533333pt;}
.y6_c00385{bottom:651.200000pt;}
.y1_c00385{bottom:662.133333pt;}
.y5_c00385{bottom:673.733333pt;}
.h9_c00385{height:11.733399pt;}
.ha_c00385{height:38.937500pt;}
.h3_c00385{height:49.937500pt;}
.h7_c00385{height:60.773438pt;}
.h6_c00385{height:67.526042pt;}
.h5_c00385{height:68.664062pt;}
.h8_c00385{height:68.940885pt;}
.h2_c00385{height:71.785156pt;}
.h4_c00385{height:77.654948pt;}
.h1_c00385{height:735.333333pt;}
.h0_c00385{height:735.600000pt;}
.w2_c00385{width:93.222667pt;}
.w0_c00385{width:508.533333pt;}
.w1_c00385{width:508.666667pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:25.200000pt;}
.x1_c00385{left:35.066667pt;}
.x9_c00385{left:36.933333pt;}
.x3_c00385{left:39.200000pt;}
.xa_c00385{left:77.066667pt;}
.x4_c00385{left:81.600000pt;}
.x5_c00385{left:83.066667pt;}
.x6_c00385{left:84.000000pt;}
.x8_c00385{left:98.800000pt;}
.xb_c00385{left:211.434896pt;}
.x7_c00385{left:217.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_457fc9eb8e88136cb7d45c69.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.311035;font-style:normal;font-weight:normal;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_8500207a31ad1dc56dac04c7.woff2')format("woff");}.ff2_c00386{font-family:ff2_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:ff3_c00386;src:url('chunks/assets/font_e41ddab18cf72a09f425cf2c.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_22b02aa26a0376495f156734.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_c6f7f66671a0331dff3110c3.woff2')format("woff");}.ff5_c00386{font-family:ff5_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:ff6_c00386;src:url('chunks/assets/font_5e7ac92ce8989a37f395528a.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00386;src:url('chunks/assets/font_c67caab4d12da5519ed12626.woff2')format("woff");}.ff7_c00386{font-family:ff7_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:ff8_c00386;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00386{font-family:ff8_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;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:2.160000px;}
.ls2_c00386{letter-spacing:6.000000px;}
.ls6_c00386{letter-spacing:12.000000px;}
.ls5_c00386{letter-spacing:18.000000px;}
.ls7_c00386{letter-spacing:21.000000px;}
.ls4_c00386{letter-spacing:48.000000px;}
.ls3_c00386{letter-spacing:51.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-128.523000px;}
.ws0_c00386{word-spacing:-67.629000px;}
.ws3_c00386{word-spacing:-34.629000px;}
.ws2_c00386{word-spacing:-16.629000px;}
.ws4_c00386{word-spacing:0.000000px;}
._2a_c00386{margin-left:-68.310000px;}
._1b_c00386{margin-left:-44.667000px;}
._12_c00386{margin-left:-39.192000px;}
._22_c00386{margin-left:-25.035000px;}
._25_c00386{margin-left:-23.322000px;}
._b_c00386{margin-left:-19.173000px;}
._6_c00386{margin-left:-17.928000px;}
._29_c00386{margin-left:-16.836000px;}
._20_c00386{margin-left:-15.657000px;}
._2c_c00386{margin-left:-13.905000px;}
._2b_c00386{margin-left:-12.873000px;}
._21_c00386{margin-left:-11.643000px;}
._1e_c00386{margin-left:-10.557000px;}
._1f_c00386{margin-left:-9.537000px;}
._31_c00386{margin-left:-8.259000px;}
._30_c00386{margin-left:-6.885000px;}
._32_c00386{margin-left:-5.850000px;}
._0_c00386{margin-left:-4.692000px;}
._1_c00386{margin-left:-3.450000px;}
._33_c00386{margin-left:-2.415000px;}
._3_c00386{margin-left:-1.380000px;}
._4_c00386{width:1.992000px;}
._2e_c00386{width:3.375000px;}
._11_c00386{width:5.382000px;}
._2_c00386{width:6.486000px;}
._10_c00386{width:7.659000px;}
._16_c00386{width:9.384000px;}
._e_c00386{width:10.419000px;}
._f_c00386{width:12.282000px;}
._36_c00386{width:13.461000px;}
._14_c00386{width:14.904000px;}
._15_c00386{width:16.353000px;}
._17_c00386{width:18.078000px;}
._34_c00386{width:19.275000px;}
._35_c00386{width:21.615000px;}
._a_c00386{width:22.659000px;}
._18_c00386{width:24.213000px;}
._c_c00386{width:26.394000px;}
._13_c00386{width:28.842000px;}
._7_c00386{width:31.125000px;}
._8_c00386{width:34.362000px;}
._23_c00386{width:35.499000px;}
._5_c00386{width:39.342000px;}
._1c_c00386{width:43.659000px;}
._1a_c00386{width:46.002000px;}
._9_c00386{width:52.002000px;}
._2f_c00386{width:66.459000px;}
._24_c00386{width:82.782000px;}
._d_c00386{width:84.729000px;}
._2d_c00386{width:130.950000px;}
._27_c00386{width:141.294000px;}
._26_c00386{width:260.268000px;}
._19_c00386{width:340.443000px;}
._37_c00386{width:423.057000px;}
._28_c00386{width:597.333000px;}
._1d_c00386{width:1050.234000px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(128,128,128);}
.fc0_c00386{color:rgb(0,0,0);}
.fs6_c00386{font-size:45.000000px;}
.fs7_c00386{font-size:48.000000px;}
.fs5_c00386{font-size:51.000000px;}
.fs3_c00386{font-size:54.000000px;}
.fs4_c00386{font-size:63.000000px;}
.fs0_c00386{font-size:69.000000px;}
.fs2_c00386{font-size:207.000000px;}
.fs1_c00386{font-size:249.000000px;}
.y0_c00386{bottom:0.000000px;}
.y1d_c00386{bottom:3.105000px;}
.y1c_c00386{bottom:7.228357px;}
.y1b_c00386{bottom:60.780000px;}
.y1a_c00386{bottom:85.680000px;}
.y19_c00386{bottom:110.730000px;}
.y18_c00386{bottom:135.630000px;}
.y17_c00386{bottom:159.930000px;}
.y16_c00386{bottom:185.280000px;}
.y15_c00386{bottom:210.030000px;}
.y14_c00386{bottom:235.230000px;}
.y13_c00386{bottom:259.980000px;}
.y12_c00386{bottom:284.580000px;}
.y11_c00386{bottom:309.180000px;}
.y10_c00386{bottom:334.080000px;}
.yf_c00386{bottom:359.880000px;}
.ye_c00386{bottom:384.180000px;}
.yd_c00386{bottom:408.480000px;}
.yc_c00386{bottom:433.980000px;}
.yb_c00386{bottom:458.430000px;}
.ya_c00386{bottom:484.980000px;}
.y9_c00386{bottom:501.480000px;}
.y8_c00386{bottom:532.980000px;}
.y7_c00386{bottom:547.080000px;}
.y6_c00386{bottom:571.380000px;}
.y5_c00386{bottom:597.330000px;}
.y4_c00386{bottom:620.430000px;}
.y3_c00386{bottom:674.280000px;}
.y2_c00386{bottom:703.380000px;}
.y1_c00386{bottom:757.680000px;}
.ha_c00386{height:13.200074px;}
.hb_c00386{height:43.804688px;}
.h8_c00386{height:44.165039px;}
.h7_c00386{height:61.831055px;}
.h6_c00386{height:68.370117px;}
.h2_c00386{height:69.539062px;}
.h9_c00386{height:80.758301px;}
.h4_c00386{height:87.361816px;}
.h5_c00386{height:216.936000px;}
.h3_c00386{height:315.262207px;}
.h0_c00386{height:822.450000px;}
.h1_c00386{height:822.750000px;}
.w2_c00386{width:104.875500px;}
.w0_c00386{width:575.625000px;}
.w1_c00386{width:576.000000px;}
.x0_c00386{left:0.000000px;}
.xb_c00386{left:25.950000px;}
.x2_c00386{left:27.600000px;}
.x4_c00386{left:28.650000px;}
.x9_c00386{left:30.600000px;}
.x8_c00386{left:41.850000px;}
.x5_c00386{left:50.250000px;}
.xc_c00386{left:51.300000px;}
.x6_c00386{left:83.100000px;}
.x3_c00386{left:117.450000px;}
.x7_c00386{left:165.300000px;}
.xe_c00386{left:239.626740px;}
.xd_c00386{left:299.850000px;}
.xa_c00386{left:308.850000px;}
.x1_c00386{left:433.950000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:1.920000pt;}
.ls2_c00386{letter-spacing:5.333333pt;}
.ls6_c00386{letter-spacing:10.666667pt;}
.ls5_c00386{letter-spacing:16.000000pt;}
.ls7_c00386{letter-spacing:18.666667pt;}
.ls4_c00386{letter-spacing:42.666667pt;}
.ls3_c00386{letter-spacing:45.333333pt;}
.ws1_c00386{word-spacing:-114.242667pt;}
.ws0_c00386{word-spacing:-60.114667pt;}
.ws3_c00386{word-spacing:-30.781333pt;}
.ws2_c00386{word-spacing:-14.781333pt;}
.ws4_c00386{word-spacing:0.000000pt;}
._2a_c00386{margin-left:-60.720000pt;}
._1b_c00386{margin-left:-39.704000pt;}
._12_c00386{margin-left:-34.837333pt;}
._22_c00386{margin-left:-22.253333pt;}
._25_c00386{margin-left:-20.730667pt;}
._b_c00386{margin-left:-17.042667pt;}
._6_c00386{margin-left:-15.936000pt;}
._29_c00386{margin-left:-14.965333pt;}
._20_c00386{margin-left:-13.917333pt;}
._2c_c00386{margin-left:-12.360000pt;}
._2b_c00386{margin-left:-11.442667pt;}
._21_c00386{margin-left:-10.349333pt;}
._1e_c00386{margin-left:-9.384000pt;}
._1f_c00386{margin-left:-8.477333pt;}
._31_c00386{margin-left:-7.341333pt;}
._30_c00386{margin-left:-6.120000pt;}
._32_c00386{margin-left:-5.200000pt;}
._0_c00386{margin-left:-4.170667pt;}
._1_c00386{margin-left:-3.066667pt;}
._33_c00386{margin-left:-2.146667pt;}
._3_c00386{margin-left:-1.226667pt;}
._4_c00386{width:1.770667pt;}
._2e_c00386{width:3.000000pt;}
._11_c00386{width:4.784000pt;}
._2_c00386{width:5.765333pt;}
._10_c00386{width:6.808000pt;}
._16_c00386{width:8.341333pt;}
._e_c00386{width:9.261333pt;}
._f_c00386{width:10.917333pt;}
._36_c00386{width:11.965333pt;}
._14_c00386{width:13.248000pt;}
._15_c00386{width:14.536000pt;}
._17_c00386{width:16.069333pt;}
._34_c00386{width:17.133333pt;}
._35_c00386{width:19.213333pt;}
._a_c00386{width:20.141333pt;}
._18_c00386{width:21.522667pt;}
._c_c00386{width:23.461333pt;}
._13_c00386{width:25.637333pt;}
._7_c00386{width:27.666667pt;}
._8_c00386{width:30.544000pt;}
._23_c00386{width:31.554667pt;}
._5_c00386{width:34.970667pt;}
._1c_c00386{width:38.808000pt;}
._1a_c00386{width:40.890667pt;}
._9_c00386{width:46.224000pt;}
._2f_c00386{width:59.074667pt;}
._24_c00386{width:73.584000pt;}
._d_c00386{width:75.314667pt;}
._2d_c00386{width:116.400000pt;}
._27_c00386{width:125.594667pt;}
._26_c00386{width:231.349333pt;}
._19_c00386{width:302.616000pt;}
._37_c00386{width:376.050667pt;}
._28_c00386{width:530.962667pt;}
._1d_c00386{width:933.541333pt;}
.fs6_c00386{font-size:40.000000pt;}
.fs7_c00386{font-size:42.666667pt;}
.fs5_c00386{font-size:45.333333pt;}
.fs3_c00386{font-size:48.000000pt;}
.fs4_c00386{font-size:56.000000pt;}
.fs0_c00386{font-size:61.333333pt;}
.fs2_c00386{font-size:184.000000pt;}
.fs1_c00386{font-size:221.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y1d_c00386{bottom:2.760000pt;}
.y1c_c00386{bottom:6.425206pt;}
.y1b_c00386{bottom:54.026667pt;}
.y1a_c00386{bottom:76.160000pt;}
.y19_c00386{bottom:98.426667pt;}
.y18_c00386{bottom:120.560000pt;}
.y17_c00386{bottom:142.160000pt;}
.y16_c00386{bottom:164.693333pt;}
.y15_c00386{bottom:186.693333pt;}
.y14_c00386{bottom:209.093333pt;}
.y13_c00386{bottom:231.093333pt;}
.y12_c00386{bottom:252.960000pt;}
.y11_c00386{bottom:274.826667pt;}
.y10_c00386{bottom:296.960000pt;}
.yf_c00386{bottom:319.893333pt;}
.ye_c00386{bottom:341.493333pt;}
.yd_c00386{bottom:363.093333pt;}
.yc_c00386{bottom:385.760000pt;}
.yb_c00386{bottom:407.493333pt;}
.ya_c00386{bottom:431.093333pt;}
.y9_c00386{bottom:445.760000pt;}
.y8_c00386{bottom:473.760000pt;}
.y7_c00386{bottom:486.293333pt;}
.y6_c00386{bottom:507.893333pt;}
.y5_c00386{bottom:530.960000pt;}
.y4_c00386{bottom:551.493333pt;}
.y3_c00386{bottom:599.360000pt;}
.y2_c00386{bottom:625.226667pt;}
.y1_c00386{bottom:673.493333pt;}
.ha_c00386{height:11.733399pt;}
.hb_c00386{height:38.937500pt;}
.h8_c00386{height:39.257812pt;}
.h7_c00386{height:54.960938pt;}
.h6_c00386{height:60.773438pt;}
.h2_c00386{height:61.812500pt;}
.h9_c00386{height:71.785156pt;}
.h4_c00386{height:77.654948pt;}
.h5_c00386{height:192.832000pt;}
.h3_c00386{height:280.233073pt;}
.h0_c00386{height:731.066667pt;}
.h1_c00386{height:731.333333pt;}
.w2_c00386{width:93.222667pt;}
.w0_c00386{width:511.666667pt;}
.w1_c00386{width:512.000000pt;}
.x0_c00386{left:0.000000pt;}
.xb_c00386{left:23.066667pt;}
.x2_c00386{left:24.533333pt;}
.x4_c00386{left:25.466667pt;}
.x9_c00386{left:27.200000pt;}
.x8_c00386{left:37.200000pt;}
.x5_c00386{left:44.666667pt;}
.xc_c00386{left:45.600000pt;}
.x6_c00386{left:73.866667pt;}
.x3_c00386{left:104.400000pt;}
.x7_c00386{left:146.933333pt;}
.xe_c00386{left:213.001546pt;}
.xd_c00386{left:266.533333pt;}
.xa_c00386{left:274.533333pt;}
.x1_c00386{left:385.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_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_637d072ed0016643451fa6ab.woff2')format("woff");}.ff1_c00387{font-family:ff1_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:ff2_c00387;src:url('chunks/assets/font_34bb455ca8503a557be406fb.woff2')format("woff");}.ff2_c00387{font-family:ff2_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:ff3_c00387;src:url('chunks/assets/font_2014872469e1a06e0d5e7c2e.woff2')format("woff");}.ff3_c00387{font-family:ff3_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:ff4_c00387;src:url('chunks/assets/font_3f9ec18420b13d9a45c91683.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;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_c00387;src:url('chunks/assets/font_449408f2cea550abd4bc4231.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;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_c00387;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00387{font-family:ff6_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;}
.ls0_c00387{letter-spacing:3.000000px;}
.ls1_c00387{letter-spacing:6.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:-13.014000px;}
.ws2_c00387{word-spacing:0.000000px;}
.ws1_c00387{word-spacing:27.734400px;}
._24_c00387{margin-left:-23.004000px;}
._28_c00387{margin-left:-19.170000px;}
._3_c00387{margin-left:-17.250000px;}
._20_c00387{margin-left:-16.146000px;}
._1_c00387{margin-left:-14.835000px;}
._1f_c00387{margin-left:-13.320000px;}
._1a_c00387{margin-left:-12.075000px;}
._c_c00387{margin-left:-10.902000px;}
._19_c00387{margin-left:-9.864000px;}
._13_c00387{margin-left:-8.211000px;}
._9_c00387{margin-left:-6.210000px;}
._2_c00387{margin-left:-4.761000px;}
._5_c00387{margin-left:-3.105000px;}
._6_c00387{margin-left:-1.863000px;}
._0_c00387{width:1.380000px;}
._8_c00387{width:2.484000px;}
._12_c00387{width:3.588000px;}
._b_c00387{width:4.623000px;}
._10_c00387{width:6.348000px;}
._15_c00387{width:7.383000px;}
._7_c00387{width:8.487000px;}
._18_c00387{width:9.867000px;}
._f_c00387{width:11.109000px;}
._a_c00387{width:12.282000px;}
._14_c00387{width:13.938000px;}
._e_c00387{width:15.318000px;}
._11_c00387{width:16.974000px;}
._d_c00387{width:18.492000px;}
._16_c00387{width:19.872000px;}
._1e_c00387{width:21.390000px;}
._1c_c00387{width:24.840000px;}
._1d_c00387{width:26.772000px;}
._17_c00387{width:30.498000px;}
._1b_c00387{width:33.051000px;}
._2a_c00387{width:34.425600px;}
._25_c00387{width:85.374000px;}
._21_c00387{width:92.784000px;}
._27_c00387{width:114.318000px;}
._23_c00387{width:294.981000px;}
._4_c00387{width:388.680000px;}
._26_c00387{width:549.417000px;}
._22_c00387{width:626.850000px;}
._29_c00387{width:1097.160000px;}
.fc2_c00387{color:transparent;}
.fc1_c00387{color:rgb(128,128,128);}
.fc0_c00387{color:rgb(0,0,0);}
.fs3_c00387{font-size:43.200000px;}
.fs4_c00387{font-size:48.000000px;}
.fs1_c00387{font-size:54.000000px;}
.fs2_c00387{font-size:66.000000px;}
.fs0_c00387{font-size:69.000000px;}
.y0_c00387{bottom:0.000000px;}
.y22_c00387{bottom:3.105000px;}
.y21_c00387{bottom:7.228363px;}
.y20_c00387{bottom:64.200000px;}
.y1f_c00387{bottom:82.800000px;}
.y1e_c00387{bottom:101.250000px;}
.y1d_c00387{bottom:119.100000px;}
.y1c_c00387{bottom:136.350000px;}
.y1b_c00387{bottom:153.900000px;}
.y1a_c00387{bottom:171.900000px;}
.y19_c00387{bottom:192.450000px;}
.y18_c00387{bottom:216.750000px;}
.y17_c00387{bottom:242.100000px;}
.y16_c00387{bottom:266.400000px;}
.y15_c00387{bottom:291.300000px;}
.y14_c00387{bottom:315.900000px;}
.y13_c00387{bottom:340.500000px;}
.y12_c00387{bottom:365.850000px;}
.y11_c00387{bottom:390.600000px;}
.y10_c00387{bottom:415.500000px;}
.yf_c00387{bottom:440.100000px;}
.ye_c00387{bottom:464.850000px;}
.yd_c00387{bottom:489.750000px;}
.yc_c00387{bottom:514.800000px;}
.yb_c00387{bottom:539.700000px;}
.ya_c00387{bottom:564.300000px;}
.y9_c00387{bottom:589.050000px;}
.y8_c00387{bottom:614.250000px;}
.y7_c00387{bottom:638.850000px;}
.y6_c00387{bottom:663.600000px;}
.y5_c00387{bottom:688.500000px;}
.y4_c00387{bottom:713.100000px;}
.y3_c00387{bottom:737.850000px;}
.y2_c00387{bottom:763.050000px;}
.y1_c00387{bottom:787.050000px;}
.h5_c00387{height:13.200074px;}
.h6_c00387{height:43.804688px;}
.h4_c00387{height:57.618000px;}
.h3_c00387{height:68.370117px;}
.h2_c00387{height:87.361816px;}
.h1_c00387{height:827.250000px;}
.h0_c00387{height:827.550000px;}
.w2_c00387{width:104.875500px;}
.w0_c00387{width:572.100000px;}
.w1_c00387{width:572.250000px;}
.x0_c00387{left:0.000000px;}
.xc_c00387{left:102.300000px;}
.xb_c00387{left:103.650000px;}
.xa_c00387{left:104.850000px;}
.x8_c00387{left:106.350000px;}
.x7_c00387{left:107.550000px;}
.x6_c00387{left:109.050000px;}
.x5_c00387{left:111.000000px;}
.x4_c00387{left:112.650000px;}
.x3_c00387{left:113.700000px;}
.x2_c00387{left:115.350000px;}
.x9_c00387{left:122.850000px;}
.x1_c00387{left:130.200000px;}
.xd_c00387{left:237.864258px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:2.666667pt;}
.ls1_c00387{letter-spacing:5.333333pt;}
.ws0_c00387{word-spacing:-11.568000pt;}
.ws2_c00387{word-spacing:0.000000pt;}
.ws1_c00387{word-spacing:24.652800pt;}
._24_c00387{margin-left:-20.448000pt;}
._28_c00387{margin-left:-17.040000pt;}
._3_c00387{margin-left:-15.333333pt;}
._20_c00387{margin-left:-14.352000pt;}
._1_c00387{margin-left:-13.186667pt;}
._1f_c00387{margin-left:-11.840000pt;}
._1a_c00387{margin-left:-10.733333pt;}
._c_c00387{margin-left:-9.690667pt;}
._19_c00387{margin-left:-8.768000pt;}
._13_c00387{margin-left:-7.298667pt;}
._9_c00387{margin-left:-5.520000pt;}
._2_c00387{margin-left:-4.232000pt;}
._5_c00387{margin-left:-2.760000pt;}
._6_c00387{margin-left:-1.656000pt;}
._0_c00387{width:1.226667pt;}
._8_c00387{width:2.208000pt;}
._12_c00387{width:3.189333pt;}
._b_c00387{width:4.109333pt;}
._10_c00387{width:5.642667pt;}
._15_c00387{width:6.562667pt;}
._7_c00387{width:7.544000pt;}
._18_c00387{width:8.770667pt;}
._f_c00387{width:9.874667pt;}
._a_c00387{width:10.917333pt;}
._14_c00387{width:12.389333pt;}
._e_c00387{width:13.616000pt;}
._11_c00387{width:15.088000pt;}
._d_c00387{width:16.437333pt;}
._16_c00387{width:17.664000pt;}
._1e_c00387{width:19.013333pt;}
._1c_c00387{width:22.080000pt;}
._1d_c00387{width:23.797333pt;}
._17_c00387{width:27.109333pt;}
._1b_c00387{width:29.378667pt;}
._2a_c00387{width:30.600533pt;}
._25_c00387{width:75.888000pt;}
._21_c00387{width:82.474667pt;}
._27_c00387{width:101.616000pt;}
._23_c00387{width:262.205333pt;}
._4_c00387{width:345.493333pt;}
._26_c00387{width:488.370667pt;}
._22_c00387{width:557.200000pt;}
._29_c00387{width:975.253333pt;}
.fs3_c00387{font-size:38.400000pt;}
.fs4_c00387{font-size:42.666667pt;}
.fs1_c00387{font-size:48.000000pt;}
.fs2_c00387{font-size:58.666667pt;}
.fs0_c00387{font-size:61.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y22_c00387{bottom:2.760000pt;}
.y21_c00387{bottom:6.425212pt;}
.y20_c00387{bottom:57.066667pt;}
.y1f_c00387{bottom:73.600000pt;}
.y1e_c00387{bottom:90.000000pt;}
.y1d_c00387{bottom:105.866667pt;}
.y1c_c00387{bottom:121.200000pt;}
.y1b_c00387{bottom:136.800000pt;}
.y1a_c00387{bottom:152.800000pt;}
.y19_c00387{bottom:171.066667pt;}
.y18_c00387{bottom:192.666667pt;}
.y17_c00387{bottom:215.200000pt;}
.y16_c00387{bottom:236.800000pt;}
.y15_c00387{bottom:258.933333pt;}
.y14_c00387{bottom:280.800000pt;}
.y13_c00387{bottom:302.666667pt;}
.y12_c00387{bottom:325.200000pt;}
.y11_c00387{bottom:347.200000pt;}
.y10_c00387{bottom:369.333333pt;}
.yf_c00387{bottom:391.200000pt;}
.ye_c00387{bottom:413.200000pt;}
.yd_c00387{bottom:435.333333pt;}
.yc_c00387{bottom:457.600000pt;}
.yb_c00387{bottom:479.733333pt;}
.ya_c00387{bottom:501.600000pt;}
.y9_c00387{bottom:523.600000pt;}
.y8_c00387{bottom:546.000000pt;}
.y7_c00387{bottom:567.866667pt;}
.y6_c00387{bottom:589.866667pt;}
.y5_c00387{bottom:612.000000pt;}
.y4_c00387{bottom:633.866667pt;}
.y3_c00387{bottom:655.866667pt;}
.y2_c00387{bottom:678.266667pt;}
.y1_c00387{bottom:699.600000pt;}
.h5_c00387{height:11.733399pt;}
.h6_c00387{height:38.937500pt;}
.h4_c00387{height:51.216000pt;}
.h3_c00387{height:60.773438pt;}
.h2_c00387{height:77.654948pt;}
.h1_c00387{height:735.333333pt;}
.h0_c00387{height:735.600000pt;}
.w2_c00387{width:93.222667pt;}
.w0_c00387{width:508.533333pt;}
.w1_c00387{width:508.666667pt;}
.x0_c00387{left:0.000000pt;}
.xc_c00387{left:90.933333pt;}
.xb_c00387{left:92.133333pt;}
.xa_c00387{left:93.200000pt;}
.x8_c00387{left:94.533333pt;}
.x7_c00387{left:95.600000pt;}
.x6_c00387{left:96.933333pt;}
.x5_c00387{left:98.666667pt;}
.x4_c00387{left:100.133333pt;}
.x3_c00387{left:101.066667pt;}
.x2_c00387{left:102.533333pt;}
.x9_c00387{left:109.200000pt;}
.x1_c00387{left:115.733333pt;}
.xd_c00387{left:211.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_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_ba12d5d20963d893ccae008d.woff2')format("woff");}.ff1_c00388{font-family:ff1_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:ff2_c00388;src:url('chunks/assets/font_239ec63b3ff940267fc1aec6.woff2')format("woff");}.ff2_c00388{font-family:ff2_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:ff3_c00388;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff3_c00388{font-family:ff3_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:ff4_c00388;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00388{font-family:ff4_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:ff5_c00388;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00388{font-family:ff5_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;}
.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;}
.ls4_c00388{letter-spacing:0.000000px;}
.ls5_c00388{letter-spacing:6.000000px;}
.ls2_c00388{letter-spacing:9.000000px;}
.ls6_c00388{letter-spacing:18.000000px;}
.ls0_c00388{letter-spacing:18.600000px;}
.ls3_c00388{letter-spacing:20.400000px;}
.ls1_c00388{letter-spacing:175.200000px;}
.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;}
}
.ws1_c00388{word-spacing:-34.629000px;}
.ws0_c00388{word-spacing:-25.629000px;}
.ws2_c00388{word-spacing:-16.629000px;}
.ws3_c00388{word-spacing:0.000000px;}
._16_c00388{margin-left:-34.194000px;}
._15_c00388{margin-left:-24.669000px;}
._26_c00388{margin-left:-17.940000px;}
._22_c00388{margin-left:-16.803000px;}
._f_c00388{margin-left:-15.663000px;}
._7_c00388{margin-left:-14.145000px;}
._1f_c00388{margin-left:-13.041000px;}
._1e_c00388{margin-left:-11.217000px;}
._25_c00388{margin-left:-10.143000px;}
._12_c00388{margin-left:-9.108000px;}
._4_c00388{margin-left:-7.866000px;}
._11_c00388{margin-left:-6.243000px;}
._3_c00388{margin-left:-4.899000px;}
._d_c00388{margin-left:-3.795000px;}
._5_c00388{margin-left:-2.415000px;}
._13_c00388{margin-left:-1.311000px;}
._e_c00388{width:1.035000px;}
._10_c00388{width:2.277000px;}
._1_c00388{width:3.519000px;}
._0_c00388{width:5.106000px;}
._9_c00388{width:6.486000px;}
._8_c00388{width:8.280000px;}
._14_c00388{width:10.005000px;}
._a_c00388{width:11.592000px;}
._2_c00388{width:13.386000px;}
._b_c00388{width:15.801000px;}
._21_c00388{width:16.986000px;}
._1a_c00388{width:19.179000px;}
._23_c00388{width:25.959000px;}
._1d_c00388{width:31.092000px;}
._c_c00388{width:37.053000px;}
._24_c00388{width:47.595000px;}
._17_c00388{width:80.589000px;}
._20_c00388{width:82.041000px;}
._1b_c00388{width:100.395000px;}
._1c_c00388{width:124.230000px;}
._6_c00388{width:410.982000px;}
._28_c00388{width:427.260000px;}
._18_c00388{width:514.671000px;}
._27_c00388{width:891.135000px;}
._19_c00388{width:1047.660000px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(128,128,128);}
.fc0_c00388{color:rgb(0,0,0);}
.fs2_c00388{font-size:48.000000px;}
.fs1_c00388{font-size:66.000000px;}
.fs0_c00388{font-size:69.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1e_c00388{bottom:3.105000px;}
.y1d_c00388{bottom:7.228369px;}
.y1c_c00388{bottom:55.020000px;}
.y1b_c00388{bottom:79.920000px;}
.y1a_c00388{bottom:105.270000px;}
.y19_c00388{bottom:130.170000px;}
.y18_c00388{bottom:155.220000px;}
.y17_c00388{bottom:179.820000px;}
.y16_c00388{bottom:204.870000px;}
.y15_c00388{bottom:230.520000px;}
.y14_c00388{bottom:255.420000px;}
.y13_c00388{bottom:279.420000px;}
.y12_c00388{bottom:329.970000px;}
.y11_c00388{bottom:353.370000px;}
.y10_c00388{bottom:379.320000px;}
.yf_c00388{bottom:404.220000px;}
.ye_c00388{bottom:428.970000px;}
.yd_c00388{bottom:453.870000px;}
.yc_c00388{bottom:478.470000px;}
.yb_c00388{bottom:502.470000px;}
.ya_c00388{bottom:524.520000px;}
.y9_c00388{bottom:551.070000px;}
.y8_c00388{bottom:576.120000px;}
.y7_c00388{bottom:600.720000px;}
.y6_c00388{bottom:626.370000px;}
.y5_c00388{bottom:650.670000px;}
.y4_c00388{bottom:675.570000px;}
.y3_c00388{bottom:700.620000px;}
.y2_c00388{bottom:724.920000px;}
.y1_c00388{bottom:775.170000px;}
.h3_c00388{height:13.200073px;}
.h4_c00388{height:43.804688px;}
.h2_c00388{height:80.758301px;}
.h1_c00388{height:87.361816px;}
.h0_c00388{height:813.750000px;}
.w2_c00388{width:104.875500px;}
.w1_c00388{width:570.000000px;}
.w0_c00388{width:570.225000px;}
.x0_c00388{left:0.000000px;}
.x9_c00388{left:30.750000px;}
.xa_c00388{left:31.800000px;}
.x5_c00388{left:33.750000px;}
.x6_c00388{left:34.800000px;}
.x4_c00388{left:36.150000px;}
.xb_c00388{left:48.000000px;}
.xc_c00388{left:51.600000px;}
.x3_c00388{left:60.000000px;}
.x7_c00388{left:78.600000px;}
.x8_c00388{left:201.450000px;}
.x1_c00388{left:206.100000px;}
.x2_c00388{left:208.650000px;}
.xd_c00388{left:236.926758px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls4_c00388{letter-spacing:0.000000pt;}
.ls5_c00388{letter-spacing:5.333333pt;}
.ls2_c00388{letter-spacing:8.000000pt;}
.ls6_c00388{letter-spacing:16.000000pt;}
.ls0_c00388{letter-spacing:16.533333pt;}
.ls3_c00388{letter-spacing:18.133333pt;}
.ls1_c00388{letter-spacing:155.733333pt;}
.ws1_c00388{word-spacing:-30.781333pt;}
.ws0_c00388{word-spacing:-22.781333pt;}
.ws2_c00388{word-spacing:-14.781333pt;}
.ws3_c00388{word-spacing:0.000000pt;}
._16_c00388{margin-left:-30.394667pt;}
._15_c00388{margin-left:-21.928000pt;}
._26_c00388{margin-left:-15.946667pt;}
._22_c00388{margin-left:-14.936000pt;}
._f_c00388{margin-left:-13.922667pt;}
._7_c00388{margin-left:-12.573333pt;}
._1f_c00388{margin-left:-11.592000pt;}
._1e_c00388{margin-left:-9.970667pt;}
._25_c00388{margin-left:-9.016000pt;}
._12_c00388{margin-left:-8.096000pt;}
._4_c00388{margin-left:-6.992000pt;}
._11_c00388{margin-left:-5.549333pt;}
._3_c00388{margin-left:-4.354667pt;}
._d_c00388{margin-left:-3.373333pt;}
._5_c00388{margin-left:-2.146667pt;}
._13_c00388{margin-left:-1.165333pt;}
._e_c00388{width:0.920000pt;}
._10_c00388{width:2.024000pt;}
._1_c00388{width:3.128000pt;}
._0_c00388{width:4.538667pt;}
._9_c00388{width:5.765333pt;}
._8_c00388{width:7.360000pt;}
._14_c00388{width:8.893333pt;}
._a_c00388{width:10.304000pt;}
._2_c00388{width:11.898667pt;}
._b_c00388{width:14.045333pt;}
._21_c00388{width:15.098667pt;}
._1a_c00388{width:17.048000pt;}
._23_c00388{width:23.074667pt;}
._1d_c00388{width:27.637333pt;}
._c_c00388{width:32.936000pt;}
._24_c00388{width:42.306667pt;}
._17_c00388{width:71.634667pt;}
._20_c00388{width:72.925333pt;}
._1b_c00388{width:89.240000pt;}
._1c_c00388{width:110.426667pt;}
._6_c00388{width:365.317333pt;}
._28_c00388{width:379.786667pt;}
._18_c00388{width:457.485333pt;}
._27_c00388{width:792.120000pt;}
._19_c00388{width:931.253333pt;}
.fs2_c00388{font-size:42.666667pt;}
.fs1_c00388{font-size:58.666667pt;}
.fs0_c00388{font-size:61.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y1e_c00388{bottom:2.760000pt;}
.y1d_c00388{bottom:6.425217pt;}
.y1c_c00388{bottom:48.906667pt;}
.y1b_c00388{bottom:71.040000pt;}
.y1a_c00388{bottom:93.573333pt;}
.y19_c00388{bottom:115.706667pt;}
.y18_c00388{bottom:137.973333pt;}
.y17_c00388{bottom:159.840000pt;}
.y16_c00388{bottom:182.106667pt;}
.y15_c00388{bottom:204.906667pt;}
.y14_c00388{bottom:227.040000pt;}
.y13_c00388{bottom:248.373333pt;}
.y12_c00388{bottom:293.306667pt;}
.y11_c00388{bottom:314.106667pt;}
.y10_c00388{bottom:337.173333pt;}
.yf_c00388{bottom:359.306667pt;}
.ye_c00388{bottom:381.306667pt;}
.yd_c00388{bottom:403.440000pt;}
.yc_c00388{bottom:425.306667pt;}
.yb_c00388{bottom:446.640000pt;}
.ya_c00388{bottom:466.240000pt;}
.y9_c00388{bottom:489.840000pt;}
.y8_c00388{bottom:512.106667pt;}
.y7_c00388{bottom:533.973333pt;}
.y6_c00388{bottom:556.773333pt;}
.y5_c00388{bottom:578.373333pt;}
.y4_c00388{bottom:600.506667pt;}
.y3_c00388{bottom:622.773333pt;}
.y2_c00388{bottom:644.373333pt;}
.y1_c00388{bottom:689.040000pt;}
.h3_c00388{height:11.733399pt;}
.h4_c00388{height:38.937500pt;}
.h2_c00388{height:71.785156pt;}
.h1_c00388{height:77.654948pt;}
.h0_c00388{height:723.333333pt;}
.w2_c00388{width:93.222667pt;}
.w1_c00388{width:506.666667pt;}
.w0_c00388{width:506.866667pt;}
.x0_c00388{left:0.000000pt;}
.x9_c00388{left:27.333333pt;}
.xa_c00388{left:28.266667pt;}
.x5_c00388{left:30.000000pt;}
.x6_c00388{left:30.933333pt;}
.x4_c00388{left:32.133333pt;}
.xb_c00388{left:42.666667pt;}
.xc_c00388{left:45.866667pt;}
.x3_c00388{left:53.333333pt;}
.x7_c00388{left:69.866667pt;}
.x8_c00388{left:179.066667pt;}
.x1_c00388{left:183.200000pt;}
.x2_c00388{left:185.466667pt;}
.xd_c00388{left:210.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a08fc7f300e573e4e81d70e2.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_b2299b5f8a5b80330b987043.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_548f1069d777f68d8033784d.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;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_c00389;src:url('chunks/assets/font_18fb404215a9dba9afc7ec21.woff2')format("woff");}.ff4_c00389{font-family:ff4_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:ff5_c00389;src:url('chunks/assets/font_b88fcbd740dfd8b88f9cf28b.woff2')format("woff");}.ff5_c00389{font-family:ff5_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:ff6_c00389;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00389{font-family:ff6_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;}
.ls6_c00389{letter-spacing:-6.000000px;}
.ls7_c00389{letter-spacing:0.000000px;}
.ls4_c00389{letter-spacing:1.560000px;}
.ls0_c00389{letter-spacing:4.866000px;}
.ls8_c00389{letter-spacing:6.000000px;}
.ls5_c00389{letter-spacing:9.000000px;}
.ls3_c00389{letter-spacing:17.553000px;}
.ls9_c00389{letter-spacing:18.000000px;}
.lsa_c00389{letter-spacing:21.000000px;}
.ls2_c00389{letter-spacing:26.301000px;}
.ls1_c00389{letter-spacing:27.771000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-40.803000px;}
.ws5_c00389{word-spacing:-39.888000px;}
.ws2_c00389{word-spacing:-34.629000px;}
.ws1_c00389{word-spacing:-32.361000px;}
.ws4_c00389{word-spacing:-25.326000px;}
.ws6_c00389{word-spacing:-24.870000px;}
.ws7_c00389{word-spacing:0.000000px;}
.ws3_c00389{word-spacing:417.102000px;}
._1d_c00389{margin-left:-18.975000px;}
._13_c00389{margin-left:-16.767000px;}
._23_c00389{margin-left:-15.216000px;}
._e_c00389{margin-left:-12.771000px;}
._12_c00389{margin-left:-11.592000px;}
._1_c00389{margin-left:-10.464000px;}
._11_c00389{margin-left:-8.970000px;}
._4_c00389{margin-left:-7.932000px;}
._0_c00389{margin-left:-6.336000px;}
._5_c00389{margin-left:-4.560000px;}
._2_c00389{margin-left:-3.168000px;}
._6_c00389{margin-left:-2.151000px;}
._7_c00389{margin-left:-1.098000px;}
._10_c00389{width:1.212000px;}
._b_c00389{width:2.277000px;}
._15_c00389{width:3.756000px;}
._a_c00389{width:4.899000px;}
._8_c00389{width:6.147000px;}
._d_c00389{width:7.464000px;}
._17_c00389{width:8.982000px;}
._16_c00389{width:10.380000px;}
._9_c00389{width:11.661000px;}
._19_c00389{width:13.035000px;}
._1a_c00389{width:14.328000px;}
._c_c00389{width:16.023000px;}
._1b_c00389{width:17.028000px;}
._18_c00389{width:18.081000px;}
._f_c00389{width:19.389000px;}
._1c_c00389{width:21.276000px;}
._24_c00389{width:23.568000px;}
._22_c00389{width:32.160000px;}
._26_c00389{width:37.776000px;}
._1f_c00389{width:45.447000px;}
._28_c00389{width:50.703000px;}
._14_c00389{width:53.337000px;}
._27_c00389{width:56.058000px;}
._21_c00389{width:59.202000px;}
._1e_c00389{width:74.589000px;}
._2c_c00389{width:81.816000px;}
._25_c00389{width:83.256000px;}
._29_c00389{width:106.236000px;}
._2d_c00389{width:177.435000px;}
._2a_c00389{width:336.738000px;}
._2b_c00389{width:373.068000px;}
._3_c00389{width:389.592000px;}
._20_c00389{width:467.595000px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(128,128,128);}
.fc0_c00389{color:rgb(0,0,0);}
.fs2_c00389{font-size:42.000000px;}
.fs4_c00389{font-size:45.000000px;}
.fs7_c00389{font-size:48.000000px;}
.fs5_c00389{font-size:54.000000px;}
.fs3_c00389{font-size:69.000000px;}
.fs6_c00389{font-size:72.000000px;}
.fs1_c00389{font-size:87.000000px;}
.fs0_c00389{font-size:96.000000px;}
.y0_c00389{bottom:0.000000px;}
.y21_c00389{bottom:3.105000px;}
.y20_c00389{bottom:7.228363px;}
.y1f_c00389{bottom:67.050000px;}
.y1e_c00389{bottom:93.150000px;}
.y1d_c00389{bottom:115.800000px;}
.y1c_c00389{bottom:149.550000px;}
.y1b_c00389{bottom:199.050000px;}
.y1a_c00389{bottom:215.550000px;}
.y19_c00389{bottom:232.950000px;}
.y18_c00389{bottom:251.400000px;}
.y17_c00389{bottom:268.350000px;}
.y16_c00389{bottom:286.500000px;}
.y15_c00389{bottom:304.050000px;}
.y14_c00389{bottom:318.300000px;}
.y13_c00389{bottom:337.200000px;}
.y12_c00389{bottom:364.950000px;}
.y11_c00389{bottom:389.550000px;}
.y10_c00389{bottom:414.450000px;}
.yf_c00389{bottom:439.200000px;}
.ye_c00389{bottom:463.800000px;}
.yd_c00389{bottom:489.750000px;}
.yc_c00389{bottom:514.650000px;}
.yb_c00389{bottom:539.400000px;}
.ya_c00389{bottom:564.300000px;}
.y9_c00389{bottom:588.900000px;}
.y8_c00389{bottom:613.500000px;}
.y7_c00389{bottom:638.100000px;}
.y6_c00389{bottom:663.750000px;}
.y5_c00389{bottom:688.200000px;}
.y4_c00389{bottom:713.100000px;}
.y3_c00389{bottom:738.300000px;}
.y2_c00389{bottom:763.500000px;}
.y1_c00389{bottom:788.700000px;}
.h7_c00389{height:13.200074px;}
.h8_c00389{height:43.804688px;}
.h4_c00389{height:68.370117px;}
.h5_c00389{height:80.758301px;}
.h3_c00389{height:87.361816px;}
.h6_c00389{height:91.160156px;}
.h2_c00389{height:101.825684px;}
.h1_c00389{height:827.250000px;}
.h0_c00389{height:827.550000px;}
.w2_c00389{width:104.875500px;}
.w0_c00389{width:572.100000px;}
.w1_c00389{width:572.250000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:38.850000px;}
.x6_c00389{left:46.800000px;}
.x9_c00389{left:100.500000px;}
.x5_c00389{left:103.200000px;}
.x4_c00389{left:104.550000px;}
.x2_c00389{left:105.600000px;}
.x1_c00389{left:120.600000px;}
.x7_c00389{left:128.550000px;}
.xb_c00389{left:237.864258px;}
.x8_c00389{left:240.900000px;}
.xa_c00389{left:525.150000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls6_c00389{letter-spacing:-5.333333pt;}
.ls7_c00389{letter-spacing:0.000000pt;}
.ls4_c00389{letter-spacing:1.386667pt;}
.ls0_c00389{letter-spacing:4.325333pt;}
.ls8_c00389{letter-spacing:5.333333pt;}
.ls5_c00389{letter-spacing:8.000000pt;}
.ls3_c00389{letter-spacing:15.602667pt;}
.ls9_c00389{letter-spacing:16.000000pt;}
.lsa_c00389{letter-spacing:18.666667pt;}
.ls2_c00389{letter-spacing:23.378667pt;}
.ls1_c00389{letter-spacing:24.685333pt;}
.ws0_c00389{word-spacing:-36.269333pt;}
.ws5_c00389{word-spacing:-35.456000pt;}
.ws2_c00389{word-spacing:-30.781333pt;}
.ws1_c00389{word-spacing:-28.765333pt;}
.ws4_c00389{word-spacing:-22.512000pt;}
.ws6_c00389{word-spacing:-22.106667pt;}
.ws7_c00389{word-spacing:0.000000pt;}
.ws3_c00389{word-spacing:370.757333pt;}
._1d_c00389{margin-left:-16.866667pt;}
._13_c00389{margin-left:-14.904000pt;}
._23_c00389{margin-left:-13.525333pt;}
._e_c00389{margin-left:-11.352000pt;}
._12_c00389{margin-left:-10.304000pt;}
._1_c00389{margin-left:-9.301333pt;}
._11_c00389{margin-left:-7.973333pt;}
._4_c00389{margin-left:-7.050667pt;}
._0_c00389{margin-left:-5.632000pt;}
._5_c00389{margin-left:-4.053333pt;}
._2_c00389{margin-left:-2.816000pt;}
._6_c00389{margin-left:-1.912000pt;}
._7_c00389{margin-left:-0.976000pt;}
._10_c00389{width:1.077333pt;}
._b_c00389{width:2.024000pt;}
._15_c00389{width:3.338667pt;}
._a_c00389{width:4.354667pt;}
._8_c00389{width:5.464000pt;}
._d_c00389{width:6.634667pt;}
._17_c00389{width:7.984000pt;}
._16_c00389{width:9.226667pt;}
._9_c00389{width:10.365333pt;}
._19_c00389{width:11.586667pt;}
._1a_c00389{width:12.736000pt;}
._c_c00389{width:14.242667pt;}
._1b_c00389{width:15.136000pt;}
._18_c00389{width:16.072000pt;}
._f_c00389{width:17.234667pt;}
._1c_c00389{width:18.912000pt;}
._24_c00389{width:20.949333pt;}
._22_c00389{width:28.586667pt;}
._26_c00389{width:33.578667pt;}
._1f_c00389{width:40.397333pt;}
._28_c00389{width:45.069333pt;}
._14_c00389{width:47.410667pt;}
._27_c00389{width:49.829333pt;}
._21_c00389{width:52.624000pt;}
._1e_c00389{width:66.301333pt;}
._2c_c00389{width:72.725333pt;}
._25_c00389{width:74.005333pt;}
._29_c00389{width:94.432000pt;}
._2d_c00389{width:157.720000pt;}
._2a_c00389{width:299.322667pt;}
._2b_c00389{width:331.616000pt;}
._3_c00389{width:346.304000pt;}
._20_c00389{width:415.640000pt;}
.fs2_c00389{font-size:37.333333pt;}
.fs4_c00389{font-size:40.000000pt;}
.fs7_c00389{font-size:42.666667pt;}
.fs5_c00389{font-size:48.000000pt;}
.fs3_c00389{font-size:61.333333pt;}
.fs6_c00389{font-size:64.000000pt;}
.fs1_c00389{font-size:77.333333pt;}
.fs0_c00389{font-size:85.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y21_c00389{bottom:2.760000pt;}
.y20_c00389{bottom:6.425212pt;}
.y1f_c00389{bottom:59.600000pt;}
.y1e_c00389{bottom:82.800000pt;}
.y1d_c00389{bottom:102.933333pt;}
.y1c_c00389{bottom:132.933333pt;}
.y1b_c00389{bottom:176.933333pt;}
.y1a_c00389{bottom:191.600000pt;}
.y19_c00389{bottom:207.066667pt;}
.y18_c00389{bottom:223.466667pt;}
.y17_c00389{bottom:238.533333pt;}
.y16_c00389{bottom:254.666667pt;}
.y15_c00389{bottom:270.266667pt;}
.y14_c00389{bottom:282.933333pt;}
.y13_c00389{bottom:299.733333pt;}
.y12_c00389{bottom:324.400000pt;}
.y11_c00389{bottom:346.266667pt;}
.y10_c00389{bottom:368.400000pt;}
.yf_c00389{bottom:390.400000pt;}
.ye_c00389{bottom:412.266667pt;}
.yd_c00389{bottom:435.333333pt;}
.yc_c00389{bottom:457.466667pt;}
.yb_c00389{bottom:479.466667pt;}
.ya_c00389{bottom:501.600000pt;}
.y9_c00389{bottom:523.466667pt;}
.y8_c00389{bottom:545.333333pt;}
.y7_c00389{bottom:567.200000pt;}
.y6_c00389{bottom:590.000000pt;}
.y5_c00389{bottom:611.733333pt;}
.y4_c00389{bottom:633.866667pt;}
.y3_c00389{bottom:656.266667pt;}
.y2_c00389{bottom:678.666667pt;}
.y1_c00389{bottom:701.066667pt;}
.h7_c00389{height:11.733399pt;}
.h8_c00389{height:38.937500pt;}
.h4_c00389{height:60.773438pt;}
.h5_c00389{height:71.785156pt;}
.h3_c00389{height:77.654948pt;}
.h6_c00389{height:81.031250pt;}
.h2_c00389{height:90.511719pt;}
.h1_c00389{height:735.333333pt;}
.h0_c00389{height:735.600000pt;}
.w2_c00389{width:93.222667pt;}
.w0_c00389{width:508.533333pt;}
.w1_c00389{width:508.666667pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:34.533333pt;}
.x6_c00389{left:41.600000pt;}
.x9_c00389{left:89.333333pt;}
.x5_c00389{left:91.733333pt;}
.x4_c00389{left:92.933333pt;}
.x2_c00389{left:93.866667pt;}
.x1_c00389{left:107.200000pt;}
.x7_c00389{left:114.266667pt;}
.xb_c00389{left:211.434896pt;}
.x8_c00389{left:214.133333pt;}
.xa_c00389{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_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_ae36c6fcb78a27adfee3f89d.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_739b5fa2b67fa1029b8dff39.woff2')format("woff");}.ff2_c00390{font-family:ff2_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:ff3_c00390;src:url('chunks/assets/font_b25a62d1f2fb876608358dba.woff2')format("woff");}.ff3_c00390{font-family:ff3_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:ff4_c00390;src:url('chunks/assets/font_9b3346911ac3346f3118c833.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;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_c00390;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;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_c00390;src:url('chunks/assets/font_cd92ab6e6468d84a9d1cec9e.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c00390{font-family:ff7_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:ff8_c00390;src:url('chunks/assets/font_3f6daac056f3c9a7b3449da9.woff2')format("woff");}.ff8_c00390{font-family:ff8_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:ff9_c00390;src:url('chunks/assets/font_9a1cda0284b243bdbee06295.woff2')format("woff");}.ff9_c00390{font-family:ff9_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:ffa_c00390;src:url('chunks/assets/font_4f1e1c4a6afa519ef273f7ae.woff2')format("woff");}.ffa_c00390{font-family:ffa_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:ffb_c00390;src:url('chunks/assets/font_926a659c1457ac225c4476f3.woff2')format("woff");}.ffb_c00390{font-family:ffb_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:ffc_c00390;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffc_c00390{font-family:ffc_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;}
.m1_c00390{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_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;}
.ls6_c00390{letter-spacing:0.000000px;}
.ls5_c00390{letter-spacing:4.836000px;}
.ls0_c00390{letter-spacing:4.950000px;}
.ls2_c00390{letter-spacing:6.000000px;}
.ls7_c00390{letter-spacing:9.000000px;}
.ls4_c00390{letter-spacing:12.036000px;}
.ls1_c00390{letter-spacing:15.402000px;}
.ls8_c00390{letter-spacing:27.000000px;}
.ls3_c00390{letter-spacing:29.436000px;}
.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;}
}
.ws3_c00390{word-spacing:-30.348000px;}
.ws8_c00390{word-spacing:-29.430000px;}
.ws2_c00390{word-spacing:-25.629000px;}
.ws6_c00390{word-spacing:-25.500000px;}
.ws4_c00390{word-spacing:-22.500000px;}
.ws0_c00390{word-spacing:-19.050000px;}
.ws7_c00390{word-spacing:-18.348000px;}
.ws5_c00390{word-spacing:-15.240000px;}
.ws1_c00390{word-spacing:-13.014000px;}
.ws9_c00390{word-spacing:0.000000px;}
._3a_c00390{margin-left:-38.085000px;}
._3c_c00390{margin-left:-31.176000px;}
._33_c00390{margin-left:-29.040000px;}
._31_c00390{margin-left:-26.343000px;}
._25_c00390{margin-left:-24.426000px;}
._30_c00390{margin-left:-23.328000px;}
._23_c00390{margin-left:-22.218000px;}
._21_c00390{margin-left:-21.114000px;}
._2a_c00390{margin-left:-19.125000px;}
._29_c00390{margin-left:-17.751000px;}
._1_c00390{margin-left:-16.650000px;}
._2_c00390{margin-left:-15.300000px;}
._3b_c00390{margin-left:-14.298000px;}
._0_c00390{margin-left:-13.275000px;}
._1a_c00390{margin-left:-11.670000px;}
._35_c00390{margin-left:-10.545000px;}
._1e_c00390{margin-left:-9.522000px;}
._b_c00390{margin-left:-8.280000px;}
._e_c00390{margin-left:-7.107000px;}
._4_c00390{margin-left:-5.727000px;}
._3_c00390{margin-left:-4.209000px;}
._7_c00390{margin-left:-2.622000px;}
._5_c00390{margin-left:-1.311000px;}
._d_c00390{width:1.311000px;}
._6_c00390{width:3.036000px;}
._c_c00390{width:4.347000px;}
._15_c00390{width:5.370000px;}
._8_c00390{width:6.486000px;}
._19_c00390{width:7.695000px;}
._14_c00390{width:9.153000px;}
._12_c00390{width:10.308000px;}
._3d_c00390{width:11.490000px;}
._9_c00390{width:12.558000px;}
._13_c00390{width:14.295000px;}
._a_c00390{width:15.387000px;}
._16_c00390{width:17.472000px;}
._1f_c00390{width:18.618000px;}
._f_c00390{width:19.731000px;}
._1b_c00390{width:20.997000px;}
._18_c00390{width:22.059000px;}
._28_c00390{width:27.450000px;}
._22_c00390{width:29.325000px;}
._3e_c00390{width:31.239000px;}
._1d_c00390{width:33.018000px;}
._2f_c00390{width:41.334000px;}
._26_c00390{width:43.332000px;}
._24_c00390{width:63.042000px;}
._2e_c00390{width:64.539000px;}
._39_c00390{width:82.686000px;}
._34_c00390{width:84.327000px;}
._10_c00390{width:90.099000px;}
._17_c00390{width:105.552000px;}
._2d_c00390{width:106.842000px;}
._2b_c00390{width:108.783000px;}
._27_c00390{width:145.266000px;}
._11_c00390{width:155.400000px;}
._1c_c00390{width:159.252000px;}
._2c_c00390{width:166.230000px;}
._20_c00390{width:169.038000px;}
._36_c00390{width:174.174000px;}
._32_c00390{width:321.225000px;}
._37_c00390{width:534.075000px;}
._38_c00390{width:556.722000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(128,128,128);}
.fc0_c00390{color:rgb(0,0,0);}
.fs7_c00390{font-size:36.000000px;}
.fs6_c00390{font-size:45.000000px;}
.fs8_c00390{font-size:48.000000px;}
.fs2_c00390{font-size:54.000000px;}
.fs4_c00390{font-size:60.000000px;}
.fs3_c00390{font-size:66.000000px;}
.fs1_c00390{font-size:69.000000px;}
.fs0_c00390{font-size:75.000000px;}
.fs5_c00390{font-size:78.000000px;}
.y0_c00390{bottom:0.000000px;}
.y27_c00390{bottom:3.105000px;}
.y26_c00390{bottom:7.228371px;}
.y25_c00390{bottom:47.715000px;}
.y24_c00390{bottom:73.365000px;}
.y23_c00390{bottom:90.765000px;}
.y22_c00390{bottom:106.065000px;}
.y21_c00390{bottom:132.315000px;}
.y20_c00390{bottom:157.065000px;}
.y1f_c00390{bottom:174.465000px;}
.y1e_c00390{bottom:194.865000px;}
.y1d_c00390{bottom:219.765000px;}
.y1c_c00390{bottom:242.115000px;}
.y1b_c00390{bottom:259.515000px;}
.y1a_c00390{bottom:277.215000px;}
.y19_c00390{bottom:294.615000px;}
.y18_c00390{bottom:311.865000px;}
.y17_c00390{bottom:329.715000px;}
.y16_c00390{bottom:347.265000px;}
.y15_c00390{bottom:364.815000px;}
.y14_c00390{bottom:385.065000px;}
.y13_c00390{bottom:409.065000px;}
.y12_c00390{bottom:433.665000px;}
.y11_c00390{bottom:459.015000px;}
.y10_c00390{bottom:482.715000px;}
.yf_c00390{bottom:505.365000px;}
.ye_c00390{bottom:522.465000px;}
.yd_c00390{bottom:540.015000px;}
.yc_c00390{bottom:556.965000px;}
.yb_c00390{bottom:574.815000px;}
.ya_c00390{bottom:592.365000px;}
.y9_c00390{bottom:609.915000px;}
.y8_c00390{bottom:627.465000px;}
.y7_c00390{bottom:644.715000px;}
.y6_c00390{bottom:662.265000px;}
.y5_c00390{bottom:679.815000px;}
.y4_c00390{bottom:699.765000px;}
.y3_c00390{bottom:724.665000px;}
.y2_c00390{bottom:749.715000px;}
.y1_c00390{bottom:774.615000px;}
.h7_c00390{height:13.200074px;}
.h8_c00390{height:43.804688px;}
.h5_c00390{height:57.618000px;}
.h4_c00390{height:68.370117px;}
.h3_c00390{height:87.361816px;}
.h2_c00390{height:87.780762px;}
.h6_c00390{height:94.958496px;}
.h1_c00390{height:817.500000px;}
.h0_c00390{height:817.575000px;}
.w2_c00390{width:104.875500px;}
.w1_c00390{width:572.250000px;}
.w0_c00390{width:572.400000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:40.950000px;}
.x3_c00390{left:42.300000px;}
.x5_c00390{left:43.950000px;}
.x9_c00390{left:45.000000px;}
.xb_c00390{left:46.950000px;}
.xe_c00390{left:48.601500px;}
.xc_c00390{left:52.950000px;}
.x4_c00390{left:59.700000px;}
.x7_c00390{left:67.950000px;}
.xa_c00390{left:71.250000px;}
.xf_c00390{left:157.051500px;}
.xd_c00390{left:167.700000px;}
.x10_c00390{left:238.014267px;}
.x1_c00390{left:272.400000px;}
.x8_c00390{left:474.300000px;}
.x6_c00390{left:477.900000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls6_c00390{letter-spacing:0.000000pt;}
.ls5_c00390{letter-spacing:4.298667pt;}
.ls0_c00390{letter-spacing:4.400000pt;}
.ls2_c00390{letter-spacing:5.333333pt;}
.ls7_c00390{letter-spacing:8.000000pt;}
.ls4_c00390{letter-spacing:10.698667pt;}
.ls1_c00390{letter-spacing:13.690667pt;}
.ls8_c00390{letter-spacing:24.000000pt;}
.ls3_c00390{letter-spacing:26.165333pt;}
.ws3_c00390{word-spacing:-26.976000pt;}
.ws8_c00390{word-spacing:-26.160000pt;}
.ws2_c00390{word-spacing:-22.781333pt;}
.ws6_c00390{word-spacing:-22.666667pt;}
.ws4_c00390{word-spacing:-20.000000pt;}
.ws0_c00390{word-spacing:-16.933333pt;}
.ws7_c00390{word-spacing:-16.309333pt;}
.ws5_c00390{word-spacing:-13.546667pt;}
.ws1_c00390{word-spacing:-11.568000pt;}
.ws9_c00390{word-spacing:0.000000pt;}
._3a_c00390{margin-left:-33.853333pt;}
._3c_c00390{margin-left:-27.712000pt;}
._33_c00390{margin-left:-25.813333pt;}
._31_c00390{margin-left:-23.416000pt;}
._25_c00390{margin-left:-21.712000pt;}
._30_c00390{margin-left:-20.736000pt;}
._23_c00390{margin-left:-19.749333pt;}
._21_c00390{margin-left:-18.768000pt;}
._2a_c00390{margin-left:-17.000000pt;}
._29_c00390{margin-left:-15.778667pt;}
._1_c00390{margin-left:-14.800000pt;}
._2_c00390{margin-left:-13.600000pt;}
._3b_c00390{margin-left:-12.709333pt;}
._0_c00390{margin-left:-11.800000pt;}
._1a_c00390{margin-left:-10.373333pt;}
._35_c00390{margin-left:-9.373333pt;}
._1e_c00390{margin-left:-8.464000pt;}
._b_c00390{margin-left:-7.360000pt;}
._e_c00390{margin-left:-6.317333pt;}
._4_c00390{margin-left:-5.090667pt;}
._3_c00390{margin-left:-3.741333pt;}
._7_c00390{margin-left:-2.330667pt;}
._5_c00390{margin-left:-1.165333pt;}
._d_c00390{width:1.165333pt;}
._6_c00390{width:2.698667pt;}
._c_c00390{width:3.864000pt;}
._15_c00390{width:4.773333pt;}
._8_c00390{width:5.765333pt;}
._19_c00390{width:6.840000pt;}
._14_c00390{width:8.136000pt;}
._12_c00390{width:9.162667pt;}
._3d_c00390{width:10.213333pt;}
._9_c00390{width:11.162667pt;}
._13_c00390{width:12.706667pt;}
._a_c00390{width:13.677333pt;}
._16_c00390{width:15.530667pt;}
._1f_c00390{width:16.549333pt;}
._f_c00390{width:17.538667pt;}
._1b_c00390{width:18.664000pt;}
._18_c00390{width:19.608000pt;}
._28_c00390{width:24.400000pt;}
._22_c00390{width:26.066667pt;}
._3e_c00390{width:27.768000pt;}
._1d_c00390{width:29.349333pt;}
._2f_c00390{width:36.741333pt;}
._26_c00390{width:38.517333pt;}
._24_c00390{width:56.037333pt;}
._2e_c00390{width:57.368000pt;}
._39_c00390{width:73.498667pt;}
._34_c00390{width:74.957333pt;}
._10_c00390{width:80.088000pt;}
._17_c00390{width:93.824000pt;}
._2d_c00390{width:94.970667pt;}
._2b_c00390{width:96.696000pt;}
._27_c00390{width:129.125333pt;}
._11_c00390{width:138.133333pt;}
._1c_c00390{width:141.557333pt;}
._2c_c00390{width:147.760000pt;}
._20_c00390{width:150.256000pt;}
._36_c00390{width:154.821333pt;}
._32_c00390{width:285.533333pt;}
._37_c00390{width:474.733333pt;}
._38_c00390{width:494.864000pt;}
.fs7_c00390{font-size:32.000000pt;}
.fs6_c00390{font-size:40.000000pt;}
.fs8_c00390{font-size:42.666667pt;}
.fs2_c00390{font-size:48.000000pt;}
.fs4_c00390{font-size:53.333333pt;}
.fs3_c00390{font-size:58.666667pt;}
.fs1_c00390{font-size:61.333333pt;}
.fs0_c00390{font-size:66.666667pt;}
.fs5_c00390{font-size:69.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y27_c00390{bottom:2.760000pt;}
.y26_c00390{bottom:6.425219pt;}
.y25_c00390{bottom:42.413333pt;}
.y24_c00390{bottom:65.213333pt;}
.y23_c00390{bottom:80.680000pt;}
.y22_c00390{bottom:94.280000pt;}
.y21_c00390{bottom:117.613333pt;}
.y20_c00390{bottom:139.613333pt;}
.y1f_c00390{bottom:155.080000pt;}
.y1e_c00390{bottom:173.213333pt;}
.y1d_c00390{bottom:195.346667pt;}
.y1c_c00390{bottom:215.213333pt;}
.y1b_c00390{bottom:230.680000pt;}
.y1a_c00390{bottom:246.413333pt;}
.y19_c00390{bottom:261.880000pt;}
.y18_c00390{bottom:277.213333pt;}
.y17_c00390{bottom:293.080000pt;}
.y16_c00390{bottom:308.680000pt;}
.y15_c00390{bottom:324.280000pt;}
.y14_c00390{bottom:342.280000pt;}
.y13_c00390{bottom:363.613333pt;}
.y12_c00390{bottom:385.480000pt;}
.y11_c00390{bottom:408.013333pt;}
.y10_c00390{bottom:429.080000pt;}
.yf_c00390{bottom:449.213333pt;}
.ye_c00390{bottom:464.413333pt;}
.yd_c00390{bottom:480.013333pt;}
.yc_c00390{bottom:495.080000pt;}
.yb_c00390{bottom:510.946667pt;}
.ya_c00390{bottom:526.546667pt;}
.y9_c00390{bottom:542.146667pt;}
.y8_c00390{bottom:557.746667pt;}
.y7_c00390{bottom:573.080000pt;}
.y6_c00390{bottom:588.680000pt;}
.y5_c00390{bottom:604.280000pt;}
.y4_c00390{bottom:622.013333pt;}
.y3_c00390{bottom:644.146667pt;}
.y2_c00390{bottom:666.413333pt;}
.y1_c00390{bottom:688.546667pt;}
.h7_c00390{height:11.733399pt;}
.h8_c00390{height:38.937500pt;}
.h5_c00390{height:51.216000pt;}
.h4_c00390{height:60.773438pt;}
.h3_c00390{height:77.654948pt;}
.h2_c00390{height:78.027344pt;}
.h6_c00390{height:84.407552pt;}
.h1_c00390{height:726.666667pt;}
.h0_c00390{height:726.733333pt;}
.w2_c00390{width:93.222667pt;}
.w1_c00390{width:508.666667pt;}
.w0_c00390{width:508.800000pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:36.400000pt;}
.x3_c00390{left:37.600000pt;}
.x5_c00390{left:39.066667pt;}
.x9_c00390{left:40.000000pt;}
.xb_c00390{left:41.733333pt;}
.xe_c00390{left:43.201333pt;}
.xc_c00390{left:47.066667pt;}
.x4_c00390{left:53.066667pt;}
.x7_c00390{left:60.400000pt;}
.xa_c00390{left:63.333333pt;}
.xf_c00390{left:139.601333pt;}
.xd_c00390{left:149.066667pt;}
.x10_c00390{left:211.568237pt;}
.x1_c00390{left:242.133333pt;}
.x8_c00390{left:421.600000pt;}
.x6_c00390{left:424.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_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_6eca1fa5e35bcf7d157d4676.woff2')format("woff");}.ff1_c00391{font-family:ff1_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:ff2_c00391;src:url('chunks/assets/font_59e19266f864e2f513bbb1ae.woff2')format("woff");}.ff2_c00391{font-family:ff2_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:ff3_c00391;src:url('chunks/assets/font_7335ab24618bbe09715d7d4c.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;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_c00391;src:url('chunks/assets/font_c97f62a8a992b5103a510a73.woff2')format("woff");}.ff4_c00391{font-family:ff4_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:ff5_c00391;src:url('chunks/assets/font_11171975379ef604ef4bd12b.woff2')format("woff");}.ff5_c00391{font-family:ff5_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:ff6_c00391;src:url('chunks/assets/font_21f483b02c24c9fa43790033.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;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_c00391;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:0.600000px;}
.ls2_c00391{letter-spacing:2.160000px;}
.ls3_c00391{letter-spacing:6.000000px;}
.ls5_c00391{letter-spacing:9.000000px;}
.ls1_c00391{letter-spacing:10.200000px;}
.ls6_c00391{letter-spacing:18.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00391{word-spacing:-37.752000px;}
.ws2_c00391{word-spacing:-34.629000px;}
.ws1_c00391{word-spacing:-25.629000px;}
.ws3_c00391{word-spacing:-16.629000px;}
.ws0_c00391{word-spacing:-12.735000px;}
.ws5_c00391{word-spacing:0.000000px;}
._5_c00391{margin-left:-28.773000px;}
._17_c00391{margin-left:-25.230000px;}
._1a_c00391{margin-left:-18.009000px;}
._b_c00391{margin-left:-16.080000px;}
._9_c00391{margin-left:-14.100000px;}
._4_c00391{margin-left:-12.972000px;}
._21_c00391{margin-left:-10.971000px;}
._14_c00391{margin-left:-9.798000px;}
._2_c00391{margin-left:-8.556000px;}
._1b_c00391{margin-left:-7.452000px;}
._11_c00391{margin-left:-6.279000px;}
._7_c00391{margin-left:-4.968000px;}
._10_c00391{margin-left:-3.795000px;}
._3_c00391{margin-left:-2.070000px;}
._13_c00391{margin-left:-1.035000px;}
._8_c00391{width:2.001000px;}
._e_c00391{width:3.726000px;}
._16_c00391{width:5.451000px;}
._0_c00391{width:6.831000px;}
._15_c00391{width:8.619000px;}
._20_c00391{width:10.107000px;}
._1_c00391{width:11.109000px;}
._1d_c00391{width:12.732000px;}
._19_c00391{width:14.559000px;}
._24_c00391{width:15.939000px;}
._1e_c00391{width:17.280000px;}
._d_c00391{width:18.495000px;}
._12_c00391{width:20.622000px;}
._18_c00391{width:22.356000px;}
._26_c00391{width:24.561000px;}
._22_c00391{width:26.619000px;}
._27_c00391{width:33.156000px;}
._f_c00391{width:37.122000px;}
._25_c00391{width:40.518000px;}
._1f_c00391{width:89.823000px;}
._23_c00391{width:115.119000px;}
._1c_c00391{width:128.214000px;}
._6_c00391{width:362.850000px;}
._c_c00391{width:433.740000px;}
._a_c00391{width:815.940000px;}
.fc2_c00391{color:transparent;}
.fc1_c00391{color:rgb(128,128,128);}
.fc0_c00391{color:rgb(0,0,0);}
.fs1_c00391{font-size:45.000000px;}
.fs5_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:60.000000px;}
.fs3_c00391{font-size:66.000000px;}
.fs0_c00391{font-size:69.000000px;}
.y0_c00391{bottom:0.000000px;}
.y21_c00391{bottom:3.105000px;}
.y20_c00391{bottom:7.228363px;}
.y1e_c00391{bottom:66.600000px;}
.y1d_c00391{bottom:90.450000px;}
.y1c_c00391{bottom:116.550000px;}
.y1b_c00391{bottom:141.450000px;}
.y1a_c00391{bottom:166.800000px;}
.y19_c00391{bottom:191.700000px;}
.y18_c00391{bottom:216.750000px;}
.y17_c00391{bottom:241.650000px;}
.y16_c00391{bottom:266.700000px;}
.y15_c00391{bottom:291.600000px;}
.y14_c00391{bottom:316.650000px;}
.y13_c00391{bottom:340.650000px;}
.y12_c00391{bottom:365.250000px;}
.y11_c00391{bottom:390.600000px;}
.y10_c00391{bottom:415.800000px;}
.y1f_c00391{bottom:425.700000px;}
.yf_c00391{bottom:441.150000px;}
.ye_c00391{bottom:464.850000px;}
.yd_c00391{bottom:490.350000px;}
.yc_c00391{bottom:516.000000px;}
.yb_c00391{bottom:540.000000px;}
.ya_c00391{bottom:565.050000px;}
.y9_c00391{bottom:589.650000px;}
.y8_c00391{bottom:615.000000px;}
.y7_c00391{bottom:639.600000px;}
.y6_c00391{bottom:664.950000px;}
.y5_c00391{bottom:689.850000px;}
.y4_c00391{bottom:714.600000px;}
.y3_c00391{bottom:739.500000px;}
.y2_c00391{bottom:774.600000px;}
.y1_c00391{bottom:789.300000px;}
.h6_c00391{height:13.200074px;}
.h7_c00391{height:43.804688px;}
.h5_c00391{height:58.536000px;}
.h3_c00391{height:75.966797px;}
.h4_c00391{height:83.563477px;}
.h2_c00391{height:87.361816px;}
.h1_c00391{height:827.250000px;}
.h0_c00391{height:827.550000px;}
.w2_c00391{width:104.875500px;}
.w0_c00391{width:572.100000px;}
.w1_c00391{width:572.250000px;}
.x0_c00391{left:0.000000px;}
.xe_c00391{left:27.300000px;}
.x9_c00391{left:29.250000px;}
.xb_c00391{left:41.850000px;}
.xa_c00391{left:44.550000px;}
.x8_c00391{left:75.600000px;}
.x6_c00391{left:83.400000px;}
.xc_c00391{left:91.500000px;}
.x5_c00391{left:93.450000px;}
.x7_c00391{left:94.500000px;}
.x1_c00391{left:108.450000px;}
.x4_c00391{left:118.200000px;}
.x2_c00391{left:213.000000px;}
.xf_c00391{left:237.864258px;}
.x3_c00391{left:271.650000px;}
.xd_c00391{left:514.650000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls4_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.533333pt;}
.ls2_c00391{letter-spacing:1.920000pt;}
.ls3_c00391{letter-spacing:5.333333pt;}
.ls5_c00391{letter-spacing:8.000000pt;}
.ls1_c00391{letter-spacing:9.066667pt;}
.ls6_c00391{letter-spacing:16.000000pt;}
.ws4_c00391{word-spacing:-33.557333pt;}
.ws2_c00391{word-spacing:-30.781333pt;}
.ws1_c00391{word-spacing:-22.781333pt;}
.ws3_c00391{word-spacing:-14.781333pt;}
.ws0_c00391{word-spacing:-11.320000pt;}
.ws5_c00391{word-spacing:0.000000pt;}
._5_c00391{margin-left:-25.576000pt;}
._17_c00391{margin-left:-22.426667pt;}
._1a_c00391{margin-left:-16.008000pt;}
._b_c00391{margin-left:-14.293333pt;}
._9_c00391{margin-left:-12.533333pt;}
._4_c00391{margin-left:-11.530667pt;}
._21_c00391{margin-left:-9.752000pt;}
._14_c00391{margin-left:-8.709333pt;}
._2_c00391{margin-left:-7.605333pt;}
._1b_c00391{margin-left:-6.624000pt;}
._11_c00391{margin-left:-5.581333pt;}
._7_c00391{margin-left:-4.416000pt;}
._10_c00391{margin-left:-3.373333pt;}
._3_c00391{margin-left:-1.840000pt;}
._13_c00391{margin-left:-0.920000pt;}
._8_c00391{width:1.778667pt;}
._e_c00391{width:3.312000pt;}
._16_c00391{width:4.845333pt;}
._0_c00391{width:6.072000pt;}
._15_c00391{width:7.661333pt;}
._20_c00391{width:8.984000pt;}
._1_c00391{width:9.874667pt;}
._1d_c00391{width:11.317333pt;}
._19_c00391{width:12.941333pt;}
._24_c00391{width:14.168000pt;}
._1e_c00391{width:15.360000pt;}
._d_c00391{width:16.440000pt;}
._12_c00391{width:18.330667pt;}
._18_c00391{width:19.872000pt;}
._26_c00391{width:21.832000pt;}
._22_c00391{width:23.661333pt;}
._27_c00391{width:29.472000pt;}
._f_c00391{width:32.997333pt;}
._25_c00391{width:36.016000pt;}
._1f_c00391{width:79.842667pt;}
._23_c00391{width:102.328000pt;}
._1c_c00391{width:113.968000pt;}
._6_c00391{width:322.533333pt;}
._c_c00391{width:385.546667pt;}
._a_c00391{width:725.280000pt;}
.fs1_c00391{font-size:40.000000pt;}
.fs5_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:53.333333pt;}
.fs3_c00391{font-size:58.666667pt;}
.fs0_c00391{font-size:61.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y21_c00391{bottom:2.760000pt;}
.y20_c00391{bottom:6.425212pt;}
.y1e_c00391{bottom:59.200000pt;}
.y1d_c00391{bottom:80.400000pt;}
.y1c_c00391{bottom:103.600000pt;}
.y1b_c00391{bottom:125.733333pt;}
.y1a_c00391{bottom:148.266667pt;}
.y19_c00391{bottom:170.400000pt;}
.y18_c00391{bottom:192.666667pt;}
.y17_c00391{bottom:214.800000pt;}
.y16_c00391{bottom:237.066667pt;}
.y15_c00391{bottom:259.200000pt;}
.y14_c00391{bottom:281.466667pt;}
.y13_c00391{bottom:302.800000pt;}
.y12_c00391{bottom:324.666667pt;}
.y11_c00391{bottom:347.200000pt;}
.y10_c00391{bottom:369.600000pt;}
.y1f_c00391{bottom:378.400000pt;}
.yf_c00391{bottom:392.133333pt;}
.ye_c00391{bottom:413.200000pt;}
.yd_c00391{bottom:435.866667pt;}
.yc_c00391{bottom:458.666667pt;}
.yb_c00391{bottom:480.000000pt;}
.ya_c00391{bottom:502.266667pt;}
.y9_c00391{bottom:524.133333pt;}
.y8_c00391{bottom:546.666667pt;}
.y7_c00391{bottom:568.533333pt;}
.y6_c00391{bottom:591.066667pt;}
.y5_c00391{bottom:613.200000pt;}
.y4_c00391{bottom:635.200000pt;}
.y3_c00391{bottom:657.333333pt;}
.y2_c00391{bottom:688.533333pt;}
.y1_c00391{bottom:701.600000pt;}
.h6_c00391{height:11.733399pt;}
.h7_c00391{height:38.937500pt;}
.h5_c00391{height:52.032000pt;}
.h3_c00391{height:67.526042pt;}
.h4_c00391{height:74.278646pt;}
.h2_c00391{height:77.654948pt;}
.h1_c00391{height:735.333333pt;}
.h0_c00391{height:735.600000pt;}
.w2_c00391{width:93.222667pt;}
.w0_c00391{width:508.533333pt;}
.w1_c00391{width:508.666667pt;}
.x0_c00391{left:0.000000pt;}
.xe_c00391{left:24.266667pt;}
.x9_c00391{left:26.000000pt;}
.xb_c00391{left:37.200000pt;}
.xa_c00391{left:39.600000pt;}
.x8_c00391{left:67.200000pt;}
.x6_c00391{left:74.133333pt;}
.xc_c00391{left:81.333333pt;}
.x5_c00391{left:83.066667pt;}
.x7_c00391{left:84.000000pt;}
.x1_c00391{left:96.400000pt;}
.x4_c00391{left:105.066667pt;}
.x2_c00391{left:189.333333pt;}
.xf_c00391{left:211.434896pt;}
.x3_c00391{left:241.466667pt;}
.xd_c00391{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_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_2fa284389d3fc9e00fefcf72.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_0bd742160c6a7ae5923bf1fd.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_f5b6f8c2fc0b17875e868b61.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;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_c00392;src:url('chunks/assets/font_fb6cded9fbc8a30cbffa3310.woff2')format("woff");}.ff4_c00392{font-family:ff4_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:ff5_c00392;src:url('chunks/assets/font_5b57f5c935f779df6f19d054.woff2')format("woff");}.ff5_c00392{font-family:ff5_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:ff6_c00392;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls1_c00392{letter-spacing:3.000000px;}
.ls3_c00392{letter-spacing:6.000000px;}
.ls2_c00392{letter-spacing:9.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;}
}
.ws4_c00392{word-spacing:-33.825000px;}
.ws3_c00392{word-spacing:-27.798000px;}
.ws2_c00392{word-spacing:-22.014000px;}
.ws0_c00392{word-spacing:-16.629000px;}
.ws5_c00392{word-spacing:0.000000px;}
.ws1_c00392{word-spacing:0.681000px;}
._26_c00392{margin-left:-41.283000px;}
._24_c00392{margin-left:-16.395000px;}
._22_c00392{margin-left:-15.240000px;}
._1_c00392{margin-left:-12.834000px;}
._2_c00392{margin-left:-10.419000px;}
._21_c00392{margin-left:-9.282000px;}
._23_c00392{margin-left:-8.169000px;}
._0_c00392{margin-left:-6.900000px;}
._10_c00392{margin-left:-5.898000px;}
._3_c00392{margin-left:-4.278000px;}
._4_c00392{margin-left:-3.243000px;}
._5_c00392{margin-left:-1.656000px;}
._7_c00392{width:1.035000px;}
._9_c00392{width:2.415000px;}
._8_c00392{width:3.588000px;}
._f_c00392{width:5.382000px;}
._16_c00392{width:6.843000px;}
._11_c00392{width:7.866000px;}
._1c_c00392{width:8.913000px;}
._12_c00392{width:10.074000px;}
._e_c00392{width:11.661000px;}
._14_c00392{width:12.765000px;}
._15_c00392{width:14.283000px;}
._1a_c00392{width:15.387000px;}
._a_c00392{width:16.422000px;}
._17_c00392{width:17.859000px;}
._27_c00392{width:19.725000px;}
._1b_c00392{width:21.033000px;}
._1f_c00392{width:22.080000px;}
._b_c00392{width:23.598000px;}
._c_c00392{width:26.013000px;}
._d_c00392{width:28.704000px;}
._25_c00392{width:30.822000px;}
._19_c00392{width:35.361000px;}
._20_c00392{width:37.365000px;}
._1e_c00392{width:169.923000px;}
._1d_c00392{width:173.085000px;}
._18_c00392{width:178.917000px;}
._13_c00392{width:180.573000px;}
._28_c00392{width:215.421000px;}
._6_c00392{width:500.670000px;}
._2a_c00392{width:688.251000px;}
._29_c00392{width:917.082000px;}
.fc2_c00392{color:transparent;}
.fc1_c00392{color:rgb(128,128,128);}
.fc0_c00392{color:rgb(0,0,0);}
.fs5_c00392{font-size:48.000000px;}
.fs1_c00392{font-size:54.000000px;}
.fs4_c00392{font-size:57.000000px;}
.fs0_c00392{font-size:69.000000px;}
.fs3_c00392{font-size:75.000000px;}
.fs2_c00392{font-size:78.000000px;}
.y0_c00392{bottom:0.000000px;}
.y22_c00392{bottom:3.105000px;}
.y21_c00392{bottom:7.228357px;}
.y20_c00392{bottom:52.380000px;}
.y1f_c00392{bottom:76.380000px;}
.y1e_c00392{bottom:101.580000px;}
.y1d_c00392{bottom:126.330000px;}
.y1c_c00392{bottom:151.980000px;}
.y1b_c00392{bottom:177.480000px;}
.y1a_c00392{bottom:201.930000px;}
.y19_c00392{bottom:227.130000px;}
.y18_c00392{bottom:276.780000px;}
.y17_c00392{bottom:323.730000px;}
.y16_c00392{bottom:341.280000px;}
.y15_c00392{bottom:358.530000px;}
.y14_c00392{bottom:376.380000px;}
.y13_c00392{bottom:393.630000px;}
.y12_c00392{bottom:411.180000px;}
.y11_c00392{bottom:431.430000px;}
.y10_c00392{bottom:454.680000px;}
.yf_c00392{bottom:480.330000px;}
.ye_c00392{bottom:504.630000px;}
.yd_c00392{bottom:528.630000px;}
.yc_c00392{bottom:553.230000px;}
.yb_c00392{bottom:578.130000px;}
.ya_c00392{bottom:603.180000px;}
.y9_c00392{bottom:627.780000px;}
.y2_c00392{bottom:643.380000px;}
.y8_c00392{bottom:652.380000px;}
.y1_c00392{bottom:656.130000px;}
.y7_c00392{bottom:677.430000px;}
.y6_c00392{bottom:702.030000px;}
.y5_c00392{bottom:727.080000px;}
.y4_c00392{bottom:751.380000px;}
.y3_c00392{bottom:775.680000px;}
.h9_c00392{height:13.200074px;}
.ha_c00392{height:43.804688px;}
.h4_c00392{height:68.370117px;}
.h8_c00392{height:72.168457px;}
.h2_c00392{height:80.758301px;}
.h3_c00392{height:87.361816px;}
.h6_c00392{height:91.291992px;}
.h7_c00392{height:94.958496px;}
.h5_c00392{height:98.756836px;}
.h1_c00392{height:811.500000px;}
.h0_c00392{height:811.650000px;}
.w2_c00392{width:104.875500px;}
.w1_c00392{width:568.500000px;}
.w0_c00392{width:568.650000px;}
.x0_c00392{left:0.000000px;}
.xb_c00392{left:34.650000px;}
.xa_c00392{left:36.000000px;}
.x6_c00392{left:37.050000px;}
.x4_c00392{left:38.400000px;}
.x5_c00392{left:39.450000px;}
.xd_c00392{left:43.500000px;}
.xc_c00392{left:51.900000px;}
.x7_c00392{left:55.650000px;}
.x9_c00392{left:64.350000px;}
.x3_c00392{left:197.700000px;}
.x8_c00392{left:210.900000px;}
.xe_c00392{left:236.139267px;}
.x2_c00392{left:495.150000px;}
.x1_c00392{left:511.200000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ls1_c00392{letter-spacing:2.666667pt;}
.ls3_c00392{letter-spacing:5.333333pt;}
.ls2_c00392{letter-spacing:8.000000pt;}
.ws4_c00392{word-spacing:-30.066667pt;}
.ws3_c00392{word-spacing:-24.709333pt;}
.ws2_c00392{word-spacing:-19.568000pt;}
.ws0_c00392{word-spacing:-14.781333pt;}
.ws5_c00392{word-spacing:0.000000pt;}
.ws1_c00392{word-spacing:0.605333pt;}
._26_c00392{margin-left:-36.696000pt;}
._24_c00392{margin-left:-14.573333pt;}
._22_c00392{margin-left:-13.546667pt;}
._1_c00392{margin-left:-11.408000pt;}
._2_c00392{margin-left:-9.261333pt;}
._21_c00392{margin-left:-8.250667pt;}
._23_c00392{margin-left:-7.261333pt;}
._0_c00392{margin-left:-6.133333pt;}
._10_c00392{margin-left:-5.242667pt;}
._3_c00392{margin-left:-3.802667pt;}
._4_c00392{margin-left:-2.882667pt;}
._5_c00392{margin-left:-1.472000pt;}
._7_c00392{width:0.920000pt;}
._9_c00392{width:2.146667pt;}
._8_c00392{width:3.189333pt;}
._f_c00392{width:4.784000pt;}
._16_c00392{width:6.082667pt;}
._11_c00392{width:6.992000pt;}
._1c_c00392{width:7.922667pt;}
._12_c00392{width:8.954667pt;}
._e_c00392{width:10.365333pt;}
._14_c00392{width:11.346667pt;}
._15_c00392{width:12.696000pt;}
._1a_c00392{width:13.677333pt;}
._a_c00392{width:14.597333pt;}
._17_c00392{width:15.874667pt;}
._27_c00392{width:17.533333pt;}
._1b_c00392{width:18.696000pt;}
._1f_c00392{width:19.626667pt;}
._b_c00392{width:20.976000pt;}
._c_c00392{width:23.122667pt;}
._d_c00392{width:25.514667pt;}
._25_c00392{width:27.397333pt;}
._19_c00392{width:31.432000pt;}
._20_c00392{width:33.213333pt;}
._1e_c00392{width:151.042667pt;}
._1d_c00392{width:153.853333pt;}
._18_c00392{width:159.037333pt;}
._13_c00392{width:160.509333pt;}
._28_c00392{width:191.485333pt;}
._6_c00392{width:445.040000pt;}
._2a_c00392{width:611.778667pt;}
._29_c00392{width:815.184000pt;}
.fs5_c00392{font-size:42.666667pt;}
.fs1_c00392{font-size:48.000000pt;}
.fs4_c00392{font-size:50.666667pt;}
.fs0_c00392{font-size:61.333333pt;}
.fs3_c00392{font-size:66.666667pt;}
.fs2_c00392{font-size:69.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y22_c00392{bottom:2.760000pt;}
.y21_c00392{bottom:6.425206pt;}
.y20_c00392{bottom:46.560000pt;}
.y1f_c00392{bottom:67.893333pt;}
.y1e_c00392{bottom:90.293333pt;}
.y1d_c00392{bottom:112.293333pt;}
.y1c_c00392{bottom:135.093333pt;}
.y1b_c00392{bottom:157.760000pt;}
.y1a_c00392{bottom:179.493333pt;}
.y19_c00392{bottom:201.893333pt;}
.y18_c00392{bottom:246.026667pt;}
.y17_c00392{bottom:287.760000pt;}
.y16_c00392{bottom:303.360000pt;}
.y15_c00392{bottom:318.693333pt;}
.y14_c00392{bottom:334.560000pt;}
.y13_c00392{bottom:349.893333pt;}
.y12_c00392{bottom:365.493333pt;}
.y11_c00392{bottom:383.493333pt;}
.y10_c00392{bottom:404.160000pt;}
.yf_c00392{bottom:426.960000pt;}
.ye_c00392{bottom:448.560000pt;}
.yd_c00392{bottom:469.893333pt;}
.yc_c00392{bottom:491.760000pt;}
.yb_c00392{bottom:513.893333pt;}
.ya_c00392{bottom:536.160000pt;}
.y9_c00392{bottom:558.026667pt;}
.y2_c00392{bottom:571.893333pt;}
.y8_c00392{bottom:579.893333pt;}
.y1_c00392{bottom:583.226667pt;}
.y7_c00392{bottom:602.160000pt;}
.y6_c00392{bottom:624.026667pt;}
.y5_c00392{bottom:646.293333pt;}
.y4_c00392{bottom:667.893333pt;}
.y3_c00392{bottom:689.493333pt;}
.h9_c00392{height:11.733399pt;}
.ha_c00392{height:38.937500pt;}
.h4_c00392{height:60.773438pt;}
.h8_c00392{height:64.149740pt;}
.h2_c00392{height:71.785156pt;}
.h3_c00392{height:77.654948pt;}
.h6_c00392{height:81.148438pt;}
.h7_c00392{height:84.407552pt;}
.h5_c00392{height:87.783854pt;}
.h1_c00392{height:721.333333pt;}
.h0_c00392{height:721.466667pt;}
.w2_c00392{width:93.222667pt;}
.w1_c00392{width:505.333333pt;}
.w0_c00392{width:505.466667pt;}
.x0_c00392{left:0.000000pt;}
.xb_c00392{left:30.800000pt;}
.xa_c00392{left:32.000000pt;}
.x6_c00392{left:32.933333pt;}
.x4_c00392{left:34.133333pt;}
.x5_c00392{left:35.066667pt;}
.xd_c00392{left:38.666667pt;}
.xc_c00392{left:46.133333pt;}
.x7_c00392{left:49.466667pt;}
.x9_c00392{left:57.200000pt;}
.x3_c00392{left:175.733333pt;}
.x8_c00392{left:187.466667pt;}
.xe_c00392{left:209.901571pt;}
.x2_c00392{left:440.133333pt;}
.x1_c00392{left:454.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_089510d0d6d8c3460deb1b9c.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_d7a06c9707af885eaa6e7e1d.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.568848;font-style:normal;font-weight:normal;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_a18845786dc65d157af4a0bf.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.480469;font-style:normal;font-weight:normal;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_4fa36cc3abf92e586e45615b.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_fb4b75823b62d109d75d9a0a.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00393;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00393{font-family:ff7_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;}
.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);}
.m1_c00393{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);}
.m2_c00393{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls3_c00393{letter-spacing:0.000000px;}
.ls2_c00393{letter-spacing:1.800000px;}
.ls1_c00393{letter-spacing:3.000000px;}
.ls4_c00393{letter-spacing:6.000000px;}
.ls0_c00393{letter-spacing:10.200000px;}
.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;}
}
.ws2_c00393{word-spacing:-19.629000px;}
.ws1_c00393{word-spacing:-16.629000px;}
.ws0_c00393{word-spacing:-13.014000px;}
.ws3_c00393{word-spacing:0.000000px;}
._1d_c00393{margin-left:-57.891000px;}
._1f_c00393{margin-left:-54.027000px;}
._d_c00393{margin-left:-15.138000px;}
._20_c00393{margin-left:-13.317000px;}
._15_c00393{margin-left:-10.557000px;}
._10_c00393{margin-left:-9.399000px;}
._11_c00393{margin-left:-8.142000px;}
._17_c00393{margin-left:-6.933000px;}
._0_c00393{margin-left:-5.850000px;}
._6_c00393{margin-left:-3.876000px;}
._4_c00393{margin-left:-2.001000px;}
._2_c00393{width:1.944000px;}
._5_c00393{width:2.967000px;}
._3_c00393{width:4.059000px;}
._12_c00393{width:5.118000px;}
._c_c00393{width:6.282000px;}
._7_c00393{width:7.302000px;}
._e_c00393{width:8.355000px;}
._b_c00393{width:10.353000px;}
._a_c00393{width:12.348000px;}
._9_c00393{width:13.395000px;}
._f_c00393{width:15.411000px;}
._8_c00393{width:17.319000px;}
._13_c00393{width:18.561000px;}
._16_c00393{width:20.631000px;}
._18_c00393{width:22.758000px;}
._19_c00393{width:25.626000px;}
._14_c00393{width:28.311000px;}
._1a_c00393{width:48.600000px;}
._1_c00393{width:54.750000px;}
._1b_c00393{width:103.500000px;}
._21_c00393{width:214.656000px;}
._1e_c00393{width:318.504000px;}
._1c_c00393{width:471.753000px;}
.fc2_c00393{color:transparent;}
.fc1_c00393{color:rgb(128,128,128);}
.fc0_c00393{color:rgb(0,0,0);}
.fs0_c00393{font-size:45.000000px;}
.fs6_c00393{font-size:48.000000px;}
.fs2_c00393{font-size:54.000000px;}
.fs4_c00393{font-size:57.000000px;}
.fs3_c00393{font-size:66.000000px;}
.fs1_c00393{font-size:69.000000px;}
.fs5_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y21_c00393{bottom:3.105000px;}
.y20_c00393{bottom:7.228357px;}
.y1f_c00393{bottom:56.730000px;}
.y1e_c00393{bottom:81.330000px;}
.y1d_c00393{bottom:132.030000px;}
.y1c_c00393{bottom:173.130000px;}
.y1b_c00393{bottom:189.780000px;}
.y1a_c00393{bottom:208.230000px;}
.y19_c00393{bottom:225.780000px;}
.y18_c00393{bottom:243.630000px;}
.y17_c00393{bottom:261.180000px;}
.y16_c00393{bottom:282.180000px;}
.y15_c00393{bottom:305.130000px;}
.y14_c00393{bottom:330.180000px;}
.y13_c00393{bottom:354.480000px;}
.y12_c00393{bottom:379.680000px;}
.y11_c00393{bottom:405.030000px;}
.y10_c00393{bottom:429.630000px;}
.yf_c00393{bottom:454.230000px;}
.ye_c00393{bottom:479.580000px;}
.yd_c00393{bottom:504.330000px;}
.yc_c00393{bottom:529.230000px;}
.yb_c00393{bottom:554.130000px;}
.ya_c00393{bottom:578.880000px;}
.y9_c00393{bottom:603.780000px;}
.y8_c00393{bottom:628.530000px;}
.y7_c00393{bottom:653.130000px;}
.y2_c00393{bottom:670.680000px;}
.y6_c00393{bottom:678.330000px;}
.y1_c00393{bottom:684.780000px;}
.y5_c00393{bottom:703.080000px;}
.y4_c00393{bottom:727.980000px;}
.y3_c00393{bottom:752.730000px;}
.h6_c00393{height:13.200074px;}
.h7_c00393{height:43.804688px;}
.h2_c00393{height:68.370117px;}
.h3_c00393{height:72.168457px;}
.h5_c00393{height:80.758301px;}
.h1_c00393{height:87.361816px;}
.h4_c00393{height:91.160156px;}
.h0_c00393{height:819.750000px;}
.w2_c00393{width:104.875500px;}
.w1_c00393{width:566.250000px;}
.w0_c00393{width:566.475000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:15.450000px;}
.x1_c00393{left:17.550000px;}
.x5_c00393{left:76.350000px;}
.x9_c00393{left:81.000000px;}
.x8_c00393{left:82.050000px;}
.x6_c00393{left:83.700000px;}
.x3_c00393{left:85.650000px;}
.x4_c00393{left:86.700000px;}
.xc_c00393{left:88.800000px;}
.x7_c00393{left:102.900000px;}
.xb_c00393{left:106.050000px;}
.xd_c00393{left:160.650000px;}
.xe_c00393{left:212.400000px;}
.xf_c00393{left:221.100000px;}
.x10_c00393{left:235.051758px;}
.xa_c00393{left:251.400000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls3_c00393{letter-spacing:0.000000pt;}
.ls2_c00393{letter-spacing:1.600000pt;}
.ls1_c00393{letter-spacing:2.666667pt;}
.ls4_c00393{letter-spacing:5.333333pt;}
.ls0_c00393{letter-spacing:9.066667pt;}
.ws2_c00393{word-spacing:-17.448000pt;}
.ws1_c00393{word-spacing:-14.781333pt;}
.ws0_c00393{word-spacing:-11.568000pt;}
.ws3_c00393{word-spacing:0.000000pt;}
._1d_c00393{margin-left:-51.458667pt;}
._1f_c00393{margin-left:-48.024000pt;}
._d_c00393{margin-left:-13.456000pt;}
._20_c00393{margin-left:-11.837333pt;}
._15_c00393{margin-left:-9.384000pt;}
._10_c00393{margin-left:-8.354667pt;}
._11_c00393{margin-left:-7.237333pt;}
._17_c00393{margin-left:-6.162667pt;}
._0_c00393{margin-left:-5.200000pt;}
._6_c00393{margin-left:-3.445333pt;}
._4_c00393{margin-left:-1.778667pt;}
._2_c00393{width:1.728000pt;}
._5_c00393{width:2.637333pt;}
._3_c00393{width:3.608000pt;}
._12_c00393{width:4.549333pt;}
._c_c00393{width:5.584000pt;}
._7_c00393{width:6.490667pt;}
._e_c00393{width:7.426667pt;}
._b_c00393{width:9.202667pt;}
._a_c00393{width:10.976000pt;}
._9_c00393{width:11.906667pt;}
._f_c00393{width:13.698667pt;}
._8_c00393{width:15.394667pt;}
._13_c00393{width:16.498667pt;}
._16_c00393{width:18.338667pt;}
._18_c00393{width:20.229333pt;}
._19_c00393{width:22.778667pt;}
._14_c00393{width:25.165333pt;}
._1a_c00393{width:43.200000pt;}
._1_c00393{width:48.666667pt;}
._1b_c00393{width:92.000000pt;}
._21_c00393{width:190.805333pt;}
._1e_c00393{width:283.114667pt;}
._1c_c00393{width:419.336000pt;}
.fs0_c00393{font-size:40.000000pt;}
.fs6_c00393{font-size:42.666667pt;}
.fs2_c00393{font-size:48.000000pt;}
.fs4_c00393{font-size:50.666667pt;}
.fs3_c00393{font-size:58.666667pt;}
.fs1_c00393{font-size:61.333333pt;}
.fs5_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y21_c00393{bottom:2.760000pt;}
.y20_c00393{bottom:6.425206pt;}
.y1f_c00393{bottom:50.426667pt;}
.y1e_c00393{bottom:72.293333pt;}
.y1d_c00393{bottom:117.360000pt;}
.y1c_c00393{bottom:153.893333pt;}
.y1b_c00393{bottom:168.693333pt;}
.y1a_c00393{bottom:185.093333pt;}
.y19_c00393{bottom:200.693333pt;}
.y18_c00393{bottom:216.560000pt;}
.y17_c00393{bottom:232.160000pt;}
.y16_c00393{bottom:250.826667pt;}
.y15_c00393{bottom:271.226667pt;}
.y14_c00393{bottom:293.493333pt;}
.y13_c00393{bottom:315.093333pt;}
.y12_c00393{bottom:337.493333pt;}
.y11_c00393{bottom:360.026667pt;}
.y10_c00393{bottom:381.893333pt;}
.yf_c00393{bottom:403.760000pt;}
.ye_c00393{bottom:426.293333pt;}
.yd_c00393{bottom:448.293333pt;}
.yc_c00393{bottom:470.426667pt;}
.yb_c00393{bottom:492.560000pt;}
.ya_c00393{bottom:514.560000pt;}
.y9_c00393{bottom:536.693333pt;}
.y8_c00393{bottom:558.693333pt;}
.y7_c00393{bottom:580.560000pt;}
.y2_c00393{bottom:596.160000pt;}
.y6_c00393{bottom:602.960000pt;}
.y1_c00393{bottom:608.693333pt;}
.y5_c00393{bottom:624.960000pt;}
.y4_c00393{bottom:647.093333pt;}
.y3_c00393{bottom:669.093333pt;}
.h6_c00393{height:11.733399pt;}
.h7_c00393{height:38.937500pt;}
.h2_c00393{height:60.773438pt;}
.h3_c00393{height:64.149740pt;}
.h5_c00393{height:71.785156pt;}
.h1_c00393{height:77.654948pt;}
.h4_c00393{height:81.031250pt;}
.h0_c00393{height:728.666667pt;}
.w2_c00393{width:93.222667pt;}
.w1_c00393{width:503.333333pt;}
.w0_c00393{width:503.533333pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:13.733333pt;}
.x1_c00393{left:15.600000pt;}
.x5_c00393{left:67.866667pt;}
.x9_c00393{left:72.000000pt;}
.x8_c00393{left:72.933333pt;}
.x6_c00393{left:74.400000pt;}
.x3_c00393{left:76.133333pt;}
.x4_c00393{left:77.066667pt;}
.xc_c00393{left:78.933333pt;}
.x7_c00393{left:91.466667pt;}
.xb_c00393{left:94.266667pt;}
.xd_c00393{left:142.800000pt;}
.xe_c00393{left:188.800000pt;}
.xf_c00393{left:196.533333pt;}
.x10_c00393{left:208.934896pt;}
.xa_c00393{left:223.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_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_bd089eb0bc0b4e3f6a770726.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_bb9de067027f9ddc4b71a091.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;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_c00394;src:url('chunks/assets/font_774ae489e6fcf1b7daccb5dd.woff2')format("woff");}.ff3_c00394{font-family:ff3_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:ff4_c00394;src:url('chunks/assets/font_9442fda3cf2f66c82c81505d.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00394{font-family:ff6_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);}
.v0_c00394{vertical-align:0.000000px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls3_c00394{letter-spacing:3.000000px;}
.ls2_c00394{letter-spacing:6.000000px;}
.ls0_c00394{letter-spacing:10.125000px;}
.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;}
}
.ws3_c00394{word-spacing:-44.022000px;}
.ws0_c00394{word-spacing:-16.629000px;}
.ws1_c00394{word-spacing:-1.758000px;}
.ws2_c00394{word-spacing:-0.552000px;}
.ws4_c00394{word-spacing:0.000000px;}
._15_c00394{margin-left:-25.548000px;}
._9_c00394{margin-left:-22.542000px;}
._e_c00394{margin-left:-17.316000px;}
._f_c00394{margin-left:-14.898000px;}
._c_c00394{margin-left:-12.870000px;}
._d_c00394{margin-left:-11.622000px;}
._4_c00394{margin-left:-9.906000px;}
._2_c00394{margin-left:-8.424000px;}
._5_c00394{margin-left:-7.254000px;}
._16_c00394{margin-left:-6.240000px;}
._3_c00394{margin-left:-5.226000px;}
._0_c00394{margin-left:-3.588000px;}
._23_c00394{margin-left:-2.580000px;}
._1_c00394{margin-left:-1.560000px;}
._1d_c00394{width:1.014000px;}
._7_c00394{width:2.028000px;}
._b_c00394{width:3.666000px;}
._18_c00394{width:4.686000px;}
._14_c00394{width:5.928000px;}
._17_c00394{width:7.590000px;}
._10_c00394{width:8.919000px;}
._1a_c00394{width:10.119000px;}
._12_c00394{width:11.700000px;}
._8_c00394{width:12.870000px;}
._a_c00394{width:13.884000px;}
._1e_c00394{width:15.384000px;}
._11_c00394{width:16.416000px;}
._13_c00394{width:17.706000px;}
._19_c00394{width:20.913000px;}
._1b_c00394{width:22.074000px;}
._20_c00394{width:23.433000px;}
._1c_c00394{width:25.641000px;}
._24_c00394{width:27.750000px;}
._22_c00394{width:29.454000px;}
._26_c00394{width:31.896000px;}
._1f_c00394{width:40.680000px;}
._25_c00394{width:92.841000px;}
._21_c00394{width:95.856000px;}
._27_c00394{width:107.436000px;}
._6_c00394{width:525.876000px;}
._28_c00394{width:551.976000px;}
.fc2_c00394{color:transparent;}
.fc1_c00394{color:rgb(128,128,128);}
.fc0_c00394{color:rgb(0,0,0);}
.fs4_c00394{font-size:48.000000px;}
.fs2_c00394{font-size:66.000000px;}
.fs1_c00394{font-size:69.000000px;}
.fs3_c00394{font-size:75.000000px;}
.fs0_c00394{font-size:78.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1f_c00394{bottom:3.105000px;}
.y1e_c00394{bottom:7.228371px;}
.y1d_c00394{bottom:67.965000px;}
.y1c_c00394{bottom:92.115000px;}
.y1b_c00394{bottom:117.465000px;}
.y1a_c00394{bottom:141.465000px;}
.y19_c00394{bottom:168.165000px;}
.y18_c00394{bottom:191.865000px;}
.y17_c00394{bottom:216.765000px;}
.y16_c00394{bottom:241.665000px;}
.y15_c00394{bottom:266.715000px;}
.y14_c00394{bottom:291.915000px;}
.y13_c00394{bottom:316.665000px;}
.y12_c00394{bottom:342.015000px;}
.y11_c00394{bottom:367.215000px;}
.y10_c00394{bottom:391.965000px;}
.yf_c00394{bottom:416.565000px;}
.ye_c00394{bottom:441.765000px;}
.yd_c00394{bottom:466.215000px;}
.yc_c00394{bottom:491.415000px;}
.yb_c00394{bottom:516.165000px;}
.ya_c00394{bottom:540.465000px;}
.y9_c00394{bottom:566.115000px;}
.y8_c00394{bottom:590.265000px;}
.y7_c00394{bottom:640.365000px;}
.y6_c00394{bottom:665.565000px;}
.y5_c00394{bottom:690.915000px;}
.y4_c00394{bottom:715.965000px;}
.y3_c00394{bottom:740.865000px;}
.y2_c00394{bottom:765.915000px;}
.y1_c00394{bottom:790.065000px;}
.h7_c00394{height:13.200074px;}
.h8_c00394{height:43.804688px;}
.h4_c00394{height:87.361816px;}
.h5_c00394{height:87.961816px;}
.h2_c00394{height:91.291992px;}
.h6_c00394{height:94.958496px;}
.h3_c00394{height:98.756836px;}
.h1_c00394{height:831.000000px;}
.h0_c00394{height:831.075000px;}
.w2_c00394{width:104.875500px;}
.w0_c00394{width:582.375000px;}
.w1_c00394{width:582.750000px;}
.x0_c00394{left:0.000000px;}
.x4_c00394{left:28.650000px;}
.x5_c00394{left:30.150000px;}
.x3_c00394{left:31.350000px;}
.x2_c00394{left:32.700000px;}
.x7_c00394{left:53.400000px;}
.x6_c00394{left:54.450000px;}
.x8_c00394{left:56.100000px;}
.x1_c00394{left:187.200000px;}
.xa_c00394{left:243.001740px;}
.x9_c00394{left:279.750000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls3_c00394{letter-spacing:2.666667pt;}
.ls2_c00394{letter-spacing:5.333333pt;}
.ls0_c00394{letter-spacing:9.000000pt;}
.ws3_c00394{word-spacing:-39.130667pt;}
.ws0_c00394{word-spacing:-14.781333pt;}
.ws1_c00394{word-spacing:-1.562667pt;}
.ws2_c00394{word-spacing:-0.490667pt;}
.ws4_c00394{word-spacing:0.000000pt;}
._15_c00394{margin-left:-22.709333pt;}
._9_c00394{margin-left:-20.037333pt;}
._e_c00394{margin-left:-15.392000pt;}
._f_c00394{margin-left:-13.242667pt;}
._c_c00394{margin-left:-11.440000pt;}
._d_c00394{margin-left:-10.330667pt;}
._4_c00394{margin-left:-8.805333pt;}
._2_c00394{margin-left:-7.488000pt;}
._5_c00394{margin-left:-6.448000pt;}
._16_c00394{margin-left:-5.546667pt;}
._3_c00394{margin-left:-4.645333pt;}
._0_c00394{margin-left:-3.189333pt;}
._23_c00394{margin-left:-2.293333pt;}
._1_c00394{margin-left:-1.386667pt;}
._1d_c00394{width:0.901333pt;}
._7_c00394{width:1.802667pt;}
._b_c00394{width:3.258667pt;}
._18_c00394{width:4.165333pt;}
._14_c00394{width:5.269333pt;}
._17_c00394{width:6.746667pt;}
._10_c00394{width:7.928000pt;}
._1a_c00394{width:8.994667pt;}
._12_c00394{width:10.400000pt;}
._8_c00394{width:11.440000pt;}
._a_c00394{width:12.341333pt;}
._1e_c00394{width:13.674667pt;}
._11_c00394{width:14.592000pt;}
._13_c00394{width:15.738667pt;}
._19_c00394{width:18.589333pt;}
._1b_c00394{width:19.621333pt;}
._20_c00394{width:20.829333pt;}
._1c_c00394{width:22.792000pt;}
._24_c00394{width:24.666667pt;}
._22_c00394{width:26.181333pt;}
._26_c00394{width:28.352000pt;}
._1f_c00394{width:36.160000pt;}
._25_c00394{width:82.525333pt;}
._21_c00394{width:85.205333pt;}
._27_c00394{width:95.498667pt;}
._6_c00394{width:467.445333pt;}
._28_c00394{width:490.645333pt;}
.fs4_c00394{font-size:42.666667pt;}
.fs2_c00394{font-size:58.666667pt;}
.fs1_c00394{font-size:61.333333pt;}
.fs3_c00394{font-size:66.666667pt;}
.fs0_c00394{font-size:69.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y1f_c00394{bottom:2.760000pt;}
.y1e_c00394{bottom:6.425219pt;}
.y1d_c00394{bottom:60.413333pt;}
.y1c_c00394{bottom:81.880000pt;}
.y1b_c00394{bottom:104.413333pt;}
.y1a_c00394{bottom:125.746667pt;}
.y19_c00394{bottom:149.480000pt;}
.y18_c00394{bottom:170.546667pt;}
.y17_c00394{bottom:192.680000pt;}
.y16_c00394{bottom:214.813333pt;}
.y15_c00394{bottom:237.080000pt;}
.y14_c00394{bottom:259.480000pt;}
.y13_c00394{bottom:281.480000pt;}
.y12_c00394{bottom:304.013333pt;}
.y11_c00394{bottom:326.413333pt;}
.y10_c00394{bottom:348.413333pt;}
.yf_c00394{bottom:370.280000pt;}
.ye_c00394{bottom:392.680000pt;}
.yd_c00394{bottom:414.413333pt;}
.yc_c00394{bottom:436.813333pt;}
.yb_c00394{bottom:458.813333pt;}
.ya_c00394{bottom:480.413333pt;}
.y9_c00394{bottom:503.213333pt;}
.y8_c00394{bottom:524.680000pt;}
.y7_c00394{bottom:569.213333pt;}
.y6_c00394{bottom:591.613333pt;}
.y5_c00394{bottom:614.146667pt;}
.y4_c00394{bottom:636.413333pt;}
.y3_c00394{bottom:658.546667pt;}
.y2_c00394{bottom:680.813333pt;}
.y1_c00394{bottom:702.280000pt;}
.h7_c00394{height:11.733399pt;}
.h8_c00394{height:38.937500pt;}
.h4_c00394{height:77.654948pt;}
.h5_c00394{height:78.188281pt;}
.h2_c00394{height:81.148438pt;}
.h6_c00394{height:84.407552pt;}
.h3_c00394{height:87.783854pt;}
.h1_c00394{height:738.666667pt;}
.h0_c00394{height:738.733333pt;}
.w2_c00394{width:93.222667pt;}
.w0_c00394{width:517.666667pt;}
.w1_c00394{width:518.000000pt;}
.x0_c00394{left:0.000000pt;}
.x4_c00394{left:25.466667pt;}
.x5_c00394{left:26.800000pt;}
.x3_c00394{left:27.866667pt;}
.x2_c00394{left:29.066667pt;}
.x7_c00394{left:47.466667pt;}
.x6_c00394{left:48.400000pt;}
.x8_c00394{left:49.866667pt;}
.x1_c00394{left:166.400000pt;}
.xa_c00394{left:216.001546pt;}
.x9_c00394{left:248.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_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_f037ecb16ba8cb214df65060.woff2')format("woff");}.ff1_c00395{font-family:ff1_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:ff2_c00395;src:url('chunks/assets/font_7a4d9910de29c3665fa21f0c.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;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_c00395;src:url('chunks/assets/font_a034ee09a5547a2414e3c90e.woff2')format("woff");}.ff3_c00395{font-family:ff3_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:ff4_c00395;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.311035;font-style:normal;font-weight:normal;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_0d8d39b03ac350e471c7972c.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00395;src:url('chunks/assets/font_8b7ed93c46d8b21ff0ad40bd.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;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_c00395;src:url('chunks/assets/font_8cbfb553e5b456f56de16cf1.woff2')format("woff");}.ff7_c00395{font-family:ff7_c00395;line-height:1.437000;font-style:normal;font-weight: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_c00395;src:url('chunks/assets/font_cec3639a81e6765767dad092.woff2')format("woff");}.ff8_c00395{font-family:ff8_c00395;line-height:1.437000;font-style:normal;font-weight: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_c00395;src:url('chunks/assets/font_a190c3c7ef66b215fc6bd775.woff2')format("woff");}.ff9_c00395{font-family:ff9_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:ffa_c00395;src:url('chunks/assets/font_901fab3fc5497e2a92baad85.woff2')format("woff");}.ffa_c00395{font-family:ffa_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:ffb_c00395;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00395{font-family:ffb_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;}
.ls7_c00395{letter-spacing:-3.000000px;}
.ls3_c00395{letter-spacing:0.000000px;}
.ls1_c00395{letter-spacing:2.106000px;}
.ls5_c00395{letter-spacing:3.000000px;}
.ls2_c00395{letter-spacing:5.625000px;}
.ls4_c00395{letter-spacing:6.000000px;}
.ls0_c00395{letter-spacing:7.500000px;}
.ls6_c00395{letter-spacing:15.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00395{word-spacing:-47.184000px;}
.ws3_c00395{word-spacing:-44.943000px;}
.ws1_c00395{word-spacing:-44.022000px;}
.ws0_c00395{word-spacing:-16.629000px;}
.ws2_c00395{word-spacing:-10.737000px;}
.ws5_c00395{word-spacing:0.000000px;}
._21_c00395{margin-left:-28.989000px;}
._2_c00395{margin-left:-22.839000px;}
._4_c00395{margin-left:-17.781000px;}
._1_c00395{margin-left:-14.628000px;}
._3_c00395{margin-left:-12.075000px;}
._0_c00395{margin-left:-9.888000px;}
._6_c00395{margin-left:-7.410000px;}
._14_c00395{margin-left:-5.919000px;}
._8_c00395{margin-left:-4.758000px;}
._7_c00395{margin-left:-3.042000px;}
._a_c00395{margin-left:-1.242000px;}
._12_c00395{width:1.290000px;}
._11_c00395{width:2.994000px;}
._15_c00395{width:4.017000px;}
._9_c00395{width:5.052000px;}
._e_c00395{width:6.279000px;}
._f_c00395{width:7.383000px;}
._16_c00395{width:9.237000px;}
._10_c00395{width:10.695000px;}
._b_c00395{width:11.868000px;}
._c_c00395{width:14.007000px;}
._24_c00395{width:15.051000px;}
._d_c00395{width:16.146000px;}
._20_c00395{width:17.370000px;}
._13_c00395{width:18.495000px;}
._1b_c00395{width:19.833000px;}
._1c_c00395{width:20.904000px;}
._1d_c00395{width:21.942000px;}
._22_c00395{width:30.369000px;}
._23_c00395{width:32.091000px;}
._1a_c00395{width:43.719000px;}
._19_c00395{width:52.017000px;}
._1e_c00395{width:55.026000px;}
._18_c00395{width:62.712000px;}
._17_c00395{width:65.928000px;}
._1f_c00395{width:128.715000px;}
._5_c00395{width:368.394000px;}
.fc2_c00395{color:transparent;}
.fc1_c00395{color:rgb(128,128,128);}
.fc0_c00395{color:rgb(0,0,0);}
.fs8_c00395{font-size:48.000000px;}
.fs4_c00395{font-size:51.000000px;}
.fs5_c00395{font-size:54.000000px;}
.fs6_c00395{font-size:57.000000px;}
.fs2_c00395{font-size:66.000000px;}
.fs0_c00395{font-size:69.000000px;}
.fs7_c00395{font-size:72.000000px;}
.fs1_c00395{font-size:78.000000px;}
.fs3_c00395{font-size:93.000000px;}
.y0_c00395{bottom:0.000000px;}
.y13_c00395{bottom:3.105000px;}
.y12_c00395{bottom:7.228363px;}
.y11_c00395{bottom:46.650000px;}
.y10_c00395{bottom:403.350000px;}
.yf_c00395{bottom:450.900000px;}
.ye_c00395{bottom:468.900000px;}
.yd_c00395{bottom:486.300000px;}
.yc_c00395{bottom:504.600000px;}
.yb_c00395{bottom:521.850000px;}
.ya_c00395{bottom:540.450000px;}
.y9_c00395{bottom:557.250000px;}
.y8_c00395{bottom:575.100000px;}
.y7_c00395{bottom:592.950000px;}
.y6_c00395{bottom:609.900000px;}
.y5_c00395{bottom:655.500000px;}
.y4_c00395{bottom:705.450000px;}
.y3_c00395{bottom:731.100000px;}
.y2_c00395{bottom:756.300000px;}
.y1_c00395{bottom:781.350000px;}
.h8_c00395{height:13.200074px;}
.h9_c00395{height:43.804688px;}
.h5_c00395{height:72.168457px;}
.h3_c00395{height:87.361816px;}
.h7_c00395{height:91.160156px;}
.h4_c00395{height:91.229004px;}
.h2_c00395{height:91.291992px;}
.h6_c00395{height:108.848145px;}
.h1_c00395{height:827.250000px;}
.h0_c00395{height:827.550000px;}
.w2_c00395{width:104.875500px;}
.w0_c00395{width:572.100000px;}
.w1_c00395{width:572.250000px;}
.x0_c00395{left:0.000000px;}
.x8_c00395{left:86.400000px;}
.x7_c00395{left:88.050000px;}
.x5_c00395{left:89.400000px;}
.x2_c00395{left:90.900000px;}
.x1_c00395{left:104.700000px;}
.x6_c00395{left:106.950000px;}
.x4_c00395{left:108.000000px;}
.x9_c00395{left:150.900000px;}
.xb_c00395{left:237.864258px;}
.x3_c00395{left:243.000000px;}
.xa_c00395{left:477.600000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls7_c00395{letter-spacing:-2.666667pt;}
.ls3_c00395{letter-spacing:0.000000pt;}
.ls1_c00395{letter-spacing:1.872000pt;}
.ls5_c00395{letter-spacing:2.666667pt;}
.ls2_c00395{letter-spacing:5.000000pt;}
.ls4_c00395{letter-spacing:5.333333pt;}
.ls0_c00395{letter-spacing:6.666667pt;}
.ls6_c00395{letter-spacing:13.333333pt;}
.ws4_c00395{word-spacing:-41.941333pt;}
.ws3_c00395{word-spacing:-39.949333pt;}
.ws1_c00395{word-spacing:-39.130667pt;}
.ws0_c00395{word-spacing:-14.781333pt;}
.ws2_c00395{word-spacing:-9.544000pt;}
.ws5_c00395{word-spacing:0.000000pt;}
._21_c00395{margin-left:-25.768000pt;}
._2_c00395{margin-left:-20.301333pt;}
._4_c00395{margin-left:-15.805333pt;}
._1_c00395{margin-left:-13.002667pt;}
._3_c00395{margin-left:-10.733333pt;}
._0_c00395{margin-left:-8.789333pt;}
._6_c00395{margin-left:-6.586667pt;}
._14_c00395{margin-left:-5.261333pt;}
._8_c00395{margin-left:-4.229333pt;}
._7_c00395{margin-left:-2.704000pt;}
._a_c00395{margin-left:-1.104000pt;}
._12_c00395{width:1.146667pt;}
._11_c00395{width:2.661333pt;}
._15_c00395{width:3.570667pt;}
._9_c00395{width:4.490667pt;}
._e_c00395{width:5.581333pt;}
._f_c00395{width:6.562667pt;}
._16_c00395{width:8.210667pt;}
._10_c00395{width:9.506667pt;}
._b_c00395{width:10.549333pt;}
._c_c00395{width:12.450667pt;}
._24_c00395{width:13.378667pt;}
._d_c00395{width:14.352000pt;}
._20_c00395{width:15.440000pt;}
._13_c00395{width:16.440000pt;}
._1b_c00395{width:17.629333pt;}
._1c_c00395{width:18.581333pt;}
._1d_c00395{width:19.504000pt;}
._22_c00395{width:26.994667pt;}
._23_c00395{width:28.525333pt;}
._1a_c00395{width:38.861333pt;}
._19_c00395{width:46.237333pt;}
._1e_c00395{width:48.912000pt;}
._18_c00395{width:55.744000pt;}
._17_c00395{width:58.602667pt;}
._1f_c00395{width:114.413333pt;}
._5_c00395{width:327.461333pt;}
.fs8_c00395{font-size:42.666667pt;}
.fs4_c00395{font-size:45.333333pt;}
.fs5_c00395{font-size:48.000000pt;}
.fs6_c00395{font-size:50.666667pt;}
.fs2_c00395{font-size:58.666667pt;}
.fs0_c00395{font-size:61.333333pt;}
.fs7_c00395{font-size:64.000000pt;}
.fs1_c00395{font-size:69.333333pt;}
.fs3_c00395{font-size:82.666667pt;}
.y0_c00395{bottom:0.000000pt;}
.y13_c00395{bottom:2.760000pt;}
.y12_c00395{bottom:6.425212pt;}
.y11_c00395{bottom:41.466667pt;}
.y10_c00395{bottom:358.533333pt;}
.yf_c00395{bottom:400.800000pt;}
.ye_c00395{bottom:416.800000pt;}
.yd_c00395{bottom:432.266667pt;}
.yc_c00395{bottom:448.533333pt;}
.yb_c00395{bottom:463.866667pt;}
.ya_c00395{bottom:480.400000pt;}
.y9_c00395{bottom:495.333333pt;}
.y8_c00395{bottom:511.200000pt;}
.y7_c00395{bottom:527.066667pt;}
.y6_c00395{bottom:542.133333pt;}
.y5_c00395{bottom:582.666667pt;}
.y4_c00395{bottom:627.066667pt;}
.y3_c00395{bottom:649.866667pt;}
.y2_c00395{bottom:672.266667pt;}
.y1_c00395{bottom:694.533333pt;}
.h8_c00395{height:11.733399pt;}
.h9_c00395{height:38.937500pt;}
.h5_c00395{height:64.149740pt;}
.h3_c00395{height:77.654948pt;}
.h7_c00395{height:81.031250pt;}
.h4_c00395{height:81.092448pt;}
.h2_c00395{height:81.148438pt;}
.h6_c00395{height:96.753906pt;}
.h1_c00395{height:735.333333pt;}
.h0_c00395{height:735.600000pt;}
.w2_c00395{width:93.222667pt;}
.w0_c00395{width:508.533333pt;}
.w1_c00395{width:508.666667pt;}
.x0_c00395{left:0.000000pt;}
.x8_c00395{left:76.800000pt;}
.x7_c00395{left:78.266667pt;}
.x5_c00395{left:79.466667pt;}
.x2_c00395{left:80.800000pt;}
.x1_c00395{left:93.066667pt;}
.x6_c00395{left:95.066667pt;}
.x4_c00395{left:96.000000pt;}
.x9_c00395{left:134.133333pt;}
.xb_c00395{left:211.434896pt;}
.x3_c00395{left:216.000000pt;}
.xa_c00395{left:424.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_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_7b4943ec98e4e1f46efc37cf.woff2')format("woff");}.ff1_c00396{font-family:ff1_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:ff2_c00396;src:url('chunks/assets/font_72e495f33ef311482ee4fb24.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_4609c19d8dc413efb32eacf9.woff2')format("woff");}.ff3_c00396{font-family:ff3_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:ff4_c00396;src:url('chunks/assets/font_c7ce235422f2f669848694d4.woff2')format("woff");}.ff4_c00396{font-family:ff4_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:ff5_c00396;src:url('chunks/assets/font_801e4c29cc3c9d8269a236a4.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;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_c00396;src:url('chunks/assets/font_4053e2cc7718499c38ee0c35.woff2')format("woff");}.ff6_c00396{font-family:ff6_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:ff7_c00396;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00396{font-family:ff7_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;}
.ls2_c00396{letter-spacing:-9.000000px;}
.ls0_c00396{letter-spacing:-3.000000px;}
.ls4_c00396{letter-spacing:0.000000px;}
.ls7_c00396{letter-spacing:3.000000px;}
.ls6_c00396{letter-spacing:6.000000px;}
.ls5_c00396{letter-spacing:9.000000px;}
.ls8_c00396{letter-spacing:24.000000px;}
.ls9_c00396{letter-spacing:36.000000px;}
.ls1_c00396{letter-spacing:51.000000px;}
.ls3_c00396{letter-spacing:54.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00396{word-spacing:-93.696000px;}
.ws0_c00396{word-spacing:-77.523000px;}
.ws4_c00396{word-spacing:-42.798000px;}
.ws5_c00396{word-spacing:-32.826000px;}
.ws2_c00396{word-spacing:-27.798000px;}
.ws6_c00396{word-spacing:-19.050000px;}
.ws3_c00396{word-spacing:-18.798000px;}
.ws7_c00396{word-spacing:-16.629000px;}
.ws8_c00396{word-spacing:0.000000px;}
._38_c00396{margin-left:-41.238000px;}
._37_c00396{margin-left:-27.186000px;}
._35_c00396{margin-left:-25.629000px;}
._6_c00396{margin-left:-23.472000px;}
._17_c00396{margin-left:-22.149000px;}
._18_c00396{margin-left:-20.355000px;}
._33_c00396{margin-left:-19.101000px;}
._2e_c00396{margin-left:-17.055000px;}
._32_c00396{margin-left:-15.963000px;}
._1b_c00396{margin-left:-14.820000px;}
._34_c00396{margin-left:-13.452000px;}
._2d_c00396{margin-left:-12.375000px;}
._2f_c00396{margin-left:-11.019000px;}
._1c_c00396{margin-left:-9.906000px;}
._12_c00396{margin-left:-8.112000px;}
._1f_c00396{margin-left:-6.708000px;}
._1d_c00396{margin-left:-5.304000px;}
._20_c00396{margin-left:-3.822000px;}
._1e_c00396{margin-left:-2.730000px;}
._1a_c00396{margin-left:-1.092000px;}
._7_c00396{width:1.320000px;}
._2_c00396{width:2.691000px;}
._3_c00396{width:3.726000px;}
._0_c00396{width:4.761000px;}
._4_c00396{width:5.778000px;}
._1_c00396{width:6.831000px;}
._28_c00396{width:7.923000px;}
._16_c00396{width:9.801000px;}
._9_c00396{width:10.902000px;}
._e_c00396{width:12.012000px;}
._8_c00396{width:13.110000px;}
._25_c00396{width:14.331000px;}
._31_c00396{width:15.381000px;}
._f_c00396{width:16.926000px;}
._2b_c00396{width:19.968000px;}
._11_c00396{width:20.976000px;}
._21_c00396{width:22.425000px;}
._a_c00396{width:24.960000px;}
._10_c00396{width:26.676000px;}
._c_c00396{width:27.768000px;}
._b_c00396{width:28.860000px;}
._2c_c00396{width:32.139000px;}
._5_c00396{width:33.804000px;}
._2a_c00396{width:34.923000px;}
._29_c00396{width:36.018000px;}
._26_c00396{width:38.109000px;}
._23_c00396{width:39.366000px;}
._14_c00396{width:40.482000px;}
._24_c00396{width:41.703000px;}
._15_c00396{width:47.892000px;}
._d_c00396{width:50.154000px;}
._22_c00396{width:51.597000px;}
._36_c00396{width:60.225000px;}
._13_c00396{width:63.954000px;}
._30_c00396{width:84.201000px;}
._27_c00396{width:88.512000px;}
._19_c00396{width:346.194000px;}
._39_c00396{width:367.938000px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(128,128,128);}
.fc0_c00396{color:rgb(0,0,0);}
.fs6_c00396{font-size:48.000000px;}
.fs3_c00396{font-size:69.000000px;}
.fs1_c00396{font-size:72.000000px;}
.fs5_c00396{font-size:75.000000px;}
.fs4_c00396{font-size:78.000000px;}
.fs0_c00396{font-size:207.000000px;}
.fs2_c00396{font-size:264.000000px;}
.y0_c00396{bottom:0.000000px;}
.y17_c00396{bottom:3.105000px;}
.y16_c00396{bottom:7.228357px;}
.y15_c00396{bottom:47.880000px;}
.y14_c00396{bottom:71.880000px;}
.y13_c00396{bottom:97.230000px;}
.y12_c00396{bottom:122.130000px;}
.y11_c00396{bottom:147.180000px;}
.y10_c00396{bottom:172.230000px;}
.yf_c00396{bottom:197.730000px;}
.ye_c00396{bottom:223.080000px;}
.yd_c00396{bottom:247.830000px;}
.yc_c00396{bottom:272.730000px;}
.yb_c00396{bottom:322.080000px;}
.ya_c00396{bottom:371.580000px;}
.y9_c00396{bottom:396.630000px;}
.y8_c00396{bottom:439.080000px;}
.y7_c00396{bottom:464.730000px;}
.y6_c00396{bottom:507.030000px;}
.y5_c00396{bottom:531.330000px;}
.y4_c00396{bottom:574.380000px;}
.y3_c00396{bottom:615.030000px;}
.y2_c00396{bottom:683.730000px;}
.y1_c00396{bottom:720.930000px;}
.ha_c00396{height:13.200074px;}
.hb_c00396{height:43.804688px;}
.h5_c00396{height:87.361816px;}
.h7_c00396{height:87.780762px;}
.h3_c00396{height:91.160156px;}
.h6_c00396{height:91.291992px;}
.h9_c00396{height:94.958496px;}
.h8_c00396{height:98.756836px;}
.h2_c00396{height:216.936000px;}
.h4_c00396{height:276.672000px;}
.h1_c00396{height:811.500000px;}
.h0_c00396{height:811.650000px;}
.w2_c00396{width:104.875500px;}
.w1_c00396{width:568.500000px;}
.w0_c00396{width:568.650000px;}
.x0_c00396{left:0.000000px;}
.xd_c00396{left:38.850000px;}
.x1_c00396{left:40.500000px;}
.x5_c00396{left:42.150000px;}
.x3_c00396{left:46.950000px;}
.x4_c00396{left:109.650000px;}
.x2_c00396{left:129.300000px;}
.x8_c00396{left:143.850000px;}
.x9_c00396{left:164.400000px;}
.x6_c00396{left:169.050000px;}
.x7_c00396{left:176.550000px;}
.xa_c00396{left:178.500000px;}
.xb_c00396{left:179.850000px;}
.xc_c00396{left:183.900000px;}
.xf_c00396{left:236.139267px;}
.xe_c00396{left:290.700000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls2_c00396{letter-spacing:-8.000000pt;}
.ls0_c00396{letter-spacing:-2.666667pt;}
.ls4_c00396{letter-spacing:0.000000pt;}
.ls7_c00396{letter-spacing:2.666667pt;}
.ls6_c00396{letter-spacing:5.333333pt;}
.ls5_c00396{letter-spacing:8.000000pt;}
.ls8_c00396{letter-spacing:21.333333pt;}
.ls9_c00396{letter-spacing:32.000000pt;}
.ls1_c00396{letter-spacing:45.333333pt;}
.ls3_c00396{letter-spacing:48.000000pt;}
.ws1_c00396{word-spacing:-83.285333pt;}
.ws0_c00396{word-spacing:-68.909333pt;}
.ws4_c00396{word-spacing:-38.042667pt;}
.ws5_c00396{word-spacing:-29.178667pt;}
.ws2_c00396{word-spacing:-24.709333pt;}
.ws6_c00396{word-spacing:-16.933333pt;}
.ws3_c00396{word-spacing:-16.709333pt;}
.ws7_c00396{word-spacing:-14.781333pt;}
.ws8_c00396{word-spacing:0.000000pt;}
._38_c00396{margin-left:-36.656000pt;}
._37_c00396{margin-left:-24.165333pt;}
._35_c00396{margin-left:-22.781333pt;}
._6_c00396{margin-left:-20.864000pt;}
._17_c00396{margin-left:-19.688000pt;}
._18_c00396{margin-left:-18.093333pt;}
._33_c00396{margin-left:-16.978667pt;}
._2e_c00396{margin-left:-15.160000pt;}
._32_c00396{margin-left:-14.189333pt;}
._1b_c00396{margin-left:-13.173333pt;}
._34_c00396{margin-left:-11.957333pt;}
._2d_c00396{margin-left:-11.000000pt;}
._2f_c00396{margin-left:-9.794667pt;}
._1c_c00396{margin-left:-8.805333pt;}
._12_c00396{margin-left:-7.210667pt;}
._1f_c00396{margin-left:-5.962667pt;}
._1d_c00396{margin-left:-4.714667pt;}
._20_c00396{margin-left:-3.397333pt;}
._1e_c00396{margin-left:-2.426667pt;}
._1a_c00396{margin-left:-0.970667pt;}
._7_c00396{width:1.173333pt;}
._2_c00396{width:2.392000pt;}
._3_c00396{width:3.312000pt;}
._0_c00396{width:4.232000pt;}
._4_c00396{width:5.136000pt;}
._1_c00396{width:6.072000pt;}
._28_c00396{width:7.042667pt;}
._16_c00396{width:8.712000pt;}
._9_c00396{width:9.690667pt;}
._e_c00396{width:10.677333pt;}
._8_c00396{width:11.653333pt;}
._25_c00396{width:12.738667pt;}
._31_c00396{width:13.672000pt;}
._f_c00396{width:15.045333pt;}
._2b_c00396{width:17.749333pt;}
._11_c00396{width:18.645333pt;}
._21_c00396{width:19.933333pt;}
._a_c00396{width:22.186667pt;}
._10_c00396{width:23.712000pt;}
._c_c00396{width:24.682667pt;}
._b_c00396{width:25.653333pt;}
._2c_c00396{width:28.568000pt;}
._5_c00396{width:30.048000pt;}
._2a_c00396{width:31.042667pt;}
._29_c00396{width:32.016000pt;}
._26_c00396{width:33.874667pt;}
._23_c00396{width:34.992000pt;}
._14_c00396{width:35.984000pt;}
._24_c00396{width:37.069333pt;}
._15_c00396{width:42.570667pt;}
._d_c00396{width:44.581333pt;}
._22_c00396{width:45.864000pt;}
._36_c00396{width:53.533333pt;}
._13_c00396{width:56.848000pt;}
._30_c00396{width:74.845333pt;}
._27_c00396{width:78.677333pt;}
._19_c00396{width:307.728000pt;}
._39_c00396{width:327.056000pt;}
.fs6_c00396{font-size:42.666667pt;}
.fs3_c00396{font-size:61.333333pt;}
.fs1_c00396{font-size:64.000000pt;}
.fs5_c00396{font-size:66.666667pt;}
.fs4_c00396{font-size:69.333333pt;}
.fs0_c00396{font-size:184.000000pt;}
.fs2_c00396{font-size:234.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y17_c00396{bottom:2.760000pt;}
.y16_c00396{bottom:6.425206pt;}
.y15_c00396{bottom:42.560000pt;}
.y14_c00396{bottom:63.893333pt;}
.y13_c00396{bottom:86.426667pt;}
.y12_c00396{bottom:108.560000pt;}
.y11_c00396{bottom:130.826667pt;}
.y10_c00396{bottom:153.093333pt;}
.yf_c00396{bottom:175.760000pt;}
.ye_c00396{bottom:198.293333pt;}
.yd_c00396{bottom:220.293333pt;}
.yc_c00396{bottom:242.426667pt;}
.yb_c00396{bottom:286.293333pt;}
.ya_c00396{bottom:330.293333pt;}
.y9_c00396{bottom:352.560000pt;}
.y8_c00396{bottom:390.293333pt;}
.y7_c00396{bottom:413.093333pt;}
.y6_c00396{bottom:450.693333pt;}
.y5_c00396{bottom:472.293333pt;}
.y4_c00396{bottom:510.560000pt;}
.y3_c00396{bottom:546.693333pt;}
.y2_c00396{bottom:607.760000pt;}
.y1_c00396{bottom:640.826667pt;}
.ha_c00396{height:11.733399pt;}
.hb_c00396{height:38.937500pt;}
.h5_c00396{height:77.654948pt;}
.h7_c00396{height:78.027344pt;}
.h3_c00396{height:81.031250pt;}
.h6_c00396{height:81.148438pt;}
.h9_c00396{height:84.407552pt;}
.h8_c00396{height:87.783854pt;}
.h2_c00396{height:192.832000pt;}
.h4_c00396{height:245.930667pt;}
.h1_c00396{height:721.333333pt;}
.h0_c00396{height:721.466667pt;}
.w2_c00396{width:93.222667pt;}
.w1_c00396{width:505.333333pt;}
.w0_c00396{width:505.466667pt;}
.x0_c00396{left:0.000000pt;}
.xd_c00396{left:34.533333pt;}
.x1_c00396{left:36.000000pt;}
.x5_c00396{left:37.466667pt;}
.x3_c00396{left:41.733333pt;}
.x4_c00396{left:97.466667pt;}
.x2_c00396{left:114.933333pt;}
.x8_c00396{left:127.866667pt;}
.x9_c00396{left:146.133333pt;}
.x6_c00396{left:150.266667pt;}
.x7_c00396{left:156.933333pt;}
.xa_c00396{left:158.666667pt;}
.xb_c00396{left:159.866667pt;}
.xc_c00396{left:163.466667pt;}
.xf_c00396{left:209.901571pt;}
.xe_c00396{left:258.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87b6cf90649e80c1d98b80e0.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;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_c00397;src:url('chunks/assets/font_5d3c68c834fbb1ba66da6057.woff2')format("woff");}.ff2_c00397{font-family:ff2_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:ff3_c00397;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00397{font-family:ff3_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:ff4_c00397;src:url('chunks/assets/font_5ef46330f7c0f29f2594c4af.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.437000;font-style:normal;font-weight:normal;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_8d7538133c1a222cec1ecd22.woff2')format("woff");}.ff5_c00397{font-family:ff5_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:ff6_c00397;src:url('chunks/assets/font_041ba004c8c320e897232043.woff2')format("woff");}.ff6_c00397{font-family:ff6_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:ff7_c00397;src:url('chunks/assets/font_3283411b92c8279996824ee7.woff2')format("woff");}.ff7_c00397{font-family:ff7_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:ff8_c00397;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00397{font-family:ff8_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;}
.ls4_c00397{letter-spacing:-3.000000px;}
.ls2_c00397{letter-spacing:0.000000px;}
.ls5_c00397{letter-spacing:3.000000px;}
.ls0_c00397{letter-spacing:4.920000px;}
.ls1_c00397{letter-spacing:6.000000px;}
.ls3_c00397{letter-spacing:9.000000px;}
.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:-27.798000px;}
.ws1_c00397{word-spacing:-24.507000px;}
.ws2_c00397{word-spacing:-19.050000px;}
.ws4_c00397{word-spacing:-16.629000px;}
.ws5_c00397{word-spacing:0.000000px;}
.ws3_c00397{word-spacing:3.135000px;}
._1e_c00397{margin-left:-29.121000px;}
._1f_c00397{margin-left:-26.841000px;}
._0_c00397{margin-left:-25.737000px;}
._1d_c00397{margin-left:-23.976000px;}
._3_c00397{margin-left:-22.770000px;}
._4_c00397{margin-left:-20.355000px;}
._18_c00397{margin-left:-18.936000px;}
._b_c00397{margin-left:-17.046000px;}
._a_c00397{margin-left:-15.189000px;}
._1_c00397{margin-left:-14.076000px;}
._15_c00397{margin-left:-12.450000px;}
._8_c00397{margin-left:-11.055000px;}
._2_c00397{margin-left:-10.005000px;}
._9_c00397{margin-left:-8.658000px;}
._5_c00397{margin-left:-7.590000px;}
._e_c00397{margin-left:-5.670000px;}
._6_c00397{margin-left:-4.416000px;}
._d_c00397{margin-left:-3.276000px;}
._c_c00397{margin-left:-1.638000px;}
._23_c00397{width:1.008000px;}
._f_c00397{width:2.019000px;}
._14_c00397{width:3.771000px;}
._11_c00397{width:5.436000px;}
._19_c00397{width:6.681000px;}
._24_c00397{width:7.743000px;}
._17_c00397{width:9.075000px;}
._1c_c00397{width:10.374000px;}
._12_c00397{width:12.891000px;}
._10_c00397{width:14.295000px;}
._1a_c00397{width:16.074000px;}
._22_c00397{width:17.301000px;}
._26_c00397{width:21.942000px;}
._13_c00397{width:25.218000px;}
._16_c00397{width:27.066000px;}
._21_c00397{width:40.344000px;}
._1b_c00397{width:47.010000px;}
._25_c00397{width:86.085000px;}
._20_c00397{width:126.198000px;}
._7_c00397{width:413.406000px;}
.fc2_c00397{color:transparent;}
.fc1_c00397{color:rgb(128,128,128);}
.fc0_c00397{color:rgb(0,0,0);}
.fs4_c00397{font-size:45.000000px;}
.fs5_c00397{font-size:48.000000px;}
.fs2_c00397{font-size:63.000000px;}
.fs0_c00397{font-size:69.000000px;}
.fs3_c00397{font-size:75.000000px;}
.fs1_c00397{font-size:78.000000px;}
.y0_c00397{bottom:0.000000px;}
.y1e_c00397{bottom:3.105000px;}
.y1d_c00397{bottom:7.228363px;}
.y1c_c00397{bottom:55.050000px;}
.y1b_c00397{bottom:131.700000px;}
.y1a_c00397{bottom:156.600000px;}
.y19_c00397{bottom:182.250000px;}
.y18_c00397{bottom:207.600000px;}
.y17_c00397{bottom:232.650000px;}
.y16_c00397{bottom:257.850000px;}
.y15_c00397{bottom:283.200000px;}
.y14_c00397{bottom:308.250000px;}
.y13_c00397{bottom:332.550000px;}
.y12_c00397{bottom:362.550000px;}
.y11_c00397{bottom:382.800000px;}
.y10_c00397{bottom:407.400000px;}
.yf_c00397{bottom:433.350000px;}
.ye_c00397{bottom:458.400000px;}
.yd_c00397{bottom:483.600000px;}
.yc_c00397{bottom:508.050000px;}
.yb_c00397{bottom:533.700000px;}
.ya_c00397{bottom:558.900000px;}
.y9_c00397{bottom:583.950000px;}
.y8_c00397{bottom:609.300000px;}
.y7_c00397{bottom:633.900000px;}
.y6_c00397{bottom:659.250000px;}
.y5_c00397{bottom:684.450000px;}
.y4_c00397{bottom:709.800000px;}
.y3_c00397{bottom:735.000000px;}
.y2_c00397{bottom:760.050000px;}
.y1_c00397{bottom:785.400000px;}
.h7_c00397{height:13.200074px;}
.h8_c00397{height:43.804688px;}
.h5_c00397{height:44.143066px;}
.h6_c00397{height:80.758301px;}
.h2_c00397{height:91.291992px;}
.h4_c00397{height:94.958496px;}
.h3_c00397{height:98.756836px;}
.h1_c00397{height:827.250000px;}
.h0_c00397{height:827.550000px;}
.w2_c00397{width:104.875500px;}
.w0_c00397{width:572.100000px;}
.w1_c00397{width:572.250000px;}
.x0_c00397{left:0.000000px;}
.x7_c00397{left:94.200000px;}
.x5_c00397{left:95.850000px;}
.x6_c00397{left:96.900000px;}
.x2_c00397{left:98.250000px;}
.x3_c00397{left:100.800000px;}
.x4_c00397{left:101.850000px;}
.x1_c00397{left:109.350000px;}
.x8_c00397{left:119.100000px;}
.x9_c00397{left:126.900000px;}
.xb_c00397{left:237.864258px;}
.xa_c00397{left:507.000000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls4_c00397{letter-spacing:-2.666667pt;}
.ls2_c00397{letter-spacing:0.000000pt;}
.ls5_c00397{letter-spacing:2.666667pt;}
.ls0_c00397{letter-spacing:4.373333pt;}
.ls1_c00397{letter-spacing:5.333333pt;}
.ls3_c00397{letter-spacing:8.000000pt;}
.ws0_c00397{word-spacing:-24.709333pt;}
.ws1_c00397{word-spacing:-21.784000pt;}
.ws2_c00397{word-spacing:-16.933333pt;}
.ws4_c00397{word-spacing:-14.781333pt;}
.ws5_c00397{word-spacing:0.000000pt;}
.ws3_c00397{word-spacing:2.786667pt;}
._1e_c00397{margin-left:-25.885333pt;}
._1f_c00397{margin-left:-23.858667pt;}
._0_c00397{margin-left:-22.877333pt;}
._1d_c00397{margin-left:-21.312000pt;}
._3_c00397{margin-left:-20.240000pt;}
._4_c00397{margin-left:-18.093333pt;}
._18_c00397{margin-left:-16.832000pt;}
._b_c00397{margin-left:-15.152000pt;}
._a_c00397{margin-left:-13.501333pt;}
._1_c00397{margin-left:-12.512000pt;}
._15_c00397{margin-left:-11.066667pt;}
._8_c00397{margin-left:-9.826667pt;}
._2_c00397{margin-left:-8.893333pt;}
._9_c00397{margin-left:-7.696000pt;}
._5_c00397{margin-left:-6.746667pt;}
._e_c00397{margin-left:-5.040000pt;}
._6_c00397{margin-left:-3.925333pt;}
._d_c00397{margin-left:-2.912000pt;}
._c_c00397{margin-left:-1.456000pt;}
._23_c00397{width:0.896000pt;}
._f_c00397{width:1.794667pt;}
._14_c00397{width:3.352000pt;}
._11_c00397{width:4.832000pt;}
._19_c00397{width:5.938667pt;}
._24_c00397{width:6.882667pt;}
._17_c00397{width:8.066667pt;}
._1c_c00397{width:9.221333pt;}
._12_c00397{width:11.458667pt;}
._10_c00397{width:12.706667pt;}
._1a_c00397{width:14.288000pt;}
._22_c00397{width:15.378667pt;}
._26_c00397{width:19.504000pt;}
._13_c00397{width:22.416000pt;}
._16_c00397{width:24.058667pt;}
._21_c00397{width:35.861333pt;}
._1b_c00397{width:41.786667pt;}
._25_c00397{width:76.520000pt;}
._20_c00397{width:112.176000pt;}
._7_c00397{width:367.472000pt;}
.fs4_c00397{font-size:40.000000pt;}
.fs5_c00397{font-size:42.666667pt;}
.fs2_c00397{font-size:56.000000pt;}
.fs0_c00397{font-size:61.333333pt;}
.fs3_c00397{font-size:66.666667pt;}
.fs1_c00397{font-size:69.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y1e_c00397{bottom:2.760000pt;}
.y1d_c00397{bottom:6.425212pt;}
.y1c_c00397{bottom:48.933333pt;}
.y1b_c00397{bottom:117.066667pt;}
.y1a_c00397{bottom:139.200000pt;}
.y19_c00397{bottom:162.000000pt;}
.y18_c00397{bottom:184.533333pt;}
.y17_c00397{bottom:206.800000pt;}
.y16_c00397{bottom:229.200000pt;}
.y15_c00397{bottom:251.733333pt;}
.y14_c00397{bottom:274.000000pt;}
.y13_c00397{bottom:295.600000pt;}
.y12_c00397{bottom:322.266667pt;}
.y11_c00397{bottom:340.266667pt;}
.y10_c00397{bottom:362.133333pt;}
.yf_c00397{bottom:385.200000pt;}
.ye_c00397{bottom:407.466667pt;}
.yd_c00397{bottom:429.866667pt;}
.yc_c00397{bottom:451.600000pt;}
.yb_c00397{bottom:474.400000pt;}
.ya_c00397{bottom:496.800000pt;}
.y9_c00397{bottom:519.066667pt;}
.y8_c00397{bottom:541.600000pt;}
.y7_c00397{bottom:563.466667pt;}
.y6_c00397{bottom:586.000000pt;}
.y5_c00397{bottom:608.400000pt;}
.y4_c00397{bottom:630.933333pt;}
.y3_c00397{bottom:653.333333pt;}
.y2_c00397{bottom:675.600000pt;}
.y1_c00397{bottom:698.133333pt;}
.h7_c00397{height:11.733399pt;}
.h8_c00397{height:38.937500pt;}
.h5_c00397{height:39.238281pt;}
.h6_c00397{height:71.785156pt;}
.h2_c00397{height:81.148438pt;}
.h4_c00397{height:84.407552pt;}
.h3_c00397{height:87.783854pt;}
.h1_c00397{height:735.333333pt;}
.h0_c00397{height:735.600000pt;}
.w2_c00397{width:93.222667pt;}
.w0_c00397{width:508.533333pt;}
.w1_c00397{width:508.666667pt;}
.x0_c00397{left:0.000000pt;}
.x7_c00397{left:83.733333pt;}
.x5_c00397{left:85.200000pt;}
.x6_c00397{left:86.133333pt;}
.x2_c00397{left:87.333333pt;}
.x3_c00397{left:89.600000pt;}
.x4_c00397{left:90.533333pt;}
.x1_c00397{left:97.200000pt;}
.x8_c00397{left:105.866667pt;}
.x9_c00397{left:112.800000pt;}
.xb_c00397{left:211.434896pt;}
.xa_c00397{left:450.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_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_bfc60e7536cc1d69a7bb75e7.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_e7f7871d9e9de33f86445f48.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_105dd6da16ffd22b7bb8f5ec.woff2')format("woff");}.ff3_c00398{font-family:ff3_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:ff4_c00398;src:url('chunks/assets/font_389acb49a6fe1ee9fefdd538.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;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_c00398;src:url('chunks/assets/font_2c773ed7e8b1714b042bf2c5.woff2')format("woff");}.ff5_c00398{font-family:ff5_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:ff6_c00398;src:url('chunks/assets/font_6ec482c1e22af1e5e52adc16.woff2')format("woff");}.ff6_c00398{font-family:ff6_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:ff7_c00398;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00398{font-family:ff7_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;}
.ls1_c00398{letter-spacing:-3.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.ls2_c00398{letter-spacing:3.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:-41.136000px;}
.ws2_c00398{word-spacing:-16.629000px;}
.ws1_c00398{word-spacing:-15.000000px;}
.ws4_c00398{word-spacing:0.000000px;}
.ws3_c00398{word-spacing:21.771000px;}
._1f_c00398{margin-left:-28.083000px;}
._d_c00398{margin-left:-20.838000px;}
._f_c00398{margin-left:-18.489000px;}
._1b_c00398{margin-left:-15.042000px;}
._a_c00398{margin-left:-13.794000px;}
._5_c00398{margin-left:-12.450000px;}
._4_c00398{margin-left:-10.275000px;}
._0_c00398{margin-left:-9.225000px;}
._1_c00398{margin-left:-7.875000px;}
._3_c00398{margin-left:-6.300000px;}
._6_c00398{margin-left:-4.800000px;}
._25_c00398{margin-left:-3.756000px;}
._13_c00398{margin-left:-2.730000px;}
._12_c00398{margin-left:-1.518000px;}
._2_c00398{width:1.350000px;}
._c_c00398{width:3.084000px;}
._15_c00398{width:4.575000px;}
._11_c00398{width:6.555000px;}
._8_c00398{width:7.788000px;}
._9_c00398{width:9.108000px;}
._14_c00398{width:10.941000px;}
._19_c00398{width:12.342000px;}
._27_c00398{width:13.350000px;}
._16_c00398{width:14.598000px;}
._26_c00398{width:15.627000px;}
._21_c00398{width:16.791000px;}
._b_c00398{width:17.952000px;}
._23_c00398{width:20.775000px;}
._18_c00398{width:25.350000px;}
._24_c00398{width:28.527000px;}
._17_c00398{width:33.114000px;}
._1c_c00398{width:34.362000px;}
._e_c00398{width:48.162000px;}
._28_c00398{width:50.922000px;}
._1d_c00398{width:61.176000px;}
._22_c00398{width:67.413000px;}
._20_c00398{width:80.718000px;}
._1e_c00398{width:127.098000px;}
._1a_c00398{width:148.932000px;}
._7_c00398{width:432.936000px;}
._10_c00398{width:554.001000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(128,128,128);}
.fc0_c00398{color:rgb(0,0,0);}
.fs6_c00398{font-size:48.000000px;}
.fs5_c00398{font-size:57.000000px;}
.fs4_c00398{font-size:60.000000px;}
.fs1_c00398{font-size:66.000000px;}
.fs3_c00398{font-size:69.000000px;}
.fs0_c00398{font-size:75.000000px;}
.fs2_c00398{font-size:84.000000px;}
.y0_c00398{bottom:0.000000px;}
.y1d_c00398{bottom:3.105000px;}
.y1c_c00398{bottom:7.228371px;}
.y1b_c00398{bottom:62.865000px;}
.y1a_c00398{bottom:136.065000px;}
.y19_c00398{bottom:162.015000px;}
.y18_c00398{bottom:187.365000px;}
.y17_c00398{bottom:213.015000px;}
.y16_c00398{bottom:237.615000px;}
.y15_c00398{bottom:262.665000px;}
.y14_c00398{bottom:287.565000px;}
.y13_c00398{bottom:312.915000px;}
.y12_c00398{bottom:337.815000px;}
.y11_c00398{bottom:362.865000px;}
.y10_c00398{bottom:388.215000px;}
.yf_c00398{bottom:413.415000px;}
.ye_c00398{bottom:438.765000px;}
.yd_c00398{bottom:463.515000px;}
.yc_c00398{bottom:488.415000px;}
.yb_c00398{bottom:514.065000px;}
.ya_c00398{bottom:537.765000px;}
.y9_c00398{bottom:563.715000px;}
.y8_c00398{bottom:588.615000px;}
.y7_c00398{bottom:613.965000px;}
.y6_c00398{bottom:639.015000px;}
.y5_c00398{bottom:664.665000px;}
.y4_c00398{bottom:690.165000px;}
.y3_c00398{bottom:723.615000px;}
.y2_c00398{bottom:740.265000px;}
.y1_c00398{bottom:790.515000px;}
.h6_c00398{height:13.200074px;}
.h7_c00398{height:43.804688px;}
.h5_c00398{height:80.758301px;}
.h4_c00398{height:87.361816px;}
.h2_c00398{height:87.780762px;}
.h3_c00398{height:91.056000px;}
.h1_c00398{height:831.000000px;}
.h0_c00398{height:831.075000px;}
.w2_c00398{width:104.875500px;}
.w0_c00398{width:582.375000px;}
.w1_c00398{width:582.750000px;}
.x0_c00398{left:0.000000px;}
.x5_c00398{left:37.500000px;}
.x7_c00398{left:39.450000px;}
.x8_c00398{left:41.100000px;}
.xa_c00398{left:42.900000px;}
.xb_c00398{left:44.250000px;}
.xc_c00398{left:46.200000px;}
.xd_c00398{left:47.550000px;}
.x4_c00398{left:61.800000px;}
.x6_c00398{left:66.750000px;}
.x9_c00398{left:67.800000px;}
.x3_c00398{left:71.850000px;}
.x2_c00398{left:173.100000px;}
.x1_c00398{left:202.800000px;}
.xf_c00398{left:243.001740px;}
.xe_c00398{left:427.500000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:-2.666667pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ls2_c00398{letter-spacing:2.666667pt;}
.ws0_c00398{word-spacing:-36.565333pt;}
.ws2_c00398{word-spacing:-14.781333pt;}
.ws1_c00398{word-spacing:-13.333333pt;}
.ws4_c00398{word-spacing:0.000000pt;}
.ws3_c00398{word-spacing:19.352000pt;}
._1f_c00398{margin-left:-24.962667pt;}
._d_c00398{margin-left:-18.522667pt;}
._f_c00398{margin-left:-16.434667pt;}
._1b_c00398{margin-left:-13.370667pt;}
._a_c00398{margin-left:-12.261333pt;}
._5_c00398{margin-left:-11.066667pt;}
._4_c00398{margin-left:-9.133333pt;}
._0_c00398{margin-left:-8.200000pt;}
._1_c00398{margin-left:-7.000000pt;}
._3_c00398{margin-left:-5.600000pt;}
._6_c00398{margin-left:-4.266667pt;}
._25_c00398{margin-left:-3.338667pt;}
._13_c00398{margin-left:-2.426667pt;}
._12_c00398{margin-left:-1.349333pt;}
._2_c00398{width:1.200000pt;}
._c_c00398{width:2.741333pt;}
._15_c00398{width:4.066667pt;}
._11_c00398{width:5.826667pt;}
._8_c00398{width:6.922667pt;}
._9_c00398{width:8.096000pt;}
._14_c00398{width:9.725333pt;}
._19_c00398{width:10.970667pt;}
._27_c00398{width:11.866667pt;}
._16_c00398{width:12.976000pt;}
._26_c00398{width:13.890667pt;}
._21_c00398{width:14.925333pt;}
._b_c00398{width:15.957333pt;}
._23_c00398{width:18.466667pt;}
._18_c00398{width:22.533333pt;}
._24_c00398{width:25.357333pt;}
._17_c00398{width:29.434667pt;}
._1c_c00398{width:30.544000pt;}
._e_c00398{width:42.810667pt;}
._28_c00398{width:45.264000pt;}
._1d_c00398{width:54.378667pt;}
._22_c00398{width:59.922667pt;}
._20_c00398{width:71.749333pt;}
._1e_c00398{width:112.976000pt;}
._1a_c00398{width:132.384000pt;}
._7_c00398{width:384.832000pt;}
._10_c00398{width:492.445333pt;}
.fs6_c00398{font-size:42.666667pt;}
.fs5_c00398{font-size:50.666667pt;}
.fs4_c00398{font-size:53.333333pt;}
.fs1_c00398{font-size:58.666667pt;}
.fs3_c00398{font-size:61.333333pt;}
.fs0_c00398{font-size:66.666667pt;}
.fs2_c00398{font-size:74.666667pt;}
.y0_c00398{bottom:0.000000pt;}
.y1d_c00398{bottom:2.760000pt;}
.y1c_c00398{bottom:6.425219pt;}
.y1b_c00398{bottom:55.880000pt;}
.y1a_c00398{bottom:120.946667pt;}
.y19_c00398{bottom:144.013333pt;}
.y18_c00398{bottom:166.546667pt;}
.y17_c00398{bottom:189.346667pt;}
.y16_c00398{bottom:211.213333pt;}
.y15_c00398{bottom:233.480000pt;}
.y14_c00398{bottom:255.613333pt;}
.y13_c00398{bottom:278.146667pt;}
.y12_c00398{bottom:300.280000pt;}
.y11_c00398{bottom:322.546667pt;}
.y10_c00398{bottom:345.080000pt;}
.yf_c00398{bottom:367.480000pt;}
.ye_c00398{bottom:390.013333pt;}
.yd_c00398{bottom:412.013333pt;}
.yc_c00398{bottom:434.146667pt;}
.yb_c00398{bottom:456.946667pt;}
.ya_c00398{bottom:478.013333pt;}
.y9_c00398{bottom:501.080000pt;}
.y8_c00398{bottom:523.213333pt;}
.y7_c00398{bottom:545.746667pt;}
.y6_c00398{bottom:568.013333pt;}
.y5_c00398{bottom:590.813333pt;}
.y4_c00398{bottom:613.480000pt;}
.y3_c00398{bottom:643.213333pt;}
.y2_c00398{bottom:658.013333pt;}
.y1_c00398{bottom:702.680000pt;}
.h6_c00398{height:11.733399pt;}
.h7_c00398{height:38.937500pt;}
.h5_c00398{height:71.785156pt;}
.h4_c00398{height:77.654948pt;}
.h2_c00398{height:78.027344pt;}
.h3_c00398{height:80.938667pt;}
.h1_c00398{height:738.666667pt;}
.h0_c00398{height:738.733333pt;}
.w2_c00398{width:93.222667pt;}
.w0_c00398{width:517.666667pt;}
.w1_c00398{width:518.000000pt;}
.x0_c00398{left:0.000000pt;}
.x5_c00398{left:33.333333pt;}
.x7_c00398{left:35.066667pt;}
.x8_c00398{left:36.533333pt;}
.xa_c00398{left:38.133333pt;}
.xb_c00398{left:39.333333pt;}
.xc_c00398{left:41.066667pt;}
.xd_c00398{left:42.266667pt;}
.x4_c00398{left:54.933333pt;}
.x6_c00398{left:59.333333pt;}
.x9_c00398{left:60.266667pt;}
.x3_c00398{left:63.866667pt;}
.x2_c00398{left:153.866667pt;}
.x1_c00398{left:180.266667pt;}
.xf_c00398{left:216.001546pt;}
.xe_c00398{left:380.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_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_3718f46dc3b18c32fd09e4eb.woff2')format("woff");}.ff1_c00399{font-family:ff1_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:ff2_c00399;src:url('chunks/assets/font_5823bc53ad7c270084e86580.woff2')format("woff");}.ff2_c00399{font-family:ff2_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:ff3_c00399;src:url('chunks/assets/font_ced8f96add8b897158536409.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;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_c00399;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;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_c00399;src:url('chunks/assets/font_9951511a9dd6348e5663d263.woff2')format("woff");}.ff5_c00399{font-family:ff5_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:ff6_c00399;src:url('chunks/assets/font_b84947886b7622072a15da74.woff2')format("woff");}.ff6_c00399{font-family:ff6_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:ff7_c00399;src:url('chunks/assets/font_7a6cfddff1c918cbefe2f295.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;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_c00399;src:url('chunks/assets/font_c9199913124ba7a449d2fe3f.woff2')format("woff");}.ff8_c00399{font-family:ff8_c00399;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_c00399;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00399{font-family:ff9_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;}
.ls3_c00399{letter-spacing:-6.000000px;}
.ls4_c00399{letter-spacing:-3.000000px;}
.ls5_c00399{letter-spacing:0.000000px;}
.ls2_c00399{letter-spacing:2.946000px;}
.ls6_c00399{letter-spacing:3.000000px;}
.ls0_c00399{letter-spacing:30.000000px;}
.ls1_c00399{letter-spacing:90.048000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:-34.989000px;}
.ws1_c00399{word-spacing:-25.308000px;}
.ws2_c00399{word-spacing:-21.672000px;}
.ws3_c00399{word-spacing:-16.425000px;}
.ws4_c00399{word-spacing:0.000000px;}
._20_c00399{margin-left:-72.618000px;}
._a_c00399{margin-left:-45.636000px;}
._b_c00399{margin-left:-31.500000px;}
._14_c00399{margin-left:-20.514000px;}
._2b_c00399{margin-left:-15.192000px;}
._29_c00399{margin-left:-13.593000px;}
._1e_c00399{margin-left:-12.402000px;}
._1c_c00399{margin-left:-11.232000px;}
._8_c00399{margin-left:-9.888000px;}
._31_c00399{margin-left:-8.352000px;}
._22_c00399{margin-left:-7.224000px;}
._9_c00399{margin-left:-5.460000px;}
._19_c00399{margin-left:-4.422000px;}
._18_c00399{margin-left:-3.414000px;}
._11_c00399{margin-left:-1.854000px;}
._4_c00399{width:1.458000px;}
._12_c00399{width:3.252000px;}
._c_c00399{width:4.320000px;}
._10_c00399{width:5.526000px;}
._e_c00399{width:6.624000px;}
._f_c00399{width:8.064000px;}
._2_c00399{width:10.044000px;}
._13_c00399{width:11.664000px;}
._6_c00399{width:13.104000px;}
._17_c00399{width:14.454000px;}
._1a_c00399{width:16.212000px;}
._5_c00399{width:17.304000px;}
._7_c00399{width:18.816000px;}
._0_c00399{width:21.060000px;}
._2d_c00399{width:22.884000px;}
._1_c00399{width:24.705000px;}
._2e_c00399{width:26.382000px;}
._30_c00399{width:28.776000px;}
._2c_c00399{width:30.768000px;}
._24_c00399{width:33.744000px;}
._1d_c00399{width:35.256000px;}
._28_c00399{width:37.140000px;}
._15_c00399{width:65.520000px;}
._25_c00399{width:66.576000px;}
._2f_c00399{width:67.914000px;}
._16_c00399{width:69.480000px;}
._33_c00399{width:85.332000px;}
._d_c00399{width:87.336000px;}
._2a_c00399{width:112.482000px;}
._21_c00399{width:124.020000px;}
._1b_c00399{width:154.458000px;}
._23_c00399{width:266.610000px;}
._27_c00399{width:298.974000px;}
._32_c00399{width:370.770000px;}
._3_c00399{width:431.787000px;}
._26_c00399{width:549.312000px;}
._1f_c00399{width:898.542000px;}
.fc2_c00399{color:transparent;}
.fc1_c00399{color:rgb(128,128,128);}
.fc0_c00399{color:rgb(0,0,0);}
.fs6_c00399{font-size:42.000000px;}
.fs8_c00399{font-size:48.000000px;}
.fs3_c00399{font-size:57.000000px;}
.fs5_c00399{font-size:69.000000px;}
.fs2_c00399{font-size:72.000000px;}
.fs7_c00399{font-size:75.000000px;}
.fs4_c00399{font-size:78.000000px;}
.fs0_c00399{font-size:81.000000px;}
.fs1_c00399{font-size:84.000000px;}
.y0_c00399{bottom:0.000000px;}
.y1e_c00399{bottom:3.105000px;}
.y1d_c00399{bottom:7.228363px;}
.y1c_c00399{bottom:72.600000px;}
.y1b_c00399{bottom:98.100000px;}
.y1a_c00399{bottom:122.850000px;}
.y19_c00399{bottom:149.100000px;}
.y18_c00399{bottom:172.500000px;}
.y17_c00399{bottom:199.050000px;}
.y16_c00399{bottom:223.650000px;}
.y15_c00399{bottom:249.000000px;}
.y14_c00399{bottom:273.750000px;}
.y13_c00399{bottom:299.700000px;}
.y12_c00399{bottom:323.700000px;}
.y11_c00399{bottom:349.200000px;}
.y10_c00399{bottom:373.650000px;}
.yf_c00399{bottom:399.300000px;}
.ye_c00399{bottom:424.200000px;}
.yd_c00399{bottom:449.850000px;}
.yc_c00399{bottom:474.750000px;}
.yb_c00399{bottom:500.100000px;}
.ya_c00399{bottom:524.850000px;}
.y9_c00399{bottom:549.900000px;}
.y8_c00399{bottom:575.100000px;}
.y7_c00399{bottom:600.450000px;}
.y6_c00399{bottom:625.350000px;}
.y5_c00399{bottom:650.400000px;}
.y4_c00399{bottom:675.300000px;}
.y3_c00399{bottom:700.950000px;}
.y2_c00399{bottom:726.300000px;}
.y1_c00399{bottom:776.550000px;}
.h5_c00399{height:13.200074px;}
.h6_c00399{height:43.804688px;}
.h2_c00399{height:91.056000px;}
.h3_c00399{height:91.160156px;}
.h4_c00399{height:98.756836px;}
.h1_c00399{height:102.555176px;}
.h0_c00399{height:810.000000px;}
.w2_c00399{width:104.875500px;}
.w0_c00399{width:559.950000px;}
.w1_c00399{width:560.250000px;}
.x0_c00399{left:0.000000px;}
.x6_c00399{left:16.950000px;}
.xa_c00399{left:65.550000px;}
.x9_c00399{left:75.900000px;}
.x8_c00399{left:77.400000px;}
.x7_c00399{left:78.750000px;}
.x4_c00399{left:80.100000px;}
.x5_c00399{left:82.650000px;}
.x1_c00399{left:96.600000px;}
.xb_c00399{left:103.350000px;}
.x3_c00399{left:109.650000px;}
.x2_c00399{left:214.950000px;}
.xc_c00399{left:231.789230px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls3_c00399{letter-spacing:-5.333333pt;}
.ls4_c00399{letter-spacing:-2.666667pt;}
.ls5_c00399{letter-spacing:0.000000pt;}
.ls2_c00399{letter-spacing:2.618667pt;}
.ls6_c00399{letter-spacing:2.666667pt;}
.ls0_c00399{letter-spacing:26.666667pt;}
.ls1_c00399{letter-spacing:80.042667pt;}
.ws0_c00399{word-spacing:-31.101333pt;}
.ws1_c00399{word-spacing:-22.496000pt;}
.ws2_c00399{word-spacing:-19.264000pt;}
.ws3_c00399{word-spacing:-14.600000pt;}
.ws4_c00399{word-spacing:0.000000pt;}
._20_c00399{margin-left:-64.549333pt;}
._a_c00399{margin-left:-40.565333pt;}
._b_c00399{margin-left:-28.000000pt;}
._14_c00399{margin-left:-18.234667pt;}
._2b_c00399{margin-left:-13.504000pt;}
._29_c00399{margin-left:-12.082667pt;}
._1e_c00399{margin-left:-11.024000pt;}
._1c_c00399{margin-left:-9.984000pt;}
._8_c00399{margin-left:-8.789333pt;}
._31_c00399{margin-left:-7.424000pt;}
._22_c00399{margin-left:-6.421333pt;}
._9_c00399{margin-left:-4.853333pt;}
._19_c00399{margin-left:-3.930667pt;}
._18_c00399{margin-left:-3.034667pt;}
._11_c00399{margin-left:-1.648000pt;}
._4_c00399{width:1.296000pt;}
._12_c00399{width:2.890667pt;}
._c_c00399{width:3.840000pt;}
._10_c00399{width:4.912000pt;}
._e_c00399{width:5.888000pt;}
._f_c00399{width:7.168000pt;}
._2_c00399{width:8.928000pt;}
._13_c00399{width:10.368000pt;}
._6_c00399{width:11.648000pt;}
._17_c00399{width:12.848000pt;}
._1a_c00399{width:14.410667pt;}
._5_c00399{width:15.381333pt;}
._7_c00399{width:16.725333pt;}
._0_c00399{width:18.720000pt;}
._2d_c00399{width:20.341333pt;}
._1_c00399{width:21.960000pt;}
._2e_c00399{width:23.450667pt;}
._30_c00399{width:25.578667pt;}
._2c_c00399{width:27.349333pt;}
._24_c00399{width:29.994667pt;}
._1d_c00399{width:31.338667pt;}
._28_c00399{width:33.013333pt;}
._15_c00399{width:58.240000pt;}
._25_c00399{width:59.178667pt;}
._2f_c00399{width:60.368000pt;}
._16_c00399{width:61.760000pt;}
._33_c00399{width:75.850667pt;}
._d_c00399{width:77.632000pt;}
._2a_c00399{width:99.984000pt;}
._21_c00399{width:110.240000pt;}
._1b_c00399{width:137.296000pt;}
._23_c00399{width:236.986667pt;}
._27_c00399{width:265.754667pt;}
._32_c00399{width:329.573333pt;}
._3_c00399{width:383.810667pt;}
._26_c00399{width:488.277333pt;}
._1f_c00399{width:798.704000pt;}
.fs6_c00399{font-size:37.333333pt;}
.fs8_c00399{font-size:42.666667pt;}
.fs3_c00399{font-size:50.666667pt;}
.fs5_c00399{font-size:61.333333pt;}
.fs2_c00399{font-size:64.000000pt;}
.fs7_c00399{font-size:66.666667pt;}
.fs4_c00399{font-size:69.333333pt;}
.fs0_c00399{font-size:72.000000pt;}
.fs1_c00399{font-size:74.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.y1e_c00399{bottom:2.760000pt;}
.y1d_c00399{bottom:6.425212pt;}
.y1c_c00399{bottom:64.533333pt;}
.y1b_c00399{bottom:87.200000pt;}
.y1a_c00399{bottom:109.200000pt;}
.y19_c00399{bottom:132.533333pt;}
.y18_c00399{bottom:153.333333pt;}
.y17_c00399{bottom:176.933333pt;}
.y16_c00399{bottom:198.800000pt;}
.y15_c00399{bottom:221.333333pt;}
.y14_c00399{bottom:243.333333pt;}
.y13_c00399{bottom:266.400000pt;}
.y12_c00399{bottom:287.733333pt;}
.y11_c00399{bottom:310.400000pt;}
.y10_c00399{bottom:332.133333pt;}
.yf_c00399{bottom:354.933333pt;}
.ye_c00399{bottom:377.066667pt;}
.yd_c00399{bottom:399.866667pt;}
.yc_c00399{bottom:422.000000pt;}
.yb_c00399{bottom:444.533333pt;}
.ya_c00399{bottom:466.533333pt;}
.y9_c00399{bottom:488.800000pt;}
.y8_c00399{bottom:511.200000pt;}
.y7_c00399{bottom:533.733333pt;}
.y6_c00399{bottom:555.866667pt;}
.y5_c00399{bottom:578.133333pt;}
.y4_c00399{bottom:600.266667pt;}
.y3_c00399{bottom:623.066667pt;}
.y2_c00399{bottom:645.600000pt;}
.y1_c00399{bottom:690.266667pt;}
.h5_c00399{height:11.733399pt;}
.h6_c00399{height:38.937500pt;}
.h2_c00399{height:80.938667pt;}
.h3_c00399{height:81.031250pt;}
.h4_c00399{height:87.783854pt;}
.h1_c00399{height:91.160156pt;}
.h0_c00399{height:720.000000pt;}
.w2_c00399{width:93.222667pt;}
.w0_c00399{width:497.733333pt;}
.w1_c00399{width:498.000000pt;}
.x0_c00399{left:0.000000pt;}
.x6_c00399{left:15.066667pt;}
.xa_c00399{left:58.266667pt;}
.x9_c00399{left:67.466667pt;}
.x8_c00399{left:68.800000pt;}
.x7_c00399{left:70.000000pt;}
.x4_c00399{left:71.200000pt;}
.x5_c00399{left:73.466667pt;}
.x1_c00399{left:85.866667pt;}
.xb_c00399{left:91.866667pt;}
.x3_c00399{left:97.466667pt;}
.x2_c00399{left:191.066667pt;}
.xc_c00399{left:206.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67fd91abbfd58f24aec8d325.woff2')format("woff");}.ff1_c00400{font-family:ff1_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:ff2_c00400;src:url('chunks/assets/font_1005ef9b81e265f6570916d4.woff2')format("woff");}.ff2_c00400{font-family:ff2_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:ff3_c00400;src:url('chunks/assets/font_2a95fc591644e7aa592177c2.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;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_c00400;src:url('chunks/assets/font_c2f3a2d533a344befa929220.woff2')format("woff");}.ff4_c00400{font-family:ff4_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:ff5_c00400;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00400{font-family:ff5_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;}
.ls4_c00400{letter-spacing:0.000000px;}
.ls5_c00400{letter-spacing:3.000000px;}
.ls1_c00400{letter-spacing:5.448000px;}
.ls2_c00400{letter-spacing:8.400000px;}
.ls3_c00400{letter-spacing:13.788000px;}
.ls0_c00400{letter-spacing:23.346000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00400{word-spacing:-62.031000px;}
.ws1_c00400{word-spacing:-21.672000px;}
.ws2_c00400{word-spacing:-18.798000px;}
.ws0_c00400{word-spacing:-18.075000px;}
.ws4_c00400{word-spacing:-16.629000px;}
.ws5_c00400{word-spacing:0.000000px;}
._1f_c00400{margin-left:-28.344000px;}
._17_c00400{margin-left:-24.255000px;}
._25_c00400{margin-left:-23.166000px;}
._b_c00400{margin-left:-21.597000px;}
._26_c00400{margin-left:-18.426000px;}
._d_c00400{margin-left:-16.422000px;}
._f_c00400{margin-left:-14.214000px;}
._16_c00400{margin-left:-12.912000px;}
._18_c00400{margin-left:-11.712000px;}
._10_c00400{margin-left:-10.230000px;}
._15_c00400{margin-left:-8.901000px;}
._e_c00400{margin-left:-7.176000px;}
._4_c00400{margin-left:-5.382000px;}
._5_c00400{margin-left:-3.312000px;}
._2_c00400{margin-left:-1.932000px;}
._0_c00400{width:1.104000px;}
._c_c00400{width:2.829000px;}
._14_c00400{width:4.035000px;}
._11_c00400{width:5.625000px;}
._12_c00400{width:7.242000px;}
._2c_c00400{width:8.307000px;}
._1_c00400{width:9.453000px;}
._6_c00400{width:11.316000px;}
._2d_c00400{width:12.363000px;}
._23_c00400{width:13.542000px;}
._7_c00400{width:14.628000px;}
._2e_c00400{width:15.756000px;}
._1a_c00400{width:16.788000px;}
._a_c00400{width:19.941000px;}
._8_c00400{width:21.873000px;}
._9_c00400{width:23.322000px;}
._22_c00400{width:25.194000px;}
._2a_c00400{width:28.125000px;}
._21_c00400{width:29.673000px;}
._13_c00400{width:40.377000px;}
._24_c00400{width:42.354000px;}
._20_c00400{width:50.154000px;}
._1d_c00400{width:74.523000px;}
._29_c00400{width:77.571000px;}
._1e_c00400{width:78.891000px;}
._1c_c00400{width:151.830000px;}
._2b_c00400{width:330.096000px;}
._28_c00400{width:347.709000px;}
._1b_c00400{width:351.186000px;}
._27_c00400{width:367.239000px;}
._3_c00400{width:533.652000px;}
._19_c00400{width:558.984000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(128,128,128);}
.fc0_c00400{color:rgb(0,0,0);}
.fs6_c00400{font-size:48.000000px;}
.fs0_c00400{font-size:69.000000px;}
.fs2_c00400{font-size:72.000000px;}
.fs1_c00400{font-size:75.000000px;}
.fs3_c00400{font-size:78.000000px;}
.fs4_c00400{font-size:84.000000px;}
.fs5_c00400{font-size:93.000000px;}
.y0_c00400{bottom:0.000000px;}
.y1c_c00400{bottom:3.105000px;}
.y1b_c00400{bottom:7.228371px;}
.y1a_c00400{bottom:104.715000px;}
.y19_c00400{bottom:130.365000px;}
.y18_c00400{bottom:155.715000px;}
.y17_c00400{bottom:180.915000px;}
.y16_c00400{bottom:206.265000px;}
.y15_c00400{bottom:231.315000px;}
.y14_c00400{bottom:256.815000px;}
.y13_c00400{bottom:281.565000px;}
.y12_c00400{bottom:307.815000px;}
.y11_c00400{bottom:331.815000px;}
.y10_c00400{bottom:356.865000px;}
.yf_c00400{bottom:381.765000px;}
.ye_c00400{bottom:407.115000px;}
.yd_c00400{bottom:432.015000px;}
.yc_c00400{bottom:457.065000px;}
.yb_c00400{bottom:482.265000px;}
.ya_c00400{bottom:507.015000px;}
.y9_c00400{bottom:532.215000px;}
.y8_c00400{bottom:557.265000px;}
.y7_c00400{bottom:581.865000px;}
.y6_c00400{bottom:607.515000px;}
.y5_c00400{bottom:633.165000px;}
.y4_c00400{bottom:658.515000px;}
.y3_c00400{bottom:683.565000px;}
.y2_c00400{bottom:733.515000px;}
.y1_c00400{bottom:784.665000px;}
.h5_c00400{height:13.200074px;}
.h6_c00400{height:43.804688px;}
.h2_c00400{height:87.361816px;}
.h3_c00400{height:94.958496px;}
.h4_c00400{height:98.756836px;}
.h1_c00400{height:831.000000px;}
.h0_c00400{height:831.075000px;}
.w2_c00400{width:104.875500px;}
.w0_c00400{width:582.375000px;}
.w1_c00400{width:582.750000px;}
.x0_c00400{left:0.000000px;}
.x5_c00400{left:32.400000px;}
.x4_c00400{left:34.350000px;}
.x7_c00400{left:36.000000px;}
.x8_c00400{left:37.050000px;}
.xa_c00400{left:38.400000px;}
.xc_c00400{left:40.050000px;}
.x3_c00400{left:45.300000px;}
.xb_c00400{left:50.850000px;}
.x9_c00400{left:58.950000px;}
.x6_c00400{left:60.000000px;}
.x2_c00400{left:168.750000px;}
.x1_c00400{left:198.750000px;}
.xd_c00400{left:243.001740px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls4_c00400{letter-spacing:0.000000pt;}
.ls5_c00400{letter-spacing:2.666667pt;}
.ls1_c00400{letter-spacing:4.842667pt;}
.ls2_c00400{letter-spacing:7.466667pt;}
.ls3_c00400{letter-spacing:12.256000pt;}
.ls0_c00400{letter-spacing:20.752000pt;}
.ws3_c00400{word-spacing:-55.138667pt;}
.ws1_c00400{word-spacing:-19.264000pt;}
.ws2_c00400{word-spacing:-16.709333pt;}
.ws0_c00400{word-spacing:-16.066667pt;}
.ws4_c00400{word-spacing:-14.781333pt;}
.ws5_c00400{word-spacing:0.000000pt;}
._1f_c00400{margin-left:-25.194667pt;}
._17_c00400{margin-left:-21.560000pt;}
._25_c00400{margin-left:-20.592000pt;}
._b_c00400{margin-left:-19.197333pt;}
._26_c00400{margin-left:-16.378667pt;}
._d_c00400{margin-left:-14.597333pt;}
._f_c00400{margin-left:-12.634667pt;}
._16_c00400{margin-left:-11.477333pt;}
._18_c00400{margin-left:-10.410667pt;}
._10_c00400{margin-left:-9.093333pt;}
._15_c00400{margin-left:-7.912000pt;}
._e_c00400{margin-left:-6.378667pt;}
._4_c00400{margin-left:-4.784000pt;}
._5_c00400{margin-left:-2.944000pt;}
._2_c00400{margin-left:-1.717333pt;}
._0_c00400{width:0.981333pt;}
._c_c00400{width:2.514667pt;}
._14_c00400{width:3.586667pt;}
._11_c00400{width:5.000000pt;}
._12_c00400{width:6.437333pt;}
._2c_c00400{width:7.384000pt;}
._1_c00400{width:8.402667pt;}
._6_c00400{width:10.058667pt;}
._2d_c00400{width:10.989333pt;}
._23_c00400{width:12.037333pt;}
._7_c00400{width:13.002667pt;}
._2e_c00400{width:14.005333pt;}
._1a_c00400{width:14.922667pt;}
._a_c00400{width:17.725333pt;}
._8_c00400{width:19.442667pt;}
._9_c00400{width:20.730667pt;}
._22_c00400{width:22.394667pt;}
._2a_c00400{width:25.000000pt;}
._21_c00400{width:26.376000pt;}
._13_c00400{width:35.890667pt;}
._24_c00400{width:37.648000pt;}
._20_c00400{width:44.581333pt;}
._1d_c00400{width:66.242667pt;}
._29_c00400{width:68.952000pt;}
._1e_c00400{width:70.125333pt;}
._1c_c00400{width:134.960000pt;}
._2b_c00400{width:293.418667pt;}
._28_c00400{width:309.074667pt;}
._1b_c00400{width:312.165333pt;}
._27_c00400{width:326.434667pt;}
._3_c00400{width:474.357333pt;}
._19_c00400{width:496.874667pt;}
.fs6_c00400{font-size:42.666667pt;}
.fs0_c00400{font-size:61.333333pt;}
.fs2_c00400{font-size:64.000000pt;}
.fs1_c00400{font-size:66.666667pt;}
.fs3_c00400{font-size:69.333333pt;}
.fs4_c00400{font-size:74.666667pt;}
.fs5_c00400{font-size:82.666667pt;}
.y0_c00400{bottom:0.000000pt;}
.y1c_c00400{bottom:2.760000pt;}
.y1b_c00400{bottom:6.425219pt;}
.y1a_c00400{bottom:93.080000pt;}
.y19_c00400{bottom:115.880000pt;}
.y18_c00400{bottom:138.413333pt;}
.y17_c00400{bottom:160.813333pt;}
.y16_c00400{bottom:183.346667pt;}
.y15_c00400{bottom:205.613333pt;}
.y14_c00400{bottom:228.280000pt;}
.y13_c00400{bottom:250.280000pt;}
.y12_c00400{bottom:273.613333pt;}
.y11_c00400{bottom:294.946667pt;}
.y10_c00400{bottom:317.213333pt;}
.yf_c00400{bottom:339.346667pt;}
.ye_c00400{bottom:361.880000pt;}
.yd_c00400{bottom:384.013333pt;}
.yc_c00400{bottom:406.280000pt;}
.yb_c00400{bottom:428.680000pt;}
.ya_c00400{bottom:450.680000pt;}
.y9_c00400{bottom:473.080000pt;}
.y8_c00400{bottom:495.346667pt;}
.y7_c00400{bottom:517.213333pt;}
.y6_c00400{bottom:540.013333pt;}
.y5_c00400{bottom:562.813333pt;}
.y4_c00400{bottom:585.346667pt;}
.y3_c00400{bottom:607.613333pt;}
.y2_c00400{bottom:652.013333pt;}
.y1_c00400{bottom:697.480000pt;}
.h5_c00400{height:11.733399pt;}
.h6_c00400{height:38.937500pt;}
.h2_c00400{height:77.654948pt;}
.h3_c00400{height:84.407552pt;}
.h4_c00400{height:87.783854pt;}
.h1_c00400{height:738.666667pt;}
.h0_c00400{height:738.733333pt;}
.w2_c00400{width:93.222667pt;}
.w0_c00400{width:517.666667pt;}
.w1_c00400{width:518.000000pt;}
.x0_c00400{left:0.000000pt;}
.x5_c00400{left:28.800000pt;}
.x4_c00400{left:30.533333pt;}
.x7_c00400{left:32.000000pt;}
.x8_c00400{left:32.933333pt;}
.xa_c00400{left:34.133333pt;}
.xc_c00400{left:35.600000pt;}
.x3_c00400{left:40.266667pt;}
.xb_c00400{left:45.200000pt;}
.x9_c00400{left:52.400000pt;}
.x6_c00400{left:53.333333pt;}
.x2_c00400{left:150.000000pt;}
.x1_c00400{left:176.666667pt;}
.xd_c00400{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6c0583e2f1dd7e71e8fef12.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.568848;font-style:normal;font-weight:normal;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_a684bb5ccd341932c9bac187.woff2')format("woff");}.ff2_c00401{font-family:ff2_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:ff3_c00401;src:url('chunks/assets/font_c8ec3e6bb01e92a5d2cc3895.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;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_c00401;src:url('chunks/assets/font_2e15a214e15d37221e68676e.woff2')format("woff");}.ff4_c00401{font-family:ff4_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:ff5_c00401;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00401{font-family:ff5_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;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls1_c00401{letter-spacing:3.000000px;}
.ls0_c00401{letter-spacing:10.272000px;}
.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;}
}
.ws2_c00401{word-spacing:-24.582000px;}
.ws0_c00401{word-spacing:-16.629000px;}
.ws3_c00401{word-spacing:0.000000px;}
.ws1_c00401{word-spacing:5.589000px;}
._1b_c00401{margin-left:-23.529000px;}
._2e_c00401{margin-left:-21.060000px;}
._2_c00401{margin-left:-16.353000px;}
._19_c00401{margin-left:-15.111000px;}
._13_c00401{margin-left:-13.800000px;}
._1d_c00401{margin-left:-11.859000px;}
._1_c00401{margin-left:-9.729000px;}
._0_c00401{margin-left:-8.280000px;}
._16_c00401{margin-left:-6.969000px;}
._12_c00401{margin-left:-5.037000px;}
._11_c00401{margin-left:-3.657000px;}
._10_c00401{margin-left:-2.346000px;}
._4_c00401{margin-left:-1.035000px;}
._e_c00401{width:1.725000px;}
._20_c00401{width:2.772000px;}
._f_c00401{width:3.795000px;}
._17_c00401{width:5.343000px;}
._15_c00401{width:6.900000px;}
._1a_c00401{width:8.211000px;}
._d_c00401{width:10.221000px;}
._a_c00401{width:11.523000px;}
._c_c00401{width:12.801000px;}
._5_c00401{width:14.145000px;}
._21_c00401{width:15.420000px;}
._18_c00401{width:16.734000px;}
._14_c00401{width:17.763000px;}
._1c_c00401{width:21.636000px;}
._28_c00401{width:23.070000px;}
._6_c00401{width:24.495000px;}
._7_c00401{width:25.530000px;}
._27_c00401{width:26.541000px;}
._9_c00401{width:27.669000px;}
._b_c00401{width:29.187000px;}
._26_c00401{width:30.867000px;}
._2a_c00401{width:33.165000px;}
._25_c00401{width:35.628000px;}
._8_c00401{width:38.571000px;}
._23_c00401{width:51.138000px;}
._1e_c00401{width:59.178000px;}
._2f_c00401{width:68.796000px;}
._24_c00401{width:89.229000px;}
._22_c00401{width:96.300000px;}
._2c_c00401{width:100.923000px;}
._29_c00401{width:349.155000px;}
._1f_c00401{width:434.412000px;}
._2b_c00401{width:440.841000px;}
._3_c00401{width:490.365000px;}
._2d_c00401{width:800.091000px;}
.fc2_c00401{color:transparent;}
.fc1_c00401{color:rgb(128,128,128);}
.fc0_c00401{color:rgb(0,0,0);}
.fs5_c00401{font-size:48.000000px;}
.fs0_c00401{font-size:69.000000px;}
.fs3_c00401{font-size:75.000000px;}
.fs2_c00401{font-size:78.000000px;}
.fs4_c00401{font-size:84.000000px;}
.fs1_c00401{font-size:102.000000px;}
.y0_c00401{bottom:0.000000px;}
.y1c_c00401{bottom:3.105000px;}
.y1b_c00401{bottom:7.228363px;}
.y1a_c00401{bottom:100.350000px;}
.y19_c00401{bottom:128.250000px;}
.y18_c00401{bottom:155.550000px;}
.y17_c00401{bottom:179.250000px;}
.y16_c00401{bottom:204.600000px;}
.y15_c00401{bottom:229.950000px;}
.y14_c00401{bottom:255.450000px;}
.y13_c00401{bottom:280.800000px;}
.y12_c00401{bottom:305.400000px;}
.y11_c00401{bottom:329.700000px;}
.y10_c00401{bottom:355.800000px;}
.yf_c00401{bottom:380.400000px;}
.ye_c00401{bottom:405.450000px;}
.yd_c00401{bottom:430.950000px;}
.yc_c00401{bottom:456.900000px;}
.yb_c00401{bottom:482.250000px;}
.ya_c00401{bottom:506.250000px;}
.y9_c00401{bottom:531.600000px;}
.y8_c00401{bottom:557.250000px;}
.y7_c00401{bottom:582.300000px;}
.y6_c00401{bottom:607.800000px;}
.y5_c00401{bottom:633.150000px;}
.y4_c00401{bottom:658.200000px;}
.y3_c00401{bottom:683.400000px;}
.y2_c00401{bottom:733.350000px;}
.y1_c00401{bottom:783.750000px;}
.h5_c00401{height:13.200074px;}
.h6_c00401{height:43.804688px;}
.h2_c00401{height:87.361816px;}
.h4_c00401{height:98.756836px;}
.h3_c00401{height:119.381836px;}
.h1_c00401{height:827.250000px;}
.h0_c00401{height:827.550000px;}
.w2_c00401{width:104.875500px;}
.w0_c00401{width:572.100000px;}
.w1_c00401{width:572.250000px;}
.x0_c00401{left:0.000000px;}
.x6_c00401{left:95.850000px;}
.x7_c00401{left:96.900000px;}
.x4_c00401{left:98.550000px;}
.x5_c00401{left:99.900000px;}
.x9_c00401{left:100.950000px;}
.x8_c00401{left:103.950000px;}
.x3_c00401{left:125.250000px;}
.x1_c00401{left:138.000000px;}
.x2_c00401{left:237.300000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls1_c00401{letter-spacing:2.666667pt;}
.ls0_c00401{letter-spacing:9.130667pt;}
.ws2_c00401{word-spacing:-21.850667pt;}
.ws0_c00401{word-spacing:-14.781333pt;}
.ws3_c00401{word-spacing:0.000000pt;}
.ws1_c00401{word-spacing:4.968000pt;}
._1b_c00401{margin-left:-20.914667pt;}
._2e_c00401{margin-left:-18.720000pt;}
._2_c00401{margin-left:-14.536000pt;}
._19_c00401{margin-left:-13.432000pt;}
._13_c00401{margin-left:-12.266667pt;}
._1d_c00401{margin-left:-10.541333pt;}
._1_c00401{margin-left:-8.648000pt;}
._0_c00401{margin-left:-7.360000pt;}
._16_c00401{margin-left:-6.194667pt;}
._12_c00401{margin-left:-4.477333pt;}
._11_c00401{margin-left:-3.250667pt;}
._10_c00401{margin-left:-2.085333pt;}
._4_c00401{margin-left:-0.920000pt;}
._e_c00401{width:1.533333pt;}
._20_c00401{width:2.464000pt;}
._f_c00401{width:3.373333pt;}
._17_c00401{width:4.749333pt;}
._15_c00401{width:6.133333pt;}
._1a_c00401{width:7.298667pt;}
._d_c00401{width:9.085333pt;}
._a_c00401{width:10.242667pt;}
._c_c00401{width:11.378667pt;}
._5_c00401{width:12.573333pt;}
._21_c00401{width:13.706667pt;}
._18_c00401{width:14.874667pt;}
._14_c00401{width:15.789333pt;}
._1c_c00401{width:19.232000pt;}
._28_c00401{width:20.506667pt;}
._6_c00401{width:21.773333pt;}
._7_c00401{width:22.693333pt;}
._27_c00401{width:23.592000pt;}
._9_c00401{width:24.594667pt;}
._b_c00401{width:25.944000pt;}
._26_c00401{width:27.437333pt;}
._2a_c00401{width:29.480000pt;}
._25_c00401{width:31.669333pt;}
._8_c00401{width:34.285333pt;}
._23_c00401{width:45.456000pt;}
._1e_c00401{width:52.602667pt;}
._2f_c00401{width:61.152000pt;}
._24_c00401{width:79.314667pt;}
._22_c00401{width:85.600000pt;}
._2c_c00401{width:89.709333pt;}
._29_c00401{width:310.360000pt;}
._1f_c00401{width:386.144000pt;}
._2b_c00401{width:391.858667pt;}
._3_c00401{width:435.880000pt;}
._2d_c00401{width:711.192000pt;}
.fs5_c00401{font-size:42.666667pt;}
.fs0_c00401{font-size:61.333333pt;}
.fs3_c00401{font-size:66.666667pt;}
.fs2_c00401{font-size:69.333333pt;}
.fs4_c00401{font-size:74.666667pt;}
.fs1_c00401{font-size:90.666667pt;}
.y0_c00401{bottom:0.000000pt;}
.y1c_c00401{bottom:2.760000pt;}
.y1b_c00401{bottom:6.425212pt;}
.y1a_c00401{bottom:89.200000pt;}
.y19_c00401{bottom:114.000000pt;}
.y18_c00401{bottom:138.266667pt;}
.y17_c00401{bottom:159.333333pt;}
.y16_c00401{bottom:181.866667pt;}
.y15_c00401{bottom:204.400000pt;}
.y14_c00401{bottom:227.066667pt;}
.y13_c00401{bottom:249.600000pt;}
.y12_c00401{bottom:271.466667pt;}
.y11_c00401{bottom:293.066667pt;}
.y10_c00401{bottom:316.266667pt;}
.yf_c00401{bottom:338.133333pt;}
.ye_c00401{bottom:360.400000pt;}
.yd_c00401{bottom:383.066667pt;}
.yc_c00401{bottom:406.133333pt;}
.yb_c00401{bottom:428.666667pt;}
.ya_c00401{bottom:450.000000pt;}
.y9_c00401{bottom:472.533333pt;}
.y8_c00401{bottom:495.333333pt;}
.y7_c00401{bottom:517.600000pt;}
.y6_c00401{bottom:540.266667pt;}
.y5_c00401{bottom:562.800000pt;}
.y4_c00401{bottom:585.066667pt;}
.y3_c00401{bottom:607.466667pt;}
.y2_c00401{bottom:651.866667pt;}
.y1_c00401{bottom:696.666667pt;}
.h5_c00401{height:11.733399pt;}
.h6_c00401{height:38.937500pt;}
.h2_c00401{height:77.654948pt;}
.h4_c00401{height:87.783854pt;}
.h3_c00401{height:106.117188pt;}
.h1_c00401{height:735.333333pt;}
.h0_c00401{height:735.600000pt;}
.w2_c00401{width:93.222667pt;}
.w0_c00401{width:508.533333pt;}
.w1_c00401{width:508.666667pt;}
.x0_c00401{left:0.000000pt;}
.x6_c00401{left:85.200000pt;}
.x7_c00401{left:86.133333pt;}
.x4_c00401{left:87.600000pt;}
.x5_c00401{left:88.800000pt;}
.x9_c00401{left:89.733333pt;}
.x8_c00401{left:92.400000pt;}
.x3_c00401{left:111.333333pt;}
.x1_c00401{left:122.666667pt;}
.x2_c00401{left:210.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_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_cd9a27457d1163a31c9afe06.woff2')format("woff");}.ff1_c00402{font-family:ff1_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:ff2_c00402;src:url('chunks/assets/font_c8d26c3804ca72f19d0e1775.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;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_c00402;src:url('chunks/assets/font_25c48b02e948e290b3bb9bd2.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_e1ccb0be616cd58154f3521d.woff2')format("woff");}.ff4_c00402{font-family:ff4_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:ff5_c00402;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff5_c00402{font-family:ff5_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:ff6_c00402;src:url('chunks/assets/font_a0fe800e6aa86d921df70637.woff2')format("woff");}.ff6_c00402{font-family:ff6_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:ff7_c00402;src:url('chunks/assets/font_9c0f4775a032dbea7e21dc77.woff2')format("woff");}.ff7_c00402{font-family:ff7_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:ff8_c00402;src:url('chunks/assets/font_f288613dd320c319996ada79.woff2')format("woff");}.ff8_c00402{font-family:ff8_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:ff9_c00402;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00402{font-family:ff9_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;}
.lsc_c00402{letter-spacing:0.000000px;}
.ls8_c00402{letter-spacing:1.392000px;}
.ls7_c00402{letter-spacing:3.000000px;}
.lse_c00402{letter-spacing:6.000000px;}
.lsd_c00402{letter-spacing:9.000000px;}
.lsa_c00402{letter-spacing:10.725000px;}
.lsb_c00402{letter-spacing:14.565000px;}
.ls5_c00402{letter-spacing:15.102000px;}
.ls4_c00402{letter-spacing:24.000000px;}
.ls3_c00402{letter-spacing:27.291000px;}
.ls1_c00402{letter-spacing:30.489000px;}
.ls6_c00402{letter-spacing:32.514000px;}
.ls2_c00402{letter-spacing:36.000000px;}
.ls0_c00402{letter-spacing:39.600000px;}
.ls9_c00402{letter-spacing:127.446000px;}
.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;}
}
.ws1_c00402{word-spacing:-15.906000px;}
.ws3_c00402{word-spacing:-10.206000px;}
.ws0_c00402{word-spacing:-9.087000px;}
.ws4_c00402{word-spacing:0.000000px;}
.ws2_c00402{word-spacing:5.727000px;}
._9_c00402{margin-left:-26.979000px;}
._11_c00402{margin-left:-24.276000px;}
._23_c00402{margin-left:-20.289000px;}
._28_c00402{margin-left:-16.683000px;}
._16_c00402{margin-left:-13.662000px;}
._1c_c00402{margin-left:-11.538000px;}
._b_c00402{margin-left:-9.729000px;}
._7_c00402{margin-left:-8.514000px;}
._10_c00402{margin-left:-6.978000px;}
._6_c00402{margin-left:-4.836000px;}
._5_c00402{margin-left:-3.828000px;}
._0_c00402{margin-left:-2.574000px;}
._f_c00402{margin-left:-1.134000px;}
._2_c00402{width:1.914000px;}
._3_c00402{width:3.432000px;}
._1_c00402{width:5.214000px;}
._14_c00402{width:6.642000px;}
._1a_c00402{width:8.385000px;}
._12_c00402{width:9.522000px;}
._8_c00402{width:11.481000px;}
._24_c00402{width:12.618000px;}
._13_c00402{width:14.904000px;}
._18_c00402{width:16.254000px;}
._22_c00402{width:17.319000px;}
._2a_c00402{width:18.492000px;}
._1f_c00402{width:19.782000px;}
._1d_c00402{width:21.453000px;}
._17_c00402{width:23.205000px;}
._21_c00402{width:24.273000px;}
._1e_c00402{width:26.082000px;}
._1b_c00402{width:28.179000px;}
._d_c00402{width:29.760000px;}
._26_c00402{width:31.521000px;}
._20_c00402{width:33.555000px;}
._e_c00402{width:37.962000px;}
._29_c00402{width:42.483000px;}
._19_c00402{width:94.335000px;}
._27_c00402{width:96.501000px;}
._25_c00402{width:98.601000px;}
._15_c00402{width:153.798000px;}
._a_c00402{width:278.829000px;}
._4_c00402{width:433.272000px;}
._2b_c00402{width:488.778000px;}
._c_c00402{width:979.635000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(128,128,128);}
.fc0_c00402{color:rgb(0,0,0);}
.fs5_c00402{font-size:48.000000px;}
.fs4_c00402{font-size:51.000000px;}
.fs3_c00402{font-size:60.000000px;}
.fs0_c00402{font-size:66.000000px;}
.fs2_c00402{font-size:69.000000px;}
.fs1_c00402{font-size:87.000000px;}
.y0_c00402{bottom:0.000000px;}
.y1f_c00402{bottom:3.105000px;}
.y1e_c00402{bottom:7.228369px;}
.y1d_c00402{bottom:54.570000px;}
.y1c_c00402{bottom:78.270000px;}
.y1b_c00402{bottom:104.220000px;}
.y1a_c00402{bottom:128.970000px;}
.y19_c00402{bottom:153.870000px;}
.y18_c00402{bottom:179.220000px;}
.y17_c00402{bottom:204.420000px;}
.y16_c00402{bottom:229.770000px;}
.y15_c00402{bottom:254.820000px;}
.y14_c00402{bottom:279.420000px;}
.y13_c00402{bottom:304.320000px;}
.y12_c00402{bottom:329.070000px;}
.y11_c00402{bottom:354.270000px;}
.y10_c00402{bottom:379.320000px;}
.yf_c00402{bottom:404.670000px;}
.ye_c00402{bottom:429.570000px;}
.yd_c00402{bottom:454.320000px;}
.yc_c00402{bottom:479.520000px;}
.yb_c00402{bottom:504.270000px;}
.ya_c00402{bottom:528.870000px;}
.y9_c00402{bottom:553.470000px;}
.y8_c00402{bottom:578.370000px;}
.y7_c00402{bottom:603.420000px;}
.y6_c00402{bottom:628.320000px;}
.y5_c00402{bottom:653.670000px;}
.y4_c00402{bottom:678.720000px;}
.y3_c00402{bottom:727.620000px;}
.y2_c00402{bottom:765.120000px;}
.y1_c00402{bottom:777.570000px;}
.h7_c00402{height:13.200073px;}
.h8_c00402{height:43.804688px;}
.h3_c00402{height:67.719727px;}
.h6_c00402{height:75.966797px;}
.h5_c00402{height:80.758301px;}
.h4_c00402{height:87.361816px;}
.h2_c00402{height:94.308000px;}
.h0_c00402{height:816.450000px;}
.h1_c00402{height:816.750000px;}
.w2_c00402{width:104.875500px;}
.w0_c00402{width:571.350000px;}
.w1_c00402{width:571.500000px;}
.x0_c00402{left:0.000000px;}
.x9_c00402{left:35.400000px;}
.x6_c00402{left:36.450000px;}
.x8_c00402{left:37.800000px;}
.x5_c00402{left:38.850000px;}
.xa_c00402{left:39.900000px;}
.x2_c00402{left:57.000000px;}
.x7_c00402{left:61.800000px;}
.x4_c00402{left:63.450000px;}
.x3_c00402{left:153.900000px;}
.x1_c00402{left:207.600000px;}
.xc_c00402{left:237.489258px;}
.xb_c00402{left:289.350000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.lsc_c00402{letter-spacing:0.000000pt;}
.ls8_c00402{letter-spacing:1.237333pt;}
.ls7_c00402{letter-spacing:2.666667pt;}
.lse_c00402{letter-spacing:5.333333pt;}
.lsd_c00402{letter-spacing:8.000000pt;}
.lsa_c00402{letter-spacing:9.533333pt;}
.lsb_c00402{letter-spacing:12.946667pt;}
.ls5_c00402{letter-spacing:13.424000pt;}
.ls4_c00402{letter-spacing:21.333333pt;}
.ls3_c00402{letter-spacing:24.258667pt;}
.ls1_c00402{letter-spacing:27.101333pt;}
.ls6_c00402{letter-spacing:28.901333pt;}
.ls2_c00402{letter-spacing:32.000000pt;}
.ls0_c00402{letter-spacing:35.200000pt;}
.ls9_c00402{letter-spacing:113.285333pt;}
.ws1_c00402{word-spacing:-14.138667pt;}
.ws3_c00402{word-spacing:-9.072000pt;}
.ws0_c00402{word-spacing:-8.077333pt;}
.ws4_c00402{word-spacing:0.000000pt;}
.ws2_c00402{word-spacing:5.090667pt;}
._9_c00402{margin-left:-23.981333pt;}
._11_c00402{margin-left:-21.578667pt;}
._23_c00402{margin-left:-18.034667pt;}
._28_c00402{margin-left:-14.829333pt;}
._16_c00402{margin-left:-12.144000pt;}
._1c_c00402{margin-left:-10.256000pt;}
._b_c00402{margin-left:-8.648000pt;}
._7_c00402{margin-left:-7.568000pt;}
._10_c00402{margin-left:-6.202667pt;}
._6_c00402{margin-left:-4.298667pt;}
._5_c00402{margin-left:-3.402667pt;}
._0_c00402{margin-left:-2.288000pt;}
._f_c00402{margin-left:-1.008000pt;}
._2_c00402{width:1.701333pt;}
._3_c00402{width:3.050667pt;}
._1_c00402{width:4.634667pt;}
._14_c00402{width:5.904000pt;}
._1a_c00402{width:7.453333pt;}
._12_c00402{width:8.464000pt;}
._8_c00402{width:10.205333pt;}
._24_c00402{width:11.216000pt;}
._13_c00402{width:13.248000pt;}
._18_c00402{width:14.448000pt;}
._22_c00402{width:15.394667pt;}
._2a_c00402{width:16.437333pt;}
._1f_c00402{width:17.584000pt;}
._1d_c00402{width:19.069333pt;}
._17_c00402{width:20.626667pt;}
._21_c00402{width:21.576000pt;}
._1e_c00402{width:23.184000pt;}
._1b_c00402{width:25.048000pt;}
._d_c00402{width:26.453333pt;}
._26_c00402{width:28.018667pt;}
._20_c00402{width:29.826667pt;}
._e_c00402{width:33.744000pt;}
._29_c00402{width:37.762667pt;}
._19_c00402{width:83.853333pt;}
._27_c00402{width:85.778667pt;}
._25_c00402{width:87.645333pt;}
._15_c00402{width:136.709333pt;}
._a_c00402{width:247.848000pt;}
._4_c00402{width:385.130667pt;}
._2b_c00402{width:434.469333pt;}
._c_c00402{width:870.786667pt;}
.fs5_c00402{font-size:42.666667pt;}
.fs4_c00402{font-size:45.333333pt;}
.fs3_c00402{font-size:53.333333pt;}
.fs0_c00402{font-size:58.666667pt;}
.fs2_c00402{font-size:61.333333pt;}
.fs1_c00402{font-size:77.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y1f_c00402{bottom:2.760000pt;}
.y1e_c00402{bottom:6.425217pt;}
.y1d_c00402{bottom:48.506667pt;}
.y1c_c00402{bottom:69.573333pt;}
.y1b_c00402{bottom:92.640000pt;}
.y1a_c00402{bottom:114.640000pt;}
.y19_c00402{bottom:136.773333pt;}
.y18_c00402{bottom:159.306667pt;}
.y17_c00402{bottom:181.706667pt;}
.y16_c00402{bottom:204.240000pt;}
.y15_c00402{bottom:226.506667pt;}
.y14_c00402{bottom:248.373333pt;}
.y13_c00402{bottom:270.506667pt;}
.y12_c00402{bottom:292.506667pt;}
.y11_c00402{bottom:314.906667pt;}
.y10_c00402{bottom:337.173333pt;}
.yf_c00402{bottom:359.706667pt;}
.ye_c00402{bottom:381.840000pt;}
.yd_c00402{bottom:403.840000pt;}
.yc_c00402{bottom:426.240000pt;}
.yb_c00402{bottom:448.240000pt;}
.ya_c00402{bottom:470.106667pt;}
.y9_c00402{bottom:491.973333pt;}
.y8_c00402{bottom:514.106667pt;}
.y7_c00402{bottom:536.373333pt;}
.y6_c00402{bottom:558.506667pt;}
.y5_c00402{bottom:581.040000pt;}
.y4_c00402{bottom:603.306667pt;}
.y3_c00402{bottom:646.773333pt;}
.y2_c00402{bottom:680.106667pt;}
.y1_c00402{bottom:691.173333pt;}
.h7_c00402{height:11.733399pt;}
.h8_c00402{height:38.937500pt;}
.h3_c00402{height:60.195312pt;}
.h6_c00402{height:67.526042pt;}
.h5_c00402{height:71.785156pt;}
.h4_c00402{height:77.654948pt;}
.h2_c00402{height:83.829333pt;}
.h0_c00402{height:725.733333pt;}
.h1_c00402{height:726.000000pt;}
.w2_c00402{width:93.222667pt;}
.w0_c00402{width:507.866667pt;}
.w1_c00402{width:508.000000pt;}
.x0_c00402{left:0.000000pt;}
.x9_c00402{left:31.466667pt;}
.x6_c00402{left:32.400000pt;}
.x8_c00402{left:33.600000pt;}
.x5_c00402{left:34.533333pt;}
.xa_c00402{left:35.466667pt;}
.x2_c00402{left:50.666667pt;}
.x7_c00402{left:54.933333pt;}
.x4_c00402{left:56.400000pt;}
.x3_c00402{left:136.800000pt;}
.x1_c00402{left:184.533333pt;}
.xc_c00402{left:211.101563pt;}
.xb_c00402{left:257.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_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_7ec7939ce40e10f2e412fbf4.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.568848;font-style:normal;font-weight:normal;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_47c0d44a87a4789896325df7.woff2')format("woff");}.ff2_c00403{font-family:ff2_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:ff3_c00403;src:url('chunks/assets/font_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00403{font-family:ff4_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:ff5_c00403;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00403{font-family:ff5_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;}
.ls4_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:1.800000px;}
.ls3_c00403{letter-spacing:3.000000px;}
.ls2_c00403{letter-spacing:4.971000px;}
.ls1_c00403{letter-spacing:14.925000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00403{word-spacing:-44.022000px;}
.ws2_c00403{word-spacing:-19.629000px;}
.ws0_c00403{word-spacing:-16.629000px;}
.ws3_c00403{word-spacing:0.000000px;}
._20_c00403{margin-left:-13.131000px;}
._1d_c00403{margin-left:-11.784000px;}
._14_c00403{margin-left:-10.350000px;}
._10_c00403{margin-left:-8.571000px;}
._e_c00403{margin-left:-6.900000px;}
._1_c00403{margin-left:-5.313000px;}
._12_c00403{margin-left:-3.933000px;}
._4_c00403{margin-left:-2.622000px;}
._3_c00403{margin-left:-1.035000px;}
._6_c00403{width:1.380000px;}
._5_c00403{width:3.312000px;}
._d_c00403{width:4.416000px;}
._7_c00403{width:5.451000px;}
._11_c00403{width:7.176000px;}
._0_c00403{width:9.039000px;}
._17_c00403{width:10.419000px;}
._8_c00403{width:12.018000px;}
._a_c00403{width:13.077000px;}
._9_c00403{width:14.175000px;}
._13_c00403{width:15.195000px;}
._16_c00403{width:16.755000px;}
._c_c00403{width:18.147000px;}
._1b_c00403{width:21.321000px;}
._26_c00403{width:24.978000px;}
._25_c00403{width:26.175000px;}
._1e_c00403{width:29.040000px;}
._b_c00403{width:30.738000px;}
._23_c00403{width:32.361000px;}
._19_c00403{width:33.906000px;}
._18_c00403{width:34.983000px;}
._22_c00403{width:36.273000px;}
._f_c00403{width:64.800000px;}
._24_c00403{width:91.824000px;}
._21_c00403{width:95.772000px;}
._1f_c00403{width:112.815000px;}
._1c_c00403{width:192.786000px;}
._1a_c00403{width:462.162000px;}
._2_c00403{width:483.177000px;}
._15_c00403{width:604.407000px;}
.fc2_c00403{color:transparent;}
.fc1_c00403{color:rgb(128,128,128);}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:48.000000px;}
.fs1_c00403{font-size:66.000000px;}
.fs0_c00403{font-size:69.000000px;}
.y0_c00403{bottom:0.000000px;}
.y20_c00403{bottom:3.105000px;}
.y1f_c00403{bottom:7.228369px;}
.y1e_c00403{bottom:42.570000px;}
.y1d_c00403{bottom:68.520000px;}
.y1c_c00403{bottom:94.470000px;}
.y1b_c00403{bottom:119.370000px;}
.y1a_c00403{bottom:145.020000px;}
.y19_c00403{bottom:170.070000px;}
.y18_c00403{bottom:195.420000px;}
.y17_c00403{bottom:220.020000px;}
.y16_c00403{bottom:245.970000px;}
.y15_c00403{bottom:270.570000px;}
.y14_c00403{bottom:296.220000px;}
.y13_c00403{bottom:319.620000px;}
.y12_c00403{bottom:344.970000px;}
.y11_c00403{bottom:370.170000px;}
.y10_c00403{bottom:394.920000px;}
.yf_c00403{bottom:420.420000px;}
.ye_c00403{bottom:445.470000px;}
.yd_c00403{bottom:470.520000px;}
.yc_c00403{bottom:495.120000px;}
.yb_c00403{bottom:520.770000px;}
.ya_c00403{bottom:545.370000px;}
.y9_c00403{bottom:570.420000px;}
.y8_c00403{bottom:595.320000px;}
.y7_c00403{bottom:620.370000px;}
.y6_c00403{bottom:645.270000px;}
.y5_c00403{bottom:669.270000px;}
.y4_c00403{bottom:695.820000px;}
.y3_c00403{bottom:720.870000px;}
.y2_c00403{bottom:745.470000px;}
.y1_c00403{bottom:770.070000px;}
.h2_c00403{height:13.200073px;}
.h3_c00403{height:43.804688px;}
.h1_c00403{height:87.361816px;}
.h0_c00403{height:813.750000px;}
.w2_c00403{width:104.875500px;}
.w0_c00403{width:562.125000px;}
.w1_c00403{width:562.500000px;}
.x0_c00403{left:0.000000px;}
.x7_c00403{left:28.800000px;}
.x4_c00403{left:30.750000px;}
.x6_c00403{left:45.300000px;}
.x8_c00403{left:93.150000px;}
.x5_c00403{left:94.200000px;}
.x2_c00403{left:95.250000px;}
.x3_c00403{left:96.300000px;}
.x1_c00403{left:108.450000px;}
.xa_c00403{left:232.876740px;}
.x9_c00403{left:519.000000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls4_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:1.600000pt;}
.ls3_c00403{letter-spacing:2.666667pt;}
.ls2_c00403{letter-spacing:4.418667pt;}
.ls1_c00403{letter-spacing:13.266667pt;}
.ws1_c00403{word-spacing:-39.130667pt;}
.ws2_c00403{word-spacing:-17.448000pt;}
.ws0_c00403{word-spacing:-14.781333pt;}
.ws3_c00403{word-spacing:0.000000pt;}
._20_c00403{margin-left:-11.672000pt;}
._1d_c00403{margin-left:-10.474667pt;}
._14_c00403{margin-left:-9.200000pt;}
._10_c00403{margin-left:-7.618667pt;}
._e_c00403{margin-left:-6.133333pt;}
._1_c00403{margin-left:-4.722667pt;}
._12_c00403{margin-left:-3.496000pt;}
._4_c00403{margin-left:-2.330667pt;}
._3_c00403{margin-left:-0.920000pt;}
._6_c00403{width:1.226667pt;}
._5_c00403{width:2.944000pt;}
._d_c00403{width:3.925333pt;}
._7_c00403{width:4.845333pt;}
._11_c00403{width:6.378667pt;}
._0_c00403{width:8.034667pt;}
._17_c00403{width:9.261333pt;}
._8_c00403{width:10.682667pt;}
._a_c00403{width:11.624000pt;}
._9_c00403{width:12.600000pt;}
._13_c00403{width:13.506667pt;}
._16_c00403{width:14.893333pt;}
._c_c00403{width:16.130667pt;}
._1b_c00403{width:18.952000pt;}
._26_c00403{width:22.202667pt;}
._25_c00403{width:23.266667pt;}
._1e_c00403{width:25.813333pt;}
._b_c00403{width:27.322667pt;}
._23_c00403{width:28.765333pt;}
._19_c00403{width:30.138667pt;}
._18_c00403{width:31.096000pt;}
._22_c00403{width:32.242667pt;}
._f_c00403{width:57.600000pt;}
._24_c00403{width:81.621333pt;}
._21_c00403{width:85.130667pt;}
._1f_c00403{width:100.280000pt;}
._1c_c00403{width:171.365333pt;}
._1a_c00403{width:410.810667pt;}
._2_c00403{width:429.490667pt;}
._15_c00403{width:537.250667pt;}
.fs2_c00403{font-size:42.666667pt;}
.fs1_c00403{font-size:58.666667pt;}
.fs0_c00403{font-size:61.333333pt;}
.y0_c00403{bottom:0.000000pt;}
.y20_c00403{bottom:2.760000pt;}
.y1f_c00403{bottom:6.425217pt;}
.y1e_c00403{bottom:37.840000pt;}
.y1d_c00403{bottom:60.906667pt;}
.y1c_c00403{bottom:83.973333pt;}
.y1b_c00403{bottom:106.106667pt;}
.y1a_c00403{bottom:128.906667pt;}
.y19_c00403{bottom:151.173333pt;}
.y18_c00403{bottom:173.706667pt;}
.y17_c00403{bottom:195.573333pt;}
.y16_c00403{bottom:218.640000pt;}
.y15_c00403{bottom:240.506667pt;}
.y14_c00403{bottom:263.306667pt;}
.y13_c00403{bottom:284.106667pt;}
.y12_c00403{bottom:306.640000pt;}
.y11_c00403{bottom:329.040000pt;}
.y10_c00403{bottom:351.040000pt;}
.yf_c00403{bottom:373.706667pt;}
.ye_c00403{bottom:395.973333pt;}
.yd_c00403{bottom:418.240000pt;}
.yc_c00403{bottom:440.106667pt;}
.yb_c00403{bottom:462.906667pt;}
.ya_c00403{bottom:484.773333pt;}
.y9_c00403{bottom:507.040000pt;}
.y8_c00403{bottom:529.173333pt;}
.y7_c00403{bottom:551.440000pt;}
.y6_c00403{bottom:573.573333pt;}
.y5_c00403{bottom:594.906667pt;}
.y4_c00403{bottom:618.506667pt;}
.y3_c00403{bottom:640.773333pt;}
.y2_c00403{bottom:662.640000pt;}
.y1_c00403{bottom:684.506667pt;}
.h2_c00403{height:11.733399pt;}
.h3_c00403{height:38.937500pt;}
.h1_c00403{height:77.654948pt;}
.h0_c00403{height:723.333333pt;}
.w2_c00403{width:93.222667pt;}
.w0_c00403{width:499.666667pt;}
.w1_c00403{width:500.000000pt;}
.x0_c00403{left:0.000000pt;}
.x7_c00403{left:25.600000pt;}
.x4_c00403{left:27.333333pt;}
.x6_c00403{left:40.266667pt;}
.x8_c00403{left:82.800000pt;}
.x5_c00403{left:83.733333pt;}
.x2_c00403{left:84.666667pt;}
.x3_c00403{left:85.600000pt;}
.x1_c00403{left:96.400000pt;}
.xa_c00403{left:207.001546pt;}
.x9_c00403{left:461.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_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_e8487f6cf84ab8b23f2bd282.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_3377af5c643ed7645fef1539.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_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_f288613dd320c319996ada79.woff2')format("woff");}.ff4_c00404{font-family:ff4_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:ff5_c00404;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00404{font-family:ff5_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;}
.ls3_c00404{letter-spacing:0.000000px;}
.ls4_c00404{letter-spacing:3.000000px;}
.ls5_c00404{letter-spacing:9.000000px;}
.ls1_c00404{letter-spacing:34.314000px;}
.ls2_c00404{letter-spacing:34.971000px;}
.ls0_c00404{letter-spacing:36.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00404{word-spacing:-44.988000px;}
.ws4_c00404{word-spacing:-17.352000px;}
.ws0_c00404{word-spacing:-16.629000px;}
.ws1_c00404{word-spacing:-7.731000px;}
.ws3_c00404{word-spacing:-6.630000px;}
.ws2_c00404{word-spacing:-4.653000px;}
.ws6_c00404{word-spacing:0.000000px;}
._22_c00404{margin-left:-21.426000px;}
._17_c00404{margin-left:-13.971000px;}
._1e_c00404{margin-left:-12.627000px;}
._1b_c00404{margin-left:-11.316000px;}
._1c_c00404{margin-left:-9.384000px;}
._8_c00404{margin-left:-7.935000px;}
._7_c00404{margin-left:-6.762000px;}
._1a_c00404{margin-left:-5.658000px;}
._a_c00404{margin-left:-4.278000px;}
._6_c00404{margin-left:-3.243000px;}
._3_c00404{margin-left:-2.208000px;}
._4_c00404{margin-left:-1.035000px;}
._9_c00404{width:1.863000px;}
._b_c00404{width:3.174000px;}
._f_c00404{width:4.485000px;}
._2_c00404{width:6.141000px;}
._15_c00404{width:7.383000px;}
._0_c00404{width:8.625000px;}
._23_c00404{width:9.660000px;}
._14_c00404{width:10.833000px;}
._13_c00404{width:11.973000px;}
._1_c00404{width:13.041000px;}
._12_c00404{width:14.283000px;}
._d_c00404{width:16.008000px;}
._11_c00404{width:17.043000px;}
._10_c00404{width:18.492000px;}
._1d_c00404{width:20.355000px;}
._c_c00404{width:22.287000px;}
._28_c00404{width:23.595000px;}
._16_c00404{width:24.702000px;}
._18_c00404{width:27.600000px;}
._21_c00404{width:30.462000px;}
._27_c00404{width:34.191000px;}
._20_c00404{width:43.953000px;}
._26_c00404{width:51.819000px;}
._e_c00404{width:54.408000px;}
._1f_c00404{width:89.976000px;}
._24_c00404{width:93.669000px;}
._25_c00404{width:109.779000px;}
._19_c00404{width:151.869000px;}
._5_c00404{width:424.545000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(128,128,128);}
.fc0_c00404{color:rgb(0,0,0);}
.fs5_c00404{font-size:48.000000px;}
.fs3_c00404{font-size:55.200000px;}
.fs1_c00404{font-size:66.000000px;}
.fs0_c00404{font-size:69.000000px;}
.fs2_c00404{font-size:72.000000px;}
.fs4_c00404{font-size:75.000000px;}
.y0_c00404{bottom:0.000000px;}
.y21_c00404{bottom:3.105000px;}
.y20_c00404{bottom:7.228371px;}
.y1f_c00404{bottom:33.165000px;}
.y1e_c00404{bottom:58.815000px;}
.y1d_c00404{bottom:85.065000px;}
.y1c_c00404{bottom:109.815000px;}
.y1b_c00404{bottom:134.415000px;}
.y1a_c00404{bottom:160.365000px;}
.y19_c00404{bottom:185.265000px;}
.y18_c00404{bottom:210.315000px;}
.y17_c00404{bottom:235.365000px;}
.y16_c00404{bottom:260.865000px;}
.y15_c00404{bottom:285.615000px;}
.y14_c00404{bottom:310.515000px;}
.y13_c00404{bottom:335.865000px;}
.y12_c00404{bottom:361.215000px;}
.y11_c00404{bottom:386.865000px;}
.y10_c00404{bottom:411.165000px;}
.yf_c00404{bottom:436.815000px;}
.ye_c00404{bottom:462.165000px;}
.yd_c00404{bottom:486.765000px;}
.yc_c00404{bottom:511.665000px;}
.yb_c00404{bottom:535.365000px;}
.ya_c00404{bottom:560.265000px;}
.y9_c00404{bottom:585.915000px;}
.y8_c00404{bottom:610.515000px;}
.y7_c00404{bottom:635.265000px;}
.y6_c00404{bottom:660.165000px;}
.y5_c00404{bottom:684.915000px;}
.y4_c00404{bottom:709.815000px;}
.y3_c00404{bottom:735.165000px;}
.y2_c00404{bottom:760.065000px;}
.y1_c00404{bottom:783.315000px;}
.h5_c00404{height:13.200074px;}
.h6_c00404{height:43.804688px;}
.h4_c00404{height:80.758301px;}
.h2_c00404{height:87.361816px;}
.h3_c00404{height:91.160156px;}
.h0_c00404{height:825.675000px;}
.h1_c00404{height:825.750000px;}
.w2_c00404{width:104.875500px;}
.w1_c00404{width:578.250000px;}
.w0_c00404{width:578.325000px;}
.x0_c00404{left:0.000000px;}
.x3_c00404{left:33.750000px;}
.x4_c00404{left:39.450000px;}
.x2_c00404{left:40.500000px;}
.x7_c00404{left:41.550000px;}
.x9_c00404{left:42.750000px;}
.xa_c00404{left:45.450000px;}
.xb_c00404{left:46.950000px;}
.xc_c00404{left:48.900000px;}
.x6_c00404{left:59.700000px;}
.x8_c00404{left:68.400000px;}
.x5_c00404{left:156.150000px;}
.x1_c00404{left:204.600000px;}
.xe_c00404{left:240.976730px;}
.xd_c00404{left:286.200000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls3_c00404{letter-spacing:0.000000pt;}
.ls4_c00404{letter-spacing:2.666667pt;}
.ls5_c00404{letter-spacing:8.000000pt;}
.ls1_c00404{letter-spacing:30.501333pt;}
.ls2_c00404{letter-spacing:31.085333pt;}
.ls0_c00404{letter-spacing:32.000000pt;}
.ws5_c00404{word-spacing:-39.989333pt;}
.ws4_c00404{word-spacing:-15.424000pt;}
.ws0_c00404{word-spacing:-14.781333pt;}
.ws1_c00404{word-spacing:-6.872000pt;}
.ws3_c00404{word-spacing:-5.893333pt;}
.ws2_c00404{word-spacing:-4.136000pt;}
.ws6_c00404{word-spacing:0.000000pt;}
._22_c00404{margin-left:-19.045333pt;}
._17_c00404{margin-left:-12.418667pt;}
._1e_c00404{margin-left:-11.224000pt;}
._1b_c00404{margin-left:-10.058667pt;}
._1c_c00404{margin-left:-8.341333pt;}
._8_c00404{margin-left:-7.053333pt;}
._7_c00404{margin-left:-6.010667pt;}
._1a_c00404{margin-left:-5.029333pt;}
._a_c00404{margin-left:-3.802667pt;}
._6_c00404{margin-left:-2.882667pt;}
._3_c00404{margin-left:-1.962667pt;}
._4_c00404{margin-left:-0.920000pt;}
._9_c00404{width:1.656000pt;}
._b_c00404{width:2.821333pt;}
._f_c00404{width:3.986667pt;}
._2_c00404{width:5.458667pt;}
._15_c00404{width:6.562667pt;}
._0_c00404{width:7.666667pt;}
._23_c00404{width:8.586667pt;}
._14_c00404{width:9.629333pt;}
._13_c00404{width:10.642667pt;}
._1_c00404{width:11.592000pt;}
._12_c00404{width:12.696000pt;}
._d_c00404{width:14.229333pt;}
._11_c00404{width:15.149333pt;}
._10_c00404{width:16.437333pt;}
._1d_c00404{width:18.093333pt;}
._c_c00404{width:19.810667pt;}
._28_c00404{width:20.973333pt;}
._16_c00404{width:21.957333pt;}
._18_c00404{width:24.533333pt;}
._21_c00404{width:27.077333pt;}
._27_c00404{width:30.392000pt;}
._20_c00404{width:39.069333pt;}
._26_c00404{width:46.061333pt;}
._e_c00404{width:48.362667pt;}
._1f_c00404{width:79.978667pt;}
._24_c00404{width:83.261333pt;}
._25_c00404{width:97.581333pt;}
._19_c00404{width:134.994667pt;}
._5_c00404{width:377.373333pt;}
.fs5_c00404{font-size:42.666667pt;}
.fs3_c00404{font-size:49.066667pt;}
.fs1_c00404{font-size:58.666667pt;}
.fs0_c00404{font-size:61.333333pt;}
.fs2_c00404{font-size:64.000000pt;}
.fs4_c00404{font-size:66.666667pt;}
.y0_c00404{bottom:0.000000pt;}
.y21_c00404{bottom:2.760000pt;}
.y20_c00404{bottom:6.425219pt;}
.y1f_c00404{bottom:29.480000pt;}
.y1e_c00404{bottom:52.280000pt;}
.y1d_c00404{bottom:75.613333pt;}
.y1c_c00404{bottom:97.613333pt;}
.y1b_c00404{bottom:119.480000pt;}
.y1a_c00404{bottom:142.546667pt;}
.y19_c00404{bottom:164.680000pt;}
.y18_c00404{bottom:186.946667pt;}
.y17_c00404{bottom:209.213333pt;}
.y16_c00404{bottom:231.880000pt;}
.y15_c00404{bottom:253.880000pt;}
.y14_c00404{bottom:276.013333pt;}
.y13_c00404{bottom:298.546667pt;}
.y12_c00404{bottom:321.080000pt;}
.y11_c00404{bottom:343.880000pt;}
.y10_c00404{bottom:365.480000pt;}
.yf_c00404{bottom:388.280000pt;}
.ye_c00404{bottom:410.813333pt;}
.yd_c00404{bottom:432.680000pt;}
.yc_c00404{bottom:454.813333pt;}
.yb_c00404{bottom:475.880000pt;}
.ya_c00404{bottom:498.013333pt;}
.y9_c00404{bottom:520.813333pt;}
.y8_c00404{bottom:542.680000pt;}
.y7_c00404{bottom:564.680000pt;}
.y6_c00404{bottom:586.813333pt;}
.y5_c00404{bottom:608.813333pt;}
.y4_c00404{bottom:630.946667pt;}
.y3_c00404{bottom:653.480000pt;}
.y2_c00404{bottom:675.613333pt;}
.y1_c00404{bottom:696.280000pt;}
.h5_c00404{height:11.733399pt;}
.h6_c00404{height:38.937500pt;}
.h4_c00404{height:71.785156pt;}
.h2_c00404{height:77.654948pt;}
.h3_c00404{height:81.031250pt;}
.h0_c00404{height:733.933333pt;}
.h1_c00404{height:734.000000pt;}
.w2_c00404{width:93.222667pt;}
.w1_c00404{width:514.000000pt;}
.w0_c00404{width:514.066667pt;}
.x0_c00404{left:0.000000pt;}
.x3_c00404{left:30.000000pt;}
.x4_c00404{left:35.066667pt;}
.x2_c00404{left:36.000000pt;}
.x7_c00404{left:36.933333pt;}
.x9_c00404{left:38.000000pt;}
.xa_c00404{left:40.400000pt;}
.xb_c00404{left:41.733333pt;}
.xc_c00404{left:43.466667pt;}
.x6_c00404{left:53.066667pt;}
.x8_c00404{left:60.800000pt;}
.x5_c00404{left:138.800000pt;}
.x1_c00404{left:181.866667pt;}
.xe_c00404{left:214.201538pt;}
.xd_c00404{left:254.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e25d57fe3a041d8285cc3a54.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.568848;font-style:normal;font-weight:normal;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_5f06cda0c1e73fc55b29fda5.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_374de88ffc3b74b721938d6a.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;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_c00405;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00405{font-family:ff4_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;}
.m1_c00405{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_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;}
.ls1_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:3.000000px;}
.ls2_c00405{letter-spacing:9.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;}
}
.ws1_c00405{word-spacing:-19.629000px;}
.ws0_c00405{word-spacing:-16.629000px;}
.ws4_c00405{word-spacing:0.000000px;}
.ws2_c00405{word-spacing:0.177000px;}
.ws3_c00405{word-spacing:3.693000px;}
._6_c00405{margin-left:-17.181000px;}
._9_c00405{margin-left:-14.628000px;}
._1b_c00405{margin-left:-12.834000px;}
._5_c00405{margin-left:-10.971000px;}
._3_c00405{margin-left:-9.729000px;}
._16_c00405{margin-left:-8.349000px;}
._1_c00405{margin-left:-6.762000px;}
._a_c00405{margin-left:-5.313000px;}
._2_c00405{margin-left:-4.209000px;}
._0_c00405{margin-left:-2.829000px;}
._8_c00405{margin-left:-1.311000px;}
._c_c00405{width:1.035000px;}
._4_c00405{width:2.139000px;}
._b_c00405{width:4.071000px;}
._19_c00405{width:5.106000px;}
._d_c00405{width:6.141000px;}
._17_c00405{width:7.245000px;}
._10_c00405{width:9.276000px;}
._12_c00405{width:10.320000px;}
._e_c00405{width:12.144000px;}
._11_c00405{width:14.007000px;}
._18_c00405{width:15.525000px;}
._14_c00405{width:16.698000px;}
._13_c00405{width:17.877000px;}
._15_c00405{width:20.769000px;}
._20_c00405{width:21.909000px;}
._1a_c00405{width:23.046000px;}
._1e_c00405{width:24.150000px;}
._21_c00405{width:25.599000px;}
._1d_c00405{width:29.430000px;}
._22_c00405{width:42.297000px;}
._23_c00405{width:86.871000px;}
._f_c00405{width:199.272000px;}
._1c_c00405{width:205.482000px;}
._7_c00405{width:494.247000px;}
._1f_c00405{width:594.270000px;}
.fc2_c00405{color:transparent;}
.fc1_c00405{color:rgb(128,128,128);}
.fc0_c00405{color:rgb(0,0,0);}
.fs2_c00405{font-size:48.000000px;}
.fs1_c00405{font-size:54.000000px;}
.fs0_c00405{font-size:69.000000px;}
.y0_c00405{bottom:0.000000px;}
.y1d_c00405{bottom:3.105000px;}
.y1c_c00405{bottom:7.228363px;}
.y1b_c00405{bottom:69.900000px;}
.y1a_c00405{bottom:96.150000px;}
.y19_c00405{bottom:121.800000px;}
.y18_c00405{bottom:147.150000px;}
.y17_c00405{bottom:172.800000px;}
.y16_c00405{bottom:198.750000px;}
.y15_c00405{bottom:222.750000px;}
.y14_c00405{bottom:248.100000px;}
.y13_c00405{bottom:273.750000px;}
.y12_c00405{bottom:298.650000px;}
.y11_c00405{bottom:323.700000px;}
.y10_c00405{bottom:347.700000px;}
.yf_c00405{bottom:373.350000px;}
.ye_c00405{bottom:398.250000px;}
.yd_c00405{bottom:423.300000px;}
.yc_c00405{bottom:448.650000px;}
.yb_c00405{bottom:473.550000px;}
.ya_c00405{bottom:499.500000px;}
.y9_c00405{bottom:524.400000px;}
.y8_c00405{bottom:573.000000px;}
.y7_c00405{bottom:624.750000px;}
.y6_c00405{bottom:648.600000px;}
.y5_c00405{bottom:674.550000px;}
.y4_c00405{bottom:699.900000px;}
.y3_c00405{bottom:723.600000px;}
.y2_c00405{bottom:750.150000px;}
.y1_c00405{bottom:774.900000px;}
.h5_c00405{height:13.200074px;}
.h6_c00405{height:43.804688px;}
.h4_c00405{height:57.618000px;}
.h3_c00405{height:80.758301px;}
.h2_c00405{height:87.361816px;}
.h1_c00405{height:827.250000px;}
.h0_c00405{height:827.550000px;}
.w2_c00405{width:104.875500px;}
.w0_c00405{width:572.100000px;}
.w1_c00405{width:572.250000px;}
.x0_c00405{left:0.000000px;}
.x9_c00405{left:26.550000px;}
.x3_c00405{left:32.700000px;}
.xc_c00405{left:42.150000px;}
.x12_c00405{left:57.450000px;}
.x11_c00405{left:87.150000px;}
.x10_c00405{left:88.200000px;}
.xe_c00405{left:89.550000px;}
.xb_c00405{left:90.750000px;}
.xa_c00405{left:92.400000px;}
.x7_c00405{left:93.750000px;}
.x4_c00405{left:96.300000px;}
.x2_c00405{left:97.500000px;}
.x1_c00405{left:111.000000px;}
.xf_c00405{left:113.700000px;}
.x8_c00405{left:118.050000px;}
.x6_c00405{left:119.700000px;}
.x5_c00405{left:194.100000px;}
.xd_c00405{left:201.450000px;}
.x13_c00405{left:237.864258px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls1_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:2.666667pt;}
.ls2_c00405{letter-spacing:8.000000pt;}
.ws1_c00405{word-spacing:-17.448000pt;}
.ws0_c00405{word-spacing:-14.781333pt;}
.ws4_c00405{word-spacing:0.000000pt;}
.ws2_c00405{word-spacing:0.157333pt;}
.ws3_c00405{word-spacing:3.282667pt;}
._6_c00405{margin-left:-15.272000pt;}
._9_c00405{margin-left:-13.002667pt;}
._1b_c00405{margin-left:-11.408000pt;}
._5_c00405{margin-left:-9.752000pt;}
._3_c00405{margin-left:-8.648000pt;}
._16_c00405{margin-left:-7.421333pt;}
._1_c00405{margin-left:-6.010667pt;}
._a_c00405{margin-left:-4.722667pt;}
._2_c00405{margin-left:-3.741333pt;}
._0_c00405{margin-left:-2.514667pt;}
._8_c00405{margin-left:-1.165333pt;}
._c_c00405{width:0.920000pt;}
._4_c00405{width:1.901333pt;}
._b_c00405{width:3.618667pt;}
._19_c00405{width:4.538667pt;}
._d_c00405{width:5.458667pt;}
._17_c00405{width:6.440000pt;}
._10_c00405{width:8.245333pt;}
._12_c00405{width:9.173333pt;}
._e_c00405{width:10.794667pt;}
._11_c00405{width:12.450667pt;}
._18_c00405{width:13.800000pt;}
._14_c00405{width:14.842667pt;}
._13_c00405{width:15.890667pt;}
._15_c00405{width:18.461333pt;}
._20_c00405{width:19.474667pt;}
._1a_c00405{width:20.485333pt;}
._1e_c00405{width:21.466667pt;}
._21_c00405{width:22.754667pt;}
._1d_c00405{width:26.160000pt;}
._22_c00405{width:37.597333pt;}
._23_c00405{width:77.218667pt;}
._f_c00405{width:177.130667pt;}
._1c_c00405{width:182.650667pt;}
._7_c00405{width:439.330667pt;}
._1f_c00405{width:528.240000pt;}
.fs2_c00405{font-size:42.666667pt;}
.fs1_c00405{font-size:48.000000pt;}
.fs0_c00405{font-size:61.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y1d_c00405{bottom:2.760000pt;}
.y1c_c00405{bottom:6.425212pt;}
.y1b_c00405{bottom:62.133333pt;}
.y1a_c00405{bottom:85.466667pt;}
.y19_c00405{bottom:108.266667pt;}
.y18_c00405{bottom:130.800000pt;}
.y17_c00405{bottom:153.600000pt;}
.y16_c00405{bottom:176.666667pt;}
.y15_c00405{bottom:198.000000pt;}
.y14_c00405{bottom:220.533333pt;}
.y13_c00405{bottom:243.333333pt;}
.y12_c00405{bottom:265.466667pt;}
.y11_c00405{bottom:287.733333pt;}
.y10_c00405{bottom:309.066667pt;}
.yf_c00405{bottom:331.866667pt;}
.ye_c00405{bottom:354.000000pt;}
.yd_c00405{bottom:376.266667pt;}
.yc_c00405{bottom:398.800000pt;}
.yb_c00405{bottom:420.933333pt;}
.ya_c00405{bottom:444.000000pt;}
.y9_c00405{bottom:466.133333pt;}
.y8_c00405{bottom:509.333333pt;}
.y7_c00405{bottom:555.333333pt;}
.y6_c00405{bottom:576.533333pt;}
.y5_c00405{bottom:599.600000pt;}
.y4_c00405{bottom:622.133333pt;}
.y3_c00405{bottom:643.200000pt;}
.y2_c00405{bottom:666.800000pt;}
.y1_c00405{bottom:688.800000pt;}
.h5_c00405{height:11.733399pt;}
.h6_c00405{height:38.937500pt;}
.h4_c00405{height:51.216000pt;}
.h3_c00405{height:71.785156pt;}
.h2_c00405{height:77.654948pt;}
.h1_c00405{height:735.333333pt;}
.h0_c00405{height:735.600000pt;}
.w2_c00405{width:93.222667pt;}
.w0_c00405{width:508.533333pt;}
.w1_c00405{width:508.666667pt;}
.x0_c00405{left:0.000000pt;}
.x9_c00405{left:23.600000pt;}
.x3_c00405{left:29.066667pt;}
.xc_c00405{left:37.466667pt;}
.x12_c00405{left:51.066667pt;}
.x11_c00405{left:77.466667pt;}
.x10_c00405{left:78.400000pt;}
.xe_c00405{left:79.600000pt;}
.xb_c00405{left:80.666667pt;}
.xa_c00405{left:82.133333pt;}
.x7_c00405{left:83.333333pt;}
.x4_c00405{left:85.600000pt;}
.x2_c00405{left:86.666667pt;}
.x1_c00405{left:98.666667pt;}
.xf_c00405{left:101.066667pt;}
.x8_c00405{left:104.933333pt;}
.x6_c00405{left:106.400000pt;}
.x5_c00405{left:172.533333pt;}
.xd_c00405{left:179.066667pt;}
.x13_c00405{left:211.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_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_38bae7d239fb457301859ab9.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_b375486dd38543fe4e819166.woff2')format("woff");}.ff2_c00406{font-family:ff2_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:ff3_c00406;src:url('chunks/assets/font_00b176be5db616428aed6bf7.woff2')format("woff");}.ff3_c00406{font-family:ff3_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:ff4_c00406;src:url('chunks/assets/font_fafbfda0396a0b5d438de9a3.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_53ae2cb24135a0102299a50e.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_8588b7112ed8e5ee52fca85d.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:1.437000;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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:-49.800000px;}
.v0_c00406{vertical-align:0.000000px;}
.ls3_c00406{letter-spacing:0.000000px;}
.ls4_c00406{letter-spacing:3.000000px;}
.ls6_c00406{letter-spacing:9.000000px;}
.ls5_c00406{letter-spacing:30.000000px;}
.ls2_c00406{letter-spacing:36.000000px;}
.ls0_c00406{letter-spacing:40.800000px;}
.ls1_c00406{letter-spacing:49.839000px;}
.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;}
}
.ws3_c00406{word-spacing:-53.790000px;}
.ws0_c00406{word-spacing:-45.906000px;}
.ws2_c00406{word-spacing:-43.032000px;}
.ws6_c00406{word-spacing:-19.629000px;}
.ws1_c00406{word-spacing:-15.906000px;}
.ws5_c00406{word-spacing:-8.103000px;}
.ws4_c00406{word-spacing:-0.552000px;}
.ws7_c00406{word-spacing:0.000000px;}
._17_c00406{margin-left:-47.661000px;}
._1f_c00406{margin-left:-36.120000px;}
._18_c00406{margin-left:-30.096000px;}
._11_c00406{margin-left:-23.667000px;}
._19_c00406{margin-left:-22.242000px;}
._27_c00406{margin-left:-18.147000px;}
._21_c00406{margin-left:-15.657000px;}
._16_c00406{margin-left:-13.530000px;}
._15_c00406{margin-left:-12.342000px;}
._8_c00406{margin-left:-10.902000px;}
._22_c00406{margin-left:-9.748800px;}
._3_c00406{margin-left:-8.625000px;}
._1a_c00406{margin-left:-7.194000px;}
._a_c00406{margin-left:-5.658000px;}
._4_c00406{margin-left:-4.278000px;}
._5_c00406{margin-left:-2.898000px;}
._2_c00406{margin-left:-1.863000px;}
._b_c00406{width:1.311000px;}
._0_c00406{width:2.346000px;}
._13_c00406{width:3.381000px;}
._7_c00406{width:4.485000px;}
._9_c00406{width:5.727000px;}
._c_c00406{width:7.245000px;}
._d_c00406{width:8.976000px;}
._2c_c00406{width:10.641000px;}
._1_c00406{width:12.075000px;}
._24_c00406{width:13.432800px;}
._1d_c00406{width:14.721000px;}
._12_c00406{width:15.861000px;}
._e_c00406{width:17.535000px;}
._1e_c00406{width:19.452000px;}
._f_c00406{width:21.639000px;}
._2a_c00406{width:28.377000px;}
._2b_c00406{width:29.673000px;}
._14_c00406{width:35.916000px;}
._10_c00406{width:37.122000px;}
._25_c00406{width:40.821000px;}
._28_c00406{width:42.486000px;}
._1c_c00406{width:54.570000px;}
._1b_c00406{width:61.314000px;}
._29_c00406{width:96.831000px;}
._26_c00406{width:146.574000px;}
._23_c00406{width:173.437200px;}
._20_c00406{width:184.785000px;}
._6_c00406{width:500.784000px;}
._2d_c00406{width:520.233000px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(128,128,128);}
.fc0_c00406{color:rgb(0,0,0);}
.fs4_c00406{font-size:42.000000px;}
.fs1_c00406{font-size:48.000000px;}
.fs3_c00406{font-size:52.800000px;}
.fs2_c00406{font-size:66.000000px;}
.fs0_c00406{font-size:69.000000px;}
.fs5_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y20_c00406{bottom:3.105000px;}
.y1f_c00406{bottom:7.228371px;}
.y1e_c00406{bottom:69.615000px;}
.y1d_c00406{bottom:92.865000px;}
.y1c_c00406{bottom:117.915000px;}
.y1b_c00406{bottom:142.815000px;}
.y1a_c00406{bottom:168.465000px;}
.y19_c00406{bottom:217.665000px;}
.y18_c00406{bottom:243.765000px;}
.y17_c00406{bottom:269.415000px;}
.y16_c00406{bottom:320.715000px;}
.y15_c00406{bottom:366.615000px;}
.y14_c00406{bottom:384.765000px;}
.y13_c00406{bottom:403.065000px;}
.y12_c00406{bottom:420.315000px;}
.y11_c00406{bottom:437.865000px;}
.y10_c00406{bottom:456.615000px;}
.yf_c00406{bottom:473.565000px;}
.ye_c00406{bottom:490.815000px;}
.yd_c00406{bottom:508.965000px;}
.yc_c00406{bottom:526.515000px;}
.yb_c00406{bottom:543.015000px;}
.ya_c00406{bottom:561.015000px;}
.y9_c00406{bottom:578.865000px;}
.y8_c00406{bottom:596.715000px;}
.y7_c00406{bottom:631.815000px;}
.y6_c00406{bottom:669.315000px;}
.y5_c00406{bottom:694.665000px;}
.y4_c00406{bottom:720.315000px;}
.y3_c00406{bottom:745.215000px;}
.y2_c00406{bottom:770.265000px;}
.y1_c00406{bottom:794.565000px;}
.h7_c00406{height:13.200074px;}
.h8_c00406{height:43.804688px;}
.h3_c00406{height:77.247070px;}
.h5_c00406{height:80.758301px;}
.h4_c00406{height:83.563477px;}
.h2_c00406{height:87.361816px;}
.h6_c00406{height:91.160156px;}
.h1_c00406{height:831.000000px;}
.h0_c00406{height:831.075000px;}
.w2_c00406{width:104.875500px;}
.w0_c00406{width:582.375000px;}
.w1_c00406{width:582.750000px;}
.x0_c00406{left:0.000000px;}
.x3_c00406{left:22.650000px;}
.x6_c00406{left:23.850000px;}
.x8_c00406{left:26.250000px;}
.x9_c00406{left:27.300000px;}
.x5_c00406{left:40.500000px;}
.x2_c00406{left:43.200000px;}
.x7_c00406{left:49.650000px;}
.x4_c00406{left:168.000000px;}
.x1_c00406{left:177.600000px;}
.xb_c00406{left:243.001740px;}
.xa_c00406{left:443.400000px;}
@media print{
.v1_c00406{vertical-align:-44.266667pt;}
.v0_c00406{vertical-align:0.000000pt;}
.ls3_c00406{letter-spacing:0.000000pt;}
.ls4_c00406{letter-spacing:2.666667pt;}
.ls6_c00406{letter-spacing:8.000000pt;}
.ls5_c00406{letter-spacing:26.666667pt;}
.ls2_c00406{letter-spacing:32.000000pt;}
.ls0_c00406{letter-spacing:36.266667pt;}
.ls1_c00406{letter-spacing:44.301333pt;}
.ws3_c00406{word-spacing:-47.813333pt;}
.ws0_c00406{word-spacing:-40.805333pt;}
.ws2_c00406{word-spacing:-38.250667pt;}
.ws6_c00406{word-spacing:-17.448000pt;}
.ws1_c00406{word-spacing:-14.138667pt;}
.ws5_c00406{word-spacing:-7.202667pt;}
.ws4_c00406{word-spacing:-0.490667pt;}
.ws7_c00406{word-spacing:0.000000pt;}
._17_c00406{margin-left:-42.365333pt;}
._1f_c00406{margin-left:-32.106667pt;}
._18_c00406{margin-left:-26.752000pt;}
._11_c00406{margin-left:-21.037333pt;}
._19_c00406{margin-left:-19.770667pt;}
._27_c00406{margin-left:-16.130667pt;}
._21_c00406{margin-left:-13.917333pt;}
._16_c00406{margin-left:-12.026667pt;}
._15_c00406{margin-left:-10.970667pt;}
._8_c00406{margin-left:-9.690667pt;}
._22_c00406{margin-left:-8.665600pt;}
._3_c00406{margin-left:-7.666667pt;}
._1a_c00406{margin-left:-6.394667pt;}
._a_c00406{margin-left:-5.029333pt;}
._4_c00406{margin-left:-3.802667pt;}
._5_c00406{margin-left:-2.576000pt;}
._2_c00406{margin-left:-1.656000pt;}
._b_c00406{width:1.165333pt;}
._0_c00406{width:2.085333pt;}
._13_c00406{width:3.005333pt;}
._7_c00406{width:3.986667pt;}
._9_c00406{width:5.090667pt;}
._c_c00406{width:6.440000pt;}
._d_c00406{width:7.978667pt;}
._2c_c00406{width:9.458667pt;}
._1_c00406{width:10.733333pt;}
._24_c00406{width:11.940267pt;}
._1d_c00406{width:13.085333pt;}
._12_c00406{width:14.098667pt;}
._e_c00406{width:15.586667pt;}
._1e_c00406{width:17.290667pt;}
._f_c00406{width:19.234667pt;}
._2a_c00406{width:25.224000pt;}
._2b_c00406{width:26.376000pt;}
._14_c00406{width:31.925333pt;}
._10_c00406{width:32.997333pt;}
._25_c00406{width:36.285333pt;}
._28_c00406{width:37.765333pt;}
._1c_c00406{width:48.506667pt;}
._1b_c00406{width:54.501333pt;}
._29_c00406{width:86.072000pt;}
._26_c00406{width:130.288000pt;}
._23_c00406{width:154.166400pt;}
._20_c00406{width:164.253333pt;}
._6_c00406{width:445.141333pt;}
._2d_c00406{width:462.429333pt;}
.fs4_c00406{font-size:37.333333pt;}
.fs1_c00406{font-size:42.666667pt;}
.fs3_c00406{font-size:46.933333pt;}
.fs2_c00406{font-size:58.666667pt;}
.fs0_c00406{font-size:61.333333pt;}
.fs5_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y20_c00406{bottom:2.760000pt;}
.y1f_c00406{bottom:6.425219pt;}
.y1e_c00406{bottom:61.880000pt;}
.y1d_c00406{bottom:82.546667pt;}
.y1c_c00406{bottom:104.813333pt;}
.y1b_c00406{bottom:126.946667pt;}
.y1a_c00406{bottom:149.746667pt;}
.y19_c00406{bottom:193.480000pt;}
.y18_c00406{bottom:216.680000pt;}
.y17_c00406{bottom:239.480000pt;}
.y16_c00406{bottom:285.080000pt;}
.y15_c00406{bottom:325.880000pt;}
.y14_c00406{bottom:342.013333pt;}
.y13_c00406{bottom:358.280000pt;}
.y12_c00406{bottom:373.613333pt;}
.y11_c00406{bottom:389.213333pt;}
.y10_c00406{bottom:405.880000pt;}
.yf_c00406{bottom:420.946667pt;}
.ye_c00406{bottom:436.280000pt;}
.yd_c00406{bottom:452.413333pt;}
.yc_c00406{bottom:468.013333pt;}
.yb_c00406{bottom:482.680000pt;}
.ya_c00406{bottom:498.680000pt;}
.y9_c00406{bottom:514.546667pt;}
.y8_c00406{bottom:530.413333pt;}
.y7_c00406{bottom:561.613333pt;}
.y6_c00406{bottom:594.946667pt;}
.y5_c00406{bottom:617.480000pt;}
.y4_c00406{bottom:640.280000pt;}
.y3_c00406{bottom:662.413333pt;}
.y2_c00406{bottom:684.680000pt;}
.y1_c00406{bottom:706.280000pt;}
.h7_c00406{height:11.733399pt;}
.h8_c00406{height:38.937500pt;}
.h3_c00406{height:68.664062pt;}
.h5_c00406{height:71.785156pt;}
.h4_c00406{height:74.278646pt;}
.h2_c00406{height:77.654948pt;}
.h6_c00406{height:81.031250pt;}
.h1_c00406{height:738.666667pt;}
.h0_c00406{height:738.733333pt;}
.w2_c00406{width:93.222667pt;}
.w0_c00406{width:517.666667pt;}
.w1_c00406{width:518.000000pt;}
.x0_c00406{left:0.000000pt;}
.x3_c00406{left:20.133333pt;}
.x6_c00406{left:21.200000pt;}
.x8_c00406{left:23.333333pt;}
.x9_c00406{left:24.266667pt;}
.x5_c00406{left:36.000000pt;}
.x2_c00406{left:38.400000pt;}
.x7_c00406{left:44.133333pt;}
.x4_c00406{left:149.333333pt;}
.x1_c00406{left:157.866667pt;}
.xb_c00406{left:216.001546pt;}
.xa_c00406{left:394.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_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_052be5d1e2c8a7e7137fa9e2.woff2')format("woff");}.ff1_c00407{font-family:ff1_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:ff2_c00407;src:url('chunks/assets/font_d6008f28cc551bf6c3648ef1.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_c2168382d3372ae5e958794e.woff2')format("woff");}.ff3_c00407{font-family:ff3_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:ff4_c00407;src:url('chunks/assets/font_27c72d3bcb0431c88bde4a65.woff2')format("woff");}.ff4_c00407{font-family:ff4_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:ff5_c00407;src:url('chunks/assets/font_e106f34d8a5003fdd53a799b.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;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_c00407;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.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;}
.ls5_c00407{letter-spacing:0.000000px;}
.ls2_c00407{letter-spacing:3.000000px;}
.ls6_c00407{letter-spacing:9.000000px;}
.ls4_c00407{letter-spacing:14.400000px;}
.ls1_c00407{letter-spacing:21.930000px;}
.ls0_c00407{letter-spacing:26.400000px;}
.ls3_c00407{letter-spacing:31.737000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00407{word-spacing:-22.521000px;}
.ws0_c00407{word-spacing:-19.629000px;}
.ws1_c00407{word-spacing:-16.629000px;}
.ws4_c00407{word-spacing:0.000000px;}
.ws2_c00407{word-spacing:2.688000px;}
._a_c00407{margin-left:-22.500000px;}
._9_c00407{margin-left:-21.150000px;}
._8_c00407{margin-left:-18.000000px;}
._0_c00407{margin-left:-16.905000px;}
._1_c00407{margin-left:-15.435000px;}
._21_c00407{margin-left:-13.848000px;}
._2_c00407{margin-left:-12.705000px;}
._4_c00407{margin-left:-11.340000px;}
._7_c00407{margin-left:-9.870000px;}
._3_c00407{margin-left:-7.875000px;}
._6_c00407{margin-left:-6.060000px;}
._c_c00407{margin-left:-4.320000px;}
._b_c00407{margin-left:-2.970000px;}
._12_c00407{margin-left:-1.647000px;}
._1e_c00407{width:1.080000px;}
._d_c00407{width:2.106000px;}
._19_c00407{width:3.594000px;}
._10_c00407{width:5.049000px;}
._f_c00407{width:6.750000px;}
._e_c00407{width:7.830000px;}
._17_c00407{width:9.108000px;}
._1f_c00407{width:10.254000px;}
._13_c00407{width:11.652000px;}
._26_c00407{width:12.714000px;}
._16_c00407{width:13.728000px;}
._25_c00407{width:14.886000px;}
._14_c00407{width:16.362000px;}
._1a_c00407{width:18.240000px;}
._15_c00407{width:19.380000px;}
._20_c00407{width:22.338000px;}
._1b_c00407{width:25.014000px;}
._23_c00407{width:26.142000px;}
._27_c00407{width:29.007000px;}
._1c_c00407{width:30.972000px;}
._1d_c00407{width:32.871000px;}
._24_c00407{width:35.295000px;}
._18_c00407{width:37.794000px;}
._22_c00407{width:56.901000px;}
._11_c00407{width:227.313000px;}
._28_c00407{width:319.884000px;}
._5_c00407{width:412.995000px;}
._29_c00407{width:1102.185000px;}
.fc2_c00407{color:transparent;}
.fc1_c00407{color:rgb(128,128,128);}
.fc0_c00407{color:rgb(0,0,0);}
.fs6_c00407{font-size:42.000000px;}
.fs4_c00407{font-size:48.000000px;}
.fs5_c00407{font-size:66.000000px;}
.fs3_c00407{font-size:69.000000px;}
.fs2_c00407{font-size:81.000000px;}
.fs1_c00407{font-size:90.000000px;}
.fs0_c00407{font-size:105.000000px;}
.y0_c00407{bottom:0.000000px;}
.y1c_c00407{bottom:3.105000px;}
.y1b_c00407{bottom:7.228371px;}
.y1a_c00407{bottom:40.515000px;}
.y19_c00407{bottom:73.365000px;}
.y18_c00407{bottom:99.615000px;}
.y17_c00407{bottom:125.265000px;}
.y16_c00407{bottom:150.315000px;}
.y15_c00407{bottom:175.965000px;}
.y14_c00407{bottom:200.865000px;}
.y13_c00407{bottom:226.215000px;}
.y12_c00407{bottom:251.565000px;}
.y11_c00407{bottom:276.765000px;}
.y10_c00407{bottom:301.065000px;}
.yf_c00407{bottom:350.715000px;}
.ye_c00407{bottom:401.715000px;}
.yd_c00407{bottom:426.615000px;}
.yc_c00407{bottom:451.965000px;}
.yb_c00407{bottom:476.865000px;}
.ya_c00407{bottom:501.915000px;}
.y9_c00407{bottom:533.565000px;}
.y8_c00407{bottom:566.115000px;}
.y7_c00407{bottom:591.015000px;}
.y6_c00407{bottom:623.415000px;}
.y5_c00407{bottom:655.515000px;}
.y4_c00407{bottom:680.715000px;}
.y3_c00407{bottom:706.065000px;}
.y2_c00407{bottom:738.465000px;}
.y1_c00407{bottom:769.515000px;}
.h6_c00407{height:13.200074px;}
.h7_c00407{height:43.804688px;}
.h5_c00407{height:80.758301px;}
.h4_c00407{height:87.361816px;}
.h3_c00407{height:102.555176px;}
.h2_c00407{height:105.820312px;}
.h0_c00407{height:812.175000px;}
.h1_c00407{height:812.250000px;}
.w2_c00407{width:104.875500px;}
.w1_c00407{width:561.000000px;}
.w0_c00407{width:561.075000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:89.100000px;}
.x2_c00407{left:90.450000px;}
.x3_c00407{left:92.100000px;}
.x7_c00407{left:93.150000px;}
.xa_c00407{left:95.400000px;}
.x9_c00407{left:96.750000px;}
.x1_c00407{left:103.200000px;}
.x6_c00407{left:115.800000px;}
.x8_c00407{left:118.050000px;}
.x5_c00407{left:138.000000px;}
.xb_c00407{left:232.351730px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls5_c00407{letter-spacing:0.000000pt;}
.ls2_c00407{letter-spacing:2.666667pt;}
.ls6_c00407{letter-spacing:8.000000pt;}
.ls4_c00407{letter-spacing:12.800000pt;}
.ls1_c00407{letter-spacing:19.493333pt;}
.ls0_c00407{letter-spacing:23.466667pt;}
.ls3_c00407{letter-spacing:28.210667pt;}
.ws3_c00407{word-spacing:-20.018667pt;}
.ws0_c00407{word-spacing:-17.448000pt;}
.ws1_c00407{word-spacing:-14.781333pt;}
.ws4_c00407{word-spacing:0.000000pt;}
.ws2_c00407{word-spacing:2.389333pt;}
._a_c00407{margin-left:-20.000000pt;}
._9_c00407{margin-left:-18.800000pt;}
._8_c00407{margin-left:-16.000000pt;}
._0_c00407{margin-left:-15.026667pt;}
._1_c00407{margin-left:-13.720000pt;}
._21_c00407{margin-left:-12.309333pt;}
._2_c00407{margin-left:-11.293333pt;}
._4_c00407{margin-left:-10.080000pt;}
._7_c00407{margin-left:-8.773333pt;}
._3_c00407{margin-left:-7.000000pt;}
._6_c00407{margin-left:-5.386667pt;}
._c_c00407{margin-left:-3.840000pt;}
._b_c00407{margin-left:-2.640000pt;}
._12_c00407{margin-left:-1.464000pt;}
._1e_c00407{width:0.960000pt;}
._d_c00407{width:1.872000pt;}
._19_c00407{width:3.194667pt;}
._10_c00407{width:4.488000pt;}
._f_c00407{width:6.000000pt;}
._e_c00407{width:6.960000pt;}
._17_c00407{width:8.096000pt;}
._1f_c00407{width:9.114667pt;}
._13_c00407{width:10.357333pt;}
._26_c00407{width:11.301333pt;}
._16_c00407{width:12.202667pt;}
._25_c00407{width:13.232000pt;}
._14_c00407{width:14.544000pt;}
._1a_c00407{width:16.213333pt;}
._15_c00407{width:17.226667pt;}
._20_c00407{width:19.856000pt;}
._1b_c00407{width:22.234667pt;}
._23_c00407{width:23.237333pt;}
._27_c00407{width:25.784000pt;}
._1c_c00407{width:27.530667pt;}
._1d_c00407{width:29.218667pt;}
._24_c00407{width:31.373333pt;}
._18_c00407{width:33.594667pt;}
._22_c00407{width:50.578667pt;}
._11_c00407{width:202.056000pt;}
._28_c00407{width:284.341333pt;}
._5_c00407{width:367.106667pt;}
._29_c00407{width:979.720000pt;}
.fs6_c00407{font-size:37.333333pt;}
.fs4_c00407{font-size:42.666667pt;}
.fs5_c00407{font-size:58.666667pt;}
.fs3_c00407{font-size:61.333333pt;}
.fs2_c00407{font-size:72.000000pt;}
.fs1_c00407{font-size:80.000000pt;}
.fs0_c00407{font-size:93.333333pt;}
.y0_c00407{bottom:0.000000pt;}
.y1c_c00407{bottom:2.760000pt;}
.y1b_c00407{bottom:6.425219pt;}
.y1a_c00407{bottom:36.013333pt;}
.y19_c00407{bottom:65.213333pt;}
.y18_c00407{bottom:88.546667pt;}
.y17_c00407{bottom:111.346667pt;}
.y16_c00407{bottom:133.613333pt;}
.y15_c00407{bottom:156.413333pt;}
.y14_c00407{bottom:178.546667pt;}
.y13_c00407{bottom:201.080000pt;}
.y12_c00407{bottom:223.613333pt;}
.y11_c00407{bottom:246.013333pt;}
.y10_c00407{bottom:267.613333pt;}
.yf_c00407{bottom:311.746667pt;}
.ye_c00407{bottom:357.080000pt;}
.yd_c00407{bottom:379.213333pt;}
.yc_c00407{bottom:401.746667pt;}
.yb_c00407{bottom:423.880000pt;}
.ya_c00407{bottom:446.146667pt;}
.y9_c00407{bottom:474.280000pt;}
.y8_c00407{bottom:503.213333pt;}
.y7_c00407{bottom:525.346667pt;}
.y6_c00407{bottom:554.146667pt;}
.y5_c00407{bottom:582.680000pt;}
.y4_c00407{bottom:605.080000pt;}
.y3_c00407{bottom:627.613333pt;}
.y2_c00407{bottom:656.413333pt;}
.y1_c00407{bottom:684.013333pt;}
.h6_c00407{height:11.733399pt;}
.h7_c00407{height:38.937500pt;}
.h5_c00407{height:71.785156pt;}
.h4_c00407{height:77.654948pt;}
.h3_c00407{height:91.160156pt;}
.h2_c00407{height:94.062500pt;}
.h0_c00407{height:721.933333pt;}
.h1_c00407{height:722.000000pt;}
.w2_c00407{width:93.222667pt;}
.w1_c00407{width:498.666667pt;}
.w0_c00407{width:498.733333pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:79.200000pt;}
.x2_c00407{left:80.400000pt;}
.x3_c00407{left:81.866667pt;}
.x7_c00407{left:82.800000pt;}
.xa_c00407{left:84.800000pt;}
.x9_c00407{left:86.000000pt;}
.x1_c00407{left:91.733333pt;}
.x6_c00407{left:102.933333pt;}
.x8_c00407{left:104.933333pt;}
.x5_c00407{left:122.666667pt;}
.xb_c00407{left:206.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_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_4581be2759e7ab99b1fa79d5.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_2722b5287a34e7a17f518bc9.woff2')format("woff");}.ff2_c00408{font-family:ff2_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:ff3_c00408;src:url('chunks/assets/font_3eb3cc7edced3e98064a87fe.woff2')format("woff");}.ff3_c00408{font-family:ff3_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:ff4_c00408;src:url('chunks/assets/font_b59086d58aa4d1a5b47731a5.woff2')format("woff");}.ff4_c00408{font-family:ff4_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:ff5_c00408;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00408{font-family:ff5_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:ff6_c00408;src:url('chunks/assets/font_f5168d133e5a5eb01536639b.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;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_c00408;src:url('chunks/assets/font_3684ed1e1558ecbd37febcaf.woff2')format("woff");}.ff7_c00408{font-family:ff7_c00408;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_c00408;src:url('chunks/assets/font_ced8eadc05c58fdbbfc2abc7.woff2')format("woff");}.ff8_c00408{font-family:ff8_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:ff9_c00408;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00408{font-family:ff9_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;}
.lsf_c00408{letter-spacing:0.000000px;}
.ls4_c00408{letter-spacing:1.656000px;}
.ls1_c00408{letter-spacing:1.722000px;}
.ls10_c00408{letter-spacing:3.000000px;}
.ls7_c00408{letter-spacing:5.256000px;}
.ls6_c00408{letter-spacing:7.656000px;}
.ls0_c00408{letter-spacing:8.160000px;}
.lsc_c00408{letter-spacing:8.994000px;}
.ls12_c00408{letter-spacing:9.000000px;}
.ls5_c00408{letter-spacing:10.056000px;}
.lsb_c00408{letter-spacing:10.200000px;}
.ls11_c00408{letter-spacing:12.000000px;}
.ls3_c00408{letter-spacing:12.456000px;}
.lsd_c00408{letter-spacing:14.388000px;}
.ls2_c00408{letter-spacing:16.902000px;}
.lse_c00408{letter-spacing:18.600000px;}
.ls9_c00408{letter-spacing:20.937000px;}
.lsa_c00408{letter-spacing:21.000000px;}
.ls8_c00408{letter-spacing:25.800000px;}
.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;}
}
.ws7_c00408{word-spacing:-58.410000px;}
.ws5_c00408{word-spacing:-44.022000px;}
.ws8_c00408{word-spacing:-29.040000px;}
.ws3_c00408{word-spacing:-28.812000px;}
.ws0_c00408{word-spacing:-19.629000px;}
.ws1_c00408{word-spacing:-16.629000px;}
.ws2_c00408{word-spacing:-15.000000px;}
.ws6_c00408{word-spacing:-0.123000px;}
.ws4_c00408{word-spacing:-0.072000px;}
.ws9_c00408{word-spacing:0.000000px;}
._5_c00408{margin-left:-10.626000px;}
._20_c00408{margin-left:-8.694000px;}
._12_c00408{margin-left:-7.452000px;}
._1a_c00408{margin-left:-6.348000px;}
._f_c00408{margin-left:-4.761000px;}
._1c_c00408{margin-left:-3.387000px;}
._a_c00408{margin-left:-2.346000px;}
._8_c00408{margin-left:-1.311000px;}
._2_c00408{width:1.035000px;}
._7_c00408{width:2.139000px;}
._0_c00408{width:3.243000px;}
._1_c00408{width:4.554000px;}
._4_c00408{width:5.727000px;}
._9_c00408{width:7.176000px;}
._10_c00408{width:8.901000px;}
._6_c00408{width:10.695000px;}
._11_c00408{width:11.937000px;}
._19_c00408{width:13.179000px;}
._1b_c00408{width:14.490000px;}
._15_c00408{width:15.699000px;}
._1e_c00408{width:16.731000px;}
._14_c00408{width:17.871000px;}
._16_c00408{width:22.218000px;}
._13_c00408{width:23.460000px;}
._d_c00408{width:24.771000px;}
._e_c00408{width:27.738000px;}
._c_c00408{width:30.429000px;}
._18_c00408{width:32.463000px;}
._1f_c00408{width:37.260000px;}
._17_c00408{width:41.433000px;}
._b_c00408{width:119.163000px;}
._1d_c00408{width:141.450000px;}
._21_c00408{width:204.597000px;}
._3_c00408{width:492.921000px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(128,128,128);}
.fc0_c00408{color:rgb(0,0,0);}
.fs6_c00408{font-size:48.000000px;}
.fs2_c00408{font-size:57.000000px;}
.fs1_c00408{font-size:60.000000px;}
.fs5_c00408{font-size:66.000000px;}
.fs0_c00408{font-size:69.000000px;}
.fs4_c00408{font-size:72.000000px;}
.fs3_c00408{font-size:78.000000px;}
.y0_c00408{bottom:0.000000px;}
.y1f_c00408{bottom:3.105000px;}
.y1e_c00408{bottom:7.228357px;}
.y1d_c00408{bottom:36.780000px;}
.y1c_c00408{bottom:69.480000px;}
.y1b_c00408{bottom:94.530000px;}
.y1a_c00408{bottom:119.880000px;}
.y19_c00408{bottom:143.880000px;}
.y18_c00408{bottom:170.430000px;}
.y17_c00408{bottom:195.180000px;}
.y16_c00408{bottom:220.680000px;}
.y15_c00408{bottom:245.130000px;}
.y14_c00408{bottom:271.380000px;}
.y13_c00408{bottom:295.380000px;}
.y12_c00408{bottom:321.180000px;}
.y11_c00408{bottom:345.930000px;}
.y10_c00408{bottom:370.680000px;}
.yf_c00408{bottom:395.880000px;}
.ye_c00408{bottom:420.930000px;}
.yd_c00408{bottom:445.530000px;}
.yc_c00408{bottom:470.880000px;}
.yb_c00408{bottom:502.530000px;}
.ya_c00408{bottom:534.630000px;}
.y9_c00408{bottom:560.280000px;}
.y8_c00408{bottom:584.880000px;}
.y7_c00408{bottom:609.630000px;}
.y6_c00408{bottom:634.530000px;}
.y5_c00408{bottom:659.580000px;}
.y4_c00408{bottom:691.830000px;}
.y3_c00408{bottom:724.230000px;}
.y2_c00408{bottom:749.280000px;}
.y1_c00408{bottom:774.630000px;}
.h5_c00408{height:13.200074px;}
.h6_c00408{height:43.804688px;}
.h3_c00408{height:80.758301px;}
.h2_c00408{height:87.361816px;}
.h4_c00408{height:98.756836px;}
.h1_c00408{height:811.500000px;}
.h0_c00408{height:811.650000px;}
.w2_c00408{width:104.875500px;}
.w1_c00408{width:568.500000px;}
.w0_c00408{width:568.650000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:31.050000px;}
.x5_c00408{left:32.100000px;}
.x3_c00408{left:33.300000px;}
.x4_c00408{left:34.650000px;}
.x6_c00408{left:57.000000px;}
.x9_c00408{left:103.200000px;}
.xc_c00408{left:105.000000px;}
.xb_c00408{left:107.700000px;}
.xa_c00408{left:109.350000px;}
.x8_c00408{left:112.650000px;}
.x1_c00408{left:185.550000px;}
.x7_c00408{left:215.700000px;}
.xd_c00408{left:236.139267px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.lsf_c00408{letter-spacing:0.000000pt;}
.ls4_c00408{letter-spacing:1.472000pt;}
.ls1_c00408{letter-spacing:1.530667pt;}
.ls10_c00408{letter-spacing:2.666667pt;}
.ls7_c00408{letter-spacing:4.672000pt;}
.ls6_c00408{letter-spacing:6.805333pt;}
.ls0_c00408{letter-spacing:7.253333pt;}
.lsc_c00408{letter-spacing:7.994667pt;}
.ls12_c00408{letter-spacing:8.000000pt;}
.ls5_c00408{letter-spacing:8.938667pt;}
.lsb_c00408{letter-spacing:9.066667pt;}
.ls11_c00408{letter-spacing:10.666667pt;}
.ls3_c00408{letter-spacing:11.072000pt;}
.lsd_c00408{letter-spacing:12.789333pt;}
.ls2_c00408{letter-spacing:15.024000pt;}
.lse_c00408{letter-spacing:16.533333pt;}
.ls9_c00408{letter-spacing:18.610667pt;}
.lsa_c00408{letter-spacing:18.666667pt;}
.ls8_c00408{letter-spacing:22.933333pt;}
.ws7_c00408{word-spacing:-51.920000pt;}
.ws5_c00408{word-spacing:-39.130667pt;}
.ws8_c00408{word-spacing:-25.813333pt;}
.ws3_c00408{word-spacing:-25.610667pt;}
.ws0_c00408{word-spacing:-17.448000pt;}
.ws1_c00408{word-spacing:-14.781333pt;}
.ws2_c00408{word-spacing:-13.333333pt;}
.ws6_c00408{word-spacing:-0.109333pt;}
.ws4_c00408{word-spacing:-0.064000pt;}
.ws9_c00408{word-spacing:0.000000pt;}
._5_c00408{margin-left:-9.445333pt;}
._20_c00408{margin-left:-7.728000pt;}
._12_c00408{margin-left:-6.624000pt;}
._1a_c00408{margin-left:-5.642667pt;}
._f_c00408{margin-left:-4.232000pt;}
._1c_c00408{margin-left:-3.010667pt;}
._a_c00408{margin-left:-2.085333pt;}
._8_c00408{margin-left:-1.165333pt;}
._2_c00408{width:0.920000pt;}
._7_c00408{width:1.901333pt;}
._0_c00408{width:2.882667pt;}
._1_c00408{width:4.048000pt;}
._4_c00408{width:5.090667pt;}
._9_c00408{width:6.378667pt;}
._10_c00408{width:7.912000pt;}
._6_c00408{width:9.506667pt;}
._11_c00408{width:10.610667pt;}
._19_c00408{width:11.714667pt;}
._1b_c00408{width:12.880000pt;}
._15_c00408{width:13.954667pt;}
._1e_c00408{width:14.872000pt;}
._14_c00408{width:15.885333pt;}
._16_c00408{width:19.749333pt;}
._13_c00408{width:20.853333pt;}
._d_c00408{width:22.018667pt;}
._e_c00408{width:24.656000pt;}
._c_c00408{width:27.048000pt;}
._18_c00408{width:28.856000pt;}
._1f_c00408{width:33.120000pt;}
._17_c00408{width:36.829333pt;}
._b_c00408{width:105.922667pt;}
._1d_c00408{width:125.733333pt;}
._21_c00408{width:181.864000pt;}
._3_c00408{width:438.152000pt;}
.fs6_c00408{font-size:42.666667pt;}
.fs2_c00408{font-size:50.666667pt;}
.fs1_c00408{font-size:53.333333pt;}
.fs5_c00408{font-size:58.666667pt;}
.fs0_c00408{font-size:61.333333pt;}
.fs4_c00408{font-size:64.000000pt;}
.fs3_c00408{font-size:69.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y1f_c00408{bottom:2.760000pt;}
.y1e_c00408{bottom:6.425206pt;}
.y1d_c00408{bottom:32.693333pt;}
.y1c_c00408{bottom:61.760000pt;}
.y1b_c00408{bottom:84.026667pt;}
.y1a_c00408{bottom:106.560000pt;}
.y19_c00408{bottom:127.893333pt;}
.y18_c00408{bottom:151.493333pt;}
.y17_c00408{bottom:173.493333pt;}
.y16_c00408{bottom:196.160000pt;}
.y15_c00408{bottom:217.893333pt;}
.y14_c00408{bottom:241.226667pt;}
.y13_c00408{bottom:262.560000pt;}
.y12_c00408{bottom:285.493333pt;}
.y11_c00408{bottom:307.493333pt;}
.y10_c00408{bottom:329.493333pt;}
.yf_c00408{bottom:351.893333pt;}
.ye_c00408{bottom:374.160000pt;}
.yd_c00408{bottom:396.026667pt;}
.yc_c00408{bottom:418.560000pt;}
.yb_c00408{bottom:446.693333pt;}
.ya_c00408{bottom:475.226667pt;}
.y9_c00408{bottom:498.026667pt;}
.y8_c00408{bottom:519.893333pt;}
.y7_c00408{bottom:541.893333pt;}
.y6_c00408{bottom:564.026667pt;}
.y5_c00408{bottom:586.293333pt;}
.y4_c00408{bottom:614.960000pt;}
.y3_c00408{bottom:643.760000pt;}
.y2_c00408{bottom:666.026667pt;}
.y1_c00408{bottom:688.560000pt;}
.h5_c00408{height:11.733399pt;}
.h6_c00408{height:38.937500pt;}
.h3_c00408{height:71.785156pt;}
.h2_c00408{height:77.654948pt;}
.h4_c00408{height:87.783854pt;}
.h1_c00408{height:721.333333pt;}
.h0_c00408{height:721.466667pt;}
.w2_c00408{width:93.222667pt;}
.w1_c00408{width:505.333333pt;}
.w0_c00408{width:505.466667pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:27.600000pt;}
.x5_c00408{left:28.533333pt;}
.x3_c00408{left:29.600000pt;}
.x4_c00408{left:30.800000pt;}
.x6_c00408{left:50.666667pt;}
.x9_c00408{left:91.733333pt;}
.xc_c00408{left:93.333333pt;}
.xb_c00408{left:95.733333pt;}
.xa_c00408{left:97.200000pt;}
.x8_c00408{left:100.133333pt;}
.x1_c00408{left:164.933333pt;}
.x7_c00408{left:191.733333pt;}
.xd_c00408{left:209.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_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_55f65dde401f1ee18b700ea7.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.568848;font-style:normal;font-weight:normal;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_f154d4f6a74c870e2acc192c.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.480469;font-style:normal;font-weight:normal;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_2775c62142de17d4f32ea194.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.568848;font-style:normal;font-weight:normal;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_6e37c19c5d31b79a650fe8c7.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;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_c00409;src:url('chunks/assets/font_27b5602cc567dde3c54503a4.woff2')format("woff");}.ff5_c00409{font-family:ff5_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:ff6_c00409;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00409{font-family:ff6_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;}
.ls6_c00409{letter-spacing:0.000000px;}
.ls3_c00409{letter-spacing:0.330000px;}
.ls4_c00409{letter-spacing:0.546000px;}
.ls5_c00409{letter-spacing:3.000000px;}
.ls0_c00409{letter-spacing:6.000000px;}
.ls2_c00409{letter-spacing:21.000000px;}
.ls1_c00409{letter-spacing:37.371000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:-19.629000px;}
.ws1_c00409{word-spacing:-16.629000px;}
.ws2_c00409{word-spacing:0.000000px;}
._22_c00409{margin-left:-25.461000px;}
._1f_c00409{margin-left:-18.078000px;}
._3_c00409{margin-left:-16.629000px;}
._10_c00409{margin-left:-12.834000px;}
._f_c00409{margin-left:-11.523000px;}
._d_c00409{margin-left:-9.177000px;}
._12_c00409{margin-left:-7.536000px;}
._11_c00409{margin-left:-5.796000px;}
._e_c00409{margin-left:-4.278000px;}
._a_c00409{margin-left:-2.967000px;}
._2_c00409{margin-left:-1.932000px;}
._7_c00409{width:1.380000px;}
._0_c00409{width:2.415000px;}
._5_c00409{width:4.416000px;}
._9_c00409{width:6.141000px;}
._b_c00409{width:7.647000px;}
._14_c00409{width:8.982000px;}
._c_c00409{width:10.017000px;}
._19_c00409{width:11.040000px;}
._21_c00409{width:12.252000px;}
._16_c00409{width:13.284000px;}
._20_c00409{width:14.616000px;}
._4_c00409{width:16.353000px;}
._17_c00409{width:18.216000px;}
._6_c00409{width:21.390000px;}
._15_c00409{width:23.460000px;}
._8_c00409{width:29.601000px;}
._18_c00409{width:31.050000px;}
._1a_c00409{width:32.301000px;}
._1b_c00409{width:35.250000px;}
._1c_c00409{width:37.536000px;}
._1e_c00409{width:43.032000px;}
._1d_c00409{width:89.562000px;}
._13_c00409{width:98.601000px;}
._1_c00409{width:423.564000px;}
._23_c00409{width:1516.068000px;}
.fc2_c00409{color:transparent;}
.fc1_c00409{color:rgb(128,128,128);}
.fc0_c00409{color:rgb(0,0,0);}
.fs2_c00409{font-size:45.000000px;}
.fs3_c00409{font-size:48.000000px;}
.fs1_c00409{font-size:66.000000px;}
.fs0_c00409{font-size:69.000000px;}
.fs4_c00409{font-size:117.000000px;}
.y0_c00409{bottom:0.000000px;}
.y1d_c00409{bottom:3.105000px;}
.y1c_c00409{bottom:7.228369px;}
.y1b_c00409{bottom:51.570000px;}
.y1a_c00409{bottom:78.570000px;}
.y19_c00409{bottom:110.970000px;}
.y18_c00409{bottom:145.020000px;}
.y17_c00409{bottom:170.370000px;}
.y16_c00409{bottom:195.420000px;}
.y15_c00409{bottom:220.770000px;}
.y14_c00409{bottom:246.420000px;}
.y13_c00409{bottom:271.920000px;}
.y12_c00409{bottom:319.320000px;}
.y11_c00409{bottom:363.120000px;}
.y10_c00409{bottom:414.120000px;}
.yf_c00409{bottom:445.170000px;}
.ye_c00409{bottom:469.770000px;}
.yd_c00409{bottom:495.120000px;}
.yc_c00409{bottom:520.770000px;}
.yb_c00409{bottom:554.220000px;}
.ya_c00409{bottom:575.670000px;}
.y9_c00409{bottom:602.820000px;}
.y8_c00409{bottom:624.270000px;}
.y7_c00409{bottom:642.870000px;}
.y6_c00409{bottom:653.670000px;}
.y5_c00409{bottom:674.370000px;}
.y4_c00409{bottom:699.120000px;}
.y3_c00409{bottom:724.170000px;}
.y2_c00409{bottom:749.220000px;}
.y1_c00409{bottom:774.570000px;}
.h9_c00409{height:13.200073px;}
.ha_c00409{height:43.804688px;}
.h5_c00409{height:48.015000px;}
.h6_c00409{height:56.975098px;}
.h7_c00409{height:60.773438px;}
.h4_c00409{height:80.758301px;}
.h3_c00409{height:86.761816px;}
.h2_c00409{height:87.361816px;}
.h8_c00409{height:148.135254px;}
.h0_c00409{height:821.850000px;}
.h1_c00409{height:822.000000px;}
.w2_c00409{width:104.875500px;}
.w1_c00409{width:567.750000px;}
.w0_c00409{width:568.050000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:103.050000px;}
.xa_c00409{left:105.900000px;}
.xe_c00409{left:106.950000px;}
.x11_c00409{left:108.450000px;}
.xf_c00409{left:111.000000px;}
.x10_c00409{left:112.350000px;}
.x1_c00409{left:116.100000px;}
.x9_c00409{left:128.850000px;}
.xd_c00409{left:132.900000px;}
.x7_c00409{left:153.150000px;}
.x4_c00409{left:157.350000px;}
.x8_c00409{left:161.250000px;}
.x6_c00409{left:173.400000px;}
.xc_c00409{left:207.450000px;}
.x12_c00409{left:235.839249px;}
.xb_c00409{left:242.700000px;}
.x5_c00409{left:290.850000px;}
.x3_c00409{left:293.250000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls6_c00409{letter-spacing:0.000000pt;}
.ls3_c00409{letter-spacing:0.293333pt;}
.ls4_c00409{letter-spacing:0.485333pt;}
.ls5_c00409{letter-spacing:2.666667pt;}
.ls0_c00409{letter-spacing:5.333333pt;}
.ls2_c00409{letter-spacing:18.666667pt;}
.ls1_c00409{letter-spacing:33.218667pt;}
.ws0_c00409{word-spacing:-17.448000pt;}
.ws1_c00409{word-spacing:-14.781333pt;}
.ws2_c00409{word-spacing:0.000000pt;}
._22_c00409{margin-left:-22.632000pt;}
._1f_c00409{margin-left:-16.069333pt;}
._3_c00409{margin-left:-14.781333pt;}
._10_c00409{margin-left:-11.408000pt;}
._f_c00409{margin-left:-10.242667pt;}
._d_c00409{margin-left:-8.157333pt;}
._12_c00409{margin-left:-6.698667pt;}
._11_c00409{margin-left:-5.152000pt;}
._e_c00409{margin-left:-3.802667pt;}
._a_c00409{margin-left:-2.637333pt;}
._2_c00409{margin-left:-1.717333pt;}
._7_c00409{width:1.226667pt;}
._0_c00409{width:2.146667pt;}
._5_c00409{width:3.925333pt;}
._9_c00409{width:5.458667pt;}
._b_c00409{width:6.797333pt;}
._14_c00409{width:7.984000pt;}
._c_c00409{width:8.904000pt;}
._19_c00409{width:9.813333pt;}
._21_c00409{width:10.890667pt;}
._16_c00409{width:11.808000pt;}
._20_c00409{width:12.992000pt;}
._4_c00409{width:14.536000pt;}
._17_c00409{width:16.192000pt;}
._6_c00409{width:19.013333pt;}
._15_c00409{width:20.853333pt;}
._8_c00409{width:26.312000pt;}
._18_c00409{width:27.600000pt;}
._1a_c00409{width:28.712000pt;}
._1b_c00409{width:31.333333pt;}
._1c_c00409{width:33.365333pt;}
._1e_c00409{width:38.250667pt;}
._1d_c00409{width:79.610667pt;}
._13_c00409{width:87.645333pt;}
._1_c00409{width:376.501333pt;}
._23_c00409{width:1347.616000pt;}
.fs2_c00409{font-size:40.000000pt;}
.fs3_c00409{font-size:42.666667pt;}
.fs1_c00409{font-size:58.666667pt;}
.fs0_c00409{font-size:61.333333pt;}
.fs4_c00409{font-size:104.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y1d_c00409{bottom:2.760000pt;}
.y1c_c00409{bottom:6.425217pt;}
.y1b_c00409{bottom:45.840000pt;}
.y1a_c00409{bottom:69.840000pt;}
.y19_c00409{bottom:98.640000pt;}
.y18_c00409{bottom:128.906667pt;}
.y17_c00409{bottom:151.440000pt;}
.y16_c00409{bottom:173.706667pt;}
.y15_c00409{bottom:196.240000pt;}
.y14_c00409{bottom:219.040000pt;}
.y13_c00409{bottom:241.706667pt;}
.y12_c00409{bottom:283.840000pt;}
.y11_c00409{bottom:322.773333pt;}
.y10_c00409{bottom:368.106667pt;}
.yf_c00409{bottom:395.706667pt;}
.ye_c00409{bottom:417.573333pt;}
.yd_c00409{bottom:440.106667pt;}
.yc_c00409{bottom:462.906667pt;}
.yb_c00409{bottom:492.640000pt;}
.ya_c00409{bottom:511.706667pt;}
.y9_c00409{bottom:535.840000pt;}
.y8_c00409{bottom:554.906667pt;}
.y7_c00409{bottom:571.440000pt;}
.y6_c00409{bottom:581.040000pt;}
.y5_c00409{bottom:599.440000pt;}
.y4_c00409{bottom:621.440000pt;}
.y3_c00409{bottom:643.706667pt;}
.y2_c00409{bottom:665.973333pt;}
.y1_c00409{bottom:688.506667pt;}
.h9_c00409{height:11.733399pt;}
.ha_c00409{height:38.937500pt;}
.h5_c00409{height:42.680000pt;}
.h6_c00409{height:50.644531pt;}
.h7_c00409{height:54.020833pt;}
.h4_c00409{height:71.785156pt;}
.h3_c00409{height:77.121615pt;}
.h2_c00409{height:77.654948pt;}
.h8_c00409{height:131.675781pt;}
.h0_c00409{height:730.533333pt;}
.h1_c00409{height:730.666667pt;}
.w2_c00409{width:93.222667pt;}
.w1_c00409{width:504.666667pt;}
.w0_c00409{width:504.933333pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:91.600000pt;}
.xa_c00409{left:94.133333pt;}
.xe_c00409{left:95.066667pt;}
.x11_c00409{left:96.400000pt;}
.xf_c00409{left:98.666667pt;}
.x10_c00409{left:99.866667pt;}
.x1_c00409{left:103.200000pt;}
.x9_c00409{left:114.533333pt;}
.xd_c00409{left:118.133333pt;}
.x7_c00409{left:136.133333pt;}
.x4_c00409{left:139.866667pt;}
.x8_c00409{left:143.333333pt;}
.x6_c00409{left:154.133333pt;}
.xc_c00409{left:184.400000pt;}
.x12_c00409{left:209.634888pt;}
.xb_c00409{left:215.733333pt;}
.x5_c00409{left:258.533333pt;}
.x3_c00409{left:260.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_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_c217684b280a1df79b8d797c.woff2')format("woff");}.ff1_c00410{font-family:ff1_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:ff2_c00410;src:url('chunks/assets/font_fb7d17aa75f966809e4a3334.woff2')format("woff");}.ff2_c00410{font-family:ff2_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:ff3_c00410;src:url('chunks/assets/font_94c5f0fb0d70c2447fa8bfd9.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00410{font-family:ff4_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);}
.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:-16.629000px;}
.ws1_c00410{word-spacing:0.000000px;}
._2b_c00410{margin-left:-34.155000px;}
._28_c00410{margin-left:-22.218000px;}
._1f_c00410{margin-left:-19.389000px;}
._12_c00410{margin-left:-18.216000px;}
._14_c00410{margin-left:-16.491000px;}
._17_c00410{margin-left:-14.283000px;}
._11_c00410{margin-left:-12.834000px;}
._24_c00410{margin-left:-11.832000px;}
._13_c00410{margin-left:-10.764000px;}
._e_c00410{margin-left:-9.315000px;}
._c_c00410{margin-left:-8.073000px;}
._1b_c00410{margin-left:-6.969000px;}
._15_c00410{margin-left:-5.934000px;}
._d_c00410{margin-left:-4.899000px;}
._b_c00410{margin-left:-3.864000px;}
._8_c00410{margin-left:-2.622000px;}
._1_c00410{margin-left:-1.311000px;}
._10_c00410{width:1.035000px;}
._3_c00410{width:2.070000px;}
._7_c00410{width:3.174000px;}
._9_c00410{width:4.899000px;}
._0_c00410{width:6.555000px;}
._6_c00410{width:8.142000px;}
._5_c00410{width:9.798000px;}
._26_c00410{width:11.040000px;}
._a_c00410{width:13.110000px;}
._f_c00410{width:14.559000px;}
._29_c00410{width:16.149000px;}
._23_c00410{width:18.216000px;}
._20_c00410{width:19.389000px;}
._21_c00410{width:21.252000px;}
._19_c00410{width:22.356000px;}
._22_c00410{width:25.767000px;}
._4_c00410{width:32.361000px;}
._27_c00410{width:36.969000px;}
._18_c00410{width:38.847000px;}
._25_c00410{width:43.056000px;}
._1d_c00410{width:46.617000px;}
._2a_c00410{width:91.119000px;}
._1a_c00410{width:94.746000px;}
._1c_c00410{width:136.758000px;}
._16_c00410{width:158.826000px;}
._2c_c00410{width:190.440000px;}
._1e_c00410{width:194.382000px;}
._2d_c00410{width:226.776000px;}
._2_c00410{width:420.930000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(128,128,128);}
.fc0_c00410{color:rgb(0,0,0);}
.fs1_c00410{font-size:48.000000px;}
.fs0_c00410{font-size:69.000000px;}
.y0_c00410{bottom:0.000000px;}
.y1e_c00410{bottom:3.105000px;}
.y1d_c00410{bottom:7.228371px;}
.y1c_c00410{bottom:65.865000px;}
.y1b_c00410{bottom:90.915000px;}
.y1a_c00410{bottom:116.415000px;}
.y19_c00410{bottom:140.865000px;}
.y18_c00410{bottom:165.765000px;}
.y17_c00410{bottom:191.415000px;}
.y16_c00410{bottom:217.065000px;}
.y15_c00410{bottom:242.415000px;}
.y14_c00410{bottom:267.315000px;}
.y13_c00410{bottom:292.365000px;}
.y12_c00410{bottom:317.265000px;}
.y11_c00410{bottom:350.415000px;}
.y10_c00410{bottom:383.115000px;}
.yf_c00410{bottom:408.015000px;}
.ye_c00410{bottom:433.365000px;}
.yd_c00410{bottom:457.665000px;}
.yc_c00410{bottom:483.765000px;}
.yb_c00410{bottom:508.065000px;}
.ya_c00410{bottom:533.565000px;}
.y9_c00410{bottom:559.215000px;}
.y8_c00410{bottom:583.215000px;}
.y7_c00410{bottom:616.365000px;}
.y6_c00410{bottom:655.815000px;}
.y5_c00410{bottom:688.215000px;}
.y4_c00410{bottom:713.115000px;}
.y3_c00410{bottom:738.165000px;}
.y2_c00410{bottom:762.765000px;}
.y1_c00410{bottom:788.115000px;}
.h4_c00410{height:13.200074px;}
.h5_c00410{height:43.804688px;}
.h3_c00410{height:80.758301px;}
.h2_c00410{height:87.361816px;}
.h1_c00410{height:831.000000px;}
.h0_c00410{height:831.075000px;}
.w2_c00410{width:104.875500px;}
.w0_c00410{width:582.375000px;}
.w1_c00410{width:582.750000px;}
.x0_c00410{left:0.000000px;}
.x5_c00410{left:35.100000px;}
.x9_c00410{left:36.150000px;}
.xb_c00410{left:37.800000px;}
.x6_c00410{left:38.850000px;}
.x4_c00410{left:39.900000px;}
.x2_c00410{left:54.000000px;}
.xc_c00410{left:55.350000px;}
.x8_c00410{left:60.750000px;}
.xa_c00410{left:62.400000px;}
.xe_c00410{left:63.450000px;}
.x3_c00410{left:67.800000px;}
.xd_c00410{left:74.250000px;}
.x7_c00410{left:134.700000px;}
.x1_c00410{left:205.650000px;}
.x10_c00410{left:243.001740px;}
.xf_c00410{left:318.600000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:2.666667pt;}
.ws0_c00410{word-spacing:-14.781333pt;}
.ws1_c00410{word-spacing:0.000000pt;}
._2b_c00410{margin-left:-30.360000pt;}
._28_c00410{margin-left:-19.749333pt;}
._1f_c00410{margin-left:-17.234667pt;}
._12_c00410{margin-left:-16.192000pt;}
._14_c00410{margin-left:-14.658667pt;}
._17_c00410{margin-left:-12.696000pt;}
._11_c00410{margin-left:-11.408000pt;}
._24_c00410{margin-left:-10.517333pt;}
._13_c00410{margin-left:-9.568000pt;}
._e_c00410{margin-left:-8.280000pt;}
._c_c00410{margin-left:-7.176000pt;}
._1b_c00410{margin-left:-6.194667pt;}
._15_c00410{margin-left:-5.274667pt;}
._d_c00410{margin-left:-4.354667pt;}
._b_c00410{margin-left:-3.434667pt;}
._8_c00410{margin-left:-2.330667pt;}
._1_c00410{margin-left:-1.165333pt;}
._10_c00410{width:0.920000pt;}
._3_c00410{width:1.840000pt;}
._7_c00410{width:2.821333pt;}
._9_c00410{width:4.354667pt;}
._0_c00410{width:5.826667pt;}
._6_c00410{width:7.237333pt;}
._5_c00410{width:8.709333pt;}
._26_c00410{width:9.813333pt;}
._a_c00410{width:11.653333pt;}
._f_c00410{width:12.941333pt;}
._29_c00410{width:14.354667pt;}
._23_c00410{width:16.192000pt;}
._20_c00410{width:17.234667pt;}
._21_c00410{width:18.890667pt;}
._19_c00410{width:19.872000pt;}
._22_c00410{width:22.904000pt;}
._4_c00410{width:28.765333pt;}
._27_c00410{width:32.861333pt;}
._18_c00410{width:34.530667pt;}
._25_c00410{width:38.272000pt;}
._1d_c00410{width:41.437333pt;}
._2a_c00410{width:80.994667pt;}
._1a_c00410{width:84.218667pt;}
._1c_c00410{width:121.562667pt;}
._16_c00410{width:141.178667pt;}
._2c_c00410{width:169.280000pt;}
._1e_c00410{width:172.784000pt;}
._2d_c00410{width:201.578667pt;}
._2_c00410{width:374.160000pt;}
.fs1_c00410{font-size:42.666667pt;}
.fs0_c00410{font-size:61.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y1e_c00410{bottom:2.760000pt;}
.y1d_c00410{bottom:6.425219pt;}
.y1c_c00410{bottom:58.546667pt;}
.y1b_c00410{bottom:80.813333pt;}
.y1a_c00410{bottom:103.480000pt;}
.y19_c00410{bottom:125.213333pt;}
.y18_c00410{bottom:147.346667pt;}
.y17_c00410{bottom:170.146667pt;}
.y16_c00410{bottom:192.946667pt;}
.y15_c00410{bottom:215.480000pt;}
.y14_c00410{bottom:237.613333pt;}
.y13_c00410{bottom:259.880000pt;}
.y12_c00410{bottom:282.013333pt;}
.y11_c00410{bottom:311.480000pt;}
.y10_c00410{bottom:340.546667pt;}
.yf_c00410{bottom:362.680000pt;}
.ye_c00410{bottom:385.213333pt;}
.yd_c00410{bottom:406.813333pt;}
.yc_c00410{bottom:430.013333pt;}
.yb_c00410{bottom:451.613333pt;}
.ya_c00410{bottom:474.280000pt;}
.y9_c00410{bottom:497.080000pt;}
.y8_c00410{bottom:518.413333pt;}
.y7_c00410{bottom:547.880000pt;}
.y6_c00410{bottom:582.946667pt;}
.y5_c00410{bottom:611.746667pt;}
.y4_c00410{bottom:633.880000pt;}
.y3_c00410{bottom:656.146667pt;}
.y2_c00410{bottom:678.013333pt;}
.y1_c00410{bottom:700.546667pt;}
.h4_c00410{height:11.733399pt;}
.h5_c00410{height:38.937500pt;}
.h3_c00410{height:71.785156pt;}
.h2_c00410{height:77.654948pt;}
.h1_c00410{height:738.666667pt;}
.h0_c00410{height:738.733333pt;}
.w2_c00410{width:93.222667pt;}
.w0_c00410{width:517.666667pt;}
.w1_c00410{width:518.000000pt;}
.x0_c00410{left:0.000000pt;}
.x5_c00410{left:31.200000pt;}
.x9_c00410{left:32.133333pt;}
.xb_c00410{left:33.600000pt;}
.x6_c00410{left:34.533333pt;}
.x4_c00410{left:35.466667pt;}
.x2_c00410{left:48.000000pt;}
.xc_c00410{left:49.200000pt;}
.x8_c00410{left:54.000000pt;}
.xa_c00410{left:55.466667pt;}
.xe_c00410{left:56.400000pt;}
.x3_c00410{left:60.266667pt;}
.xd_c00410{left:66.000000pt;}
.x7_c00410{left:119.733333pt;}
.x1_c00410{left:182.800000pt;}
.x10_c00410{left:216.001546pt;}
.xf_c00410{left:283.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_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_c1db025826c5884fbb0e0efa.woff2')format("woff");}.ff1_c00411{font-family:ff1_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:ff2_c00411;src:url('chunks/assets/font_d01d4cedf764081afc3578f8.woff2')format("woff");}.ff2_c00411{font-family:ff2_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:ff3_c00411;src:url('chunks/assets/font_fd6630f932a71070c7256d04.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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff4_c00411{font-family:ff4_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:ff5_c00411;src:url('chunks/assets/font_1e4333e0546c3e0129f37c23.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_4b2d9edaf5dc15db159de356.woff2')format("woff");}.ff6_c00411{font-family:ff6_c00411;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_c00411;src:url('chunks/assets/font_cd0a040b1f29b6f17822e320.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_8928f98f87c3132e1cc3f21f.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;}
.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);}
.v1_c00411{vertical-align:-92.400000px;}
.v0_c00411{vertical-align:0.000000px;}
.ls2_c00411{letter-spacing:0.000000px;}
.ls1_c00411{letter-spacing:3.000000px;}
.ls4_c00411{letter-spacing:6.000000px;}
.ls3_c00411{letter-spacing:9.000000px;}
.ls0_c00411{letter-spacing:28.500000px;}
.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:-25.629000px;}
.ws1_c00411{word-spacing:-22.524000px;}
.ws6_c00411{word-spacing:-19.629000px;}
.ws0_c00411{word-spacing:-16.629000px;}
.ws4_c00411{word-spacing:-9.966000px;}
.ws3_c00411{word-spacing:-1.173000px;}
.ws7_c00411{word-spacing:0.000000px;}
.ws5_c00411{word-spacing:3.519000px;}
._1a_c00411{margin-left:-67.176000px;}
._26_c00411{margin-left:-64.170000px;}
._2a_c00411{margin-left:-27.186000px;}
._1c_c00411{margin-left:-25.110000px;}
._7_c00411{margin-left:-21.390000px;}
._2b_c00411{margin-left:-19.395000px;}
._12_c00411{margin-left:-15.675000px;}
._9_c00411{margin-left:-13.800000px;}
._2e_c00411{margin-left:-12.654000px;}
._a_c00411{margin-left:-10.350000px;}
._13_c00411{margin-left:-8.763000px;}
._10_c00411{margin-left:-7.590000px;}
._5_c00411{margin-left:-5.589000px;}
._e_c00411{margin-left:-4.485000px;}
._4_c00411{margin-left:-3.105000px;}
._3_c00411{margin-left:-1.587000px;}
._1_c00411{width:1.725000px;}
._c_c00411{width:2.835000px;}
._0_c00411{width:3.933000px;}
._14_c00411{width:5.661000px;}
._20_c00411{width:6.900000px;}
._11_c00411{width:8.280000px;}
._1e_c00411{width:9.381000px;}
._8_c00411{width:10.764000px;}
._1f_c00411{width:11.883000px;}
._b_c00411{width:12.957000px;}
._d_c00411{width:14.076000px;}
._6_c00411{width:15.387000px;}
._21_c00411{width:16.623000px;}
._25_c00411{width:17.703000px;}
._17_c00411{width:18.756000px;}
._15_c00411{width:21.162000px;}
._19_c00411{width:23.346000px;}
._2d_c00411{width:27.600000px;}
._18_c00411{width:28.773000px;}
._16_c00411{width:33.903000px;}
._1b_c00411{width:42.024000px;}
._29_c00411{width:52.677000px;}
._1d_c00411{width:67.722000px;}
._27_c00411{width:73.671000px;}
._24_c00411{width:101.361000px;}
._f_c00411{width:111.849000px;}
._23_c00411{width:119.796000px;}
._2c_c00411{width:188.637000px;}
._28_c00411{width:258.336000px;}
._22_c00411{width:359.076000px;}
._2_c00411{width:490.095000px;}
.fc2_c00411{color:transparent;}
.fc1_c00411{color:rgb(128,128,128);}
.fc0_c00411{color:rgb(0,0,0);}
.fs1_c00411{font-size:42.000000px;}
.fs7_c00411{font-size:48.000000px;}
.fs6_c00411{font-size:51.000000px;}
.fs4_c00411{font-size:57.000000px;}
.fs2_c00411{font-size:66.000000px;}
.fs0_c00411{font-size:69.000000px;}
.fs3_c00411{font-size:72.000000px;}
.fs5_c00411{font-size:93.000000px;}
.y0_c00411{bottom:0.000000px;}
.y1c_c00411{bottom:3.105000px;}
.y1b_c00411{bottom:7.228355px;}
.y1a_c00411{bottom:52.635000px;}
.y19_c00411{bottom:77.535000px;}
.y18_c00411{bottom:128.535000px;}
.y17_c00411{bottom:154.485000px;}
.y16_c00411{bottom:180.135000px;}
.y15_c00411{bottom:205.485000px;}
.y14_c00411{bottom:256.785000px;}
.y13_c00411{bottom:285.135000px;}
.y12_c00411{bottom:305.985000px;}
.y11_c00411{bottom:331.035000px;}
.y10_c00411{bottom:355.335000px;}
.yf_c00411{bottom:380.685000px;}
.ye_c00411{bottom:405.285000px;}
.yd_c00411{bottom:429.285000px;}
.yc_c00411{bottom:455.835000px;}
.yb_c00411{bottom:480.885000px;}
.ya_c00411{bottom:505.485000px;}
.y9_c00411{bottom:531.585000px;}
.y8_c00411{bottom:604.485000px;}
.y7_c00411{bottom:623.235000px;}
.y6_c00411{bottom:656.385000px;}
.y5_c00411{bottom:682.035000px;}
.y4_c00411{bottom:706.635000px;}
.y3_c00411{bottom:731.985000px;}
.y2_c00411{bottom:757.035000px;}
.y1_c00411{bottom:781.935000px;}
.h5_c00411{height:13.200074px;}
.h6_c00411{height:43.804688px;}
.h3_c00411{height:80.758301px;}
.h2_c00411{height:87.361816px;}
.h4_c00411{height:91.160156px;}
.h0_c00411{height:815.925000px;}
.h1_c00411{height:816.000000px;}
.w2_c00411{width:104.875500px;}
.w0_c00411{width:563.775000px;}
.w1_c00411{width:564.000000px;}
.x0_c00411{left:0.000000px;}
.x4_c00411{left:27.150000px;}
.x9_c00411{left:44.550000px;}
.x8_c00411{left:46.950000px;}
.xf_c00411{left:91.500000px;}
.x3_c00411{left:92.550000px;}
.xb_c00411{left:93.600000px;}
.x2_c00411{left:94.950000px;}
.x5_c00411{left:96.150000px;}
.x1_c00411{left:106.950000px;}
.xe_c00411{left:117.450000px;}
.x7_c00411{left:119.400000px;}
.xa_c00411{left:152.850000px;}
.x6_c00411{left:154.350000px;}
.xd_c00411{left:204.600000px;}
.x11_c00411{left:233.701767px;}
.xc_c00411{left:476.250000px;}
.x10_c00411{left:518.850000px;}
@media print{
.v1_c00411{vertical-align:-82.133333pt;}
.v0_c00411{vertical-align:0.000000pt;}
.ls2_c00411{letter-spacing:0.000000pt;}
.ls1_c00411{letter-spacing:2.666667pt;}
.ls4_c00411{letter-spacing:5.333333pt;}
.ls3_c00411{letter-spacing:8.000000pt;}
.ls0_c00411{letter-spacing:25.333333pt;}
.ws2_c00411{word-spacing:-22.781333pt;}
.ws1_c00411{word-spacing:-20.021333pt;}
.ws6_c00411{word-spacing:-17.448000pt;}
.ws0_c00411{word-spacing:-14.781333pt;}
.ws4_c00411{word-spacing:-8.858667pt;}
.ws3_c00411{word-spacing:-1.042667pt;}
.ws7_c00411{word-spacing:0.000000pt;}
.ws5_c00411{word-spacing:3.128000pt;}
._1a_c00411{margin-left:-59.712000pt;}
._26_c00411{margin-left:-57.040000pt;}
._2a_c00411{margin-left:-24.165333pt;}
._1c_c00411{margin-left:-22.320000pt;}
._7_c00411{margin-left:-19.013333pt;}
._2b_c00411{margin-left:-17.240000pt;}
._12_c00411{margin-left:-13.933333pt;}
._9_c00411{margin-left:-12.266667pt;}
._2e_c00411{margin-left:-11.248000pt;}
._a_c00411{margin-left:-9.200000pt;}
._13_c00411{margin-left:-7.789333pt;}
._10_c00411{margin-left:-6.746667pt;}
._5_c00411{margin-left:-4.968000pt;}
._e_c00411{margin-left:-3.986667pt;}
._4_c00411{margin-left:-2.760000pt;}
._3_c00411{margin-left:-1.410667pt;}
._1_c00411{width:1.533333pt;}
._c_c00411{width:2.520000pt;}
._0_c00411{width:3.496000pt;}
._14_c00411{width:5.032000pt;}
._20_c00411{width:6.133333pt;}
._11_c00411{width:7.360000pt;}
._1e_c00411{width:8.338667pt;}
._8_c00411{width:9.568000pt;}
._1f_c00411{width:10.562667pt;}
._b_c00411{width:11.517333pt;}
._d_c00411{width:12.512000pt;}
._6_c00411{width:13.677333pt;}
._21_c00411{width:14.776000pt;}
._25_c00411{width:15.736000pt;}
._17_c00411{width:16.672000pt;}
._15_c00411{width:18.810667pt;}
._19_c00411{width:20.752000pt;}
._2d_c00411{width:24.533333pt;}
._18_c00411{width:25.576000pt;}
._16_c00411{width:30.136000pt;}
._1b_c00411{width:37.354667pt;}
._29_c00411{width:46.824000pt;}
._1d_c00411{width:60.197333pt;}
._27_c00411{width:65.485333pt;}
._24_c00411{width:90.098667pt;}
._f_c00411{width:99.421333pt;}
._23_c00411{width:106.485333pt;}
._2c_c00411{width:167.677333pt;}
._28_c00411{width:229.632000pt;}
._22_c00411{width:319.178667pt;}
._2_c00411{width:435.640000pt;}
.fs1_c00411{font-size:37.333333pt;}
.fs7_c00411{font-size:42.666667pt;}
.fs6_c00411{font-size:45.333333pt;}
.fs4_c00411{font-size:50.666667pt;}
.fs2_c00411{font-size:58.666667pt;}
.fs0_c00411{font-size:61.333333pt;}
.fs3_c00411{font-size:64.000000pt;}
.fs5_c00411{font-size:82.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y1c_c00411{bottom:2.760000pt;}
.y1b_c00411{bottom:6.425204pt;}
.y1a_c00411{bottom:46.786667pt;}
.y19_c00411{bottom:68.920000pt;}
.y18_c00411{bottom:114.253333pt;}
.y17_c00411{bottom:137.320000pt;}
.y16_c00411{bottom:160.120000pt;}
.y15_c00411{bottom:182.653333pt;}
.y14_c00411{bottom:228.253333pt;}
.y13_c00411{bottom:253.453333pt;}
.y12_c00411{bottom:271.986667pt;}
.y11_c00411{bottom:294.253333pt;}
.y10_c00411{bottom:315.853333pt;}
.yf_c00411{bottom:338.386667pt;}
.ye_c00411{bottom:360.253333pt;}
.yd_c00411{bottom:381.586667pt;}
.yc_c00411{bottom:405.186667pt;}
.yb_c00411{bottom:427.453333pt;}
.ya_c00411{bottom:449.320000pt;}
.y9_c00411{bottom:472.520000pt;}
.y8_c00411{bottom:537.320000pt;}
.y7_c00411{bottom:553.986667pt;}
.y6_c00411{bottom:583.453333pt;}
.y5_c00411{bottom:606.253333pt;}
.y4_c00411{bottom:628.120000pt;}
.y3_c00411{bottom:650.653333pt;}
.y2_c00411{bottom:672.920000pt;}
.y1_c00411{bottom:695.053333pt;}
.h5_c00411{height:11.733399pt;}
.h6_c00411{height:38.937500pt;}
.h3_c00411{height:71.785156pt;}
.h2_c00411{height:77.654948pt;}
.h4_c00411{height:81.031250pt;}
.h0_c00411{height:725.266667pt;}
.h1_c00411{height:725.333333pt;}
.w2_c00411{width:93.222667pt;}
.w0_c00411{width:501.133333pt;}
.w1_c00411{width:501.333333pt;}
.x0_c00411{left:0.000000pt;}
.x4_c00411{left:24.133333pt;}
.x9_c00411{left:39.600000pt;}
.x8_c00411{left:41.733333pt;}
.xf_c00411{left:81.333333pt;}
.x3_c00411{left:82.266667pt;}
.xb_c00411{left:83.200000pt;}
.x2_c00411{left:84.400000pt;}
.x5_c00411{left:85.466667pt;}
.x1_c00411{left:95.066667pt;}
.xe_c00411{left:104.400000pt;}
.x7_c00411{left:106.133333pt;}
.xa_c00411{left:135.866667pt;}
.x6_c00411{left:137.200000pt;}
.xd_c00411{left:181.866667pt;}
.x11_c00411{left:207.734904pt;}
.xc_c00411{left:423.333333pt;}
.x10_c00411{left:461.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_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_9d309c6bb92677b809ab3abf.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_967bef538b497ece85998d5d.woff2')format("woff");}.ff2_c00412{font-family:ff2_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:ff3_c00412;src:url('chunks/assets/font_0dfdce8f45c3be3003a7d27b.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00412{font-family:ff4_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;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls3_c00412{letter-spacing:3.000000px;}
.ls1_c00412{letter-spacing:9.000000px;}
.ls0_c00412{letter-spacing:21.771000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:-16.629000px;}
.ws1_c00412{word-spacing:-15.183000px;}
.ws2_c00412{word-spacing:-4.722000px;}
.ws3_c00412{word-spacing:0.000000px;}
._1b_c00412{margin-left:-37.743000px;}
._22_c00412{margin-left:-27.876000px;}
._25_c00412{margin-left:-24.576000px;}
._28_c00412{margin-left:-18.414000px;}
._10_c00412{margin-left:-16.629000px;}
._2a_c00412{margin-left:-13.968000px;}
._20_c00412{margin-left:-12.627000px;}
._16_c00412{margin-left:-11.250000px;}
._15_c00412{margin-left:-9.912000px;}
._1d_c00412{margin-left:-8.910000px;}
._4_c00412{margin-left:-6.555000px;}
._19_c00412{margin-left:-5.292000px;}
._5_c00412{margin-left:-3.588000px;}
._1_c00412{margin-left:-1.587000px;}
._9_c00412{width:1.173000px;}
._6_c00412{width:3.105000px;}
._7_c00412{width:4.347000px;}
._3_c00412{width:5.451000px;}
._0_c00412{width:7.107000px;}
._f_c00412{width:8.280000px;}
._b_c00412{width:9.450000px;}
._a_c00412{width:11.466000px;}
._c_c00412{width:12.852000px;}
._17_c00412{width:14.925000px;}
._14_c00412{width:16.587000px;}
._12_c00412{width:18.354000px;}
._e_c00412{width:19.617000px;}
._d_c00412{width:21.942000px;}
._11_c00412{width:23.211000px;}
._18_c00412{width:24.549000px;}
._1f_c00412{width:25.668000px;}
._8_c00412{width:26.910000px;}
._24_c00412{width:40.770000px;}
._27_c00412{width:53.364000px;}
._29_c00412{width:123.768000px;}
._21_c00412{width:130.410000px;}
._13_c00412{width:136.758000px;}
._2b_c00412{width:175.068000px;}
._26_c00412{width:189.213000px;}
._2c_c00412{width:205.437000px;}
._1e_c00412{width:225.990000px;}
._23_c00412{width:295.671000px;}
._2e_c00412{width:406.062000px;}
._2_c00412{width:419.109000px;}
._1c_c00412{width:591.744000px;}
._1a_c00412{width:704.835000px;}
._2d_c00412{width:987.528000px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(128,128,128);}
.fc0_c00412{color:rgb(0,0,0);}
.fs4_c00412{font-size:48.000000px;}
.fs3_c00412{font-size:54.000000px;}
.fs1_c00412{font-size:63.000000px;}
.fs0_c00412{font-size:69.000000px;}
.fs2_c00412{font-size:84.000000px;}
.y0_c00412{bottom:0.000000px;}
.y1d_c00412{bottom:3.105000px;}
.y1c_c00412{bottom:7.228371px;}
.y1b_c00412{bottom:61.815000px;}
.y1a_c00412{bottom:85.815000px;}
.y19_c00412{bottom:111.015000px;}
.y18_c00412{bottom:136.815000px;}
.y17_c00412{bottom:162.315000px;}
.y16_c00412{bottom:187.365000px;}
.y15_c00412{bottom:212.715000px;}
.y14_c00412{bottom:237.615000px;}
.y13_c00412{bottom:262.965000px;}
.y12_c00412{bottom:312.165000px;}
.y11_c00412{bottom:387.465000px;}
.y10_c00412{bottom:412.815000px;}
.yf_c00412{bottom:438.465000px;}
.ye_c00412{bottom:463.815000px;}
.yd_c00412{bottom:488.115000px;}
.yc_c00412{bottom:511.365000px;}
.yb_c00412{bottom:538.665000px;}
.ya_c00412{bottom:562.965000px;}
.y9_c00412{bottom:586.965000px;}
.y8_c00412{bottom:612.015000px;}
.y7_c00412{bottom:636.915000px;}
.y6_c00412{bottom:661.815000px;}
.y5_c00412{bottom:687.165000px;}
.y4_c00412{bottom:711.765000px;}
.y3_c00412{bottom:737.415000px;}
.y2_c00412{bottom:762.165000px;}
.y1_c00412{bottom:787.065000px;}
.h6_c00412{height:13.200074px;}
.h7_c00412{height:43.804688px;}
.h5_c00412{height:68.370117px;}
.h4_c00412{height:80.758301px;}
.h2_c00412{height:87.361816px;}
.h3_c00412{height:106.353516px;}
.h1_c00412{height:831.000000px;}
.h0_c00412{height:831.075000px;}
.w2_c00412{width:104.875500px;}
.w0_c00412{width:582.375000px;}
.w1_c00412{width:582.750000px;}
.x0_c00412{left:0.000000px;}
.x7_c00412{left:30.000000px;}
.x3_c00412{left:31.350000px;}
.x5_c00412{left:32.400000px;}
.x2_c00412{left:34.050000px;}
.x4_c00412{left:35.100000px;}
.x8_c00412{left:37.500000px;}
.xb_c00412{left:53.700000px;}
.x9_c00412{left:57.750000px;}
.x6_c00412{left:68.400000px;}
.xa_c00412{left:112.350000px;}
.x1_c00412{left:200.100000px;}
.xc_c00412{left:243.001740px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls3_c00412{letter-spacing:2.666667pt;}
.ls1_c00412{letter-spacing:8.000000pt;}
.ls0_c00412{letter-spacing:19.352000pt;}
.ws0_c00412{word-spacing:-14.781333pt;}
.ws1_c00412{word-spacing:-13.496000pt;}
.ws2_c00412{word-spacing:-4.197333pt;}
.ws3_c00412{word-spacing:0.000000pt;}
._1b_c00412{margin-left:-33.549333pt;}
._22_c00412{margin-left:-24.778667pt;}
._25_c00412{margin-left:-21.845333pt;}
._28_c00412{margin-left:-16.368000pt;}
._10_c00412{margin-left:-14.781333pt;}
._2a_c00412{margin-left:-12.416000pt;}
._20_c00412{margin-left:-11.224000pt;}
._16_c00412{margin-left:-10.000000pt;}
._15_c00412{margin-left:-8.810667pt;}
._1d_c00412{margin-left:-7.920000pt;}
._4_c00412{margin-left:-5.826667pt;}
._19_c00412{margin-left:-4.704000pt;}
._5_c00412{margin-left:-3.189333pt;}
._1_c00412{margin-left:-1.410667pt;}
._9_c00412{width:1.042667pt;}
._6_c00412{width:2.760000pt;}
._7_c00412{width:3.864000pt;}
._3_c00412{width:4.845333pt;}
._0_c00412{width:6.317333pt;}
._f_c00412{width:7.360000pt;}
._b_c00412{width:8.400000pt;}
._a_c00412{width:10.192000pt;}
._c_c00412{width:11.424000pt;}
._17_c00412{width:13.266667pt;}
._14_c00412{width:14.744000pt;}
._12_c00412{width:16.314667pt;}
._e_c00412{width:17.437333pt;}
._d_c00412{width:19.504000pt;}
._11_c00412{width:20.632000pt;}
._18_c00412{width:21.821333pt;}
._1f_c00412{width:22.816000pt;}
._8_c00412{width:23.920000pt;}
._24_c00412{width:36.240000pt;}
._27_c00412{width:47.434667pt;}
._29_c00412{width:110.016000pt;}
._21_c00412{width:115.920000pt;}
._13_c00412{width:121.562667pt;}
._2b_c00412{width:155.616000pt;}
._26_c00412{width:168.189333pt;}
._2c_c00412{width:182.610667pt;}
._1e_c00412{width:200.880000pt;}
._23_c00412{width:262.818667pt;}
._2e_c00412{width:360.944000pt;}
._2_c00412{width:372.541333pt;}
._1c_c00412{width:525.994667pt;}
._1a_c00412{width:626.520000pt;}
._2d_c00412{width:877.802667pt;}
.fs4_c00412{font-size:42.666667pt;}
.fs3_c00412{font-size:48.000000pt;}
.fs1_c00412{font-size:56.000000pt;}
.fs0_c00412{font-size:61.333333pt;}
.fs2_c00412{font-size:74.666667pt;}
.y0_c00412{bottom:0.000000pt;}
.y1d_c00412{bottom:2.760000pt;}
.y1c_c00412{bottom:6.425219pt;}
.y1b_c00412{bottom:54.946667pt;}
.y1a_c00412{bottom:76.280000pt;}
.y19_c00412{bottom:98.680000pt;}
.y18_c00412{bottom:121.613333pt;}
.y17_c00412{bottom:144.280000pt;}
.y16_c00412{bottom:166.546667pt;}
.y15_c00412{bottom:189.080000pt;}
.y14_c00412{bottom:211.213333pt;}
.y13_c00412{bottom:233.746667pt;}
.y12_c00412{bottom:277.480000pt;}
.y11_c00412{bottom:344.413333pt;}
.y10_c00412{bottom:366.946667pt;}
.yf_c00412{bottom:389.746667pt;}
.ye_c00412{bottom:412.280000pt;}
.yd_c00412{bottom:433.880000pt;}
.yc_c00412{bottom:454.546667pt;}
.yb_c00412{bottom:478.813333pt;}
.ya_c00412{bottom:500.413333pt;}
.y9_c00412{bottom:521.746667pt;}
.y8_c00412{bottom:544.013333pt;}
.y7_c00412{bottom:566.146667pt;}
.y6_c00412{bottom:588.280000pt;}
.y5_c00412{bottom:610.813333pt;}
.y4_c00412{bottom:632.680000pt;}
.y3_c00412{bottom:655.480000pt;}
.y2_c00412{bottom:677.480000pt;}
.y1_c00412{bottom:699.613333pt;}
.h6_c00412{height:11.733399pt;}
.h7_c00412{height:38.937500pt;}
.h5_c00412{height:60.773438pt;}
.h4_c00412{height:71.785156pt;}
.h2_c00412{height:77.654948pt;}
.h3_c00412{height:94.536458pt;}
.h1_c00412{height:738.666667pt;}
.h0_c00412{height:738.733333pt;}
.w2_c00412{width:93.222667pt;}
.w0_c00412{width:517.666667pt;}
.w1_c00412{width:518.000000pt;}
.x0_c00412{left:0.000000pt;}
.x7_c00412{left:26.666667pt;}
.x3_c00412{left:27.866667pt;}
.x5_c00412{left:28.800000pt;}
.x2_c00412{left:30.266667pt;}
.x4_c00412{left:31.200000pt;}
.x8_c00412{left:33.333333pt;}
.xb_c00412{left:47.733333pt;}
.x9_c00412{left:51.333333pt;}
.x6_c00412{left:60.800000pt;}
.xa_c00412{left:99.866667pt;}
.x1_c00412{left:177.866667pt;}
.xc_c00412{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65ebd84e56b4146b848bc3e6.woff2')format("woff");}.ff1_c00413{font-family:ff1_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:ff2_c00413;src:url('chunks/assets/font_e2b0f22ca3887b673d9a6968.woff2')format("woff");}.ff2_c00413{font-family:ff2_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:ff3_c00413;src:url('chunks/assets/font_01deeb14c3b30c9080f88337.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_0949980f5e495d49f44a7d94.woff2')format("woff");}.ff4_c00413{font-family:ff4_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:ff5_c00413;src:url('chunks/assets/font_155d47e9ac6bdd86c105dfd7.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;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_c00413;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00413{font-family:ff6_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;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls2_c00413{letter-spacing:0.000000px;}
.ls1_c00413{letter-spacing:3.000000px;}
.ls3_c00413{letter-spacing:6.000000px;}
.ls0_c00413{letter-spacing:14.868000px;}
.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;}
}
.ws2_c00413{word-spacing:-39.498000px;}
.ws1_c00413{word-spacing:-26.622000px;}
.ws3_c00413{word-spacing:-18.075000px;}
.ws0_c00413{word-spacing:-16.629000px;}
.ws4_c00413{word-spacing:0.000000px;}
._23_c00413{margin-left:-36.645000px;}
._27_c00413{margin-left:-27.288000px;}
._13_c00413{margin-left:-24.840000px;}
._26_c00413{margin-left:-22.032000px;}
._2_c00413{margin-left:-18.423000px;}
._24_c00413{margin-left:-16.581000px;}
._20_c00413{margin-left:-13.392000px;}
._21_c00413{margin-left:-11.721000px;}
._15_c00413{margin-left:-9.096000px;}
._18_c00413{margin-left:-7.770000px;}
._8_c00413{margin-left:-6.486000px;}
._7_c00413{margin-left:-5.451000px;}
._5_c00413{margin-left:-4.347000px;}
._6_c00413{margin-left:-2.760000px;}
._4_c00413{margin-left:-1.311000px;}
._0_c00413{width:1.587000px;}
._b_c00413{width:3.036000px;}
._a_c00413{width:4.071000px;}
._c_c00413{width:5.727000px;}
._17_c00413{width:6.900000px;}
._12_c00413{width:7.935000px;}
._e_c00413{width:9.966000px;}
._9_c00413{width:11.898000px;}
._3_c00413{width:13.059000px;}
._d_c00413{width:15.012000px;}
._f_c00413{width:16.767000px;}
._1d_c00413{width:20.907000px;}
._1e_c00413{width:21.924000px;}
._19_c00413{width:23.349000px;}
._10_c00413{width:24.564000px;}
._22_c00413{width:32.505000px;}
._1f_c00413{width:33.717000px;}
._1a_c00413{width:35.406000px;}
._11_c00413{width:39.813000px;}
._14_c00413{width:52.647000px;}
._1c_c00413{width:71.523000px;}
._16_c00413{width:93.012000px;}
._1b_c00413{width:96.393000px;}
._25_c00413{width:208.929000px;}
._1_c00413{width:430.698000px;}
._28_c00413{width:992.448000px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(128,128,128);}
.fc0_c00413{color:rgb(0,0,0);}
.fs6_c00413{font-size:48.000000px;}
.fs1_c00413{font-size:63.000000px;}
.fs0_c00413{font-size:69.000000px;}
.fs2_c00413{font-size:72.000000px;}
.fs5_c00413{font-size:75.000000px;}
.fs4_c00413{font-size:87.000000px;}
.fs3_c00413{font-size:93.000000px;}
.y0_c00413{bottom:0.000000px;}
.y1e_c00413{bottom:3.105000px;}
.y1d_c00413{bottom:7.228363px;}
.y1c_c00413{bottom:60.450000px;}
.y1b_c00413{bottom:84.750000px;}
.y1a_c00413{bottom:110.400000px;}
.y19_c00413{bottom:136.650000px;}
.y18_c00413{bottom:162.000000px;}
.y17_c00413{bottom:187.350000px;}
.y16_c00413{bottom:237.600000px;}
.y15_c00413{bottom:286.950000px;}
.y14_c00413{bottom:312.300000px;}
.y13_c00413{bottom:337.200000px;}
.y12_c00413{bottom:362.550000px;}
.y11_c00413{bottom:387.450000px;}
.y10_c00413{bottom:412.200000px;}
.yf_c00413{bottom:437.850000px;}
.ye_c00413{bottom:462.450000px;}
.yd_c00413{bottom:487.050000px;}
.yc_c00413{bottom:512.400000px;}
.yb_c00413{bottom:537.300000px;}
.ya_c00413{bottom:562.650000px;}
.y9_c00413{bottom:587.250000px;}
.y8_c00413{bottom:611.550000px;}
.y7_c00413{bottom:636.900000px;}
.y6_c00413{bottom:662.250000px;}
.y5_c00413{bottom:687.450000px;}
.y4_c00413{bottom:711.900000px;}
.y3_c00413{bottom:736.500000px;}
.y2_c00413{bottom:762.000000px;}
.y1_c00413{bottom:785.700000px;}
.h5_c00413{height:13.200074px;}
.h6_c00413{height:43.804688px;}
.h2_c00413{height:87.361816px;}
.h3_c00413{height:91.160156px;}
.h4_c00413{height:108.848145px;}
.h1_c00413{height:827.250000px;}
.h0_c00413{height:827.550000px;}
.w2_c00413{width:104.875500px;}
.w0_c00413{width:572.100000px;}
.w1_c00413{width:572.250000px;}
.x0_c00413{left:0.000000px;}
.x8_c00413{left:23.250000px;}
.x7_c00413{left:24.600000px;}
.x6_c00413{left:40.200000px;}
.x5_c00413{left:65.100000px;}
.xd_c00413{left:82.950000px;}
.xc_c00413{left:87.000000px;}
.x3_c00413{left:88.800000px;}
.x1_c00413{left:99.600000px;}
.x2_c00413{left:100.650000px;}
.xb_c00413{left:111.750000px;}
.x9_c00413{left:114.750000px;}
.x4_c00413{left:147.600000px;}
.xa_c00413{left:199.350000px;}
.xe_c00413{left:235.800000px;}
.xf_c00413{left:237.864258px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls2_c00413{letter-spacing:0.000000pt;}
.ls1_c00413{letter-spacing:2.666667pt;}
.ls3_c00413{letter-spacing:5.333333pt;}
.ls0_c00413{letter-spacing:13.216000pt;}
.ws2_c00413{word-spacing:-35.109333pt;}
.ws1_c00413{word-spacing:-23.664000pt;}
.ws3_c00413{word-spacing:-16.066667pt;}
.ws0_c00413{word-spacing:-14.781333pt;}
.ws4_c00413{word-spacing:0.000000pt;}
._23_c00413{margin-left:-32.573333pt;}
._27_c00413{margin-left:-24.256000pt;}
._13_c00413{margin-left:-22.080000pt;}
._26_c00413{margin-left:-19.584000pt;}
._2_c00413{margin-left:-16.376000pt;}
._24_c00413{margin-left:-14.738667pt;}
._20_c00413{margin-left:-11.904000pt;}
._21_c00413{margin-left:-10.418667pt;}
._15_c00413{margin-left:-8.085333pt;}
._18_c00413{margin-left:-6.906667pt;}
._8_c00413{margin-left:-5.765333pt;}
._7_c00413{margin-left:-4.845333pt;}
._5_c00413{margin-left:-3.864000pt;}
._6_c00413{margin-left:-2.453333pt;}
._4_c00413{margin-left:-1.165333pt;}
._0_c00413{width:1.410667pt;}
._b_c00413{width:2.698667pt;}
._a_c00413{width:3.618667pt;}
._c_c00413{width:5.090667pt;}
._17_c00413{width:6.133333pt;}
._12_c00413{width:7.053333pt;}
._e_c00413{width:8.858667pt;}
._9_c00413{width:10.576000pt;}
._3_c00413{width:11.608000pt;}
._d_c00413{width:13.344000pt;}
._f_c00413{width:14.904000pt;}
._1d_c00413{width:18.584000pt;}
._1e_c00413{width:19.488000pt;}
._19_c00413{width:20.754667pt;}
._10_c00413{width:21.834667pt;}
._22_c00413{width:28.893333pt;}
._1f_c00413{width:29.970667pt;}
._1a_c00413{width:31.472000pt;}
._11_c00413{width:35.389333pt;}
._14_c00413{width:46.797333pt;}
._1c_c00413{width:63.576000pt;}
._16_c00413{width:82.677333pt;}
._1b_c00413{width:85.682667pt;}
._25_c00413{width:185.714667pt;}
._1_c00413{width:382.842667pt;}
._28_c00413{width:882.176000pt;}
.fs6_c00413{font-size:42.666667pt;}
.fs1_c00413{font-size:56.000000pt;}
.fs0_c00413{font-size:61.333333pt;}
.fs2_c00413{font-size:64.000000pt;}
.fs5_c00413{font-size:66.666667pt;}
.fs4_c00413{font-size:77.333333pt;}
.fs3_c00413{font-size:82.666667pt;}
.y0_c00413{bottom:0.000000pt;}
.y1e_c00413{bottom:2.760000pt;}
.y1d_c00413{bottom:6.425212pt;}
.y1c_c00413{bottom:53.733333pt;}
.y1b_c00413{bottom:75.333333pt;}
.y1a_c00413{bottom:98.133333pt;}
.y19_c00413{bottom:121.466667pt;}
.y18_c00413{bottom:144.000000pt;}
.y17_c00413{bottom:166.533333pt;}
.y16_c00413{bottom:211.200000pt;}
.y15_c00413{bottom:255.066667pt;}
.y14_c00413{bottom:277.600000pt;}
.y13_c00413{bottom:299.733333pt;}
.y12_c00413{bottom:322.266667pt;}
.y11_c00413{bottom:344.400000pt;}
.y10_c00413{bottom:366.400000pt;}
.yf_c00413{bottom:389.200000pt;}
.ye_c00413{bottom:411.066667pt;}
.yd_c00413{bottom:432.933333pt;}
.yc_c00413{bottom:455.466667pt;}
.yb_c00413{bottom:477.600000pt;}
.ya_c00413{bottom:500.133333pt;}
.y9_c00413{bottom:522.000000pt;}
.y8_c00413{bottom:543.600000pt;}
.y7_c00413{bottom:566.133333pt;}
.y6_c00413{bottom:588.666667pt;}
.y5_c00413{bottom:611.066667pt;}
.y4_c00413{bottom:632.800000pt;}
.y3_c00413{bottom:654.666667pt;}
.y2_c00413{bottom:677.333333pt;}
.y1_c00413{bottom:698.400000pt;}
.h5_c00413{height:11.733399pt;}
.h6_c00413{height:38.937500pt;}
.h2_c00413{height:77.654948pt;}
.h3_c00413{height:81.031250pt;}
.h4_c00413{height:96.753906pt;}
.h1_c00413{height:735.333333pt;}
.h0_c00413{height:735.600000pt;}
.w2_c00413{width:93.222667pt;}
.w0_c00413{width:508.533333pt;}
.w1_c00413{width:508.666667pt;}
.x0_c00413{left:0.000000pt;}
.x8_c00413{left:20.666667pt;}
.x7_c00413{left:21.866667pt;}
.x6_c00413{left:35.733333pt;}
.x5_c00413{left:57.866667pt;}
.xd_c00413{left:73.733333pt;}
.xc_c00413{left:77.333333pt;}
.x3_c00413{left:78.933333pt;}
.x1_c00413{left:88.533333pt;}
.x2_c00413{left:89.466667pt;}
.xb_c00413{left:99.333333pt;}
.x9_c00413{left:102.000000pt;}
.x4_c00413{left:131.200000pt;}
.xa_c00413{left:177.200000pt;}
.xe_c00413{left:209.600000pt;}
.xf_c00413{left:211.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_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_b3396b27482fbf03036bab12.woff2')format("woff");}.ff1_c00414{font-family:ff1_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:ff2_c00414;src:url('chunks/assets/font_d0e7f8d232b2782f50ac4e71.woff2')format("woff");}.ff2_c00414{font-family:ff2_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:ff3_c00414;src:url('chunks/assets/font_75d502e2afbc1217f75b18f4.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_b21d1f9cfc329edb1fc2ffa8.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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff5_c00414{font-family:ff5_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:ff6_c00414;src:url('chunks/assets/font_7021b66e61be536e5d581c22.woff2')format("woff");}.ff6_c00414{font-family:ff6_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:ff7_c00414;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00414{font-family:ff7_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;}
.ls5_c00414{letter-spacing:0.000000px;}
.ls6_c00414{letter-spacing:3.000000px;}
.ls2_c00414{letter-spacing:4.200000px;}
.ls4_c00414{letter-spacing:10.500000px;}
.ls3_c00414{letter-spacing:14.925000px;}
.ls1_c00414{letter-spacing:21.000000px;}
.ls0_c00414{letter-spacing:492.171000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:-19.629000px;}
.ws1_c00414{word-spacing:-16.629000px;}
.ws3_c00414{word-spacing:-11.568000px;}
.ws4_c00414{word-spacing:0.000000px;}
.ws2_c00414{word-spacing:12.696000px;}
._4_c00414{margin-left:-31.188000px;}
._2_c00414{margin-left:-26.742000px;}
._13_c00414{margin-left:-24.771000px;}
._1a_c00414{margin-left:-11.937000px;}
._16_c00414{margin-left:-8.970000px;}
._3_c00414{margin-left:-7.014000px;}
._a_c00414{margin-left:-5.520000px;}
._1c_c00414{margin-left:-4.065000px;}
._9_c00414{margin-left:-3.036000px;}
._1_c00414{margin-left:-1.587000px;}
._6_c00414{width:1.449000px;}
._5_c00414{width:3.174000px;}
._7_c00414{width:4.623000px;}
._d_c00414{width:5.727000px;}
._8_c00414{width:6.831000px;}
._0_c00414{width:8.349000px;}
._14_c00414{width:9.522000px;}
._18_c00414{width:11.661000px;}
._c_c00414{width:13.179000px;}
._1b_c00414{width:14.421000px;}
._f_c00414{width:15.456000px;}
._b_c00414{width:17.250000px;}
._15_c00414{width:18.252000px;}
._e_c00414{width:21.459000px;}
._17_c00414{width:29.556000px;}
._12_c00414{width:30.567000px;}
._10_c00414{width:34.293000px;}
._11_c00414{width:36.294000px;}
._19_c00414{width:44.160000px;}
._1d_c00414{width:227.541000px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(128,128,128);}
.fc0_c00414{color:rgb(0,0,0);}
.fs4_c00414{font-size:39.000000px;}
.fs3_c00414{font-size:48.000000px;}
.fs2_c00414{font-size:51.000000px;}
.fs5_c00414{font-size:57.000000px;}
.fs1_c00414{font-size:66.000000px;}
.fs0_c00414{font-size:69.000000px;}
.y0_c00414{bottom:0.000000px;}
.y21_c00414{bottom:3.105000px;}
.y20_c00414{bottom:7.228357px;}
.y1f_c00414{bottom:54.630000px;}
.y1e_c00414{bottom:82.380000px;}
.y1d_c00414{bottom:100.980000px;}
.y1c_c00414{bottom:118.830000px;}
.y1b_c00414{bottom:136.380000px;}
.y1a_c00414{bottom:153.930000px;}
.y19_c00414{bottom:180.930000px;}
.y18_c00414{bottom:205.830000px;}
.y17_c00414{bottom:231.630000px;}
.y16_c00414{bottom:256.530000px;}
.y15_c00414{bottom:281.130000px;}
.y14_c00414{bottom:306.480000px;}
.y13_c00414{bottom:331.530000px;}
.y12_c00414{bottom:356.580000px;}
.y11_c00414{bottom:381.780000px;}
.y10_c00414{bottom:406.980000px;}
.yf_c00414{bottom:432.030000px;}
.ye_c00414{bottom:457.380000px;}
.yd_c00414{bottom:482.580000px;}
.yc_c00414{bottom:507.030000px;}
.yb_c00414{bottom:532.680000px;}
.ya_c00414{bottom:556.980000px;}
.y9_c00414{bottom:581.880000px;}
.y8_c00414{bottom:606.930000px;}
.y7_c00414{bottom:632.580000px;}
.y6_c00414{bottom:657.180000px;}
.y5_c00414{bottom:682.530000px;}
.y4_c00414{bottom:708.030000px;}
.y3_c00414{bottom:733.080000px;}
.y2_c00414{bottom:759.030000px;}
.y1_c00414{bottom:781.680000px;}
.h6_c00414{height:13.200074px;}
.h7_c00414{height:43.804688px;}
.h3_c00414{height:56.179688px;}
.h4_c00414{height:60.773438px;}
.h2_c00414{height:64.571777px;}
.h5_c00414{height:80.758301px;}
.h1_c00414{height:87.361816px;}
.h0_c00414{height:819.750000px;}
.w2_c00414{width:104.875500px;}
.w1_c00414{width:573.750000px;}
.w0_c00414{width:574.050000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:29.100000px;}
.x3_c00414{left:30.750000px;}
.x4_c00414{left:31.800000px;}
.x6_c00414{left:32.850000px;}
.x9_c00414{left:34.050000px;}
.x7_c00414{left:35.400000px;}
.x8_c00414{left:37.800000px;}
.x5_c00414{left:69.900000px;}
.x1_c00414{left:182.550000px;}
.xb_c00414{left:238.839249px;}
.xa_c00414{left:445.500000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls5_c00414{letter-spacing:0.000000pt;}
.ls6_c00414{letter-spacing:2.666667pt;}
.ls2_c00414{letter-spacing:3.733333pt;}
.ls4_c00414{letter-spacing:9.333333pt;}
.ls3_c00414{letter-spacing:13.266667pt;}
.ls1_c00414{letter-spacing:18.666667pt;}
.ls0_c00414{letter-spacing:437.485333pt;}
.ws0_c00414{word-spacing:-17.448000pt;}
.ws1_c00414{word-spacing:-14.781333pt;}
.ws3_c00414{word-spacing:-10.282667pt;}
.ws4_c00414{word-spacing:0.000000pt;}
.ws2_c00414{word-spacing:11.285333pt;}
._4_c00414{margin-left:-27.722667pt;}
._2_c00414{margin-left:-23.770667pt;}
._13_c00414{margin-left:-22.018667pt;}
._1a_c00414{margin-left:-10.610667pt;}
._16_c00414{margin-left:-7.973333pt;}
._3_c00414{margin-left:-6.234667pt;}
._a_c00414{margin-left:-4.906667pt;}
._1c_c00414{margin-left:-3.613333pt;}
._9_c00414{margin-left:-2.698667pt;}
._1_c00414{margin-left:-1.410667pt;}
._6_c00414{width:1.288000pt;}
._5_c00414{width:2.821333pt;}
._7_c00414{width:4.109333pt;}
._d_c00414{width:5.090667pt;}
._8_c00414{width:6.072000pt;}
._0_c00414{width:7.421333pt;}
._14_c00414{width:8.464000pt;}
._18_c00414{width:10.365333pt;}
._c_c00414{width:11.714667pt;}
._1b_c00414{width:12.818667pt;}
._f_c00414{width:13.738667pt;}
._b_c00414{width:15.333333pt;}
._15_c00414{width:16.224000pt;}
._e_c00414{width:19.074667pt;}
._17_c00414{width:26.272000pt;}
._12_c00414{width:27.170667pt;}
._10_c00414{width:30.482667pt;}
._11_c00414{width:32.261333pt;}
._19_c00414{width:39.253333pt;}
._1d_c00414{width:202.258667pt;}
.fs4_c00414{font-size:34.666667pt;}
.fs3_c00414{font-size:42.666667pt;}
.fs2_c00414{font-size:45.333333pt;}
.fs5_c00414{font-size:50.666667pt;}
.fs1_c00414{font-size:58.666667pt;}
.fs0_c00414{font-size:61.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y21_c00414{bottom:2.760000pt;}
.y20_c00414{bottom:6.425206pt;}
.y1f_c00414{bottom:48.560000pt;}
.y1e_c00414{bottom:73.226667pt;}
.y1d_c00414{bottom:89.760000pt;}
.y1c_c00414{bottom:105.626667pt;}
.y1b_c00414{bottom:121.226667pt;}
.y1a_c00414{bottom:136.826667pt;}
.y19_c00414{bottom:160.826667pt;}
.y18_c00414{bottom:182.960000pt;}
.y17_c00414{bottom:205.893333pt;}
.y16_c00414{bottom:228.026667pt;}
.y15_c00414{bottom:249.893333pt;}
.y14_c00414{bottom:272.426667pt;}
.y13_c00414{bottom:294.693333pt;}
.y12_c00414{bottom:316.960000pt;}
.y11_c00414{bottom:339.360000pt;}
.y10_c00414{bottom:361.760000pt;}
.yf_c00414{bottom:384.026667pt;}
.ye_c00414{bottom:406.560000pt;}
.yd_c00414{bottom:428.960000pt;}
.yc_c00414{bottom:450.693333pt;}
.yb_c00414{bottom:473.493333pt;}
.ya_c00414{bottom:495.093333pt;}
.y9_c00414{bottom:517.226667pt;}
.y8_c00414{bottom:539.493333pt;}
.y7_c00414{bottom:562.293333pt;}
.y6_c00414{bottom:584.160000pt;}
.y5_c00414{bottom:606.693333pt;}
.y4_c00414{bottom:629.360000pt;}
.y3_c00414{bottom:651.626667pt;}
.y2_c00414{bottom:674.693333pt;}
.y1_c00414{bottom:694.826667pt;}
.h6_c00414{height:11.733399pt;}
.h7_c00414{height:38.937500pt;}
.h3_c00414{height:49.937500pt;}
.h4_c00414{height:54.020833pt;}
.h2_c00414{height:57.397135pt;}
.h5_c00414{height:71.785156pt;}
.h1_c00414{height:77.654948pt;}
.h0_c00414{height:728.666667pt;}
.w2_c00414{width:93.222667pt;}
.w1_c00414{width:510.000000pt;}
.w0_c00414{width:510.266667pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:25.866667pt;}
.x3_c00414{left:27.333333pt;}
.x4_c00414{left:28.266667pt;}
.x6_c00414{left:29.200000pt;}
.x9_c00414{left:30.266667pt;}
.x7_c00414{left:31.466667pt;}
.x8_c00414{left:33.600000pt;}
.x5_c00414{left:62.133333pt;}
.x1_c00414{left:162.266667pt;}
.xb_c00414{left:212.301554pt;}
.xa_c00414{left:396.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_7def0d7e7c38faa52f0d3ff1.woff2')format("woff");}.ff1_c00415{font-family:ff1_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:ff2_c00415;src:url('chunks/assets/font_f02890e599cb1d3028e7e824.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_9e368a24e1439ea06e69b72f.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_205c75de515ee062a7910165.woff2')format("woff");}.ff4_c00415{font-family:ff4_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:ff5_c00415;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00415{letter-spacing:0.000000px;}
.ls5_c00415{letter-spacing:3.000000px;}
.ls7_c00415{letter-spacing:6.000000px;}
.ls2_c00415{letter-spacing:6.259200px;}
.ls6_c00415{letter-spacing:9.000000px;}
.ls3_c00415{letter-spacing:16.125000px;}
.ls1_c00415{letter-spacing:17.606400px;}
.ls0_c00415{letter-spacing:22.360800px;}
.ls8_c00415{letter-spacing:36.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:-56.235000px;}
.ws3_c00415{word-spacing:-52.629000px;}
.ws2_c00415{word-spacing:-44.988000px;}
.ws5_c00415{word-spacing:-40.572000px;}
.ws1_c00415{word-spacing:-25.629000px;}
.ws6_c00415{word-spacing:-19.629000px;}
.ws4_c00415{word-spacing:-16.629000px;}
.ws7_c00415{word-spacing:0.000000px;}
._21_c00415{margin-left:-63.273000px;}
._24_c00415{margin-left:-40.224000px;}
._18_c00415{margin-left:-27.255000px;}
._15_c00415{margin-left:-21.735000px;}
._2d_c00415{margin-left:-19.248000px;}
._12_c00415{margin-left:-16.905000px;}
._17_c00415{margin-left:-15.318000px;}
._26_c00415{margin-left:-13.317000px;}
._d_c00415{margin-left:-12.006000px;}
._a_c00415{margin-left:-9.867000px;}
._8_c00415{margin-left:-8.832000px;}
._1a_c00415{margin-left:-7.593000px;}
._9_c00415{margin-left:-6.348000px;}
._10_c00415{margin-left:-4.596000px;}
._6_c00415{margin-left:-2.967000px;}
._2_c00415{margin-left:-1.311000px;}
._1_c00415{width:1.656000px;}
._c_c00415{width:2.691000px;}
._4_c00415{width:4.485000px;}
._3_c00415{width:6.003000px;}
._7_c00415{width:7.038000px;}
._5_c00415{width:8.211000px;}
._1d_c00415{width:9.546000px;}
._b_c00415{width:10.626000px;}
._f_c00415{width:12.531000px;}
._19_c00415{width:14.628000px;}
._29_c00415{width:16.605000px;}
._1b_c00415{width:17.799000px;}
._14_c00415{width:19.392000px;}
._11_c00415{width:21.696000px;}
._2b_c00415{width:23.658000px;}
._34_c00415{width:26.985000px;}
._2f_c00415{width:28.944000px;}
._e_c00415{width:30.747000px;}
._31_c00415{width:31.947000px;}
._2a_c00415{width:37.029000px;}
._1f_c00415{width:38.778000px;}
._2c_c00415{width:39.789000px;}
._33_c00415{width:43.728000px;}
._30_c00415{width:51.360000px;}
._32_c00415{width:54.366000px;}
._16_c00415{width:57.486000px;}
._22_c00415{width:79.356000px;}
._2e_c00415{width:94.668000px;}
._1e_c00415{width:111.849000px;}
._13_c00415{width:112.953000px;}
._28_c00415{width:196.761000px;}
._27_c00415{width:263.859000px;}
._23_c00415{width:330.876000px;}
._0_c00415{width:404.202000px;}
._1c_c00415{width:466.371000px;}
._25_c00415{width:514.671000px;}
._20_c00415{width:1384.650000px;}
.fc2_c00415{color:transparent;}
.fc1_c00415{color:rgb(128,128,128);}
.fc0_c00415{color:rgb(0,0,0);}
.fs3_c00415{font-size:48.000000px;}
.fs1_c00415{font-size:55.200000px;}
.fs2_c00415{font-size:57.000000px;}
.fs0_c00415{font-size:69.000000px;}
.y0_c00415{bottom:0.000000px;}
.y21_c00415{bottom:3.105000px;}
.y20_c00415{bottom:7.228363px;}
.y1f_c00415{bottom:38.250000px;}
.y1e_c00415{bottom:58.800000px;}
.y1d_c00415{bottom:85.350000px;}
.y1c_c00415{bottom:109.800000px;}
.y1b_c00415{bottom:135.450000px;}
.y1a_c00415{bottom:160.350000px;}
.y19_c00415{bottom:186.000000px;}
.y18_c00415{bottom:211.050000px;}
.y17_c00415{bottom:235.950000px;}
.y16_c00415{bottom:261.300000px;}
.y15_c00415{bottom:288.900000px;}
.y14_c00415{bottom:312.150000px;}
.y13_c00415{bottom:336.600000px;}
.y12_c00415{bottom:362.100000px;}
.y11_c00415{bottom:386.550000px;}
.y10_c00415{bottom:411.300000px;}
.yf_c00415{bottom:438.000000px;}
.ye_c00415{bottom:464.100000px;}
.yd_c00415{bottom:488.400000px;}
.yc_c00415{bottom:510.300000px;}
.yb_c00415{bottom:539.400000px;}
.ya_c00415{bottom:564.600000px;}
.y9_c00415{bottom:590.550000px;}
.y8_c00415{bottom:615.150000px;}
.y7_c00415{bottom:639.450000px;}
.y6_c00415{bottom:665.100000px;}
.y5_c00415{bottom:690.450000px;}
.y4_c00415{bottom:715.200000px;}
.y3_c00415{bottom:740.850000px;}
.y2_c00415{bottom:765.750000px;}
.y1_c00415{bottom:790.500000px;}
.h5_c00415{height:13.200074px;}
.h6_c00415{height:43.804688px;}
.h4_c00415{height:72.168457px;}
.h2_c00415{height:80.758301px;}
.h3_c00415{height:87.361816px;}
.h1_c00415{height:827.250000px;}
.h0_c00415{height:827.550000px;}
.w2_c00415{width:104.875500px;}
.w0_c00415{width:572.100000px;}
.w1_c00415{width:572.250000px;}
.x0_c00415{left:0.000000px;}
.x6_c00415{left:21.150000px;}
.x8_c00415{left:22.200000px;}
.xe_c00415{left:23.550000px;}
.x11_c00415{left:27.900000px;}
.x4_c00415{left:31.500000px;}
.x7_c00415{left:37.500000px;}
.x10_c00415{left:43.500000px;}
.x14_c00415{left:44.850000px;}
.xb_c00415{left:54.000000px;}
.xd_c00415{left:84.750000px;}
.x5_c00415{left:86.700000px;}
.x9_c00415{left:88.800000px;}
.xf_c00415{left:90.000000px;}
.xa_c00415{left:91.050000px;}
.x13_c00415{left:92.100000px;}
.x12_c00415{left:93.150000px;}
.x3_c00415{left:94.800000px;}
.xc_c00415{left:114.450000px;}
.x1_c00415{left:124.200000px;}
.x2_c00415{left:150.900000px;}
.x16_c00415{left:237.864258px;}
.x15_c00415{left:496.800000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls4_c00415{letter-spacing:0.000000pt;}
.ls5_c00415{letter-spacing:2.666667pt;}
.ls7_c00415{letter-spacing:5.333333pt;}
.ls2_c00415{letter-spacing:5.563733pt;}
.ls6_c00415{letter-spacing:8.000000pt;}
.ls3_c00415{letter-spacing:14.333333pt;}
.ls1_c00415{letter-spacing:15.650133pt;}
.ls0_c00415{letter-spacing:19.876267pt;}
.ls8_c00415{letter-spacing:32.000000pt;}
.ws0_c00415{word-spacing:-49.986667pt;}
.ws3_c00415{word-spacing:-46.781333pt;}
.ws2_c00415{word-spacing:-39.989333pt;}
.ws5_c00415{word-spacing:-36.064000pt;}
.ws1_c00415{word-spacing:-22.781333pt;}
.ws6_c00415{word-spacing:-17.448000pt;}
.ws4_c00415{word-spacing:-14.781333pt;}
.ws7_c00415{word-spacing:0.000000pt;}
._21_c00415{margin-left:-56.242667pt;}
._24_c00415{margin-left:-35.754667pt;}
._18_c00415{margin-left:-24.226667pt;}
._15_c00415{margin-left:-19.320000pt;}
._2d_c00415{margin-left:-17.109333pt;}
._12_c00415{margin-left:-15.026667pt;}
._17_c00415{margin-left:-13.616000pt;}
._26_c00415{margin-left:-11.837333pt;}
._d_c00415{margin-left:-10.672000pt;}
._a_c00415{margin-left:-8.770667pt;}
._8_c00415{margin-left:-7.850667pt;}
._1a_c00415{margin-left:-6.749333pt;}
._9_c00415{margin-left:-5.642667pt;}
._10_c00415{margin-left:-4.085333pt;}
._6_c00415{margin-left:-2.637333pt;}
._2_c00415{margin-left:-1.165333pt;}
._1_c00415{width:1.472000pt;}
._c_c00415{width:2.392000pt;}
._4_c00415{width:3.986667pt;}
._3_c00415{width:5.336000pt;}
._7_c00415{width:6.256000pt;}
._5_c00415{width:7.298667pt;}
._1d_c00415{width:8.485333pt;}
._b_c00415{width:9.445333pt;}
._f_c00415{width:11.138667pt;}
._19_c00415{width:13.002667pt;}
._29_c00415{width:14.760000pt;}
._1b_c00415{width:15.821333pt;}
._14_c00415{width:17.237333pt;}
._11_c00415{width:19.285333pt;}
._2b_c00415{width:21.029333pt;}
._34_c00415{width:23.986667pt;}
._2f_c00415{width:25.728000pt;}
._e_c00415{width:27.330667pt;}
._31_c00415{width:28.397333pt;}
._2a_c00415{width:32.914667pt;}
._1f_c00415{width:34.469333pt;}
._2c_c00415{width:35.368000pt;}
._33_c00415{width:38.869333pt;}
._30_c00415{width:45.653333pt;}
._32_c00415{width:48.325333pt;}
._16_c00415{width:51.098667pt;}
._22_c00415{width:70.538667pt;}
._2e_c00415{width:84.149333pt;}
._1e_c00415{width:99.421333pt;}
._13_c00415{width:100.402667pt;}
._28_c00415{width:174.898667pt;}
._27_c00415{width:234.541333pt;}
._23_c00415{width:294.112000pt;}
._0_c00415{width:359.290667pt;}
._1c_c00415{width:414.552000pt;}
._25_c00415{width:457.485333pt;}
._20_c00415{width:1230.800000pt;}
.fs3_c00415{font-size:42.666667pt;}
.fs1_c00415{font-size:49.066667pt;}
.fs2_c00415{font-size:50.666667pt;}
.fs0_c00415{font-size:61.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y21_c00415{bottom:2.760000pt;}
.y20_c00415{bottom:6.425212pt;}
.y1f_c00415{bottom:34.000000pt;}
.y1e_c00415{bottom:52.266667pt;}
.y1d_c00415{bottom:75.866667pt;}
.y1c_c00415{bottom:97.600000pt;}
.y1b_c00415{bottom:120.400000pt;}
.y1a_c00415{bottom:142.533333pt;}
.y19_c00415{bottom:165.333333pt;}
.y18_c00415{bottom:187.600000pt;}
.y17_c00415{bottom:209.733333pt;}
.y16_c00415{bottom:232.266667pt;}
.y15_c00415{bottom:256.800000pt;}
.y14_c00415{bottom:277.466667pt;}
.y13_c00415{bottom:299.200000pt;}
.y12_c00415{bottom:321.866667pt;}
.y11_c00415{bottom:343.600000pt;}
.y10_c00415{bottom:365.600000pt;}
.yf_c00415{bottom:389.333333pt;}
.ye_c00415{bottom:412.533333pt;}
.yd_c00415{bottom:434.133333pt;}
.yc_c00415{bottom:453.600000pt;}
.yb_c00415{bottom:479.466667pt;}
.ya_c00415{bottom:501.866667pt;}
.y9_c00415{bottom:524.933333pt;}
.y8_c00415{bottom:546.800000pt;}
.y7_c00415{bottom:568.400000pt;}
.y6_c00415{bottom:591.200000pt;}
.y5_c00415{bottom:613.733333pt;}
.y4_c00415{bottom:635.733333pt;}
.y3_c00415{bottom:658.533333pt;}
.y2_c00415{bottom:680.666667pt;}
.y1_c00415{bottom:702.666667pt;}
.h5_c00415{height:11.733399pt;}
.h6_c00415{height:38.937500pt;}
.h4_c00415{height:64.149740pt;}
.h2_c00415{height:71.785156pt;}
.h3_c00415{height:77.654948pt;}
.h1_c00415{height:735.333333pt;}
.h0_c00415{height:735.600000pt;}
.w2_c00415{width:93.222667pt;}
.w0_c00415{width:508.533333pt;}
.w1_c00415{width:508.666667pt;}
.x0_c00415{left:0.000000pt;}
.x6_c00415{left:18.800000pt;}
.x8_c00415{left:19.733333pt;}
.xe_c00415{left:20.933333pt;}
.x11_c00415{left:24.800000pt;}
.x4_c00415{left:28.000000pt;}
.x7_c00415{left:33.333333pt;}
.x10_c00415{left:38.666667pt;}
.x14_c00415{left:39.866667pt;}
.xb_c00415{left:48.000000pt;}
.xd_c00415{left:75.333333pt;}
.x5_c00415{left:77.066667pt;}
.x9_c00415{left:78.933333pt;}
.xf_c00415{left:80.000000pt;}
.xa_c00415{left:80.933333pt;}
.x13_c00415{left:81.866667pt;}
.x12_c00415{left:82.800000pt;}
.x3_c00415{left:84.266667pt;}
.xc_c00415{left:101.733333pt;}
.x1_c00415{left:110.400000pt;}
.x2_c00415{left:134.133333pt;}
.x16_c00415{left:211.434896pt;}
.x15_c00415{left:441.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_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_7233afd42f695953cc06df86.woff2')format("woff");}.ff1_c00416{font-family:ff1_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:ff2_c00416;src:url('chunks/assets/font_343fce1460c753884bc88baa.woff2')format("woff");}.ff2_c00416{font-family:ff2_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:ff3_c00416;src:url('chunks/assets/font_0545e3fcd02b1edd6973ac4d.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00416{font-family:ff4_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;}
.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;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:2.370000px;}
.ls2_c00416{letter-spacing:3.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;}
}
.ws1_c00416{word-spacing:-44.022000px;}
.ws0_c00416{word-spacing:-16.629000px;}
.ws2_c00416{word-spacing:0.000000px;}
._1d_c00416{margin-left:-48.300000px;}
._27_c00416{margin-left:-31.635000px;}
._26_c00416{margin-left:-29.118000px;}
._22_c00416{margin-left:-24.909000px;}
._2c_c00416{margin-left:-22.458000px;}
._31_c00416{margin-left:-18.009000px;}
._2_c00416{margin-left:-15.318000px;}
._2d_c00416{margin-left:-13.524000px;}
._9_c00416{margin-left:-12.075000px;}
._18_c00416{margin-left:-11.040000px;}
._2f_c00416{margin-left:-9.936000px;}
._5_c00416{margin-left:-8.901000px;}
._6_c00416{margin-left:-6.831000px;}
._8_c00416{margin-left:-5.244000px;}
._4_c00416{margin-left:-4.002000px;}
._3_c00416{margin-left:-2.208000px;}
._17_c00416{margin-left:-1.173000px;}
._f_c00416{width:1.656000px;}
._10_c00416{width:3.450000px;}
._12_c00416{width:4.623000px;}
._a_c00416{width:5.865000px;}
._1_c00416{width:7.107000px;}
._0_c00416{width:8.349000px;}
._b_c00416{width:10.212000px;}
._d_c00416{width:11.454000px;}
._c_c00416{width:12.972000px;}
._14_c00416{width:14.664000px;}
._1b_c00416{width:15.693000px;}
._13_c00416{width:17.250000px;}
._16_c00416{width:19.098000px;}
._19_c00416{width:20.232000px;}
._e_c00416{width:22.563000px;}
._11_c00416{width:24.495000px;}
._28_c00416{width:25.530000px;}
._1a_c00416{width:28.680000px;}
._33_c00416{width:32.223000px;}
._30_c00416{width:34.431000px;}
._2b_c00416{width:35.622000px;}
._23_c00416{width:37.692000px;}
._34_c00416{width:45.831000px;}
._1e_c00416{width:57.960000px;}
._1f_c00416{width:62.169000px;}
._2a_c00416{width:64.860000px;}
._20_c00416{width:68.841000px;}
._2e_c00416{width:80.628000px;}
._29_c00416{width:83.319000px;}
._15_c00416{width:90.372000px;}
._32_c00416{width:92.460000px;}
._21_c00416{width:97.830000px;}
._25_c00416{width:119.715000px;}
._24_c00416{width:146.424000px;}
._1c_c00416{width:215.694000px;}
._7_c00416{width:479.511000px;}
._35_c00416{width:521.775000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(128,128,128);}
.fc0_c00416{color:rgb(0,0,0);}
.fs4_c00416{font-size:48.000000px;}
.fs2_c00416{font-size:60.000000px;}
.fs1_c00416{font-size:63.000000px;}
.fs3_c00416{font-size:66.000000px;}
.fs0_c00416{font-size:69.000000px;}
.y0_c00416{bottom:0.000000px;}
.y22_c00416{bottom:3.105000px;}
.y21_c00416{bottom:7.228371px;}
.y20_c00416{bottom:23.415000px;}
.y1f_c00416{bottom:44.265000px;}
.y1e_c00416{bottom:69.915000px;}
.y1d_c00416{bottom:94.965000px;}
.y1c_c00416{bottom:120.165000px;}
.y1b_c00416{bottom:144.765000px;}
.y1a_c00416{bottom:169.815000px;}
.y19_c00416{bottom:194.865000px;}
.y18_c00416{bottom:220.365000px;}
.y17_c00416{bottom:245.715000px;}
.y16_c00416{bottom:271.065000px;}
.y15_c00416{bottom:295.065000px;}
.y14_c00416{bottom:321.315000px;}
.y13_c00416{bottom:346.365000px;}
.y12_c00416{bottom:371.265000px;}
.y11_c00416{bottom:397.215000px;}
.y10_c00416{bottom:422.565000px;}
.yf_c00416{bottom:448.215000px;}
.ye_c00416{bottom:472.515000px;}
.yd_c00416{bottom:497.115000px;}
.yc_c00416{bottom:522.765000px;}
.yb_c00416{bottom:547.815000px;}
.ya_c00416{bottom:572.415000px;}
.y9_c00416{bottom:597.465000px;}
.y8_c00416{bottom:622.815000px;}
.y7_c00416{bottom:647.715000px;}
.y6_c00416{bottom:672.765000px;}
.y5_c00416{bottom:698.265000px;}
.y4_c00416{bottom:723.315000px;}
.y3_c00416{bottom:748.365000px;}
.y2_c00416{bottom:773.265000px;}
.y1_c00416{bottom:798.165000px;}
.h3_c00416{height:13.200074px;}
.h4_c00416{height:43.804688px;}
.h2_c00416{height:87.361816px;}
.h1_c00416{height:831.000000px;}
.h0_c00416{height:831.075000px;}
.w2_c00416{width:104.875500px;}
.w0_c00416{width:582.375000px;}
.w1_c00416{width:582.750000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:33.450000px;}
.x4_c00416{left:35.400000px;}
.x5_c00416{left:37.050000px;}
.x6_c00416{left:38.400000px;}
.x7_c00416{left:39.750000px;}
.x3_c00416{left:80.550000px;}
.x1_c00416{left:189.300000px;}
.x8_c00416{left:243.001740px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:2.106667pt;}
.ls2_c00416{letter-spacing:2.666667pt;}
.ws1_c00416{word-spacing:-39.130667pt;}
.ws0_c00416{word-spacing:-14.781333pt;}
.ws2_c00416{word-spacing:0.000000pt;}
._1d_c00416{margin-left:-42.933333pt;}
._27_c00416{margin-left:-28.120000pt;}
._26_c00416{margin-left:-25.882667pt;}
._22_c00416{margin-left:-22.141333pt;}
._2c_c00416{margin-left:-19.962667pt;}
._31_c00416{margin-left:-16.008000pt;}
._2_c00416{margin-left:-13.616000pt;}
._2d_c00416{margin-left:-12.021333pt;}
._9_c00416{margin-left:-10.733333pt;}
._18_c00416{margin-left:-9.813333pt;}
._2f_c00416{margin-left:-8.832000pt;}
._5_c00416{margin-left:-7.912000pt;}
._6_c00416{margin-left:-6.072000pt;}
._8_c00416{margin-left:-4.661333pt;}
._4_c00416{margin-left:-3.557333pt;}
._3_c00416{margin-left:-1.962667pt;}
._17_c00416{margin-left:-1.042667pt;}
._f_c00416{width:1.472000pt;}
._10_c00416{width:3.066667pt;}
._12_c00416{width:4.109333pt;}
._a_c00416{width:5.213333pt;}
._1_c00416{width:6.317333pt;}
._0_c00416{width:7.421333pt;}
._b_c00416{width:9.077333pt;}
._d_c00416{width:10.181333pt;}
._c_c00416{width:11.530667pt;}
._14_c00416{width:13.034667pt;}
._1b_c00416{width:13.949333pt;}
._13_c00416{width:15.333333pt;}
._16_c00416{width:16.976000pt;}
._19_c00416{width:17.984000pt;}
._e_c00416{width:20.056000pt;}
._11_c00416{width:21.773333pt;}
._28_c00416{width:22.693333pt;}
._1a_c00416{width:25.493333pt;}
._33_c00416{width:28.642667pt;}
._30_c00416{width:30.605333pt;}
._2b_c00416{width:31.664000pt;}
._23_c00416{width:33.504000pt;}
._34_c00416{width:40.738667pt;}
._1e_c00416{width:51.520000pt;}
._1f_c00416{width:55.261333pt;}
._2a_c00416{width:57.653333pt;}
._20_c00416{width:61.192000pt;}
._2e_c00416{width:71.669333pt;}
._29_c00416{width:74.061333pt;}
._15_c00416{width:80.330667pt;}
._32_c00416{width:82.186667pt;}
._21_c00416{width:86.960000pt;}
._25_c00416{width:106.413333pt;}
._24_c00416{width:130.154667pt;}
._1c_c00416{width:191.728000pt;}
._7_c00416{width:426.232000pt;}
._35_c00416{width:463.800000pt;}
.fs4_c00416{font-size:42.666667pt;}
.fs2_c00416{font-size:53.333333pt;}
.fs1_c00416{font-size:56.000000pt;}
.fs3_c00416{font-size:58.666667pt;}
.fs0_c00416{font-size:61.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y22_c00416{bottom:2.760000pt;}
.y21_c00416{bottom:6.425219pt;}
.y20_c00416{bottom:20.813333pt;}
.y1f_c00416{bottom:39.346667pt;}
.y1e_c00416{bottom:62.146667pt;}
.y1d_c00416{bottom:84.413333pt;}
.y1c_c00416{bottom:106.813333pt;}
.y1b_c00416{bottom:128.680000pt;}
.y1a_c00416{bottom:150.946667pt;}
.y19_c00416{bottom:173.213333pt;}
.y18_c00416{bottom:195.880000pt;}
.y17_c00416{bottom:218.413333pt;}
.y16_c00416{bottom:240.946667pt;}
.y15_c00416{bottom:262.280000pt;}
.y14_c00416{bottom:285.613333pt;}
.y13_c00416{bottom:307.880000pt;}
.y12_c00416{bottom:330.013333pt;}
.y11_c00416{bottom:353.080000pt;}
.y10_c00416{bottom:375.613333pt;}
.yf_c00416{bottom:398.413333pt;}
.ye_c00416{bottom:420.013333pt;}
.yd_c00416{bottom:441.880000pt;}
.yc_c00416{bottom:464.680000pt;}
.yb_c00416{bottom:486.946667pt;}
.ya_c00416{bottom:508.813333pt;}
.y9_c00416{bottom:531.080000pt;}
.y8_c00416{bottom:553.613333pt;}
.y7_c00416{bottom:575.746667pt;}
.y6_c00416{bottom:598.013333pt;}
.y5_c00416{bottom:620.680000pt;}
.y4_c00416{bottom:642.946667pt;}
.y3_c00416{bottom:665.213333pt;}
.y2_c00416{bottom:687.346667pt;}
.y1_c00416{bottom:709.480000pt;}
.h3_c00416{height:11.733399pt;}
.h4_c00416{height:38.937500pt;}
.h2_c00416{height:77.654948pt;}
.h1_c00416{height:738.666667pt;}
.h0_c00416{height:738.733333pt;}
.w2_c00416{width:93.222667pt;}
.w0_c00416{width:517.666667pt;}
.w1_c00416{width:518.000000pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:29.733333pt;}
.x4_c00416{left:31.466667pt;}
.x5_c00416{left:32.933333pt;}
.x6_c00416{left:34.133333pt;}
.x7_c00416{left:35.333333pt;}
.x3_c00416{left:71.600000pt;}
.x1_c00416{left:168.266667pt;}
.x8_c00416{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_006f1ddd9ec01e1a11b6218f.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_ff9bb8c6bb4079a17ea99d3c.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_d1b7ad6989d51bd1628abd2c.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_7154bba00ae468671b164011.woff2')format("woff");}.ff4_c00417{font-family:ff4_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:ff5_c00417;src:url('chunks/assets/font_1911457f5601bc92fb6b6d97.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;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_c00417;src:url('chunks/assets/font_37d773b8009bb80c301cb431.woff2')format("woff");}.ff6_c00417{font-family:ff6_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:ff7_c00417;src:url('chunks/assets/font_8686872cf05dc9c65af49c46.woff2')format("woff");}.ff7_c00417{font-family:ff7_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:ff8_c00417;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00417{font-family:ff8_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);}
.m1_c00417{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_c00417{vertical-align:0.000000px;}
.ls3_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:2.571000px;}
.ls4_c00417{letter-spacing:3.000000px;}
.ls5_c00417{letter-spacing:9.000000px;}
.ls2_c00417{letter-spacing:17.325000px;}
.ls1_c00417{letter-spacing:18.525000px;}
.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;}
}
.ws5_c00417{word-spacing:-44.988000px;}
.ws3_c00417{word-spacing:-25.629000px;}
.ws4_c00417{word-spacing:-19.629000px;}
.ws2_c00417{word-spacing:-16.629000px;}
.ws0_c00417{word-spacing:-10.200000px;}
.ws1_c00417{word-spacing:-9.330000px;}
.ws6_c00417{word-spacing:0.000000px;}
._2b_c00417{margin-left:-32.046000px;}
._21_c00417{margin-left:-23.973000px;}
._23_c00417{margin-left:-22.824000px;}
._18_c00417{margin-left:-21.531000px;}
._1c_c00417{margin-left:-19.311000px;}
._1b_c00417{margin-left:-17.664000px;}
._19_c00417{margin-left:-15.549000px;}
._1a_c00417{margin-left:-14.475000px;}
._17_c00417{margin-left:-12.765000px;}
._20_c00417{margin-left:-11.121000px;}
._15_c00417{margin-left:-9.633000px;}
._14_c00417{margin-left:-8.289000px;}
._e_c00417{margin-left:-6.555000px;}
._d_c00417{margin-left:-4.623000px;}
._c_c00417{margin-left:-3.351000px;}
._7_c00417{margin-left:-1.368000px;}
._9_c00417{width:1.863000px;}
._8_c00417{width:3.408000px;}
._b_c00417{width:4.434000px;}
._a_c00417{width:5.568000px;}
._4_c00417{width:7.038000px;}
._1_c00417{width:8.301000px;}
._6_c00417{width:10.272000px;}
._10_c00417{width:11.814000px;}
._0_c00417{width:12.972000px;}
._12_c00417{width:14.490000px;}
._2a_c00417{width:15.870000px;}
._29_c00417{width:16.884000px;}
._11_c00417{width:18.108000px;}
._2d_c00417{width:19.360800px;}
._1e_c00417{width:20.862000px;}
._3_c00417{width:21.921000px;}
._22_c00417{width:24.024000px;}
._26_c00417{width:25.227000px;}
._5_c00417{width:26.613000px;}
._2_c00417{width:28.980000px;}
._16_c00417{width:36.501000px;}
._2c_c00417{width:48.147000px;}
._24_c00417{width:51.474000px;}
._1f_c00417{width:59.190000px;}
._28_c00417{width:85.392000px;}
._1d_c00417{width:92.820000px;}
._2e_c00417{width:113.055000px;}
._27_c00417{width:158.766000px;}
._f_c00417{width:196.797000px;}
._13_c00417{width:307.527000px;}
._25_c00417{width:364.389000px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(128,128,128);}
.fc0_c00417{color:rgb(0,0,0);}
.fs4_c00417{font-size:42.000000px;}
.fs6_c00417{font-size:45.000000px;}
.fs7_c00417{font-size:48.000000px;}
.fs5_c00417{font-size:55.200000px;}
.fs2_c00417{font-size:57.000000px;}
.fs1_c00417{font-size:66.000000px;}
.fs0_c00417{font-size:69.000000px;}
.fs3_c00417{font-size:75.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1f_c00417{bottom:3.105000px;}
.y1e_c00417{bottom:7.228371px;}
.y1b_c00417{bottom:53.715000px;}
.y1a_c00417{bottom:79.365000px;}
.y19_c00417{bottom:105.015000px;}
.y1d_c00417{bottom:123.615000px;}
.y18_c00417{bottom:130.965000px;}
.y1c_c00417{bottom:140.415000px;}
.y17_c00417{bottom:155.715000px;}
.y16_c00417{bottom:181.965000px;}
.y15_c00417{bottom:201.165000px;}
.y14_c00417{bottom:231.315000px;}
.y13_c00417{bottom:256.215000px;}
.y12_c00417{bottom:282.165000px;}
.y11_c00417{bottom:307.215000px;}
.y10_c00417{bottom:332.115000px;}
.yf_c00417{bottom:356.865000px;}
.ye_c00417{bottom:381.765000px;}
.yd_c00417{bottom:406.815000px;}
.yc_c00417{bottom:432.465000px;}
.yb_c00417{bottom:457.965000px;}
.ya_c00417{bottom:483.015000px;}
.y9_c00417{bottom:508.665000px;}
.y8_c00417{bottom:533.565000px;}
.y7_c00417{bottom:558.915000px;}
.y6_c00417{bottom:583.215000px;}
.y5_c00417{bottom:609.315000px;}
.y4_c00417{bottom:634.215000px;}
.y3_c00417{bottom:659.115000px;}
.y2_c00417{bottom:684.165000px;}
.y1_c00417{bottom:733.515000px;}
.h6_c00417{height:13.200074px;}
.h7_c00417{height:43.804688px;}
.h3_c00417{height:57.445312px;}
.h2_c00417{height:80.758301px;}
.h4_c00417{height:87.361816px;}
.h5_c00417{height:87.780762px;}
.h0_c00417{height:812.175000px;}
.h1_c00417{height:812.250000px;}
.w2_c00417{width:104.875500px;}
.w1_c00417{width:561.000000px;}
.w0_c00417{width:561.075000px;}
.x0_c00417{left:0.000000px;}
.x5_c00417{left:27.000000px;}
.xe_c00417{left:30.000000px;}
.x9_c00417{left:44.100000px;}
.xa_c00417{left:61.800000px;}
.x7_c00417{left:86.400000px;}
.x8_c00417{left:90.150000px;}
.x6_c00417{left:91.350000px;}
.x4_c00417{left:92.700000px;}
.xc_c00417{left:114.300000px;}
.xb_c00417{left:117.750000px;}
.x2_c00417{left:118.800000px;}
.x3_c00417{left:153.900000px;}
.x1_c00417{left:222.750000px;}
.xf_c00417{left:232.351730px;}
.xd_c00417{left:477.600000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls3_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:2.285333pt;}
.ls4_c00417{letter-spacing:2.666667pt;}
.ls5_c00417{letter-spacing:8.000000pt;}
.ls2_c00417{letter-spacing:15.400000pt;}
.ls1_c00417{letter-spacing:16.466667pt;}
.ws5_c00417{word-spacing:-39.989333pt;}
.ws3_c00417{word-spacing:-22.781333pt;}
.ws4_c00417{word-spacing:-17.448000pt;}
.ws2_c00417{word-spacing:-14.781333pt;}
.ws0_c00417{word-spacing:-9.066667pt;}
.ws1_c00417{word-spacing:-8.293333pt;}
.ws6_c00417{word-spacing:0.000000pt;}
._2b_c00417{margin-left:-28.485333pt;}
._21_c00417{margin-left:-21.309333pt;}
._23_c00417{margin-left:-20.288000pt;}
._18_c00417{margin-left:-19.138667pt;}
._1c_c00417{margin-left:-17.165333pt;}
._1b_c00417{margin-left:-15.701333pt;}
._19_c00417{margin-left:-13.821333pt;}
._1a_c00417{margin-left:-12.866667pt;}
._17_c00417{margin-left:-11.346667pt;}
._20_c00417{margin-left:-9.885333pt;}
._15_c00417{margin-left:-8.562667pt;}
._14_c00417{margin-left:-7.368000pt;}
._e_c00417{margin-left:-5.826667pt;}
._d_c00417{margin-left:-4.109333pt;}
._c_c00417{margin-left:-2.978667pt;}
._7_c00417{margin-left:-1.216000pt;}
._9_c00417{width:1.656000pt;}
._8_c00417{width:3.029333pt;}
._b_c00417{width:3.941333pt;}
._a_c00417{width:4.949333pt;}
._4_c00417{width:6.256000pt;}
._1_c00417{width:7.378667pt;}
._6_c00417{width:9.130667pt;}
._10_c00417{width:10.501333pt;}
._0_c00417{width:11.530667pt;}
._12_c00417{width:12.880000pt;}
._2a_c00417{width:14.106667pt;}
._29_c00417{width:15.008000pt;}
._11_c00417{width:16.096000pt;}
._2d_c00417{width:17.209600pt;}
._1e_c00417{width:18.544000pt;}
._3_c00417{width:19.485333pt;}
._22_c00417{width:21.354667pt;}
._26_c00417{width:22.424000pt;}
._5_c00417{width:23.656000pt;}
._2_c00417{width:25.760000pt;}
._16_c00417{width:32.445333pt;}
._2c_c00417{width:42.797333pt;}
._24_c00417{width:45.754667pt;}
._1f_c00417{width:52.613333pt;}
._28_c00417{width:75.904000pt;}
._1d_c00417{width:82.506667pt;}
._2e_c00417{width:100.493333pt;}
._27_c00417{width:141.125333pt;}
._f_c00417{width:174.930667pt;}
._13_c00417{width:273.357333pt;}
._25_c00417{width:323.901333pt;}
.fs4_c00417{font-size:37.333333pt;}
.fs6_c00417{font-size:40.000000pt;}
.fs7_c00417{font-size:42.666667pt;}
.fs5_c00417{font-size:49.066667pt;}
.fs2_c00417{font-size:50.666667pt;}
.fs1_c00417{font-size:58.666667pt;}
.fs0_c00417{font-size:61.333333pt;}
.fs3_c00417{font-size:66.666667pt;}
.y0_c00417{bottom:0.000000pt;}
.y1f_c00417{bottom:2.760000pt;}
.y1e_c00417{bottom:6.425219pt;}
.y1b_c00417{bottom:47.746667pt;}
.y1a_c00417{bottom:70.546667pt;}
.y19_c00417{bottom:93.346667pt;}
.y1d_c00417{bottom:109.880000pt;}
.y18_c00417{bottom:116.413333pt;}
.y1c_c00417{bottom:124.813333pt;}
.y17_c00417{bottom:138.413333pt;}
.y16_c00417{bottom:161.746667pt;}
.y15_c00417{bottom:178.813333pt;}
.y14_c00417{bottom:205.613333pt;}
.y13_c00417{bottom:227.746667pt;}
.y12_c00417{bottom:250.813333pt;}
.y11_c00417{bottom:273.080000pt;}
.y10_c00417{bottom:295.213333pt;}
.yf_c00417{bottom:317.213333pt;}
.ye_c00417{bottom:339.346667pt;}
.yd_c00417{bottom:361.613333pt;}
.yc_c00417{bottom:384.413333pt;}
.yb_c00417{bottom:407.080000pt;}
.ya_c00417{bottom:429.346667pt;}
.y9_c00417{bottom:452.146667pt;}
.y8_c00417{bottom:474.280000pt;}
.y7_c00417{bottom:496.813333pt;}
.y6_c00417{bottom:518.413333pt;}
.y5_c00417{bottom:541.613333pt;}
.y4_c00417{bottom:563.746667pt;}
.y3_c00417{bottom:585.880000pt;}
.y2_c00417{bottom:608.146667pt;}
.y1_c00417{bottom:652.013333pt;}
.h6_c00417{height:11.733399pt;}
.h7_c00417{height:38.937500pt;}
.h3_c00417{height:51.062500pt;}
.h2_c00417{height:71.785156pt;}
.h4_c00417{height:77.654948pt;}
.h5_c00417{height:78.027344pt;}
.h0_c00417{height:721.933333pt;}
.h1_c00417{height:722.000000pt;}
.w2_c00417{width:93.222667pt;}
.w1_c00417{width:498.666667pt;}
.w0_c00417{width:498.733333pt;}
.x0_c00417{left:0.000000pt;}
.x5_c00417{left:24.000000pt;}
.xe_c00417{left:26.666667pt;}
.x9_c00417{left:39.200000pt;}
.xa_c00417{left:54.933333pt;}
.x7_c00417{left:76.800000pt;}
.x8_c00417{left:80.133333pt;}
.x6_c00417{left:81.200000pt;}
.x4_c00417{left:82.400000pt;}
.xc_c00417{left:101.600000pt;}
.xb_c00417{left:104.666667pt;}
.x2_c00417{left:105.600000pt;}
.x3_c00417{left:136.800000pt;}
.x1_c00417{left:198.000000pt;}
.xf_c00417{left:206.534871pt;}
.xd_c00417{left:424.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_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_8f4ecdc240adc787212f8513.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.568848;font-style:normal;font-weight:normal;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_82663be19bc205c4002233d5.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.480469;font-style:normal;font-weight:normal;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_1c98f7e162c75585498febd5.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.480469;font-style:normal;font-weight:normal;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_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00418{font-family:ff4_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:ff5_c00418;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00418{vertical-align:-97.200000px;}
.v0_c00418{vertical-align:0.000000px;}
.ls6_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:1.128000px;}
.ls3_c00418{letter-spacing:2.400000px;}
.ls5_c00418{letter-spacing:3.000000px;}
.ls7_c00418{letter-spacing:6.000000px;}
.ls4_c00418{letter-spacing:6.153000px;}
.ls1_c00418{letter-spacing:8.970000px;}
.ls8_c00418{letter-spacing:9.000000px;}
.ls2_c00418{letter-spacing:10.416000px;}
.ls9_c00418{letter-spacing:36.000000px;}
.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;}
}
.ws2_c00418{word-spacing:-44.988000px;}
.ws3_c00418{word-spacing:-25.629000px;}
.ws1_c00418{word-spacing:-19.629000px;}
.ws0_c00418{word-spacing:-16.629000px;}
.ws5_c00418{word-spacing:0.000000px;}
.ws4_c00418{word-spacing:36.381000px;}
._2f_c00418{margin-left:-38.253000px;}
._30_c00418{margin-left:-35.259000px;}
._18_c00418{margin-left:-31.257000px;}
._31_c00418{margin-left:-28.356000px;}
._17_c00418{margin-left:-24.219000px;}
._1a_c00418{margin-left:-19.740000px;}
._13_c00418{margin-left:-16.215000px;}
._15_c00418{margin-left:-15.042000px;}
._19_c00418{margin-left:-13.800000px;}
._16_c00418{margin-left:-11.868000px;}
._8_c00418{margin-left:-10.488000px;}
._7_c00418{margin-left:-9.315000px;}
._12_c00418{margin-left:-8.211000px;}
._20_c00418{margin-left:-6.693000px;}
._14_c00418{margin-left:-5.520000px;}
._0_c00418{margin-left:-3.726000px;}
._5_c00418{margin-left:-1.863000px;}
._3_c00418{width:1.311000px;}
._2_c00418{width:2.346000px;}
._b_c00418{width:3.450000px;}
._4_c00418{width:4.968000px;}
._a_c00418{width:6.141000px;}
._24_c00418{width:7.314000px;}
._c_c00418{width:8.523000px;}
._22_c00418{width:10.074000px;}
._10_c00418{width:12.075000px;}
._1c_c00418{width:14.421000px;}
._f_c00418{width:15.525000px;}
._e_c00418{width:16.767000px;}
._1b_c00418{width:18.285000px;}
._21_c00418{width:21.009000px;}
._1_c00418{width:22.062000px;}
._32_c00418{width:23.331000px;}
._28_c00418{width:25.359000px;}
._2d_c00418{width:28.707000px;}
._1d_c00418{width:33.690000px;}
._d_c00418{width:36.231000px;}
._11_c00418{width:43.746000px;}
._23_c00418{width:53.712000px;}
._2a_c00418{width:85.818000px;}
._2c_c00418{width:90.339000px;}
._2e_c00418{width:96.606000px;}
._2b_c00418{width:135.276000px;}
._1e_c00418{width:153.870000px;}
._26_c00418{width:155.940000px;}
._27_c00418{width:167.460000px;}
._9_c00418{width:177.330000px;}
._1f_c00418{width:201.351000px;}
._29_c00418{width:206.514000px;}
._34_c00418{width:394.026000px;}
._6_c00418{width:418.659000px;}
._33_c00418{width:975.357000px;}
._25_c00418{width:1311.066000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(128,128,128);}
.fc0_c00418{color:rgb(0,0,0);}
.fs4_c00418{font-size:48.000000px;}
.fs1_c00418{font-size:55.200000px;}
.fs3_c00418{font-size:66.000000px;}
.fs0_c00418{font-size:69.000000px;}
.fs2_c00418{font-size:78.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1f_c00418{bottom:3.105000px;}
.y1e_c00418{bottom:7.228363px;}
.y1d_c00418{bottom:66.450000px;}
.y1c_c00418{bottom:91.800000px;}
.y1b_c00418{bottom:116.550000px;}
.y1a_c00418{bottom:141.750000px;}
.y19_c00418{bottom:166.800000px;}
.y18_c00418{bottom:192.000000px;}
.y17_c00418{bottom:241.950000px;}
.y16_c00418{bottom:266.700000px;}
.y15_c00418{bottom:291.900000px;}
.y14_c00418{bottom:317.250000px;}
.y13_c00418{bottom:342.000000px;}
.y12_c00418{bottom:366.900000px;}
.y11_c00418{bottom:391.800000px;}
.y10_c00418{bottom:416.850000px;}
.yf_c00418{bottom:441.900000px;}
.ye_c00418{bottom:467.100000px;}
.yd_c00418{bottom:492.450000px;}
.yc_c00418{bottom:516.450000px;}
.yb_c00418{bottom:541.650000px;}
.ya_c00418{bottom:565.650000px;}
.y9_c00418{bottom:590.400000px;}
.y8_c00418{bottom:616.050000px;}
.y7_c00418{bottom:640.650000px;}
.y6_c00418{bottom:666.000000px;}
.y5_c00418{bottom:690.900000px;}
.y4_c00418{bottom:716.250000px;}
.y3_c00418{bottom:740.850000px;}
.y2_c00418{bottom:766.350000px;}
.y1_c00418{bottom:790.200000px;}
.h5_c00418{height:13.200074px;}
.h6_c00418{height:43.804688px;}
.h2_c00418{height:80.758301px;}
.h1_c00418{height:87.361816px;}
.h4_c00418{height:87.961816px;}
.h3_c00418{height:98.756836px;}
.h0_c00418{height:823.500000px;}
.w1_c00418{width:104.875500px;}
.w0_c00418{width:576.750000px;}
.x0_c00418{left:0.000000px;}
.x4_c00418{left:31.500000px;}
.xb_c00418{left:32.698500px;}
.x3_c00418{left:34.050000px;}
.x8_c00418{left:35.398500px;}
.x9_c00418{left:36.448500px;}
.xa_c00418{left:37.498500px;}
.x2_c00418{left:55.350000px;}
.x5_c00418{left:56.700000px;}
.x7_c00418{left:58.648500px;}
.x6_c00418{left:80.548500px;}
.x1_c00418{left:183.600000px;}
.xc_c00418{left:240.189240px;}
@media print{
.v1_c00418{vertical-align:-86.400000pt;}
.v0_c00418{vertical-align:0.000000pt;}
.ls6_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:1.002667pt;}
.ls3_c00418{letter-spacing:2.133333pt;}
.ls5_c00418{letter-spacing:2.666667pt;}
.ls7_c00418{letter-spacing:5.333333pt;}
.ls4_c00418{letter-spacing:5.469333pt;}
.ls1_c00418{letter-spacing:7.973333pt;}
.ls8_c00418{letter-spacing:8.000000pt;}
.ls2_c00418{letter-spacing:9.258667pt;}
.ls9_c00418{letter-spacing:32.000000pt;}
.ws2_c00418{word-spacing:-39.989333pt;}
.ws3_c00418{word-spacing:-22.781333pt;}
.ws1_c00418{word-spacing:-17.448000pt;}
.ws0_c00418{word-spacing:-14.781333pt;}
.ws5_c00418{word-spacing:0.000000pt;}
.ws4_c00418{word-spacing:32.338667pt;}
._2f_c00418{margin-left:-34.002667pt;}
._30_c00418{margin-left:-31.341333pt;}
._18_c00418{margin-left:-27.784000pt;}
._31_c00418{margin-left:-25.205333pt;}
._17_c00418{margin-left:-21.528000pt;}
._1a_c00418{margin-left:-17.546667pt;}
._13_c00418{margin-left:-14.413333pt;}
._15_c00418{margin-left:-13.370667pt;}
._19_c00418{margin-left:-12.266667pt;}
._16_c00418{margin-left:-10.549333pt;}
._8_c00418{margin-left:-9.322667pt;}
._7_c00418{margin-left:-8.280000pt;}
._12_c00418{margin-left:-7.298667pt;}
._20_c00418{margin-left:-5.949333pt;}
._14_c00418{margin-left:-4.906667pt;}
._0_c00418{margin-left:-3.312000pt;}
._5_c00418{margin-left:-1.656000pt;}
._3_c00418{width:1.165333pt;}
._2_c00418{width:2.085333pt;}
._b_c00418{width:3.066667pt;}
._4_c00418{width:4.416000pt;}
._a_c00418{width:5.458667pt;}
._24_c00418{width:6.501333pt;}
._c_c00418{width:7.576000pt;}
._22_c00418{width:8.954667pt;}
._10_c00418{width:10.733333pt;}
._1c_c00418{width:12.818667pt;}
._f_c00418{width:13.800000pt;}
._e_c00418{width:14.904000pt;}
._1b_c00418{width:16.253333pt;}
._21_c00418{width:18.674667pt;}
._1_c00418{width:19.610667pt;}
._32_c00418{width:20.738667pt;}
._28_c00418{width:22.541333pt;}
._2d_c00418{width:25.517333pt;}
._1d_c00418{width:29.946667pt;}
._d_c00418{width:32.205333pt;}
._11_c00418{width:38.885333pt;}
._23_c00418{width:47.744000pt;}
._2a_c00418{width:76.282667pt;}
._2c_c00418{width:80.301333pt;}
._2e_c00418{width:85.872000pt;}
._2b_c00418{width:120.245333pt;}
._1e_c00418{width:136.773333pt;}
._26_c00418{width:138.613333pt;}
._27_c00418{width:148.853333pt;}
._9_c00418{width:157.626667pt;}
._1f_c00418{width:178.978667pt;}
._29_c00418{width:183.568000pt;}
._34_c00418{width:350.245333pt;}
._6_c00418{width:372.141333pt;}
._33_c00418{width:866.984000pt;}
._25_c00418{width:1165.392000pt;}
.fs4_c00418{font-size:42.666667pt;}
.fs1_c00418{font-size:49.066667pt;}
.fs3_c00418{font-size:58.666667pt;}
.fs0_c00418{font-size:61.333333pt;}
.fs2_c00418{font-size:69.333333pt;}
.y0_c00418{bottom:0.000000pt;}
.y1f_c00418{bottom:2.760000pt;}
.y1e_c00418{bottom:6.425212pt;}
.y1d_c00418{bottom:59.066667pt;}
.y1c_c00418{bottom:81.600000pt;}
.y1b_c00418{bottom:103.600000pt;}
.y1a_c00418{bottom:126.000000pt;}
.y19_c00418{bottom:148.266667pt;}
.y18_c00418{bottom:170.666667pt;}
.y17_c00418{bottom:215.066667pt;}
.y16_c00418{bottom:237.066667pt;}
.y15_c00418{bottom:259.466667pt;}
.y14_c00418{bottom:282.000000pt;}
.y13_c00418{bottom:304.000000pt;}
.y12_c00418{bottom:326.133333pt;}
.y11_c00418{bottom:348.266667pt;}
.y10_c00418{bottom:370.533333pt;}
.yf_c00418{bottom:392.800000pt;}
.ye_c00418{bottom:415.200000pt;}
.yd_c00418{bottom:437.733333pt;}
.yc_c00418{bottom:459.066667pt;}
.yb_c00418{bottom:481.466667pt;}
.ya_c00418{bottom:502.800000pt;}
.y9_c00418{bottom:524.800000pt;}
.y8_c00418{bottom:547.600000pt;}
.y7_c00418{bottom:569.466667pt;}
.y6_c00418{bottom:592.000000pt;}
.y5_c00418{bottom:614.133333pt;}
.y4_c00418{bottom:636.666667pt;}
.y3_c00418{bottom:658.533333pt;}
.y2_c00418{bottom:681.200000pt;}
.y1_c00418{bottom:702.400000pt;}
.h5_c00418{height:11.733399pt;}
.h6_c00418{height:38.937500pt;}
.h2_c00418{height:71.785156pt;}
.h1_c00418{height:77.654948pt;}
.h4_c00418{height:78.188281pt;}
.h3_c00418{height:87.783854pt;}
.h0_c00418{height:732.000000pt;}
.w1_c00418{width:93.222667pt;}
.w0_c00418{width:512.666667pt;}
.x0_c00418{left:0.000000pt;}
.x4_c00418{left:28.000000pt;}
.xb_c00418{left:29.065333pt;}
.x3_c00418{left:30.266667pt;}
.x8_c00418{left:31.465333pt;}
.x9_c00418{left:32.398667pt;}
.xa_c00418{left:33.332000pt;}
.x2_c00418{left:49.200000pt;}
.x5_c00418{left:50.400000pt;}
.x7_c00418{left:52.132000pt;}
.x6_c00418{left:71.598667pt;}
.x1_c00418{left:163.200000pt;}
.xc_c00418{left:213.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_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_b330856a32568de0bb60d460.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.568848;font-style:normal;font-weight:normal;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_844a934ed6e8046644dbadc8.woff2')format("woff");}.ff2_c00419{font-family:ff2_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:ff3_c00419;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00419{font-family:ff3_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;}
.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);}
.v1_c00419{vertical-align:-99.600000px;}
.v0_c00419{vertical-align:0.000000px;}
.ls2_c00419{letter-spacing:-3.000000px;}
.ls1_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:3.000000px;}
.ls3_c00419{letter-spacing:9.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00419{word-spacing:-25.629000px;}
.ws1_c00419{word-spacing:-19.629000px;}
.ws0_c00419{word-spacing:-16.629000px;}
.ws3_c00419{word-spacing:0.000000px;}
._2d_c00419{margin-left:-32.982000px;}
._2c_c00419{margin-left:-26.166000px;}
._34_c00419{margin-left:-24.702000px;}
._25_c00419{margin-left:-22.011000px;}
._1a_c00419{margin-left:-19.296000px;}
._29_c00419{margin-left:-15.858000px;}
._5_c00419{margin-left:-13.938000px;}
._16_c00419{margin-left:-11.661000px;}
._32_c00419{margin-left:-10.098000px;}
._15_c00419{margin-left:-9.039000px;}
._0_c00419{margin-left:-7.038000px;}
._14_c00419{margin-left:-5.658000px;}
._1_c00419{margin-left:-3.864000px;}
._4_c00419{margin-left:-2.553000px;}
._2_c00419{margin-left:-1.380000px;}
._6_c00419{width:2.001000px;}
._8_c00419{width:3.795000px;}
._12_c00419{width:4.830000px;}
._9_c00419{width:6.072000px;}
._e_c00419{width:7.107000px;}
._f_c00419{width:8.556000px;}
._d_c00419{width:9.867000px;}
._1c_c00419{width:11.316000px;}
._a_c00419{width:12.696000px;}
._b_c00419{width:14.145000px;}
._18_c00419{width:15.180000px;}
._c_c00419{width:16.767000px;}
._10_c00419{width:18.078000px;}
._2a_c00419{width:19.812000px;}
._13_c00419{width:20.838000px;}
._28_c00419{width:22.635000px;}
._2f_c00419{width:23.733000px;}
._1d_c00419{width:33.021000px;}
._1e_c00419{width:34.638000px;}
._7_c00419{width:35.880000px;}
._30_c00419{width:41.775000px;}
._26_c00419{width:44.046000px;}
._23_c00419{width:47.610000px;}
._1b_c00419{width:87.927000px;}
._19_c00419{width:128.484000px;}
._2b_c00419{width:151.779000px;}
._35_c00419{width:163.944000px;}
._2e_c00419{width:183.186000px;}
._22_c00419{width:196.098000px;}
._21_c00419{width:211.518000px;}
._1f_c00419{width:217.146000px;}
._17_c00419{width:218.817000px;}
._24_c00419{width:222.042000px;}
._20_c00419{width:225.975000px;}
._11_c00419{width:233.121000px;}
._31_c00419{width:347.220000px;}
._27_c00419{width:425.661000px;}
._3_c00419{width:492.183000px;}
._33_c00419{width:595.500000px;}
.fc2_c00419{color:transparent;}
.fc1_c00419{color:rgb(128,128,128);}
.fc0_c00419{color:rgb(0,0,0);}
.fs3_c00419{font-size:48.000000px;}
.fs1_c00419{font-size:63.000000px;}
.fs0_c00419{font-size:69.000000px;}
.fs2_c00419{font-size:75.000000px;}
.y0_c00419{bottom:0.000000px;}
.y1c_c00419{bottom:3.105000px;}
.y1b_c00419{bottom:7.228357px;}
.y1a_c00419{bottom:58.080000px;}
.y19_c00419{bottom:84.480000px;}
.y18_c00419{bottom:110.430000px;}
.y17_c00419{bottom:136.080000px;}
.y16_c00419{bottom:160.980000px;}
.y15_c00419{bottom:211.980000px;}
.y14_c00419{bottom:236.880000px;}
.y13_c00419{bottom:262.530000px;}
.y12_c00419{bottom:311.130000px;}
.y11_c00419{bottom:386.730000px;}
.y10_c00419{bottom:412.380000px;}
.yf_c00419{bottom:437.130000px;}
.ye_c00419{bottom:462.480000px;}
.yd_c00419{bottom:487.680000px;}
.yc_c00419{bottom:512.430000px;}
.yb_c00419{bottom:538.080000px;}
.ya_c00419{bottom:562.380000px;}
.y9_c00419{bottom:585.930000px;}
.y8_c00419{bottom:611.880000px;}
.y7_c00419{bottom:636.180000px;}
.y6_c00419{bottom:662.280000px;}
.y5_c00419{bottom:686.130000px;}
.y4_c00419{bottom:711.480000px;}
.y3_c00419{bottom:736.530000px;}
.y2_c00419{bottom:762.780000px;}
.y1_c00419{bottom:787.080000px;}
.h4_c00419{height:13.200074px;}
.h5_c00419{height:43.804688px;}
.h2_c00419{height:80.758301px;}
.h1_c00419{height:87.361816px;}
.h3_c00419{height:94.958496px;}
.h0_c00419{height:819.750000px;}
.w2_c00419{width:104.875500px;}
.w1_c00419{width:566.250000px;}
.w0_c00419{width:566.475000px;}
.x0_c00419{left:0.000000px;}
.x4_c00419{left:33.450000px;}
.x7_c00419{left:34.500000px;}
.xb_c00419{left:38.550000px;}
.x6_c00419{left:49.950000px;}
.xa_c00419{left:51.000000px;}
.x10_c00419{left:72.600000px;}
.xe_c00419{left:93.150000px;}
.x11_c00419{left:94.800000px;}
.xf_c00419{left:96.150000px;}
.x9_c00419{left:97.650000px;}
.x3_c00419{left:100.350000px;}
.xd_c00419{left:105.600000px;}
.x1_c00419{left:111.450000px;}
.x8_c00419{left:123.300000px;}
.x2_c00419{left:124.650000px;}
.x5_c00419{left:126.000000px;}
.x12_c00419{left:127.500000px;}
.xc_c00419{left:204.900000px;}
.x14_c00419{left:235.051758px;}
.x13_c00419{left:530.550000px;}
@media print{
.v1_c00419{vertical-align:-88.533333pt;}
.v0_c00419{vertical-align:0.000000pt;}
.ls2_c00419{letter-spacing:-2.666667pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:2.666667pt;}
.ls3_c00419{letter-spacing:8.000000pt;}
.ws2_c00419{word-spacing:-22.781333pt;}
.ws1_c00419{word-spacing:-17.448000pt;}
.ws0_c00419{word-spacing:-14.781333pt;}
.ws3_c00419{word-spacing:0.000000pt;}
._2d_c00419{margin-left:-29.317333pt;}
._2c_c00419{margin-left:-23.258667pt;}
._34_c00419{margin-left:-21.957333pt;}
._25_c00419{margin-left:-19.565333pt;}
._1a_c00419{margin-left:-17.152000pt;}
._29_c00419{margin-left:-14.096000pt;}
._5_c00419{margin-left:-12.389333pt;}
._16_c00419{margin-left:-10.365333pt;}
._32_c00419{margin-left:-8.976000pt;}
._15_c00419{margin-left:-8.034667pt;}
._0_c00419{margin-left:-6.256000pt;}
._14_c00419{margin-left:-5.029333pt;}
._1_c00419{margin-left:-3.434667pt;}
._4_c00419{margin-left:-2.269333pt;}
._2_c00419{margin-left:-1.226667pt;}
._6_c00419{width:1.778667pt;}
._8_c00419{width:3.373333pt;}
._12_c00419{width:4.293333pt;}
._9_c00419{width:5.397333pt;}
._e_c00419{width:6.317333pt;}
._f_c00419{width:7.605333pt;}
._d_c00419{width:8.770667pt;}
._1c_c00419{width:10.058667pt;}
._a_c00419{width:11.285333pt;}
._b_c00419{width:12.573333pt;}
._18_c00419{width:13.493333pt;}
._c_c00419{width:14.904000pt;}
._10_c00419{width:16.069333pt;}
._2a_c00419{width:17.610667pt;}
._13_c00419{width:18.522667pt;}
._28_c00419{width:20.120000pt;}
._2f_c00419{width:21.096000pt;}
._1d_c00419{width:29.352000pt;}
._1e_c00419{width:30.789333pt;}
._7_c00419{width:31.893333pt;}
._30_c00419{width:37.133333pt;}
._26_c00419{width:39.152000pt;}
._23_c00419{width:42.320000pt;}
._1b_c00419{width:78.157333pt;}
._19_c00419{width:114.208000pt;}
._2b_c00419{width:134.914667pt;}
._35_c00419{width:145.728000pt;}
._2e_c00419{width:162.832000pt;}
._22_c00419{width:174.309333pt;}
._21_c00419{width:188.016000pt;}
._1f_c00419{width:193.018667pt;}
._17_c00419{width:194.504000pt;}
._24_c00419{width:197.370667pt;}
._20_c00419{width:200.866667pt;}
._11_c00419{width:207.218667pt;}
._31_c00419{width:308.640000pt;}
._27_c00419{width:378.365333pt;}
._3_c00419{width:437.496000pt;}
._33_c00419{width:529.333333pt;}
.fs3_c00419{font-size:42.666667pt;}
.fs1_c00419{font-size:56.000000pt;}
.fs0_c00419{font-size:61.333333pt;}
.fs2_c00419{font-size:66.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y1c_c00419{bottom:2.760000pt;}
.y1b_c00419{bottom:6.425206pt;}
.y1a_c00419{bottom:51.626667pt;}
.y19_c00419{bottom:75.093333pt;}
.y18_c00419{bottom:98.160000pt;}
.y17_c00419{bottom:120.960000pt;}
.y16_c00419{bottom:143.093333pt;}
.y15_c00419{bottom:188.426667pt;}
.y14_c00419{bottom:210.560000pt;}
.y13_c00419{bottom:233.360000pt;}
.y12_c00419{bottom:276.560000pt;}
.y11_c00419{bottom:343.760000pt;}
.y10_c00419{bottom:366.560000pt;}
.yf_c00419{bottom:388.560000pt;}
.ye_c00419{bottom:411.093333pt;}
.yd_c00419{bottom:433.493333pt;}
.yc_c00419{bottom:455.493333pt;}
.yb_c00419{bottom:478.293333pt;}
.ya_c00419{bottom:499.893333pt;}
.y9_c00419{bottom:520.826667pt;}
.y8_c00419{bottom:543.893333pt;}
.y7_c00419{bottom:565.493333pt;}
.y6_c00419{bottom:588.693333pt;}
.y5_c00419{bottom:609.893333pt;}
.y4_c00419{bottom:632.426667pt;}
.y3_c00419{bottom:654.693333pt;}
.y2_c00419{bottom:678.026667pt;}
.y1_c00419{bottom:699.626667pt;}
.h4_c00419{height:11.733399pt;}
.h5_c00419{height:38.937500pt;}
.h2_c00419{height:71.785156pt;}
.h1_c00419{height:77.654948pt;}
.h3_c00419{height:84.407552pt;}
.h0_c00419{height:728.666667pt;}
.w2_c00419{width:93.222667pt;}
.w1_c00419{width:503.333333pt;}
.w0_c00419{width:503.533333pt;}
.x0_c00419{left:0.000000pt;}
.x4_c00419{left:29.733333pt;}
.x7_c00419{left:30.666667pt;}
.xb_c00419{left:34.266667pt;}
.x6_c00419{left:44.400000pt;}
.xa_c00419{left:45.333333pt;}
.x10_c00419{left:64.533333pt;}
.xe_c00419{left:82.800000pt;}
.x11_c00419{left:84.266667pt;}
.xf_c00419{left:85.466667pt;}
.x9_c00419{left:86.800000pt;}
.x3_c00419{left:89.200000pt;}
.xd_c00419{left:93.866667pt;}
.x1_c00419{left:99.066667pt;}
.x8_c00419{left:109.600000pt;}
.x2_c00419{left:110.800000pt;}
.x5_c00419{left:112.000000pt;}
.x12_c00419{left:113.333333pt;}
.xc_c00419{left:182.133333pt;}
.x14_c00419{left:208.934896pt;}
.x13_c00419{left:471.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_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_0540c3772738ed613f7043c1.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_2e52676684f302c7b8acd1c3.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.568848;font-style:normal;font-weight:normal;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_c27d429413752c49f8c5af96.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;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_c00420;src:url('chunks/assets/font_c2f783421606aad0d01cf40c.woff2')format("woff");}.ff4_c00420{font-family:ff4_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:ff5_c00420;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls2_c00420{letter-spacing:3.000000px;}
.ls3_c00420{letter-spacing:6.000000px;}
.ls0_c00420{letter-spacing:9.000000px;}
.ls4_c00420{letter-spacing:27.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00420{word-spacing:-46.818000px;}
.ws0_c00420{word-spacing:-25.629000px;}
.ws1_c00420{word-spacing:-16.629000px;}
.ws4_c00420{word-spacing:0.000000px;}
.ws2_c00420{word-spacing:4.554000px;}
._18_c00420{margin-left:-18.768000px;}
._17_c00420{margin-left:-13.215000px;}
._1b_c00420{margin-left:-11.247000px;}
._1c_c00420{margin-left:-9.555000px;}
._6_c00420{margin-left:-8.004000px;}
._20_c00420{margin-left:-6.651000px;}
._1a_c00420{margin-left:-4.623000px;}
._a_c00420{margin-left:-3.174000px;}
._1_c00420{margin-left:-1.863000px;}
._9_c00420{width:1.173000px;}
._5_c00420{width:2.208000px;}
._7_c00420{width:3.588000px;}
._8_c00420{width:4.692000px;}
._0_c00420{width:6.210000px;}
._e_c00420{width:7.383000px;}
._4_c00420{width:9.039000px;}
._1d_c00420{width:10.212000px;}
._3_c00420{width:11.385000px;}
._13_c00420{width:12.972000px;}
._19_c00420{width:14.115000px;}
._16_c00420{width:15.795000px;}
._c_c00420{width:17.217000px;}
._d_c00420{width:18.594000px;}
._10_c00420{width:21.183000px;}
._14_c00420{width:22.701000px;}
._22_c00420{width:24.066000px;}
._23_c00420{width:27.078000px;}
._b_c00420{width:28.842000px;}
._f_c00420{width:34.122000px;}
._15_c00420{width:36.432000px;}
._1e_c00420{width:37.464000px;}
._12_c00420{width:40.986000px;}
._11_c00420{width:44.367000px;}
._21_c00420{width:93.627000px;}
._1f_c00420{width:99.930000px;}
._2_c00420{width:424.554000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(128,128,128);}
.fc0_c00420{color:rgb(0,0,0);}
.fs1_c00420{font-size:48.000000px;}
.fs2_c00420{font-size:54.000000px;}
.fs3_c00420{font-size:57.000000px;}
.fs0_c00420{font-size:69.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1a_c00420{bottom:3.105000px;}
.y19_c00420{bottom:7.228371px;}
.y18_c00420{bottom:212.715000px;}
.y17_c00420{bottom:231.165000px;}
.y16_c00420{bottom:249.465000px;}
.y15_c00420{bottom:267.015000px;}
.y14_c00420{bottom:302.415000px;}
.y13_c00420{bottom:339.615000px;}
.y12_c00420{bottom:364.815000px;}
.y11_c00420{bottom:389.865000px;}
.y10_c00420{bottom:414.915000px;}
.yf_c00420{bottom:439.815000px;}
.ye_c00420{bottom:464.865000px;}
.yd_c00420{bottom:489.465000px;}
.yc_c00420{bottom:514.365000px;}
.yb_c00420{bottom:538.965000px;}
.ya_c00420{bottom:564.015000px;}
.y9_c00420{bottom:589.365000px;}
.y8_c00420{bottom:613.665000px;}
.y7_c00420{bottom:639.015000px;}
.y6_c00420{bottom:663.915000px;}
.y5_c00420{bottom:688.515000px;}
.y4_c00420{bottom:713.565000px;}
.y3_c00420{bottom:738.165000px;}
.y2_c00420{bottom:763.215000px;}
.y1_c00420{bottom:787.815000px;}
.h5_c00420{height:13.200074px;}
.h6_c00420{height:43.804688px;}
.h4_c00420{height:55.942383px;}
.h3_c00420{height:58.536000px;}
.h2_c00420{height:87.361816px;}
.h1_c00420{height:831.000000px;}
.h0_c00420{height:831.075000px;}
.w2_c00420{width:104.875500px;}
.w0_c00420{width:582.375000px;}
.w1_c00420{width:582.750000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:37.800000px;}
.x5_c00420{left:39.150000px;}
.x3_c00420{left:40.500000px;}
.x6_c00420{left:41.550000px;}
.x4_c00420{left:42.900000px;}
.x9_c00420{left:45.600000px;}
.xa_c00420{left:46.650000px;}
.x8_c00420{left:53.700000px;}
.x7_c00420{left:189.000000px;}
.x1_c00420{left:206.550000px;}
.xb_c00420{left:243.001740px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls2_c00420{letter-spacing:2.666667pt;}
.ls3_c00420{letter-spacing:5.333333pt;}
.ls0_c00420{letter-spacing:8.000000pt;}
.ls4_c00420{letter-spacing:24.000000pt;}
.ws3_c00420{word-spacing:-41.616000pt;}
.ws0_c00420{word-spacing:-22.781333pt;}
.ws1_c00420{word-spacing:-14.781333pt;}
.ws4_c00420{word-spacing:0.000000pt;}
.ws2_c00420{word-spacing:4.048000pt;}
._18_c00420{margin-left:-16.682667pt;}
._17_c00420{margin-left:-11.746667pt;}
._1b_c00420{margin-left:-9.997333pt;}
._1c_c00420{margin-left:-8.493333pt;}
._6_c00420{margin-left:-7.114667pt;}
._20_c00420{margin-left:-5.912000pt;}
._1a_c00420{margin-left:-4.109333pt;}
._a_c00420{margin-left:-2.821333pt;}
._1_c00420{margin-left:-1.656000pt;}
._9_c00420{width:1.042667pt;}
._5_c00420{width:1.962667pt;}
._7_c00420{width:3.189333pt;}
._8_c00420{width:4.170667pt;}
._0_c00420{width:5.520000pt;}
._e_c00420{width:6.562667pt;}
._4_c00420{width:8.034667pt;}
._1d_c00420{width:9.077333pt;}
._3_c00420{width:10.120000pt;}
._13_c00420{width:11.530667pt;}
._19_c00420{width:12.546667pt;}
._16_c00420{width:14.040000pt;}
._c_c00420{width:15.304000pt;}
._d_c00420{width:16.528000pt;}
._10_c00420{width:18.829333pt;}
._14_c00420{width:20.178667pt;}
._22_c00420{width:21.392000pt;}
._23_c00420{width:24.069333pt;}
._b_c00420{width:25.637333pt;}
._f_c00420{width:30.330667pt;}
._15_c00420{width:32.384000pt;}
._1e_c00420{width:33.301333pt;}
._12_c00420{width:36.432000pt;}
._11_c00420{width:39.437333pt;}
._21_c00420{width:83.224000pt;}
._1f_c00420{width:88.826667pt;}
._2_c00420{width:377.381333pt;}
.fs1_c00420{font-size:42.666667pt;}
.fs2_c00420{font-size:48.000000pt;}
.fs3_c00420{font-size:50.666667pt;}
.fs0_c00420{font-size:61.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y1a_c00420{bottom:2.760000pt;}
.y19_c00420{bottom:6.425219pt;}
.y18_c00420{bottom:189.080000pt;}
.y17_c00420{bottom:205.480000pt;}
.y16_c00420{bottom:221.746667pt;}
.y15_c00420{bottom:237.346667pt;}
.y14_c00420{bottom:268.813333pt;}
.y13_c00420{bottom:301.880000pt;}
.y12_c00420{bottom:324.280000pt;}
.y11_c00420{bottom:346.546667pt;}
.y10_c00420{bottom:368.813333pt;}
.yf_c00420{bottom:390.946667pt;}
.ye_c00420{bottom:413.213333pt;}
.yd_c00420{bottom:435.080000pt;}
.yc_c00420{bottom:457.213333pt;}
.yb_c00420{bottom:479.080000pt;}
.ya_c00420{bottom:501.346667pt;}
.y9_c00420{bottom:523.880000pt;}
.y8_c00420{bottom:545.480000pt;}
.y7_c00420{bottom:568.013333pt;}
.y6_c00420{bottom:590.146667pt;}
.y5_c00420{bottom:612.013333pt;}
.y4_c00420{bottom:634.280000pt;}
.y3_c00420{bottom:656.146667pt;}
.y2_c00420{bottom:678.413333pt;}
.y1_c00420{bottom:700.280000pt;}
.h5_c00420{height:11.733399pt;}
.h6_c00420{height:38.937500pt;}
.h4_c00420{height:49.726562pt;}
.h3_c00420{height:52.032000pt;}
.h2_c00420{height:77.654948pt;}
.h1_c00420{height:738.666667pt;}
.h0_c00420{height:738.733333pt;}
.w2_c00420{width:93.222667pt;}
.w0_c00420{width:517.666667pt;}
.w1_c00420{width:518.000000pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:33.600000pt;}
.x5_c00420{left:34.800000pt;}
.x3_c00420{left:36.000000pt;}
.x6_c00420{left:36.933333pt;}
.x4_c00420{left:38.133333pt;}
.x9_c00420{left:40.533333pt;}
.xa_c00420{left:41.466667pt;}
.x8_c00420{left:47.733333pt;}
.x7_c00420{left:168.000000pt;}
.x1_c00420{left:183.600000pt;}
.xb_c00420{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6683e348d20dd60a515fba8.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.480469;font-style:normal;font-weight:normal;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_051a0123ca1dd66a4d70e814.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.568848;font-style:normal;font-weight:normal;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_57c8f13fc0c5241629194f96.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_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff4_c00421{font-family:ff4_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:ff5_c00421;src:url('chunks/assets/font_aa60eef2ae38e707e63a0da6.woff2')format("woff");}.ff5_c00421{font-family:ff5_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:ff6_c00421;src:url('chunks/assets/font_3ab886486edaa20bff94a641.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00421;src:url('chunks/assets/font_f4ad4f17ebffafe1fe86932c.woff2')format("woff");}.ff7_c00421{font-family:ff7_c00421;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_c00421;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00421{font-family:ff8_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;}
.ls5_c00421{letter-spacing:-3.000000px;}
.ls2_c00421{letter-spacing:0.000000px;}
.ls4_c00421{letter-spacing:3.000000px;}
.ls0_c00421{letter-spacing:4.800000px;}
.ls3_c00421{letter-spacing:9.000000px;}
.ls1_c00421{letter-spacing:9.555000px;}
.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;}
}
.ws7_c00421{word-spacing:-70.080000px;}
.ws4_c00421{word-spacing:-44.022000px;}
.ws3_c00421{word-spacing:-19.629000px;}
.ws6_c00421{word-spacing:-18.075000px;}
.ws2_c00421{word-spacing:-16.629000px;}
.ws0_c00421{word-spacing:-15.906000px;}
.ws1_c00421{word-spacing:-9.912000px;}
.ws8_c00421{word-spacing:0.000000px;}
.ws5_c00421{word-spacing:1.212000px;}
._14_c00421{margin-left:-19.914000px;}
._19_c00421{margin-left:-14.151000px;}
._12_c00421{margin-left:-12.576000px;}
._1_c00421{margin-left:-10.482000px;}
._1e_c00421{margin-left:-8.193000px;}
._10_c00421{margin-left:-6.705000px;}
._f_c00421{margin-left:-5.304000px;}
._0_c00421{margin-left:-3.630000px;}
._d_c00421{margin-left:-1.914000px;}
._5_c00421{width:1.914000px;}
._4_c00421{width:3.234000px;}
._6_c00421{width:4.290000px;}
._7_c00421{width:6.006000px;}
._2_c00421{width:7.560000px;}
._a_c00421{width:9.330000px;}
._b_c00421{width:10.488000px;}
._11_c00421{width:12.096000px;}
._8_c00421{width:13.662000px;}
._e_c00421{width:14.973000px;}
._16_c00421{width:16.719000px;}
._9_c00421{width:18.078000px;}
._13_c00421{width:19.539000px;}
._20_c00421{width:20.811000px;}
._18_c00421{width:22.017000px;}
._1c_c00421{width:24.087000px;}
._17_c00421{width:26.346000px;}
._21_c00421{width:36.012000px;}
._1b_c00421{width:45.465000px;}
._c_c00421{width:75.210000px;}
._1f_c00421{width:91.098000px;}
._1d_c00421{width:98.460000px;}
._1a_c00421{width:104.946000px;}
._15_c00421{width:171.465000px;}
._3_c00421{width:413.718000px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(128,128,128);}
.fc0_c00421{color:rgb(0,0,0);}
.fs4_c00421{font-size:36.000000px;}
.fs3_c00421{font-size:45.000000px;}
.fs7_c00421{font-size:48.000000px;}
.fs0_c00421{font-size:66.000000px;}
.fs2_c00421{font-size:69.000000px;}
.fs1_c00421{font-size:72.000000px;}
.fs5_c00421{font-size:75.000000px;}
.fs6_c00421{font-size:90.000000px;}
.y0_c00421{bottom:0.000000px;}
.y20_c00421{bottom:3.105000px;}
.y1f_c00421{bottom:7.228357px;}
.y1d_c00421{bottom:58.380000px;}
.y1c_c00421{bottom:85.680000px;}
.y1b_c00421{bottom:111.780000px;}
.y1a_c00421{bottom:136.980000px;}
.y1e_c00421{bottom:146.430000px;}
.y19_c00421{bottom:162.330000px;}
.y18_c00421{bottom:187.380000px;}
.y17_c00421{bottom:211.980000px;}
.y16_c00421{bottom:237.330000px;}
.y15_c00421{bottom:262.980000px;}
.y14_c00421{bottom:288.330000px;}
.y13_c00421{bottom:313.530000px;}
.y12_c00421{bottom:337.830000px;}
.y11_c00421{bottom:362.580000px;}
.y10_c00421{bottom:387.780000px;}
.yf_c00421{bottom:413.430000px;}
.ye_c00421{bottom:437.430000px;}
.yd_c00421{bottom:463.080000px;}
.yc_c00421{bottom:488.430000px;}
.yb_c00421{bottom:513.630000px;}
.ya_c00421{bottom:538.680000px;}
.y9_c00421{bottom:563.580000px;}
.y8_c00421{bottom:588.630000px;}
.y7_c00421{bottom:613.530000px;}
.y6_c00421{bottom:638.280000px;}
.y5_c00421{bottom:663.480000px;}
.y4_c00421{bottom:688.830000px;}
.y3_c00421{bottom:713.880000px;}
.y2_c00421{bottom:738.180000px;}
.y1_c00421{bottom:788.430000px;}
.h7_c00421{height:13.200074px;}
.h8_c00421{height:43.804688px;}
.h3_c00421{height:44.165039px;}
.h4_c00421{height:80.758301px;}
.h2_c00421{height:87.361816px;}
.h1_c00421{height:91.160156px;}
.h5_c00421{height:94.958496px;}
.h6_c00421{height:96.030000px;}
.h0_c00421{height:819.750000px;}
.w2_c00421{width:104.875500px;}
.w1_c00421{width:566.250000px;}
.w0_c00421{width:566.475000px;}
.x0_c00421{left:0.000000px;}
.x3_c00421{left:28.050000px;}
.x9_c00421{left:31.650000px;}
.x8_c00421{left:45.600000px;}
.xa_c00421{left:46.950000px;}
.x6_c00421{left:55.650000px;}
.x7_c00421{left:96.150000px;}
.x5_c00421{left:97.500000px;}
.x1_c00421{left:108.900000px;}
.x4_c00421{left:122.850000px;}
.xb_c00421{left:135.000000px;}
.x2_c00421{left:200.100000px;}
.xd_c00421{left:235.051758px;}
.xc_c00421{left:524.850000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls5_c00421{letter-spacing:-2.666667pt;}
.ls2_c00421{letter-spacing:0.000000pt;}
.ls4_c00421{letter-spacing:2.666667pt;}
.ls0_c00421{letter-spacing:4.266667pt;}
.ls3_c00421{letter-spacing:8.000000pt;}
.ls1_c00421{letter-spacing:8.493333pt;}
.ws7_c00421{word-spacing:-62.293333pt;}
.ws4_c00421{word-spacing:-39.130667pt;}
.ws3_c00421{word-spacing:-17.448000pt;}
.ws6_c00421{word-spacing:-16.066667pt;}
.ws2_c00421{word-spacing:-14.781333pt;}
.ws0_c00421{word-spacing:-14.138667pt;}
.ws1_c00421{word-spacing:-8.810667pt;}
.ws8_c00421{word-spacing:0.000000pt;}
.ws5_c00421{word-spacing:1.077333pt;}
._14_c00421{margin-left:-17.701333pt;}
._19_c00421{margin-left:-12.578667pt;}
._12_c00421{margin-left:-11.178667pt;}
._1_c00421{margin-left:-9.317333pt;}
._1e_c00421{margin-left:-7.282667pt;}
._10_c00421{margin-left:-5.960000pt;}
._f_c00421{margin-left:-4.714667pt;}
._0_c00421{margin-left:-3.226667pt;}
._d_c00421{margin-left:-1.701333pt;}
._5_c00421{width:1.701333pt;}
._4_c00421{width:2.874667pt;}
._6_c00421{width:3.813333pt;}
._7_c00421{width:5.338667pt;}
._2_c00421{width:6.720000pt;}
._a_c00421{width:8.293333pt;}
._b_c00421{width:9.322667pt;}
._11_c00421{width:10.752000pt;}
._8_c00421{width:12.144000pt;}
._e_c00421{width:13.309333pt;}
._16_c00421{width:14.861333pt;}
._9_c00421{width:16.069333pt;}
._13_c00421{width:17.368000pt;}
._20_c00421{width:18.498667pt;}
._18_c00421{width:19.570667pt;}
._1c_c00421{width:21.410667pt;}
._17_c00421{width:23.418667pt;}
._21_c00421{width:32.010667pt;}
._1b_c00421{width:40.413333pt;}
._c_c00421{width:66.853333pt;}
._1f_c00421{width:80.976000pt;}
._1d_c00421{width:87.520000pt;}
._1a_c00421{width:93.285333pt;}
._15_c00421{width:152.413333pt;}
._3_c00421{width:367.749333pt;}
.fs4_c00421{font-size:32.000000pt;}
.fs3_c00421{font-size:40.000000pt;}
.fs7_c00421{font-size:42.666667pt;}
.fs0_c00421{font-size:58.666667pt;}
.fs2_c00421{font-size:61.333333pt;}
.fs1_c00421{font-size:64.000000pt;}
.fs5_c00421{font-size:66.666667pt;}
.fs6_c00421{font-size:80.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y20_c00421{bottom:2.760000pt;}
.y1f_c00421{bottom:6.425206pt;}
.y1d_c00421{bottom:51.893333pt;}
.y1c_c00421{bottom:76.160000pt;}
.y1b_c00421{bottom:99.360000pt;}
.y1a_c00421{bottom:121.760000pt;}
.y1e_c00421{bottom:130.160000pt;}
.y19_c00421{bottom:144.293333pt;}
.y18_c00421{bottom:166.560000pt;}
.y17_c00421{bottom:188.426667pt;}
.y16_c00421{bottom:210.960000pt;}
.y15_c00421{bottom:233.760000pt;}
.y14_c00421{bottom:256.293333pt;}
.y13_c00421{bottom:278.693333pt;}
.y12_c00421{bottom:300.293333pt;}
.y11_c00421{bottom:322.293333pt;}
.y10_c00421{bottom:344.693333pt;}
.yf_c00421{bottom:367.493333pt;}
.ye_c00421{bottom:388.826667pt;}
.yd_c00421{bottom:411.626667pt;}
.yc_c00421{bottom:434.160000pt;}
.yb_c00421{bottom:456.560000pt;}
.ya_c00421{bottom:478.826667pt;}
.y9_c00421{bottom:500.960000pt;}
.y8_c00421{bottom:523.226667pt;}
.y7_c00421{bottom:545.360000pt;}
.y6_c00421{bottom:567.360000pt;}
.y5_c00421{bottom:589.760000pt;}
.y4_c00421{bottom:612.293333pt;}
.y3_c00421{bottom:634.560000pt;}
.y2_c00421{bottom:656.160000pt;}
.y1_c00421{bottom:700.826667pt;}
.h7_c00421{height:11.733399pt;}
.h8_c00421{height:38.937500pt;}
.h3_c00421{height:39.257812pt;}
.h4_c00421{height:71.785156pt;}
.h2_c00421{height:77.654948pt;}
.h1_c00421{height:81.031250pt;}
.h5_c00421{height:84.407552pt;}
.h6_c00421{height:85.360000pt;}
.h0_c00421{height:728.666667pt;}
.w2_c00421{width:93.222667pt;}
.w1_c00421{width:503.333333pt;}
.w0_c00421{width:503.533333pt;}
.x0_c00421{left:0.000000pt;}
.x3_c00421{left:24.933333pt;}
.x9_c00421{left:28.133333pt;}
.x8_c00421{left:40.533333pt;}
.xa_c00421{left:41.733333pt;}
.x6_c00421{left:49.466667pt;}
.x7_c00421{left:85.466667pt;}
.x5_c00421{left:86.666667pt;}
.x1_c00421{left:96.800000pt;}
.x4_c00421{left:109.200000pt;}
.xb_c00421{left:120.000000pt;}
.x2_c00421{left:177.866667pt;}
.xd_c00421{left:208.934896pt;}
.xc_c00421{left:466.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_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_a412e90d9d86875c1710a85a.woff2')format("woff");}.ff1_c00422{font-family:ff1_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:ff2_c00422;src:url('chunks/assets/font_2e585149f7c6600661724654.woff2')format("woff");}.ff2_c00422{font-family:ff2_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:ff3_c00422;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00422{font-family:ff3_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;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls2_c00422{letter-spacing:3.000000px;}
.ls3_c00422{letter-spacing:9.000000px;}
.ls0_c00422{letter-spacing:13.560000px;}
.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;}
}
.ws3_c00422{word-spacing:-25.629000px;}
.ws1_c00422{word-spacing:-16.629000px;}
.ws2_c00422{word-spacing:-13.014000px;}
.ws0_c00422{word-spacing:-0.483000px;}
.ws4_c00422{word-spacing:0.000000px;}
._2c_c00422{margin-left:-20.286000px;}
._2e_c00422{margin-left:-18.492000px;}
._19_c00422{margin-left:-17.367000px;}
._11_c00422{margin-left:-16.353000px;}
._2a_c00422{margin-left:-14.973000px;}
._12_c00422{margin-left:-13.938000px;}
._27_c00422{margin-left:-12.006000px;}
._1c_c00422{margin-left:-10.626000px;}
._14_c00422{margin-left:-9.591000px;}
._5_c00422{margin-left:-7.383000px;}
._1b_c00422{margin-left:-6.210000px;}
._6_c00422{margin-left:-4.968000px;}
._2_c00422{margin-left:-3.105000px;}
._9_c00422{margin-left:-1.104000px;}
._a_c00422{width:1.242000px;}
._d_c00422{width:2.346000px;}
._0_c00422{width:3.381000px;}
._4_c00422{width:5.382000px;}
._13_c00422{width:6.417000px;}
._3_c00422{width:7.452000px;}
._8_c00422{width:8.694000px;}
._16_c00422{width:10.143000px;}
._1_c00422{width:12.075000px;}
._b_c00422{width:14.106000px;}
._e_c00422{width:15.495000px;}
._f_c00422{width:17.493000px;}
._1e_c00422{width:19.779000px;}
._20_c00422{width:21.339000px;}
._15_c00422{width:22.908000px;}
._1f_c00422{width:25.005000px;}
._23_c00422{width:26.922000px;}
._2d_c00422{width:28.980000px;}
._18_c00422{width:30.663000px;}
._21_c00422{width:33.669000px;}
._10_c00422{width:37.191000px;}
._22_c00422{width:40.581000px;}
._25_c00422{width:61.470000px;}
._c_c00422{width:87.630000px;}
._26_c00422{width:89.844000px;}
._1a_c00422{width:100.089000px;}
._28_c00422{width:145.107000px;}
._2b_c00422{width:161.994000px;}
._1d_c00422{width:163.737000px;}
._24_c00422{width:170.499000px;}
._29_c00422{width:202.335000px;}
._17_c00422{width:237.090000px;}
._7_c00422{width:488.370000px;}
._2f_c00422{width:1639.716000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(128,128,128);}
.fc0_c00422{color:rgb(0,0,0);}
.fs4_c00422{font-size:48.000000px;}
.fs1_c00422{font-size:54.000000px;}
.fs3_c00422{font-size:57.000000px;}
.fs0_c00422{font-size:69.000000px;}
.fs2_c00422{font-size:81.000000px;}
.y0_c00422{bottom:0.000000px;}
.y20_c00422{bottom:3.105000px;}
.y1f_c00422{bottom:7.228371px;}
.y1e_c00422{bottom:48.015000px;}
.y1d_c00422{bottom:74.565000px;}
.y1c_c00422{bottom:100.215000px;}
.y1b_c00422{bottom:124.215000px;}
.y1a_c00422{bottom:150.165000px;}
.y19_c00422{bottom:174.915000px;}
.y18_c00422{bottom:200.265000px;}
.y17_c00422{bottom:224.565000px;}
.y16_c00422{bottom:250.065000px;}
.y15_c00422{bottom:275.415000px;}
.y14_c00422{bottom:324.765000px;}
.y13_c00422{bottom:362.565000px;}
.y12_c00422{bottom:380.715000px;}
.y11_c00422{bottom:400.065000px;}
.y10_c00422{bottom:426.015000px;}
.y1_c00422{bottom:434.115000px;}
.yf_c00422{bottom:451.215000px;}
.ye_c00422{bottom:475.665000px;}
.yd_c00422{bottom:500.565000px;}
.yc_c00422{bottom:525.465000px;}
.yb_c00422{bottom:550.215000px;}
.ya_c00422{bottom:575.565000px;}
.y9_c00422{bottom:600.765000px;}
.y8_c00422{bottom:626.115000px;}
.y7_c00422{bottom:651.015000px;}
.y6_c00422{bottom:675.765000px;}
.y5_c00422{bottom:701.415000px;}
.y4_c00422{bottom:726.015000px;}
.y3_c00422{bottom:751.365000px;}
.y2_c00422{bottom:775.365000px;}
.h6_c00422{height:13.200074px;}
.h7_c00422{height:43.804688px;}
.h4_c00422{height:68.370117px;}
.h2_c00422{height:80.758301px;}
.h3_c00422{height:87.361816px;}
.h5_c00422{height:94.803223px;}
.h1_c00422{height:809.250000px;}
.h0_c00422{height:809.475000px;}
.w1_c00422{width:104.875500px;}
.w0_c00422{width:567.000000px;}
.x0_c00422{left:0.000000px;}
.x3_c00422{left:28.800000px;}
.x5_c00422{left:31.050000px;}
.x6_c00422{left:32.400000px;}
.xc_c00422{left:33.450000px;}
.xa_c00422{left:35.400000px;}
.xd_c00422{left:37.350000px;}
.xb_c00422{left:43.950000px;}
.x7_c00422{left:49.050000px;}
.x4_c00422{left:55.050000px;}
.x9_c00422{left:58.800000px;}
.x8_c00422{left:130.050000px;}
.x2_c00422{left:179.250000px;}
.xe_c00422{left:235.314240px;}
.x1_c00422{left:513.000000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls2_c00422{letter-spacing:2.666667pt;}
.ls3_c00422{letter-spacing:8.000000pt;}
.ls0_c00422{letter-spacing:12.053333pt;}
.ws3_c00422{word-spacing:-22.781333pt;}
.ws1_c00422{word-spacing:-14.781333pt;}
.ws2_c00422{word-spacing:-11.568000pt;}
.ws0_c00422{word-spacing:-0.429333pt;}
.ws4_c00422{word-spacing:0.000000pt;}
._2c_c00422{margin-left:-18.032000pt;}
._2e_c00422{margin-left:-16.437333pt;}
._19_c00422{margin-left:-15.437333pt;}
._11_c00422{margin-left:-14.536000pt;}
._2a_c00422{margin-left:-13.309333pt;}
._12_c00422{margin-left:-12.389333pt;}
._27_c00422{margin-left:-10.672000pt;}
._1c_c00422{margin-left:-9.445333pt;}
._14_c00422{margin-left:-8.525333pt;}
._5_c00422{margin-left:-6.562667pt;}
._1b_c00422{margin-left:-5.520000pt;}
._6_c00422{margin-left:-4.416000pt;}
._2_c00422{margin-left:-2.760000pt;}
._9_c00422{margin-left:-0.981333pt;}
._a_c00422{width:1.104000pt;}
._d_c00422{width:2.085333pt;}
._0_c00422{width:3.005333pt;}
._4_c00422{width:4.784000pt;}
._13_c00422{width:5.704000pt;}
._3_c00422{width:6.624000pt;}
._8_c00422{width:7.728000pt;}
._16_c00422{width:9.016000pt;}
._1_c00422{width:10.733333pt;}
._b_c00422{width:12.538667pt;}
._e_c00422{width:13.773333pt;}
._f_c00422{width:15.549333pt;}
._1e_c00422{width:17.581333pt;}
._20_c00422{width:18.968000pt;}
._15_c00422{width:20.362667pt;}
._1f_c00422{width:22.226667pt;}
._23_c00422{width:23.930667pt;}
._2d_c00422{width:25.760000pt;}
._18_c00422{width:27.256000pt;}
._21_c00422{width:29.928000pt;}
._10_c00422{width:33.058667pt;}
._22_c00422{width:36.072000pt;}
._25_c00422{width:54.640000pt;}
._c_c00422{width:77.893333pt;}
._26_c00422{width:79.861333pt;}
._1a_c00422{width:88.968000pt;}
._28_c00422{width:128.984000pt;}
._2b_c00422{width:143.994667pt;}
._1d_c00422{width:145.544000pt;}
._24_c00422{width:151.554667pt;}
._29_c00422{width:179.853333pt;}
._17_c00422{width:210.746667pt;}
._7_c00422{width:434.106667pt;}
._2f_c00422{width:1457.525333pt;}
.fs4_c00422{font-size:42.666667pt;}
.fs1_c00422{font-size:48.000000pt;}
.fs3_c00422{font-size:50.666667pt;}
.fs0_c00422{font-size:61.333333pt;}
.fs2_c00422{font-size:72.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y20_c00422{bottom:2.760000pt;}
.y1f_c00422{bottom:6.425219pt;}
.y1e_c00422{bottom:42.680000pt;}
.y1d_c00422{bottom:66.280000pt;}
.y1c_c00422{bottom:89.080000pt;}
.y1b_c00422{bottom:110.413333pt;}
.y1a_c00422{bottom:133.480000pt;}
.y19_c00422{bottom:155.480000pt;}
.y18_c00422{bottom:178.013333pt;}
.y17_c00422{bottom:199.613333pt;}
.y16_c00422{bottom:222.280000pt;}
.y15_c00422{bottom:244.813333pt;}
.y14_c00422{bottom:288.680000pt;}
.y13_c00422{bottom:322.280000pt;}
.y12_c00422{bottom:338.413333pt;}
.y11_c00422{bottom:355.613333pt;}
.y10_c00422{bottom:378.680000pt;}
.y1_c00422{bottom:385.880000pt;}
.yf_c00422{bottom:401.080000pt;}
.ye_c00422{bottom:422.813333pt;}
.yd_c00422{bottom:444.946667pt;}
.yc_c00422{bottom:467.080000pt;}
.yb_c00422{bottom:489.080000pt;}
.ya_c00422{bottom:511.613333pt;}
.y9_c00422{bottom:534.013333pt;}
.y8_c00422{bottom:556.546667pt;}
.y7_c00422{bottom:578.680000pt;}
.y6_c00422{bottom:600.680000pt;}
.y5_c00422{bottom:623.480000pt;}
.y4_c00422{bottom:645.346667pt;}
.y3_c00422{bottom:667.880000pt;}
.y2_c00422{bottom:689.213333pt;}
.h6_c00422{height:11.733399pt;}
.h7_c00422{height:38.937500pt;}
.h4_c00422{height:60.773438pt;}
.h2_c00422{height:71.785156pt;}
.h3_c00422{height:77.654948pt;}
.h5_c00422{height:84.269531pt;}
.h1_c00422{height:719.333333pt;}
.h0_c00422{height:719.533333pt;}
.w1_c00422{width:93.222667pt;}
.w0_c00422{width:504.000000pt;}
.x0_c00422{left:0.000000pt;}
.x3_c00422{left:25.600000pt;}
.x5_c00422{left:27.600000pt;}
.x6_c00422{left:28.800000pt;}
.xc_c00422{left:29.733333pt;}
.xa_c00422{left:31.466667pt;}
.xd_c00422{left:33.200000pt;}
.xb_c00422{left:39.066667pt;}
.x7_c00422{left:43.600000pt;}
.x4_c00422{left:48.933333pt;}
.x9_c00422{left:52.266667pt;}
.x8_c00422{left:115.600000pt;}
.x2_c00422{left:159.333333pt;}
.xe_c00422{left:209.168213pt;}
.x1_c00422{left:456.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_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_d321a11dd0ed24d717d1614a.woff2')format("woff");}.ff1_c00423{font-family:ff1_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:ff2_c00423;src:url('chunks/assets/font_3b4400aef7d09f855278f1b9.woff2')format("woff");}.ff2_c00423{font-family:ff2_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:ff3_c00423;src:url('chunks/assets/font_c97f62a8a992b5103a510a73.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_e64a17c9ce121d241367a452.woff2')format("woff");}.ff4_c00423{font-family:ff4_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:ff5_c00423;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00423{font-family:ff5_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;}
.ls3_c00423{letter-spacing:0.000000px;}
.ls2_c00423{letter-spacing:3.000000px;}
.ls5_c00423{letter-spacing:9.000000px;}
.ls1_c00423{letter-spacing:14.400000px;}
.ls4_c00423{letter-spacing:21.000000px;}
.ls0_c00423{letter-spacing:26.400000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-37.629000px;}
.ws1_c00423{word-spacing:-25.629000px;}
.ws2_c00423{word-spacing:-16.629000px;}
.ws3_c00423{word-spacing:0.000000px;}
._6_c00423{margin-left:-16.629000px;}
._28_c00423{margin-left:-15.249000px;}
._24_c00423{margin-left:-13.869000px;}
._15_c00423{margin-left:-12.765000px;}
._14_c00423{margin-left:-11.523000px;}
._16_c00423{margin-left:-8.694000px;}
._c_c00423{margin-left:-6.693000px;}
._5_c00423{margin-left:-4.830000px;}
._3_c00423{margin-left:-3.381000px;}
._4_c00423{margin-left:-2.346000px;}
._9_c00423{margin-left:-1.035000px;}
._f_c00423{width:1.518000px;}
._a_c00423{width:2.622000px;}
._7_c00423{width:3.864000px;}
._8_c00423{width:4.968000px;}
._e_c00423{width:6.900000px;}
._1a_c00423{width:7.935000px;}
._1_c00423{width:9.315000px;}
._1c_c00423{width:10.626000px;}
._0_c00423{width:12.006000px;}
._b_c00423{width:13.800000px;}
._11_c00423{width:15.318000px;}
._19_c00423{width:16.905000px;}
._1f_c00423{width:18.285000px;}
._1d_c00423{width:20.976000px;}
._12_c00423{width:22.494000px;}
._10_c00423{width:23.655000px;}
._21_c00423{width:25.392000px;}
._25_c00423{width:27.600000px;}
._2c_c00423{width:34.017000px;}
._1b_c00423{width:44.859000px;}
._20_c00423{width:52.164000px;}
._d_c00423{width:66.138000px;}
._27_c00423{width:68.202000px;}
._26_c00423{width:85.077000px;}
._23_c00423{width:86.871000px;}
._18_c00423{width:87.975000px;}
._22_c00423{width:155.871000px;}
._17_c00423{width:160.425000px;}
._2a_c00423{width:209.760000px;}
._13_c00423{width:252.816000px;}
._2_c00423{width:405.804000px;}
._1e_c00423{width:489.348000px;}
._29_c00423{width:966.072000px;}
._2b_c00423{width:1523.106000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(128,128,128);}
.fc0_c00423{color:rgb(0,0,0);}
.fs2_c00423{font-size:48.000000px;}
.fs1_c00423{font-size:66.000000px;}
.fs0_c00423{font-size:69.000000px;}
.y0_c00423{bottom:0.000000px;}
.y20_c00423{bottom:3.105000px;}
.y1f_c00423{bottom:7.228363px;}
.y1e_c00423{bottom:65.400000px;}
.y1d_c00423{bottom:89.700000px;}
.y1c_c00423{bottom:115.650000px;}
.y1b_c00423{bottom:140.700000px;}
.y1a_c00423{bottom:165.600000px;}
.y19_c00423{bottom:191.400000px;}
.y18_c00423{bottom:216.600000px;}
.y17_c00423{bottom:241.950000px;}
.y16_c00423{bottom:267.600000px;}
.y15_c00423{bottom:291.600000px;}
.y14_c00423{bottom:317.250000px;}
.y13_c00423{bottom:341.250000px;}
.y12_c00423{bottom:365.850000px;}
.y11_c00423{bottom:391.200000px;}
.y10_c00423{bottom:416.100000px;}
.yf_c00423{bottom:441.150000px;}
.ye_c00423{bottom:466.800000px;}
.yd_c00423{bottom:491.100000px;}
.yc_c00423{bottom:516.750000px;}
.yb_c00423{bottom:541.800000px;}
.ya_c00423{bottom:567.000000px;}
.y9_c00423{bottom:591.600000px;}
.y8_c00423{bottom:617.250000px;}
.y7_c00423{bottom:642.000000px;}
.y6_c00423{bottom:667.650000px;}
.y5_c00423{bottom:692.850000px;}
.y4_c00423{bottom:716.550000px;}
.y3_c00423{bottom:742.800000px;}
.y2_c00423{bottom:767.700000px;}
.y1_c00423{bottom:792.450000px;}
.h4_c00423{height:13.200074px;}
.h5_c00423{height:43.804688px;}
.h3_c00423{height:80.758301px;}
.h2_c00423{height:87.361816px;}
.h1_c00423{height:827.250000px;}
.h0_c00423{height:827.550000px;}
.w2_c00423{width:104.875500px;}
.w0_c00423{width:572.100000px;}
.w1_c00423{width:572.250000px;}
.x0_c00423{left:0.000000px;}
.xb_c00423{left:31.950000px;}
.x3_c00423{left:34.500000px;}
.x4_c00423{left:36.150000px;}
.x9_c00423{left:43.800000px;}
.xd_c00423{left:72.450000px;}
.xe_c00423{left:90.150000px;}
.xa_c00423{left:96.900000px;}
.x6_c00423{left:98.550000px;}
.x5_c00423{left:99.900000px;}
.x1_c00423{left:111.300000px;}
.xc_c00423{left:120.750000px;}
.x8_c00423{left:122.100000px;}
.x2_c00423{left:150.900000px;}
.x7_c00423{left:166.050000px;}
.xf_c00423{left:237.864258px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls3_c00423{letter-spacing:0.000000pt;}
.ls2_c00423{letter-spacing:2.666667pt;}
.ls5_c00423{letter-spacing:8.000000pt;}
.ls1_c00423{letter-spacing:12.800000pt;}
.ls4_c00423{letter-spacing:18.666667pt;}
.ls0_c00423{letter-spacing:23.466667pt;}
.ws0_c00423{word-spacing:-33.448000pt;}
.ws1_c00423{word-spacing:-22.781333pt;}
.ws2_c00423{word-spacing:-14.781333pt;}
.ws3_c00423{word-spacing:0.000000pt;}
._6_c00423{margin-left:-14.781333pt;}
._28_c00423{margin-left:-13.554667pt;}
._24_c00423{margin-left:-12.328000pt;}
._15_c00423{margin-left:-11.346667pt;}
._14_c00423{margin-left:-10.242667pt;}
._16_c00423{margin-left:-7.728000pt;}
._c_c00423{margin-left:-5.949333pt;}
._5_c00423{margin-left:-4.293333pt;}
._3_c00423{margin-left:-3.005333pt;}
._4_c00423{margin-left:-2.085333pt;}
._9_c00423{margin-left:-0.920000pt;}
._f_c00423{width:1.349333pt;}
._a_c00423{width:2.330667pt;}
._7_c00423{width:3.434667pt;}
._8_c00423{width:4.416000pt;}
._e_c00423{width:6.133333pt;}
._1a_c00423{width:7.053333pt;}
._1_c00423{width:8.280000pt;}
._1c_c00423{width:9.445333pt;}
._0_c00423{width:10.672000pt;}
._b_c00423{width:12.266667pt;}
._11_c00423{width:13.616000pt;}
._19_c00423{width:15.026667pt;}
._1f_c00423{width:16.253333pt;}
._1d_c00423{width:18.645333pt;}
._12_c00423{width:19.994667pt;}
._10_c00423{width:21.026667pt;}
._21_c00423{width:22.570667pt;}
._25_c00423{width:24.533333pt;}
._2c_c00423{width:30.237333pt;}
._1b_c00423{width:39.874667pt;}
._20_c00423{width:46.368000pt;}
._d_c00423{width:58.789333pt;}
._27_c00423{width:60.624000pt;}
._26_c00423{width:75.624000pt;}
._23_c00423{width:77.218667pt;}
._18_c00423{width:78.200000pt;}
._22_c00423{width:138.552000pt;}
._17_c00423{width:142.600000pt;}
._2a_c00423{width:186.453333pt;}
._13_c00423{width:224.725333pt;}
._2_c00423{width:360.714667pt;}
._1e_c00423{width:434.976000pt;}
._29_c00423{width:858.730667pt;}
._2b_c00423{width:1353.872000pt;}
.fs2_c00423{font-size:42.666667pt;}
.fs1_c00423{font-size:58.666667pt;}
.fs0_c00423{font-size:61.333333pt;}
.y0_c00423{bottom:0.000000pt;}
.y20_c00423{bottom:2.760000pt;}
.y1f_c00423{bottom:6.425212pt;}
.y1e_c00423{bottom:58.133333pt;}
.y1d_c00423{bottom:79.733333pt;}
.y1c_c00423{bottom:102.800000pt;}
.y1b_c00423{bottom:125.066667pt;}
.y1a_c00423{bottom:147.200000pt;}
.y19_c00423{bottom:170.133333pt;}
.y18_c00423{bottom:192.533333pt;}
.y17_c00423{bottom:215.066667pt;}
.y16_c00423{bottom:237.866667pt;}
.y15_c00423{bottom:259.200000pt;}
.y14_c00423{bottom:282.000000pt;}
.y13_c00423{bottom:303.333333pt;}
.y12_c00423{bottom:325.200000pt;}
.y11_c00423{bottom:347.733333pt;}
.y10_c00423{bottom:369.866667pt;}
.yf_c00423{bottom:392.133333pt;}
.ye_c00423{bottom:414.933333pt;}
.yd_c00423{bottom:436.533333pt;}
.yc_c00423{bottom:459.333333pt;}
.yb_c00423{bottom:481.600000pt;}
.ya_c00423{bottom:504.000000pt;}
.y9_c00423{bottom:525.866667pt;}
.y8_c00423{bottom:548.666667pt;}
.y7_c00423{bottom:570.666667pt;}
.y6_c00423{bottom:593.466667pt;}
.y5_c00423{bottom:615.866667pt;}
.y4_c00423{bottom:636.933333pt;}
.y3_c00423{bottom:660.266667pt;}
.y2_c00423{bottom:682.400000pt;}
.y1_c00423{bottom:704.400000pt;}
.h4_c00423{height:11.733399pt;}
.h5_c00423{height:38.937500pt;}
.h3_c00423{height:71.785156pt;}
.h2_c00423{height:77.654948pt;}
.h1_c00423{height:735.333333pt;}
.h0_c00423{height:735.600000pt;}
.w2_c00423{width:93.222667pt;}
.w0_c00423{width:508.533333pt;}
.w1_c00423{width:508.666667pt;}
.x0_c00423{left:0.000000pt;}
.xb_c00423{left:28.400000pt;}
.x3_c00423{left:30.666667pt;}
.x4_c00423{left:32.133333pt;}
.x9_c00423{left:38.933333pt;}
.xd_c00423{left:64.400000pt;}
.xe_c00423{left:80.133333pt;}
.xa_c00423{left:86.133333pt;}
.x6_c00423{left:87.600000pt;}
.x5_c00423{left:88.800000pt;}
.x1_c00423{left:98.933333pt;}
.xc_c00423{left:107.333333pt;}
.x8_c00423{left:108.533333pt;}
.x2_c00423{left:134.133333pt;}
.x7_c00423{left:147.600000pt;}
.xf_c00423{left:211.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_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_9dd5600f9d3f43da218df17f.woff2')format("woff");}.ff1_c00424{font-family:ff1_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:ff2_c00424;src:url('chunks/assets/font_d26ebef44a535d3b06995996.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.568848;font-style:normal;font-weight:normal;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_8f88ba3cf5a73414203f0eb8.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;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_c00424;src:url('chunks/assets/font_98564b265e29194a3643aac3.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_8686872cf05dc9c65af49c46.woff2')format("woff");}.ff5_c00424{font-family:ff5_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:ff6_c00424;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00424{font-family:ff6_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);}
.v1_c00424{vertical-align:-94.800000px;}
.v0_c00424{vertical-align:0.000000px;}
.ls5_c00424{letter-spacing:0.000000px;}
.ls6_c00424{letter-spacing:3.000000px;}
.ls4_c00424{letter-spacing:5.829000px;}
.ls2_c00424{letter-spacing:6.000000px;}
.ls0_c00424{letter-spacing:7.485000px;}
.ls1_c00424{letter-spacing:11.464800px;}
.ls3_c00424{letter-spacing:17.925000px;}
.ls7_c00424{letter-spacing:21.000000px;}
.ls8_c00424{letter-spacing:36.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;}
}
.ws4_c00424{word-spacing:-52.629000px;}
.ws0_c00424{word-spacing:-37.629000px;}
.ws2_c00424{word-spacing:-19.629000px;}
.ws1_c00424{word-spacing:-16.629000px;}
.ws3_c00424{word-spacing:-5.532000px;}
.ws5_c00424{word-spacing:0.000000px;}
._14_c00424{margin-left:-19.527000px;}
._28_c00424{margin-left:-17.559000px;}
._12_c00424{margin-left:-16.026000px;}
._11_c00424{margin-left:-13.524000px;}
._2d_c00424{margin-left:-11.454000px;}
._a_c00424{margin-left:-9.867000px;}
._13_c00424{margin-left:-7.659000px;}
._b_c00424{margin-left:-5.832000px;}
._0_c00424{margin-left:-4.692000px;}
._1_c00424{margin-left:-2.829000px;}
._3_c00424{margin-left:-1.311000px;}
._6_c00424{width:1.932000px;}
._8_c00424{width:3.174000px;}
._5_c00424{width:4.830000px;}
._7_c00424{width:6.693000px;}
._2_c00424{width:8.004000px;}
._10_c00424{width:9.591000px;}
._22_c00424{width:10.626000px;}
._d_c00424{width:11.730000px;}
._e_c00424{width:13.035000px;}
._16_c00424{width:14.490000px;}
._1f_c00424{width:15.594000px;}
._15_c00424{width:16.974000px;}
._17_c00424{width:18.492000px;}
._1b_c00424{width:21.252000px;}
._9_c00424{width:23.184000px;}
._18_c00424{width:24.633000px;}
._19_c00424{width:27.255000px;}
._1d_c00424{width:29.256000px;}
._1c_c00424{width:30.258000px;}
._20_c00424{width:32.394000px;}
._24_c00424{width:35.190000px;}
._23_c00424{width:42.435000px;}
._2e_c00424{width:49.404000px;}
._29_c00424{width:56.301000px;}
._21_c00424{width:60.312000px;}
._25_c00424{width:71.553000px;}
._f_c00424{width:77.556000px;}
._2b_c00424{width:87.768000px;}
._1e_c00424{width:95.469000px;}
._2a_c00424{width:109.614000px;}
._27_c00424{width:139.104000px;}
._2c_c00424{width:147.936000px;}
._c_c00424{width:149.352000px;}
._1a_c00424{width:228.564000px;}
._4_c00424{width:488.112000px;}
._26_c00424{width:1020.891000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(128,128,128);}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:24.000000px;}
.fs4_c00424{font-size:31.200000px;}
.fs3_c00424{font-size:39.000000px;}
.fs5_c00424{font-size:45.000000px;}
.fs6_c00424{font-size:48.000000px;}
.fs2_c00424{font-size:54.000000px;}
.fs0_c00424{font-size:69.000000px;}
.y0_c00424{bottom:0.000000px;}
.y1e_c00424{bottom:3.105000px;}
.y1d_c00424{bottom:7.228371px;}
.y1c_c00424{bottom:83.115000px;}
.y1b_c00424{bottom:109.065000px;}
.y1a_c00424{bottom:133.965000px;}
.y19_c00424{bottom:159.315000px;}
.y18_c00424{bottom:184.365000px;}
.y17_c00424{bottom:209.565000px;}
.y16_c00424{bottom:234.915000px;}
.y15_c00424{bottom:259.215000px;}
.y14_c00424{bottom:287.265000px;}
.y13_c00424{bottom:309.915000px;}
.y12_c00424{bottom:335.115000px;}
.y11_c00424{bottom:359.865000px;}
.y10_c00424{bottom:385.065000px;}
.yf_c00424{bottom:410.415000px;}
.ye_c00424{bottom:435.465000px;}
.yd_c00424{bottom:460.065000px;}
.yc_c00424{bottom:485.715000px;}
.yb_c00424{bottom:510.315000px;}
.ya_c00424{bottom:535.965000px;}
.y9_c00424{bottom:560.265000px;}
.y8_c00424{bottom:585.615000px;}
.y7_c00424{bottom:610.215000px;}
.y6_c00424{bottom:635.565000px;}
.y5_c00424{bottom:685.215000px;}
.y4_c00424{bottom:719.265000px;}
.y3_c00424{bottom:735.465000px;}
.y2_c00424{bottom:760.365000px;}
.y1_c00424{bottom:786.015000px;}
.h5_c00424{height:13.200074px;}
.h6_c00424{height:43.804688px;}
.h3_c00424{height:68.370117px;}
.h4_c00424{height:80.758301px;}
.h2_c00424{height:87.361816px;}
.h1_c00424{height:831.000000px;}
.h0_c00424{height:831.075000px;}
.w2_c00424{width:104.875500px;}
.w0_c00424{width:582.375000px;}
.w1_c00424{width:582.750000px;}
.x0_c00424{left:0.000000px;}
.x6_c00424{left:34.800000px;}
.x2_c00424{left:36.450000px;}
.x8_c00424{left:38.100000px;}
.xd_c00424{left:39.450000px;}
.xc_c00424{left:41.400000px;}
.xa_c00424{left:45.900000px;}
.x5_c00424{left:61.050000px;}
.x7_c00424{left:62.100000px;}
.xb_c00424{left:65.700000px;}
.x9_c00424{left:121.050000px;}
.x4_c00424{left:138.300000px;}
.x1_c00424{left:186.600000px;}
.xe_c00424{left:243.001740px;}
.x3_c00424{left:472.050000px;}
@media print{
.v1_c00424{vertical-align:-84.266667pt;}
.v0_c00424{vertical-align:0.000000pt;}
.ls5_c00424{letter-spacing:0.000000pt;}
.ls6_c00424{letter-spacing:2.666667pt;}
.ls4_c00424{letter-spacing:5.181333pt;}
.ls2_c00424{letter-spacing:5.333333pt;}
.ls0_c00424{letter-spacing:6.653333pt;}
.ls1_c00424{letter-spacing:10.190933pt;}
.ls3_c00424{letter-spacing:15.933333pt;}
.ls7_c00424{letter-spacing:18.666667pt;}
.ls8_c00424{letter-spacing:32.000000pt;}
.ws4_c00424{word-spacing:-46.781333pt;}
.ws0_c00424{word-spacing:-33.448000pt;}
.ws2_c00424{word-spacing:-17.448000pt;}
.ws1_c00424{word-spacing:-14.781333pt;}
.ws3_c00424{word-spacing:-4.917333pt;}
.ws5_c00424{word-spacing:0.000000pt;}
._14_c00424{margin-left:-17.357333pt;}
._28_c00424{margin-left:-15.608000pt;}
._12_c00424{margin-left:-14.245333pt;}
._11_c00424{margin-left:-12.021333pt;}
._2d_c00424{margin-left:-10.181333pt;}
._a_c00424{margin-left:-8.770667pt;}
._13_c00424{margin-left:-6.808000pt;}
._b_c00424{margin-left:-5.184000pt;}
._0_c00424{margin-left:-4.170667pt;}
._1_c00424{margin-left:-2.514667pt;}
._3_c00424{margin-left:-1.165333pt;}
._6_c00424{width:1.717333pt;}
._8_c00424{width:2.821333pt;}
._5_c00424{width:4.293333pt;}
._7_c00424{width:5.949333pt;}
._2_c00424{width:7.114667pt;}
._10_c00424{width:8.525333pt;}
._22_c00424{width:9.445333pt;}
._d_c00424{width:10.426667pt;}
._e_c00424{width:11.586667pt;}
._16_c00424{width:12.880000pt;}
._1f_c00424{width:13.861333pt;}
._15_c00424{width:15.088000pt;}
._17_c00424{width:16.437333pt;}
._1b_c00424{width:18.890667pt;}
._9_c00424{width:20.608000pt;}
._18_c00424{width:21.896000pt;}
._19_c00424{width:24.226667pt;}
._1d_c00424{width:26.005333pt;}
._1c_c00424{width:26.896000pt;}
._20_c00424{width:28.794667pt;}
._24_c00424{width:31.280000pt;}
._23_c00424{width:37.720000pt;}
._2e_c00424{width:43.914667pt;}
._29_c00424{width:50.045333pt;}
._21_c00424{width:53.610667pt;}
._25_c00424{width:63.602667pt;}
._f_c00424{width:68.938667pt;}
._2b_c00424{width:78.016000pt;}
._1e_c00424{width:84.861333pt;}
._2a_c00424{width:97.434667pt;}
._27_c00424{width:123.648000pt;}
._2c_c00424{width:131.498667pt;}
._c_c00424{width:132.757333pt;}
._1a_c00424{width:203.168000pt;}
._4_c00424{width:433.877333pt;}
._26_c00424{width:907.458667pt;}
.fs1_c00424{font-size:21.333333pt;}
.fs4_c00424{font-size:27.733333pt;}
.fs3_c00424{font-size:34.666667pt;}
.fs5_c00424{font-size:40.000000pt;}
.fs6_c00424{font-size:42.666667pt;}
.fs2_c00424{font-size:48.000000pt;}
.fs0_c00424{font-size:61.333333pt;}
.y0_c00424{bottom:0.000000pt;}
.y1e_c00424{bottom:2.760000pt;}
.y1d_c00424{bottom:6.425219pt;}
.y1c_c00424{bottom:73.880000pt;}
.y1b_c00424{bottom:96.946667pt;}
.y1a_c00424{bottom:119.080000pt;}
.y19_c00424{bottom:141.613333pt;}
.y18_c00424{bottom:163.880000pt;}
.y17_c00424{bottom:186.280000pt;}
.y16_c00424{bottom:208.813333pt;}
.y15_c00424{bottom:230.413333pt;}
.y14_c00424{bottom:255.346667pt;}
.y13_c00424{bottom:275.480000pt;}
.y12_c00424{bottom:297.880000pt;}
.y11_c00424{bottom:319.880000pt;}
.y10_c00424{bottom:342.280000pt;}
.yf_c00424{bottom:364.813333pt;}
.ye_c00424{bottom:387.080000pt;}
.yd_c00424{bottom:408.946667pt;}
.yc_c00424{bottom:431.746667pt;}
.yb_c00424{bottom:453.613333pt;}
.ya_c00424{bottom:476.413333pt;}
.y9_c00424{bottom:498.013333pt;}
.y8_c00424{bottom:520.546667pt;}
.y7_c00424{bottom:542.413333pt;}
.y6_c00424{bottom:564.946667pt;}
.y5_c00424{bottom:609.080000pt;}
.y4_c00424{bottom:639.346667pt;}
.y3_c00424{bottom:653.746667pt;}
.y2_c00424{bottom:675.880000pt;}
.y1_c00424{bottom:698.680000pt;}
.h5_c00424{height:11.733399pt;}
.h6_c00424{height:38.937500pt;}
.h3_c00424{height:60.773438pt;}
.h4_c00424{height:71.785156pt;}
.h2_c00424{height:77.654948pt;}
.h1_c00424{height:738.666667pt;}
.h0_c00424{height:738.733333pt;}
.w2_c00424{width:93.222667pt;}
.w0_c00424{width:517.666667pt;}
.w1_c00424{width:518.000000pt;}
.x0_c00424{left:0.000000pt;}
.x6_c00424{left:30.933333pt;}
.x2_c00424{left:32.400000pt;}
.x8_c00424{left:33.866667pt;}
.xd_c00424{left:35.066667pt;}
.xc_c00424{left:36.800000pt;}
.xa_c00424{left:40.800000pt;}
.x5_c00424{left:54.266667pt;}
.x7_c00424{left:55.200000pt;}
.xb_c00424{left:58.400000pt;}
.x9_c00424{left:107.600000pt;}
.x4_c00424{left:122.933333pt;}
.x1_c00424{left:165.866667pt;}
.xe_c00424{left:216.001546pt;}
.x3_c00424{left:419.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_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_c6c3427e45eec7948b489b42.woff2')format("woff");}.ff1_c00425{font-family:ff1_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:ff2_c00425;src:url('chunks/assets/font_68234d703dd94804120c202a.woff2')format("woff");}.ff2_c00425{font-family:ff2_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:ff3_c00425;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00425{font-family:ff4_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;}
.ls3_c00425{letter-spacing:0.000000px;}
.ls2_c00425{letter-spacing:3.000000px;}
.ls1_c00425{letter-spacing:3.600000px;}
.ls4_c00425{letter-spacing:9.000000px;}
.ls0_c00425{letter-spacing:188.571000px;}
.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;}
}
.ws1_c00425{word-spacing:-25.629000px;}
.ws0_c00425{word-spacing:-16.629000px;}
.ws2_c00425{word-spacing:0.000000px;}
._2e_c00425{margin-left:-34.431000px;}
._33_c00425{margin-left:-24.978000px;}
._2b_c00425{margin-left:-21.528000px;}
._27_c00425{margin-left:-18.285000px;}
._19_c00425{margin-left:-16.284000px;}
._1a_c00425{margin-left:-14.628000px;}
._12_c00425{margin-left:-13.317000px;}
._4_c00425{margin-left:-12.006000px;}
._1_c00425{margin-left:-10.143000px;}
._1c_c00425{margin-left:-8.466000px;}
._7_c00425{margin-left:-6.555000px;}
._13_c00425{margin-left:-5.067000px;}
._e_c00425{margin-left:-3.795000px;}
._6_c00425{margin-left:-2.208000px;}
._b_c00425{margin-left:-1.104000px;}
._2_c00425{width:1.035000px;}
._8_c00425{width:2.277000px;}
._f_c00425{width:3.933000px;}
._a_c00425{width:5.382000px;}
._11_c00425{width:7.314000px;}
._3_c00425{width:8.418000px;}
._1e_c00425{width:9.465000px;}
._c_c00425{width:10.626000px;}
._9_c00425{width:12.558000px;}
._22_c00425{width:13.731000px;}
._17_c00425{width:15.594000px;}
._18_c00425{width:17.961000px;}
._15_c00425{width:19.113000px;}
._d_c00425{width:20.286000px;}
._23_c00425{width:21.528000px;}
._0_c00425{width:23.115000px;}
._21_c00425{width:24.660000px;}
._28_c00425{width:28.089000px;}
._1b_c00425{width:34.362000px;}
._1f_c00425{width:38.778000px;}
._24_c00425{width:41.256000px;}
._36_c00425{width:45.252000px;}
._30_c00425{width:46.968000px;}
._35_c00425{width:49.656000px;}
._31_c00425{width:57.684000px;}
._32_c00425{width:58.788000px;}
._2c_c00425{width:70.782000px;}
._16_c00425{width:81.765000px;}
._14_c00425{width:83.283000px;}
._10_c00425{width:84.663000px;}
._25_c00425{width:92.133000px;}
._29_c00425{width:96.684000px;}
._20_c00425{width:100.047000px;}
._2d_c00425{width:154.476000px;}
._2a_c00425{width:159.024000px;}
._34_c00425{width:168.321000px;}
._26_c00425{width:234.432000px;}
._2f_c00425{width:252.471000px;}
._1d_c00425{width:421.245000px;}
._5_c00425{width:492.447000px;}
._37_c00425{width:1497.324000px;}
.fc2_c00425{color:transparent;}
.fc1_c00425{color:rgb(128,128,128);}
.fc0_c00425{color:rgb(0,0,0);}
.fs2_c00425{font-size:48.000000px;}
.fs1_c00425{font-size:66.000000px;}
.fs0_c00425{font-size:69.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1f_c00425{bottom:3.105000px;}
.y1e_c00425{bottom:7.228363px;}
.y1d_c00425{bottom:55.650000px;}
.y1c_c00425{bottom:79.050000px;}
.y1b_c00425{bottom:104.700000px;}
.y1a_c00425{bottom:130.050000px;}
.y19_c00425{bottom:155.550000px;}
.y17_c00425{bottom:204.900000px;}
.y16_c00425{bottom:256.500000px;}
.y15_c00425{bottom:281.250000px;}
.y14_c00425{bottom:306.450000px;}
.y13_c00425{bottom:331.200000px;}
.y18_c00425{bottom:339.300000px;}
.y12_c00425{bottom:356.100000px;}
.y11_c00425{bottom:381.750000px;}
.y10_c00425{bottom:406.050000px;}
.yf_c00425{bottom:431.700000px;}
.ye_c00425{bottom:456.000000px;}
.yd_c00425{bottom:481.950000px;}
.yc_c00425{bottom:506.700000px;}
.yb_c00425{bottom:531.600000px;}
.ya_c00425{bottom:557.250000px;}
.y9_c00425{bottom:582.900000px;}
.y8_c00425{bottom:607.200000px;}
.y7_c00425{bottom:632.850000px;}
.y6_c00425{bottom:657.750000px;}
.y5_c00425{bottom:682.200000px;}
.y4_c00425{bottom:708.150000px;}
.y3_c00425{bottom:733.350000px;}
.y2_c00425{bottom:758.700000px;}
.y1_c00425{bottom:784.050000px;}
.h5_c00425{height:13.200074px;}
.h6_c00425{height:43.804688px;}
.h3_c00425{height:80.758301px;}
.h2_c00425{height:87.361816px;}
.h4_c00425{height:87.961816px;}
.h1_c00425{height:827.250000px;}
.h0_c00425{height:827.550000px;}
.w2_c00425{width:104.875500px;}
.w0_c00425{width:572.100000px;}
.w1_c00425{width:572.250000px;}
.x0_c00425{left:0.000000px;}
.x9_c00425{left:33.300000px;}
.x6_c00425{left:34.350000px;}
.x8_c00425{left:49.500000px;}
.x4_c00425{left:51.000000px;}
.xd_c00425{left:64.350000px;}
.x5_c00425{left:75.600000px;}
.xa_c00425{left:79.650000px;}
.xf_c00425{left:92.700000px;}
.xe_c00425{left:96.450000px;}
.x3_c00425{left:98.550000px;}
.x7_c00425{left:99.600000px;}
.xb_c00425{left:101.250000px;}
.x1_c00425{left:110.100000px;}
.x2_c00425{left:135.900000px;}
.xc_c00425{left:156.600000px;}
.x10_c00425{left:237.864258px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls3_c00425{letter-spacing:0.000000pt;}
.ls2_c00425{letter-spacing:2.666667pt;}
.ls1_c00425{letter-spacing:3.200000pt;}
.ls4_c00425{letter-spacing:8.000000pt;}
.ls0_c00425{letter-spacing:167.618667pt;}
.ws1_c00425{word-spacing:-22.781333pt;}
.ws0_c00425{word-spacing:-14.781333pt;}
.ws2_c00425{word-spacing:0.000000pt;}
._2e_c00425{margin-left:-30.605333pt;}
._33_c00425{margin-left:-22.202667pt;}
._2b_c00425{margin-left:-19.136000pt;}
._27_c00425{margin-left:-16.253333pt;}
._19_c00425{margin-left:-14.474667pt;}
._1a_c00425{margin-left:-13.002667pt;}
._12_c00425{margin-left:-11.837333pt;}
._4_c00425{margin-left:-10.672000pt;}
._1_c00425{margin-left:-9.016000pt;}
._1c_c00425{margin-left:-7.525333pt;}
._7_c00425{margin-left:-5.826667pt;}
._13_c00425{margin-left:-4.504000pt;}
._e_c00425{margin-left:-3.373333pt;}
._6_c00425{margin-left:-1.962667pt;}
._b_c00425{margin-left:-0.981333pt;}
._2_c00425{width:0.920000pt;}
._8_c00425{width:2.024000pt;}
._f_c00425{width:3.496000pt;}
._a_c00425{width:4.784000pt;}
._11_c00425{width:6.501333pt;}
._3_c00425{width:7.482667pt;}
._1e_c00425{width:8.413333pt;}
._c_c00425{width:9.445333pt;}
._9_c00425{width:11.162667pt;}
._22_c00425{width:12.205333pt;}
._17_c00425{width:13.861333pt;}
._18_c00425{width:15.965333pt;}
._15_c00425{width:16.989333pt;}
._d_c00425{width:18.032000pt;}
._23_c00425{width:19.136000pt;}
._0_c00425{width:20.546667pt;}
._21_c00425{width:21.920000pt;}
._28_c00425{width:24.968000pt;}
._1b_c00425{width:30.544000pt;}
._1f_c00425{width:34.469333pt;}
._24_c00425{width:36.672000pt;}
._36_c00425{width:40.224000pt;}
._30_c00425{width:41.749333pt;}
._35_c00425{width:44.138667pt;}
._31_c00425{width:51.274667pt;}
._32_c00425{width:52.256000pt;}
._2c_c00425{width:62.917333pt;}
._16_c00425{width:72.680000pt;}
._14_c00425{width:74.029333pt;}
._10_c00425{width:75.256000pt;}
._25_c00425{width:81.896000pt;}
._29_c00425{width:85.941333pt;}
._20_c00425{width:88.930667pt;}
._2d_c00425{width:137.312000pt;}
._2a_c00425{width:141.354667pt;}
._34_c00425{width:149.618667pt;}
._26_c00425{width:208.384000pt;}
._2f_c00425{width:224.418667pt;}
._1d_c00425{width:374.440000pt;}
._5_c00425{width:437.730667pt;}
._37_c00425{width:1330.954667pt;}
.fs2_c00425{font-size:42.666667pt;}
.fs1_c00425{font-size:58.666667pt;}
.fs0_c00425{font-size:61.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y1f_c00425{bottom:2.760000pt;}
.y1e_c00425{bottom:6.425212pt;}
.y1d_c00425{bottom:49.466667pt;}
.y1c_c00425{bottom:70.266667pt;}
.y1b_c00425{bottom:93.066667pt;}
.y1a_c00425{bottom:115.600000pt;}
.y19_c00425{bottom:138.266667pt;}
.y17_c00425{bottom:182.133333pt;}
.y16_c00425{bottom:228.000000pt;}
.y15_c00425{bottom:250.000000pt;}
.y14_c00425{bottom:272.400000pt;}
.y13_c00425{bottom:294.400000pt;}
.y18_c00425{bottom:301.600000pt;}
.y12_c00425{bottom:316.533333pt;}
.y11_c00425{bottom:339.333333pt;}
.y10_c00425{bottom:360.933333pt;}
.yf_c00425{bottom:383.733333pt;}
.ye_c00425{bottom:405.333333pt;}
.yd_c00425{bottom:428.400000pt;}
.yc_c00425{bottom:450.400000pt;}
.yb_c00425{bottom:472.533333pt;}
.ya_c00425{bottom:495.333333pt;}
.y9_c00425{bottom:518.133333pt;}
.y8_c00425{bottom:539.733333pt;}
.y7_c00425{bottom:562.533333pt;}
.y6_c00425{bottom:584.666667pt;}
.y5_c00425{bottom:606.400000pt;}
.y4_c00425{bottom:629.466667pt;}
.y3_c00425{bottom:651.866667pt;}
.y2_c00425{bottom:674.400000pt;}
.y1_c00425{bottom:696.933333pt;}
.h5_c00425{height:11.733399pt;}
.h6_c00425{height:38.937500pt;}
.h3_c00425{height:71.785156pt;}
.h2_c00425{height:77.654948pt;}
.h4_c00425{height:78.188281pt;}
.h1_c00425{height:735.333333pt;}
.h0_c00425{height:735.600000pt;}
.w2_c00425{width:93.222667pt;}
.w0_c00425{width:508.533333pt;}
.w1_c00425{width:508.666667pt;}
.x0_c00425{left:0.000000pt;}
.x9_c00425{left:29.600000pt;}
.x6_c00425{left:30.533333pt;}
.x8_c00425{left:44.000000pt;}
.x4_c00425{left:45.333333pt;}
.xd_c00425{left:57.200000pt;}
.x5_c00425{left:67.200000pt;}
.xa_c00425{left:70.800000pt;}
.xf_c00425{left:82.400000pt;}
.xe_c00425{left:85.733333pt;}
.x3_c00425{left:87.600000pt;}
.x7_c00425{left:88.533333pt;}
.xb_c00425{left:90.000000pt;}
.x1_c00425{left:97.866667pt;}
.x2_c00425{left:120.800000pt;}
.xc_c00425{left:139.200000pt;}
.x10_c00425{left:211.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_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_a899ff0217c3a05ea7feefa1.woff2')format("woff");}.ff1_c00426{font-family:ff1_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:ff2_c00426;src:url('chunks/assets/font_a665f566fd2183ea923ec386.woff2')format("woff");}.ff2_c00426{font-family:ff2_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:ff3_c00426;src:url('chunks/assets/font_f389b5d05d432055b97a145b.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_d183b7788ccc8b7ab60aace9.woff2')format("woff");}.ff4_c00426{font-family:ff4_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:ff5_c00426;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00426{font-family:ff5_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;}
.lsa_c00426{letter-spacing:0.000000px;}
.ls9_c00426{letter-spacing:3.000000px;}
.ls6_c00426{letter-spacing:4.800000px;}
.ls2_c00426{letter-spacing:7.032000px;}
.lsb_c00426{letter-spacing:9.000000px;}
.ls5_c00426{letter-spacing:13.800000px;}
.ls3_c00426{letter-spacing:15.600000px;}
.ls8_c00426{letter-spacing:22.800000px;}
.ls1_c00426{letter-spacing:30.600000px;}
.ls4_c00426{letter-spacing:33.000000px;}
.ls7_c00426{letter-spacing:35.571000px;}
.ls0_c00426{letter-spacing:426.171000px;}
.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:-25.629000px;}
.ws0_c00426{word-spacing:-16.629000px;}
.ws2_c00426{word-spacing:0.000000px;}
._26_c00426{margin-left:-33.258000px;}
._31_c00426{margin-left:-29.577000px;}
._34_c00426{margin-left:-23.391000px;}
._32_c00426{margin-left:-20.688000px;}
._2a_c00426{margin-left:-17.733000px;}
._e_c00426{margin-left:-16.269000px;}
._0_c00426{margin-left:-15.042000px;}
._30_c00426{margin-left:-13.965000px;}
._23_c00426{margin-left:-12.912000px;}
._29_c00426{margin-left:-11.514000px;}
._19_c00426{margin-left:-10.074000px;}
._16_c00426{margin-left:-8.955000px;}
._18_c00426{margin-left:-7.326000px;}
._10_c00426{margin-left:-5.949000px;}
._9_c00426{margin-left:-4.182000px;}
._4_c00426{margin-left:-2.967000px;}
._3_c00426{margin-left:-1.242000px;}
._a_c00426{width:1.725000px;}
._5_c00426{width:2.829000px;}
._15_c00426{width:3.933000px;}
._d_c00426{width:4.968000px;}
._8_c00426{width:6.072000px;}
._2_c00426{width:8.004000px;}
._20_c00426{width:9.345000px;}
._12_c00426{width:10.971000px;}
._1f_c00426{width:13.026000px;}
._14_c00426{width:14.214000px;}
._c_c00426{width:15.855000px;}
._1b_c00426{width:17.955000px;}
._b_c00426{width:19.389000px;}
._1d_c00426{width:21.042000px;}
._1c_c00426{width:22.563000px;}
._6_c00426{width:23.598000px;}
._22_c00426{width:25.122000px;}
._25_c00426{width:32.040000px;}
._f_c00426{width:34.638000px;}
._17_c00426{width:35.787000px;}
._2c_c00426{width:37.122000px;}
._2b_c00426{width:38.709000px;}
._36_c00426{width:39.942000px;}
._2d_c00426{width:40.974000px;}
._1_c00426{width:42.183000px;}
._2e_c00426{width:60.807000px;}
._11_c00426{width:66.033000px;}
._35_c00426{width:69.525000px;}
._21_c00426{width:75.222000px;}
._1a_c00426{width:83.421000px;}
._7_c00426{width:87.066000px;}
._33_c00426{width:100.119000px;}
._24_c00426{width:106.083000px;}
._13_c00426{width:123.786000px;}
._27_c00426{width:164.703000px;}
._2f_c00426{width:178.029000px;}
._28_c00426{width:236.121000px;}
._1e_c00426{width:241.308000px;}
._38_c00426{width:477.864000px;}
._37_c00426{width:934.824000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(128,128,128);}
.fc0_c00426{color:rgb(0,0,0);}
.fs2_c00426{font-size:48.000000px;}
.fs1_c00426{font-size:66.000000px;}
.fs0_c00426{font-size:69.000000px;}
.y0_c00426{bottom:0.000000px;}
.y1e_c00426{bottom:3.105000px;}
.y1d_c00426{bottom:7.228363px;}
.y1c_c00426{bottom:55.350000px;}
.y1b_c00426{bottom:83.400000px;}
.y1a_c00426{bottom:107.250000px;}
.y19_c00426{bottom:132.600000px;}
.y18_c00426{bottom:157.650000px;}
.y17_c00426{bottom:182.850000px;}
.y16_c00426{bottom:208.200000px;}
.y15_c00426{bottom:232.800000px;}
.y14_c00426{bottom:257.850000px;}
.y13_c00426{bottom:283.050000px;}
.y12_c00426{bottom:332.700000px;}
.y11_c00426{bottom:381.750000px;}
.y10_c00426{bottom:408.000000px;}
.yf_c00426{bottom:433.050000px;}
.ye_c00426{bottom:458.250000px;}
.yd_c00426{bottom:483.300000px;}
.yc_c00426{bottom:508.500000px;}
.yb_c00426{bottom:532.950000px;}
.ya_c00426{bottom:557.850000px;}
.y9_c00426{bottom:582.900000px;}
.y8_c00426{bottom:609.150000px;}
.y7_c00426{bottom:633.450000px;}
.y6_c00426{bottom:658.350000px;}
.y5_c00426{bottom:683.700000px;}
.y4_c00426{bottom:708.450000px;}
.y3_c00426{bottom:733.500000px;}
.y2_c00426{bottom:759.000000px;}
.y1_c00426{bottom:782.700000px;}
.h3_c00426{height:13.200074px;}
.h4_c00426{height:43.804688px;}
.h2_c00426{height:80.758301px;}
.h1_c00426{height:87.361816px;}
.h0_c00426{height:823.500000px;}
.w1_c00426{width:104.875500px;}
.w0_c00426{width:576.750000px;}
.x0_c00426{left:0.000000px;}
.x4_c00426{left:34.500000px;}
.x2_c00426{left:36.450000px;}
.x3_c00426{left:37.500000px;}
.x9_c00426{left:39.450000px;}
.x8_c00426{left:40.500000px;}
.xa_c00426{left:41.550000px;}
.xb_c00426{left:43.950000px;}
.x7_c00426{left:63.900000px;}
.x5_c00426{left:77.700000px;}
.x6_c00426{left:174.600000px;}
.x1_c00426{left:186.000000px;}
.xc_c00426{left:240.189240px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.lsa_c00426{letter-spacing:0.000000pt;}
.ls9_c00426{letter-spacing:2.666667pt;}
.ls6_c00426{letter-spacing:4.266667pt;}
.ls2_c00426{letter-spacing:6.250667pt;}
.lsb_c00426{letter-spacing:8.000000pt;}
.ls5_c00426{letter-spacing:12.266667pt;}
.ls3_c00426{letter-spacing:13.866667pt;}
.ls8_c00426{letter-spacing:20.266667pt;}
.ls1_c00426{letter-spacing:27.200000pt;}
.ls4_c00426{letter-spacing:29.333333pt;}
.ls7_c00426{letter-spacing:31.618667pt;}
.ls0_c00426{letter-spacing:378.818667pt;}
.ws1_c00426{word-spacing:-22.781333pt;}
.ws0_c00426{word-spacing:-14.781333pt;}
.ws2_c00426{word-spacing:0.000000pt;}
._26_c00426{margin-left:-29.562667pt;}
._31_c00426{margin-left:-26.290667pt;}
._34_c00426{margin-left:-20.792000pt;}
._32_c00426{margin-left:-18.389333pt;}
._2a_c00426{margin-left:-15.762667pt;}
._e_c00426{margin-left:-14.461333pt;}
._0_c00426{margin-left:-13.370667pt;}
._30_c00426{margin-left:-12.413333pt;}
._23_c00426{margin-left:-11.477333pt;}
._29_c00426{margin-left:-10.234667pt;}
._19_c00426{margin-left:-8.954667pt;}
._16_c00426{margin-left:-7.960000pt;}
._18_c00426{margin-left:-6.512000pt;}
._10_c00426{margin-left:-5.288000pt;}
._9_c00426{margin-left:-3.717333pt;}
._4_c00426{margin-left:-2.637333pt;}
._3_c00426{margin-left:-1.104000pt;}
._a_c00426{width:1.533333pt;}
._5_c00426{width:2.514667pt;}
._15_c00426{width:3.496000pt;}
._d_c00426{width:4.416000pt;}
._8_c00426{width:5.397333pt;}
._2_c00426{width:7.114667pt;}
._20_c00426{width:8.306667pt;}
._12_c00426{width:9.752000pt;}
._1f_c00426{width:11.578667pt;}
._14_c00426{width:12.634667pt;}
._c_c00426{width:14.093333pt;}
._1b_c00426{width:15.960000pt;}
._b_c00426{width:17.234667pt;}
._1d_c00426{width:18.704000pt;}
._1c_c00426{width:20.056000pt;}
._6_c00426{width:20.976000pt;}
._22_c00426{width:22.330667pt;}
._25_c00426{width:28.480000pt;}
._f_c00426{width:30.789333pt;}
._17_c00426{width:31.810667pt;}
._2c_c00426{width:32.997333pt;}
._2b_c00426{width:34.408000pt;}
._36_c00426{width:35.504000pt;}
._2d_c00426{width:36.421333pt;}
._1_c00426{width:37.496000pt;}
._2e_c00426{width:54.050667pt;}
._11_c00426{width:58.696000pt;}
._35_c00426{width:61.800000pt;}
._21_c00426{width:66.864000pt;}
._1a_c00426{width:74.152000pt;}
._7_c00426{width:77.392000pt;}
._33_c00426{width:88.994667pt;}
._24_c00426{width:94.296000pt;}
._13_c00426{width:110.032000pt;}
._27_c00426{width:146.402667pt;}
._2f_c00426{width:158.248000pt;}
._28_c00426{width:209.885333pt;}
._1e_c00426{width:214.496000pt;}
._38_c00426{width:424.768000pt;}
._37_c00426{width:830.954667pt;}
.fs2_c00426{font-size:42.666667pt;}
.fs1_c00426{font-size:58.666667pt;}
.fs0_c00426{font-size:61.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y1e_c00426{bottom:2.760000pt;}
.y1d_c00426{bottom:6.425212pt;}
.y1c_c00426{bottom:49.200000pt;}
.y1b_c00426{bottom:74.133333pt;}
.y1a_c00426{bottom:95.333333pt;}
.y19_c00426{bottom:117.866667pt;}
.y18_c00426{bottom:140.133333pt;}
.y17_c00426{bottom:162.533333pt;}
.y16_c00426{bottom:185.066667pt;}
.y15_c00426{bottom:206.933333pt;}
.y14_c00426{bottom:229.200000pt;}
.y13_c00426{bottom:251.600000pt;}
.y12_c00426{bottom:295.733333pt;}
.y11_c00426{bottom:339.333333pt;}
.y10_c00426{bottom:362.666667pt;}
.yf_c00426{bottom:384.933333pt;}
.ye_c00426{bottom:407.333333pt;}
.yd_c00426{bottom:429.600000pt;}
.yc_c00426{bottom:452.000000pt;}
.yb_c00426{bottom:473.733333pt;}
.ya_c00426{bottom:495.866667pt;}
.y9_c00426{bottom:518.133333pt;}
.y8_c00426{bottom:541.466667pt;}
.y7_c00426{bottom:563.066667pt;}
.y6_c00426{bottom:585.200000pt;}
.y5_c00426{bottom:607.733333pt;}
.y4_c00426{bottom:629.733333pt;}
.y3_c00426{bottom:652.000000pt;}
.y2_c00426{bottom:674.666667pt;}
.y1_c00426{bottom:695.733333pt;}
.h3_c00426{height:11.733399pt;}
.h4_c00426{height:38.937500pt;}
.h2_c00426{height:71.785156pt;}
.h1_c00426{height:77.654948pt;}
.h0_c00426{height:732.000000pt;}
.w1_c00426{width:93.222667pt;}
.w0_c00426{width:512.666667pt;}
.x0_c00426{left:0.000000pt;}
.x4_c00426{left:30.666667pt;}
.x2_c00426{left:32.400000pt;}
.x3_c00426{left:33.333333pt;}
.x9_c00426{left:35.066667pt;}
.x8_c00426{left:36.000000pt;}
.xa_c00426{left:36.933333pt;}
.xb_c00426{left:39.066667pt;}
.x7_c00426{left:56.800000pt;}
.x5_c00426{left:69.066667pt;}
.x6_c00426{left:155.200000pt;}
.x1_c00426{left:165.333333pt;}
.xc_c00426{left:213.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_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_5cf29543392a6be6cb1a5ecc.woff2')format("woff");}.ff1_c00427{font-family:ff1_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:ff2_c00427;src:url('chunks/assets/font_c7d40efed2149eb12493cc66.woff2')format("woff");}.ff2_c00427{font-family:ff2_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:ff3_c00427;src:url('chunks/assets/font_09b9cb8dc503a16a4573eeef.woff2')format("woff");}.ff3_c00427{font-family:ff3_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:ff4_c00427;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00427{font-family:ff4_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;}
.ls0_c00427{letter-spacing:2.571000px;}
.ls1_c00427{letter-spacing:3.000000px;}
.ls4_c00427{letter-spacing:6.000000px;}
.ls3_c00427{letter-spacing:9.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00427{word-spacing:-25.629000px;}
.ws0_c00427{word-spacing:-16.629000px;}
.ws2_c00427{word-spacing:-10.845000px;}
.ws3_c00427{word-spacing:-0.996000px;}
.ws4_c00427{word-spacing:0.000000px;}
._8_c00427{margin-left:-18.009000px;}
._0_c00427{margin-left:-15.249000px;}
._28_c00427{margin-left:-13.791000px;}
._1_c00427{margin-left:-12.696000px;}
._1b_c00427{margin-left:-11.616000px;}
._1a_c00427{margin-left:-10.557000px;}
._2_c00427{margin-left:-9.315000px;}
._12_c00427{margin-left:-8.280000px;}
._b_c00427{margin-left:-6.912000px;}
._3_c00427{margin-left:-5.520000px;}
._c_c00427{margin-left:-4.140000px;}
._7_c00427{margin-left:-3.105000px;}
._6_c00427{margin-left:-1.587000px;}
._4_c00427{width:1.518000px;}
._18_c00427{width:2.751000px;}
._9_c00427{width:3.795000px;}
._15_c00427{width:5.037000px;}
._13_c00427{width:6.624000px;}
._d_c00427{width:7.638000px;}
._e_c00427{width:9.522000px;}
._11_c00427{width:10.626000px;}
._10_c00427{width:12.903000px;}
._16_c00427{width:14.070000px;}
._2a_c00427{width:15.561000px;}
._26_c00427{width:16.629000px;}
._24_c00427{width:18.387000px;}
._20_c00427{width:20.010000px;}
._25_c00427{width:21.045000px;}
._23_c00427{width:22.218000px;}
._2f_c00427{width:24.366000px;}
._14_c00427{width:25.392000px;}
._2e_c00427{width:26.634000px;}
._2b_c00427{width:27.906000px;}
._1f_c00427{width:33.129000px;}
._27_c00427{width:39.228000px;}
._2c_c00427{width:41.193000px;}
._30_c00427{width:42.972000px;}
._2d_c00427{width:55.407000px;}
._1e_c00427{width:87.129000px;}
._a_c00427{width:88.404000px;}
._1d_c00427{width:95.142000px;}
._22_c00427{width:97.239000px;}
._1c_c00427{width:148.695000px;}
._17_c00427{width:155.517000px;}
._29_c00427{width:188.025000px;}
._19_c00427{width:211.692000px;}
._21_c00427{width:288.354000px;}
._f_c00427{width:307.671000px;}
._5_c00427{width:489.678000px;}
._31_c00427{width:1610.391000px;}
.fc2_c00427{color:transparent;}
.fc1_c00427{color:rgb(128,128,128);}
.fc0_c00427{color:rgb(0,0,0);}
.fs2_c00427{font-size:45.000000px;}
.fs3_c00427{font-size:48.000000px;}
.fs1_c00427{font-size:54.000000px;}
.fs0_c00427{font-size:69.000000px;}
.y0_c00427{bottom:0.000000px;}
.y1e_c00427{bottom:3.105000px;}
.y1d_c00427{bottom:7.228369px;}
.y1c_c00427{bottom:48.870000px;}
.y1b_c00427{bottom:73.920000px;}
.y1a_c00427{bottom:99.570000px;}
.y19_c00427{bottom:124.920000px;}
.y18_c00427{bottom:150.570000px;}
.y17_c00427{bottom:176.070000px;}
.y16_c00427{bottom:200.820000px;}
.y15_c00427{bottom:226.170000px;}
.y14_c00427{bottom:251.670000px;}
.y13_c00427{bottom:277.320000px;}
.y12_c00427{bottom:302.670000px;}
.y11_c00427{bottom:326.970000px;}
.y10_c00427{bottom:351.720000px;}
.yf_c00427{bottom:377.220000px;}
.ye_c00427{bottom:426.270000px;}
.yd_c00427{bottom:477.270000px;}
.yc_c00427{bottom:503.220000px;}
.yb_c00427{bottom:530.220000px;}
.ya_c00427{bottom:553.470000px;}
.y9_c00427{bottom:578.820000px;}
.y8_c00427{bottom:604.020000px;}
.y7_c00427{bottom:628.470000px;}
.y6_c00427{bottom:653.970000px;}
.y5_c00427{bottom:679.320000px;}
.y4_c00427{bottom:703.020000px;}
.y3_c00427{bottom:729.570000px;}
.y2_c00427{bottom:754.020000px;}
.y1_c00427{bottom:779.970000px;}
.h4_c00427{height:13.200073px;}
.h5_c00427{height:43.804688px;}
.h3_c00427{height:80.758301px;}
.h2_c00427{height:87.361816px;}
.h0_c00427{height:821.850000px;}
.h1_c00427{height:822.000000px;}
.w2_c00427{width:104.875500px;}
.w1_c00427{width:567.750000px;}
.w0_c00427{width:568.050000px;}
.x0_c00427{left:0.000000px;}
.xc_c00427{left:18.450000px;}
.x4_c00427{left:24.300000px;}
.x3_c00427{left:25.650000px;}
.x2_c00427{left:40.800000px;}
.xe_c00427{left:64.350000px;}
.x8_c00427{left:84.150000px;}
.xf_c00427{left:85.650000px;}
.xd_c00427{left:86.700000px;}
.x7_c00427{left:88.050000px;}
.x5_c00427{left:90.150000px;}
.x1_c00427{left:102.300000px;}
.xb_c00427{left:112.050000px;}
.xa_c00427{left:113.100000px;}
.x6_c00427{left:123.450000px;}
.x9_c00427{left:197.400000px;}
.x10_c00427{left:235.839249px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls2_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:2.285333pt;}
.ls1_c00427{letter-spacing:2.666667pt;}
.ls4_c00427{letter-spacing:5.333333pt;}
.ls3_c00427{letter-spacing:8.000000pt;}
.ws1_c00427{word-spacing:-22.781333pt;}
.ws0_c00427{word-spacing:-14.781333pt;}
.ws2_c00427{word-spacing:-9.640000pt;}
.ws3_c00427{word-spacing:-0.885333pt;}
.ws4_c00427{word-spacing:0.000000pt;}
._8_c00427{margin-left:-16.008000pt;}
._0_c00427{margin-left:-13.554667pt;}
._28_c00427{margin-left:-12.258667pt;}
._1_c00427{margin-left:-11.285333pt;}
._1b_c00427{margin-left:-10.325333pt;}
._1a_c00427{margin-left:-9.384000pt;}
._2_c00427{margin-left:-8.280000pt;}
._12_c00427{margin-left:-7.360000pt;}
._b_c00427{margin-left:-6.144000pt;}
._3_c00427{margin-left:-4.906667pt;}
._c_c00427{margin-left:-3.680000pt;}
._7_c00427{margin-left:-2.760000pt;}
._6_c00427{margin-left:-1.410667pt;}
._4_c00427{width:1.349333pt;}
._18_c00427{width:2.445333pt;}
._9_c00427{width:3.373333pt;}
._15_c00427{width:4.477333pt;}
._13_c00427{width:5.888000pt;}
._d_c00427{width:6.789333pt;}
._e_c00427{width:8.464000pt;}
._11_c00427{width:9.445333pt;}
._10_c00427{width:11.469333pt;}
._16_c00427{width:12.506667pt;}
._2a_c00427{width:13.832000pt;}
._26_c00427{width:14.781333pt;}
._24_c00427{width:16.344000pt;}
._20_c00427{width:17.786667pt;}
._25_c00427{width:18.706667pt;}
._23_c00427{width:19.749333pt;}
._2f_c00427{width:21.658667pt;}
._14_c00427{width:22.570667pt;}
._2e_c00427{width:23.674667pt;}
._2b_c00427{width:24.805333pt;}
._1f_c00427{width:29.448000pt;}
._27_c00427{width:34.869333pt;}
._2c_c00427{width:36.616000pt;}
._30_c00427{width:38.197333pt;}
._2d_c00427{width:49.250667pt;}
._1e_c00427{width:77.448000pt;}
._a_c00427{width:78.581333pt;}
._1d_c00427{width:84.570667pt;}
._22_c00427{width:86.434667pt;}
._1c_c00427{width:132.173333pt;}
._17_c00427{width:138.237333pt;}
._29_c00427{width:167.133333pt;}
._19_c00427{width:188.170667pt;}
._21_c00427{width:256.314667pt;}
._f_c00427{width:273.485333pt;}
._5_c00427{width:435.269333pt;}
._31_c00427{width:1431.458667pt;}
.fs2_c00427{font-size:40.000000pt;}
.fs3_c00427{font-size:42.666667pt;}
.fs1_c00427{font-size:48.000000pt;}
.fs0_c00427{font-size:61.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.y1e_c00427{bottom:2.760000pt;}
.y1d_c00427{bottom:6.425217pt;}
.y1c_c00427{bottom:43.440000pt;}
.y1b_c00427{bottom:65.706667pt;}
.y1a_c00427{bottom:88.506667pt;}
.y19_c00427{bottom:111.040000pt;}
.y18_c00427{bottom:133.840000pt;}
.y17_c00427{bottom:156.506667pt;}
.y16_c00427{bottom:178.506667pt;}
.y15_c00427{bottom:201.040000pt;}
.y14_c00427{bottom:223.706667pt;}
.y13_c00427{bottom:246.506667pt;}
.y12_c00427{bottom:269.040000pt;}
.y11_c00427{bottom:290.640000pt;}
.y10_c00427{bottom:312.640000pt;}
.yf_c00427{bottom:335.306667pt;}
.ye_c00427{bottom:378.906667pt;}
.yd_c00427{bottom:424.240000pt;}
.yc_c00427{bottom:447.306667pt;}
.yb_c00427{bottom:471.306667pt;}
.ya_c00427{bottom:491.973333pt;}
.y9_c00427{bottom:514.506667pt;}
.y8_c00427{bottom:536.906667pt;}
.y7_c00427{bottom:558.640000pt;}
.y6_c00427{bottom:581.306667pt;}
.y5_c00427{bottom:603.840000pt;}
.y4_c00427{bottom:624.906667pt;}
.y3_c00427{bottom:648.506667pt;}
.y2_c00427{bottom:670.240000pt;}
.y1_c00427{bottom:693.306667pt;}
.h4_c00427{height:11.733399pt;}
.h5_c00427{height:38.937500pt;}
.h3_c00427{height:71.785156pt;}
.h2_c00427{height:77.654948pt;}
.h0_c00427{height:730.533333pt;}
.h1_c00427{height:730.666667pt;}
.w2_c00427{width:93.222667pt;}
.w1_c00427{width:504.666667pt;}
.w0_c00427{width:504.933333pt;}
.x0_c00427{left:0.000000pt;}
.xc_c00427{left:16.400000pt;}
.x4_c00427{left:21.600000pt;}
.x3_c00427{left:22.800000pt;}
.x2_c00427{left:36.266667pt;}
.xe_c00427{left:57.200000pt;}
.x8_c00427{left:74.800000pt;}
.xf_c00427{left:76.133333pt;}
.xd_c00427{left:77.066667pt;}
.x7_c00427{left:78.266667pt;}
.x5_c00427{left:80.133333pt;}
.x1_c00427{left:90.933333pt;}
.xb_c00427{left:99.600000pt;}
.xa_c00427{left:100.533333pt;}
.x6_c00427{left:109.733333pt;}
.x9_c00427{left:175.466667pt;}
.x10_c00427{left:209.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_314761ea5644a56abb41668a.woff2')format("woff");}.ff1_c00428{font-family:ff1_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:ff2_c00428;src:url('chunks/assets/font_c27326049adabca35ffa0334.woff2')format("woff");}.ff2_c00428{font-family:ff2_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:ff3_c00428;src:url('chunks/assets/font_ba1305e127018299893bd9d4.woff2')format("woff");}.ff3_c00428{font-family:ff3_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:ff4_c00428;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00428{font-family:ff4_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;}
.ls6_c00428{letter-spacing:-6.000000px;}
.ls3_c00428{letter-spacing:0.000000px;}
.ls2_c00428{letter-spacing:3.000000px;}
.ls5_c00428{letter-spacing:6.000000px;}
.ls4_c00428{letter-spacing:9.000000px;}
.ls1_c00428{letter-spacing:13.125000px;}
.ls0_c00428{letter-spacing:13.725000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:-25.629000px;}
.ws2_c00428{word-spacing:-19.629000px;}
.ws1_c00428{word-spacing:-16.629000px;}
.ws3_c00428{word-spacing:-13.521000px;}
.ws4_c00428{word-spacing:0.000000px;}
._0_c00428{margin-left:-63.273000px;}
._20_c00428{margin-left:-14.595000px;}
._1_c00428{margin-left:-11.280000px;}
._11_c00428{margin-left:-9.465000px;}
._10_c00428{margin-left:-7.590000px;}
._f_c00428{margin-left:-5.520000px;}
._9_c00428{margin-left:-4.002000px;}
._18_c00428{margin-left:-2.760000px;}
._5_c00428{margin-left:-1.587000px;}
._3_c00428{width:1.725000px;}
._4_c00428{width:3.105000px;}
._8_c00428{width:5.106000px;}
._7_c00428{width:6.624000px;}
._a_c00428{width:8.073000px;}
._13_c00428{width:10.143000px;}
._14_c00428{width:11.259000px;}
._e_c00428{width:12.972000px;}
._21_c00428{width:14.067000px;}
._d_c00428{width:15.249000px;}
._19_c00428{width:17.319000px;}
._1b_c00428{width:18.321000px;}
._1a_c00428{width:20.763000px;}
._c_c00428{width:21.804000px;}
._15_c00428{width:25.104000px;}
._25_c00428{width:26.634000px;}
._b_c00428{width:28.152000px;}
._24_c00428{width:29.187000px;}
._23_c00428{width:31.404000px;}
._1d_c00428{width:33.207000px;}
._1e_c00428{width:34.707000px;}
._22_c00428{width:36.096000px;}
._1c_c00428{width:40.662000px;}
._1f_c00428{width:52.545000px;}
._2_c00428{width:59.838000px;}
._16_c00428{width:99.015000px;}
._12_c00428{width:141.891000px;}
._17_c00428{width:197.616000px;}
._27_c00428{width:348.543000px;}
._6_c00428{width:418.956000px;}
._26_c00428{width:960.243000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(128,128,128);}
.fc0_c00428{color:rgb(0,0,0);}
.fs1_c00428{font-size:45.000000px;}
.fs4_c00428{font-size:48.000000px;}
.fs0_c00428{font-size:69.000000px;}
.fs2_c00428{font-size:72.000000px;}
.fs3_c00428{font-size:81.000000px;}
.y0_c00428{bottom:0.000000px;}
.y1f_c00428{bottom:3.105000px;}
.y1e_c00428{bottom:7.228371px;}
.y1d_c00428{bottom:65.565000px;}
.y1c_c00428{bottom:115.515000px;}
.y1b_c00428{bottom:140.715000px;}
.y1a_c00428{bottom:166.065000px;}
.y19_c00428{bottom:191.715000px;}
.y18_c00428{bottom:216.315000px;}
.y17_c00428{bottom:241.665000px;}
.y16_c00428{bottom:266.715000px;}
.y15_c00428{bottom:291.015000px;}
.y14_c00428{bottom:316.365000px;}
.y13_c00428{bottom:341.265000px;}
.y12_c00428{bottom:366.315000px;}
.y11_c00428{bottom:391.965000px;}
.y10_c00428{bottom:416.865000px;}
.yf_c00428{bottom:441.765000px;}
.ye_c00428{bottom:467.115000px;}
.yd_c00428{bottom:492.165000px;}
.yc_c00428{bottom:516.765000px;}
.yb_c00428{bottom:541.365000px;}
.ya_c00428{bottom:566.415000px;}
.y9_c00428{bottom:591.765000px;}
.y8_c00428{bottom:616.365000px;}
.y7_c00428{bottom:641.565000px;}
.y6_c00428{bottom:666.315000px;}
.y5_c00428{bottom:691.515000px;}
.y4_c00428{bottom:716.865000px;}
.y3_c00428{bottom:741.465000px;}
.y2_c00428{bottom:766.815000px;}
.y1_c00428{bottom:792.165000px;}
.h4_c00428{height:13.200074px;}
.h5_c00428{height:43.804688px;}
.h2_c00428{height:87.361816px;}
.h3_c00428{height:94.803223px;}
.h1_c00428{height:831.000000px;}
.h0_c00428{height:831.075000px;}
.w2_c00428{width:104.875500px;}
.w0_c00428{width:582.375000px;}
.w1_c00428{width:582.750000px;}
.x0_c00428{left:0.000000px;}
.x5_c00428{left:29.700000px;}
.x2_c00428{left:30.750000px;}
.x6_c00428{left:31.800000px;}
.x4_c00428{left:33.300000px;}
.x7_c00428{left:34.800000px;}
.x3_c00428{left:92.250000px;}
.x1_c00428{left:159.450000px;}
.x8_c00428{left:243.001740px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls6_c00428{letter-spacing:-5.333333pt;}
.ls3_c00428{letter-spacing:0.000000pt;}
.ls2_c00428{letter-spacing:2.666667pt;}
.ls5_c00428{letter-spacing:5.333333pt;}
.ls4_c00428{letter-spacing:8.000000pt;}
.ls1_c00428{letter-spacing:11.666667pt;}
.ls0_c00428{letter-spacing:12.200000pt;}
.ws0_c00428{word-spacing:-22.781333pt;}
.ws2_c00428{word-spacing:-17.448000pt;}
.ws1_c00428{word-spacing:-14.781333pt;}
.ws3_c00428{word-spacing:-12.018667pt;}
.ws4_c00428{word-spacing:0.000000pt;}
._0_c00428{margin-left:-56.242667pt;}
._20_c00428{margin-left:-12.973333pt;}
._1_c00428{margin-left:-10.026667pt;}
._11_c00428{margin-left:-8.413333pt;}
._10_c00428{margin-left:-6.746667pt;}
._f_c00428{margin-left:-4.906667pt;}
._9_c00428{margin-left:-3.557333pt;}
._18_c00428{margin-left:-2.453333pt;}
._5_c00428{margin-left:-1.410667pt;}
._3_c00428{width:1.533333pt;}
._4_c00428{width:2.760000pt;}
._8_c00428{width:4.538667pt;}
._7_c00428{width:5.888000pt;}
._a_c00428{width:7.176000pt;}
._13_c00428{width:9.016000pt;}
._14_c00428{width:10.008000pt;}
._e_c00428{width:11.530667pt;}
._21_c00428{width:12.504000pt;}
._d_c00428{width:13.554667pt;}
._19_c00428{width:15.394667pt;}
._1b_c00428{width:16.285333pt;}
._1a_c00428{width:18.456000pt;}
._c_c00428{width:19.381333pt;}
._15_c00428{width:22.314667pt;}
._25_c00428{width:23.674667pt;}
._b_c00428{width:25.024000pt;}
._24_c00428{width:25.944000pt;}
._23_c00428{width:27.914667pt;}
._1d_c00428{width:29.517333pt;}
._1e_c00428{width:30.850667pt;}
._22_c00428{width:32.085333pt;}
._1c_c00428{width:36.144000pt;}
._1f_c00428{width:46.706667pt;}
._2_c00428{width:53.189333pt;}
._16_c00428{width:88.013333pt;}
._12_c00428{width:126.125333pt;}
._17_c00428{width:175.658667pt;}
._27_c00428{width:309.816000pt;}
._6_c00428{width:372.405333pt;}
._26_c00428{width:853.549333pt;}
.fs1_c00428{font-size:40.000000pt;}
.fs4_c00428{font-size:42.666667pt;}
.fs0_c00428{font-size:61.333333pt;}
.fs2_c00428{font-size:64.000000pt;}
.fs3_c00428{font-size:72.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y1f_c00428{bottom:2.760000pt;}
.y1e_c00428{bottom:6.425219pt;}
.y1d_c00428{bottom:58.280000pt;}
.y1c_c00428{bottom:102.680000pt;}
.y1b_c00428{bottom:125.080000pt;}
.y1a_c00428{bottom:147.613333pt;}
.y19_c00428{bottom:170.413333pt;}
.y18_c00428{bottom:192.280000pt;}
.y17_c00428{bottom:214.813333pt;}
.y16_c00428{bottom:237.080000pt;}
.y15_c00428{bottom:258.680000pt;}
.y14_c00428{bottom:281.213333pt;}
.y13_c00428{bottom:303.346667pt;}
.y12_c00428{bottom:325.613333pt;}
.y11_c00428{bottom:348.413333pt;}
.y10_c00428{bottom:370.546667pt;}
.yf_c00428{bottom:392.680000pt;}
.ye_c00428{bottom:415.213333pt;}
.yd_c00428{bottom:437.480000pt;}
.yc_c00428{bottom:459.346667pt;}
.yb_c00428{bottom:481.213333pt;}
.ya_c00428{bottom:503.480000pt;}
.y9_c00428{bottom:526.013333pt;}
.y8_c00428{bottom:547.880000pt;}
.y7_c00428{bottom:570.280000pt;}
.y6_c00428{bottom:592.280000pt;}
.y5_c00428{bottom:614.680000pt;}
.y4_c00428{bottom:637.213333pt;}
.y3_c00428{bottom:659.080000pt;}
.y2_c00428{bottom:681.613333pt;}
.y1_c00428{bottom:704.146667pt;}
.h4_c00428{height:11.733399pt;}
.h5_c00428{height:38.937500pt;}
.h2_c00428{height:77.654948pt;}
.h3_c00428{height:84.269531pt;}
.h1_c00428{height:738.666667pt;}
.h0_c00428{height:738.733333pt;}
.w2_c00428{width:93.222667pt;}
.w0_c00428{width:517.666667pt;}
.w1_c00428{width:518.000000pt;}
.x0_c00428{left:0.000000pt;}
.x5_c00428{left:26.400000pt;}
.x2_c00428{left:27.333333pt;}
.x6_c00428{left:28.266667pt;}
.x4_c00428{left:29.600000pt;}
.x7_c00428{left:30.933333pt;}
.x3_c00428{left:82.000000pt;}
.x1_c00428{left:141.733333pt;}
.x8_c00428{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aee9978d78d1f07c2a1ba61.woff2')format("woff");}.ff1_c00429{font-family:ff1_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:ff2_c00429;src:url('chunks/assets/font_04a1cc40ed10dca5b91bff86.woff2')format("woff");}.ff2_c00429{font-family:ff2_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:ff3_c00429;src:url('chunks/assets/font_aa662101bbf0343868bdf34c.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00429{font-family:ff4_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:ff5_c00429;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00429{font-family:ff5_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;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls2_c00429{letter-spacing:3.000000px;}
.ls3_c00429{letter-spacing:6.000000px;}
.ls0_c00429{letter-spacing:9.171000px;}
.ls4_c00429{letter-spacing:21.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:-37.629000px;}
.ws1_c00429{word-spacing:-19.737000px;}
.ws3_c00429{word-spacing:-17.250000px;}
.ws0_c00429{word-spacing:-16.629000px;}
.ws4_c00429{word-spacing:0.000000px;}
._1c_c00429{margin-left:-32.361000px;}
._1d_c00429{margin-left:-29.079000px;}
._1e_c00429{margin-left:-26.277000px;}
._18_c00429{margin-left:-24.564000px;}
._a_c00429{margin-left:-15.318000px;}
._c_c00429{margin-left:-13.731000px;}
._b_c00429{margin-left:-10.626000px;}
._4_c00429{margin-left:-9.108000px;}
._5_c00429{margin-left:-7.866000px;}
._8_c00429{margin-left:-6.762000px;}
._6_c00429{margin-left:-5.037000px;}
._9_c00429{margin-left:-3.450000px;}
._7_c00429{margin-left:-2.415000px;}
._14_c00429{margin-left:-1.380000px;}
._0_c00429{width:1.518000px;}
._2_c00429{width:3.381000px;}
._1_c00429{width:4.554000px;}
._3_c00429{width:6.555000px;}
._e_c00429{width:8.487000px;}
._1b_c00429{width:9.591000px;}
._13_c00429{width:10.902000px;}
._12_c00429{width:12.765000px;}
._f_c00429{width:14.076000px;}
._10_c00429{width:15.594000px;}
._11_c00429{width:17.664000px;}
._17_c00429{width:18.906000px;}
._16_c00429{width:20.217000px;}
._15_c00429{width:22.080000px;}
._1a_c00429{width:43.326000px;}
._1f_c00429{width:51.198000px;}
._19_c00429{width:94.047000px;}
._d_c00429{width:156.678000px;}
._20_c00429{width:354.591000px;}
._21_c00429{width:974.280000px;}
.fc2_c00429{color:transparent;}
.fc1_c00429{color:rgb(128,128,128);}
.fc0_c00429{color:rgb(0,0,0);}
.fs2_c00429{font-size:48.000000px;}
.fs1_c00429{font-size:57.000000px;}
.fs0_c00429{font-size:69.000000px;}
.y0_c00429{bottom:0.000000px;}
.y1d_c00429{bottom:3.105000px;}
.y1c_c00429{bottom:7.228369px;}
.y1b_c00429{bottom:49.320000px;}
.y1a_c00429{bottom:75.270000px;}
.y19_c00429{bottom:101.220000px;}
.y18_c00429{bottom:126.270000px;}
.y17_c00429{bottom:151.770000px;}
.y16_c00429{bottom:177.120000px;}
.y15_c00429{bottom:202.170000px;}
.y14_c00429{bottom:227.520000px;}
.y13_c00429{bottom:251.670000px;}
.y12_c00429{bottom:280.170000px;}
.y11_c00429{bottom:304.470000px;}
.y10_c00429{bottom:329.370000px;}
.yf_c00429{bottom:354.270000px;}
.ye_c00429{bottom:379.620000px;}
.yd_c00429{bottom:404.970000px;}
.yc_c00429{bottom:429.570000px;}
.yb_c00429{bottom:454.920000px;}
.ya_c00429{bottom:504.570000px;}
.y8_c00429{bottom:555.420000px;}
.y9_c00429{bottom:562.920000px;}
.y7_c00429{bottom:580.170000px;}
.y6_c00429{bottom:605.820000px;}
.y5_c00429{bottom:630.720000px;}
.y4_c00429{bottom:655.470000px;}
.y3_c00429{bottom:679.320000px;}
.y2_c00429{bottom:730.620000px;}
.y1_c00429{bottom:780.870000px;}
.h5_c00429{height:13.200073px;}
.h6_c00429{height:43.804688px;}
.h4_c00429{height:66.713379px;}
.h2_c00429{height:80.758301px;}
.h3_c00429{height:87.361816px;}
.h1_c00429{height:824.250000px;}
.h0_c00429{height:824.550000px;}
.w2_c00429{width:104.875500px;}
.w0_c00429{width:569.700000px;}
.w1_c00429{width:570.000000px;}
.x0_c00429{left:0.000000px;}
.x3_c00429{left:22.050000px;}
.x8_c00429{left:23.250000px;}
.x6_c00429{left:38.100000px;}
.xe_c00429{left:65.100000px;}
.xb_c00429{left:82.650000px;}
.xd_c00429{left:84.750000px;}
.x7_c00429{left:86.100000px;}
.x4_c00429{left:88.650000px;}
.xa_c00429{left:103.650000px;}
.xc_c00429{left:109.650000px;}
.x5_c00429{left:113.400000px;}
.xf_c00429{left:126.300000px;}
.x2_c00429{left:176.250000px;}
.x9_c00429{left:193.650000px;}
.x10_c00429{left:236.664230px;}
.x1_c00429{left:268.200000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls2_c00429{letter-spacing:2.666667pt;}
.ls3_c00429{letter-spacing:5.333333pt;}
.ls0_c00429{letter-spacing:8.152000pt;}
.ls4_c00429{letter-spacing:18.666667pt;}
.ws2_c00429{word-spacing:-33.448000pt;}
.ws1_c00429{word-spacing:-17.544000pt;}
.ws3_c00429{word-spacing:-15.333333pt;}
.ws0_c00429{word-spacing:-14.781333pt;}
.ws4_c00429{word-spacing:0.000000pt;}
._1c_c00429{margin-left:-28.765333pt;}
._1d_c00429{margin-left:-25.848000pt;}
._1e_c00429{margin-left:-23.357333pt;}
._18_c00429{margin-left:-21.834667pt;}
._a_c00429{margin-left:-13.616000pt;}
._c_c00429{margin-left:-12.205333pt;}
._b_c00429{margin-left:-9.445333pt;}
._4_c00429{margin-left:-8.096000pt;}
._5_c00429{margin-left:-6.992000pt;}
._8_c00429{margin-left:-6.010667pt;}
._6_c00429{margin-left:-4.477333pt;}
._9_c00429{margin-left:-3.066667pt;}
._7_c00429{margin-left:-2.146667pt;}
._14_c00429{margin-left:-1.226667pt;}
._0_c00429{width:1.349333pt;}
._2_c00429{width:3.005333pt;}
._1_c00429{width:4.048000pt;}
._3_c00429{width:5.826667pt;}
._e_c00429{width:7.544000pt;}
._1b_c00429{width:8.525333pt;}
._13_c00429{width:9.690667pt;}
._12_c00429{width:11.346667pt;}
._f_c00429{width:12.512000pt;}
._10_c00429{width:13.861333pt;}
._11_c00429{width:15.701333pt;}
._17_c00429{width:16.805333pt;}
._16_c00429{width:17.970667pt;}
._15_c00429{width:19.626667pt;}
._1a_c00429{width:38.512000pt;}
._1f_c00429{width:45.509333pt;}
._19_c00429{width:83.597333pt;}
._d_c00429{width:139.269333pt;}
._20_c00429{width:315.192000pt;}
._21_c00429{width:866.026667pt;}
.fs2_c00429{font-size:42.666667pt;}
.fs1_c00429{font-size:50.666667pt;}
.fs0_c00429{font-size:61.333333pt;}
.y0_c00429{bottom:0.000000pt;}
.y1d_c00429{bottom:2.760000pt;}
.y1c_c00429{bottom:6.425217pt;}
.y1b_c00429{bottom:43.840000pt;}
.y1a_c00429{bottom:66.906667pt;}
.y19_c00429{bottom:89.973333pt;}
.y18_c00429{bottom:112.240000pt;}
.y17_c00429{bottom:134.906667pt;}
.y16_c00429{bottom:157.440000pt;}
.y15_c00429{bottom:179.706667pt;}
.y14_c00429{bottom:202.240000pt;}
.y13_c00429{bottom:223.706667pt;}
.y12_c00429{bottom:249.040000pt;}
.y11_c00429{bottom:270.640000pt;}
.y10_c00429{bottom:292.773333pt;}
.yf_c00429{bottom:314.906667pt;}
.ye_c00429{bottom:337.440000pt;}
.yd_c00429{bottom:359.973333pt;}
.yc_c00429{bottom:381.840000pt;}
.yb_c00429{bottom:404.373333pt;}
.ya_c00429{bottom:448.506667pt;}
.y8_c00429{bottom:493.706667pt;}
.y9_c00429{bottom:500.373333pt;}
.y7_c00429{bottom:515.706667pt;}
.y6_c00429{bottom:538.506667pt;}
.y5_c00429{bottom:560.640000pt;}
.y4_c00429{bottom:582.640000pt;}
.y3_c00429{bottom:603.840000pt;}
.y2_c00429{bottom:649.440000pt;}
.y1_c00429{bottom:694.106667pt;}
.h5_c00429{height:11.733399pt;}
.h6_c00429{height:38.937500pt;}
.h4_c00429{height:59.300781pt;}
.h2_c00429{height:71.785156pt;}
.h3_c00429{height:77.654948pt;}
.h1_c00429{height:732.666667pt;}
.h0_c00429{height:732.933333pt;}
.w2_c00429{width:93.222667pt;}
.w0_c00429{width:506.400000pt;}
.w1_c00429{width:506.666667pt;}
.x0_c00429{left:0.000000pt;}
.x3_c00429{left:19.600000pt;}
.x8_c00429{left:20.666667pt;}
.x6_c00429{left:33.866667pt;}
.xe_c00429{left:57.866667pt;}
.xb_c00429{left:73.466667pt;}
.xd_c00429{left:75.333333pt;}
.x7_c00429{left:76.533333pt;}
.x4_c00429{left:78.800000pt;}
.xa_c00429{left:92.133333pt;}
.xc_c00429{left:97.466667pt;}
.x5_c00429{left:100.800000pt;}
.xf_c00429{left:112.266667pt;}
.x2_c00429{left:156.666667pt;}
.x9_c00429{left:172.133333pt;}
.x10_c00429{left:210.368205pt;}
.x1_c00429{left:238.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcb5ec593732a8d9e7778af1.woff2')format("woff");}.ff1_c00430{font-family:ff1_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:ff2_c00430;src:url('chunks/assets/font_31c45e34cabecec75ccc40a5.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_fea36cf64af826a952fd60fd.woff2')format("woff");}.ff3_c00430{font-family:ff3_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:ff4_c00430;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00430{font-family:ff4_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);}
.v0_c00430{vertical-align:0.000000px;}
.ls3_c00430{letter-spacing:0.000000px;}
.ls4_c00430{letter-spacing:3.000000px;}
.ls1_c00430{letter-spacing:3.312000px;}
.ls2_c00430{letter-spacing:4.170000px;}
.ls0_c00430{letter-spacing:13.125000px;}
.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;}
}
.ws2_c00430{word-spacing:-56.235000px;}
.ws1_c00430{word-spacing:-44.988000px;}
.ws0_c00430{word-spacing:-16.629000px;}
.ws3_c00430{word-spacing:0.000000px;}
._4_c00430{margin-left:-16.284000px;}
._1f_c00430{margin-left:-13.041000px;}
._21_c00430{margin-left:-10.488000px;}
._18_c00430{margin-left:-8.625000px;}
._1d_c00430{margin-left:-6.969000px;}
._17_c00430{margin-left:-5.796000px;}
._6_c00430{margin-left:-4.002000px;}
._5_c00430{margin-left:-2.208000px;}
._7_c00430{margin-left:-1.104000px;}
._8_c00430{width:1.035000px;}
._3_c00430{width:2.898000px;}
._9_c00430{width:4.071000px;}
._1_c00430{width:5.244000px;}
._0_c00430{width:6.831000px;}
._2_c00430{width:8.280000px;}
._b_c00430{width:9.591000px;}
._a_c00430{width:10.902000px;}
._e_c00430{width:12.627000px;}
._f_c00430{width:14.628000px;}
._c_c00430{width:15.663000px;}
._d_c00430{width:17.181000px;}
._14_c00430{width:18.357000px;}
._11_c00430{width:21.459000px;}
._13_c00430{width:23.184000px;}
._15_c00430{width:25.251000px;}
._12_c00430{width:26.634000px;}
._24_c00430{width:28.149000px;}
._19_c00430{width:29.877000px;}
._22_c00430{width:31.638000px;}
._23_c00430{width:34.062000px;}
._1e_c00430{width:36.777000px;}
._10_c00430{width:41.952000px;}
._1a_c00430{width:45.126000px;}
._20_c00430{width:85.908000px;}
._1b_c00430{width:91.701000px;}
._16_c00430{width:96.984000px;}
._1c_c00430{width:145.524000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(128,128,128);}
.fc0_c00430{color:rgb(0,0,0);}
.fs2_c00430{font-size:48.000000px;}
.fs1_c00430{font-size:55.200000px;}
.fs0_c00430{font-size:69.000000px;}
.y0_c00430{bottom:0.000000px;}
.y1c_c00430{bottom:3.105000px;}
.y1b_c00430{bottom:7.228357px;}
.y1a_c00430{bottom:147.180000px;}
.y19_c00430{bottom:173.880000px;}
.y18_c00430{bottom:198.480000px;}
.y17_c00430{bottom:224.730000px;}
.y16_c00430{bottom:249.780000px;}
.y15_c00430{bottom:274.680000px;}
.y14_c00430{bottom:300.030000px;}
.y13_c00430{bottom:324.780000px;}
.y12_c00430{bottom:349.980000px;}
.y11_c00430{bottom:375.930000px;}
.y10_c00430{bottom:400.230000px;}
.yf_c00430{bottom:426.030000px;}
.ye_c00430{bottom:451.230000px;}
.yd_c00430{bottom:476.280000px;}
.yc_c00430{bottom:499.830000px;}
.yb_c00430{bottom:524.130000px;}
.ya_c00430{bottom:550.230000px;}
.y9_c00430{bottom:576.480000px;}
.y8_c00430{bottom:601.380000px;}
.y7_c00430{bottom:626.130000px;}
.y6_c00430{bottom:651.030000px;}
.y5_c00430{bottom:676.680000px;}
.y4_c00430{bottom:701.730000px;}
.y3_c00430{bottom:725.730000px;}
.y2_c00430{bottom:751.980000px;}
.y1_c00430{bottom:776.880000px;}
.h2_c00430{height:13.200074px;}
.h3_c00430{height:43.804688px;}
.h1_c00430{height:87.361816px;}
.h0_c00430{height:819.750000px;}
.w2_c00430{width:104.875500px;}
.w1_c00430{width:573.750000px;}
.w0_c00430{width:574.050000px;}
.x0_c00430{left:0.000000px;}
.x3_c00430{left:37.350000px;}
.x2_c00430{left:38.400000px;}
.x4_c00430{left:39.900000px;}
.x1_c00430{left:187.350000px;}
.x5_c00430{left:238.839249px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls3_c00430{letter-spacing:0.000000pt;}
.ls4_c00430{letter-spacing:2.666667pt;}
.ls1_c00430{letter-spacing:2.944000pt;}
.ls2_c00430{letter-spacing:3.706667pt;}
.ls0_c00430{letter-spacing:11.666667pt;}
.ws2_c00430{word-spacing:-49.986667pt;}
.ws1_c00430{word-spacing:-39.989333pt;}
.ws0_c00430{word-spacing:-14.781333pt;}
.ws3_c00430{word-spacing:0.000000pt;}
._4_c00430{margin-left:-14.474667pt;}
._1f_c00430{margin-left:-11.592000pt;}
._21_c00430{margin-left:-9.322667pt;}
._18_c00430{margin-left:-7.666667pt;}
._1d_c00430{margin-left:-6.194667pt;}
._17_c00430{margin-left:-5.152000pt;}
._6_c00430{margin-left:-3.557333pt;}
._5_c00430{margin-left:-1.962667pt;}
._7_c00430{margin-left:-0.981333pt;}
._8_c00430{width:0.920000pt;}
._3_c00430{width:2.576000pt;}
._9_c00430{width:3.618667pt;}
._1_c00430{width:4.661333pt;}
._0_c00430{width:6.072000pt;}
._2_c00430{width:7.360000pt;}
._b_c00430{width:8.525333pt;}
._a_c00430{width:9.690667pt;}
._e_c00430{width:11.224000pt;}
._f_c00430{width:13.002667pt;}
._c_c00430{width:13.922667pt;}
._d_c00430{width:15.272000pt;}
._14_c00430{width:16.317333pt;}
._11_c00430{width:19.074667pt;}
._13_c00430{width:20.608000pt;}
._15_c00430{width:22.445333pt;}
._12_c00430{width:23.674667pt;}
._24_c00430{width:25.021333pt;}
._19_c00430{width:26.557333pt;}
._22_c00430{width:28.122667pt;}
._23_c00430{width:30.277333pt;}
._1e_c00430{width:32.690667pt;}
._10_c00430{width:37.290667pt;}
._1a_c00430{width:40.112000pt;}
._20_c00430{width:76.362667pt;}
._1b_c00430{width:81.512000pt;}
._16_c00430{width:86.208000pt;}
._1c_c00430{width:129.354667pt;}
.fs2_c00430{font-size:42.666667pt;}
.fs1_c00430{font-size:49.066667pt;}
.fs0_c00430{font-size:61.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y1c_c00430{bottom:2.760000pt;}
.y1b_c00430{bottom:6.425206pt;}
.y1a_c00430{bottom:130.826667pt;}
.y19_c00430{bottom:154.560000pt;}
.y18_c00430{bottom:176.426667pt;}
.y17_c00430{bottom:199.760000pt;}
.y16_c00430{bottom:222.026667pt;}
.y15_c00430{bottom:244.160000pt;}
.y14_c00430{bottom:266.693333pt;}
.y13_c00430{bottom:288.693333pt;}
.y12_c00430{bottom:311.093333pt;}
.y11_c00430{bottom:334.160000pt;}
.y10_c00430{bottom:355.760000pt;}
.yf_c00430{bottom:378.693333pt;}
.ye_c00430{bottom:401.093333pt;}
.yd_c00430{bottom:423.360000pt;}
.yc_c00430{bottom:444.293333pt;}
.yb_c00430{bottom:465.893333pt;}
.ya_c00430{bottom:489.093333pt;}
.y9_c00430{bottom:512.426667pt;}
.y8_c00430{bottom:534.560000pt;}
.y7_c00430{bottom:556.560000pt;}
.y6_c00430{bottom:578.693333pt;}
.y5_c00430{bottom:601.493333pt;}
.y4_c00430{bottom:623.760000pt;}
.y3_c00430{bottom:645.093333pt;}
.y2_c00430{bottom:668.426667pt;}
.y1_c00430{bottom:690.560000pt;}
.h2_c00430{height:11.733399pt;}
.h3_c00430{height:38.937500pt;}
.h1_c00430{height:77.654948pt;}
.h0_c00430{height:728.666667pt;}
.w2_c00430{width:93.222667pt;}
.w1_c00430{width:510.000000pt;}
.w0_c00430{width:510.266667pt;}
.x0_c00430{left:0.000000pt;}
.x3_c00430{left:33.200000pt;}
.x2_c00430{left:34.133333pt;}
.x4_c00430{left:35.466667pt;}
.x1_c00430{left:166.533333pt;}
.x5_c00430{left:212.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_986f068fa69de3e815b0296e.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.568848;font-style:normal;font-weight:normal;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_61d86c3a29efa3ca3e761f0a.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_33dbe4b68f2ecdf836e9cfec.woff2')format("woff");}.ff3_c00431{font-family:ff3_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:ff4_c00431;src:url('chunks/assets/font_35323ef17dd3f92c7c457cb6.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00431{font-family:ff5_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:0.165000px;}
.ls3_c00431{letter-spacing:3.000000px;}
.ls0_c00431{letter-spacing:6.000000px;}
.ls4_c00431{letter-spacing:12.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:-18.075000px;}
.ws1_c00431{word-spacing:-16.629000px;}
.ws2_c00431{word-spacing:0.000000px;}
._a_c00431{margin-left:-39.537000px;}
._6_c00431{margin-left:-25.530000px;}
._1d_c00431{margin-left:-24.180000px;}
._1b_c00431{margin-left:-23.148000px;}
._10_c00431{margin-left:-18.285000px;}
._15_c00431{margin-left:-16.629000px;}
._19_c00431{margin-left:-15.087000px;}
._e_c00431{margin-left:-14.076000px;}
._26_c00431{margin-left:-12.282000px;}
._8_c00431{margin-left:-10.971000px;}
._c_c00431{margin-left:-9.591000px;}
._7_c00431{margin-left:-8.211000px;}
._5_c00431{margin-left:-6.150000px;}
._3_c00431{margin-left:-4.425000px;}
._4_c00431{margin-left:-2.400000px;}
._18_c00431{margin-left:-1.362000px;}
._14_c00431{width:1.434000px;}
._16_c00431{width:2.829000px;}
._21_c00431{width:4.209000px;}
._13_c00431{width:5.229000px;}
._0_c00431{width:7.128000px;}
._20_c00431{width:8.319000px;}
._b_c00431{width:9.453000px;}
._1a_c00431{width:10.986000px;}
._27_c00431{width:12.066000px;}
._17_c00431{width:13.119000px;}
._1_c00431{width:14.904000px;}
._22_c00431{width:16.107000px;}
._f_c00431{width:17.250000px;}
._1c_c00431{width:18.882000px;}
._23_c00431{width:20.688000px;}
._1e_c00431{width:21.849000px;}
._2b_c00431{width:23.874000px;}
._d_c00431{width:32.223000px;}
._24_c00431{width:38.295000px;}
._12_c00431{width:41.592000px;}
._25_c00431{width:47.679000px;}
._29_c00431{width:50.451000px;}
._11_c00431{width:78.729000px;}
._2a_c00431{width:91.263000px;}
._9_c00431{width:120.276000px;}
._28_c00431{width:156.492000px;}
._1f_c00431{width:216.237000px;}
._2_c00431{width:412.200000px;}
.fc2_c00431{color:transparent;}
.fc1_c00431{color:rgb(128,128,128);}
.fc0_c00431{color:rgb(0,0,0);}
.fs5_c00431{font-size:48.000000px;}
.fs4_c00431{font-size:66.000000px;}
.fs2_c00431{font-size:69.000000px;}
.fs0_c00431{font-size:72.000000px;}
.fs1_c00431{font-size:75.000000px;}
.fs3_c00431{font-size:93.000000px;}
.y0_c00431{bottom:0.000000px;}
.y1e_c00431{bottom:3.105000px;}
.y1d_c00431{bottom:7.228363px;}
.y1c_c00431{bottom:86.400000px;}
.y1b_c00431{bottom:112.650000px;}
.y1a_c00431{bottom:138.000000px;}
.y19_c00431{bottom:163.350000px;}
.y18_c00431{bottom:188.550000px;}
.y17_c00431{bottom:213.600000px;}
.y16_c00431{bottom:238.650000px;}
.y15_c00431{bottom:264.150000px;}
.y14_c00431{bottom:289.500000px;}
.y13_c00431{bottom:313.800000px;}
.y12_c00431{bottom:338.550000px;}
.y11_c00431{bottom:363.750000px;}
.y10_c00431{bottom:389.100000px;}
.yf_c00431{bottom:414.000000px;}
.ye_c00431{bottom:439.350000px;}
.yd_c00431{bottom:464.100000px;}
.yc_c00431{bottom:489.300000px;}
.yb_c00431{bottom:515.250000px;}
.ya_c00431{bottom:540.900000px;}
.y9_c00431{bottom:565.950000px;}
.y8_c00431{bottom:591.000000px;}
.y7_c00431{bottom:615.900000px;}
.y6_c00431{bottom:640.950000px;}
.y5_c00431{bottom:666.450000px;}
.y4_c00431{bottom:691.500000px;}
.y3_c00431{bottom:741.150000px;}
.y2_c00431{bottom:766.800000px;}
.y1_c00431{bottom:791.700000px;}
.h5_c00431{height:13.200074px;}
.h6_c00431{height:43.804688px;}
.h3_c00431{height:87.361816px;}
.h2_c00431{height:91.160156px;}
.h4_c00431{height:108.848145px;}
.h1_c00431{height:827.250000px;}
.h0_c00431{height:827.550000px;}
.w2_c00431{width:104.875500px;}
.w0_c00431{width:572.100000px;}
.w1_c00431{width:572.250000px;}
.x0_c00431{left:0.000000px;}
.xc_c00431{left:29.100000px;}
.xb_c00431{left:45.900000px;}
.xa_c00431{left:69.900000px;}
.x6_c00431{left:90.150000px;}
.x8_c00431{left:91.500000px;}
.x5_c00431{left:92.550000px;}
.x7_c00431{left:94.500000px;}
.x2_c00431{left:100.350000px;}
.x1_c00431{left:104.700000px;}
.x9_c00431{left:116.550000px;}
.x4_c00431{left:117.900000px;}
.x3_c00431{left:171.450000px;}
.xd_c00431{left:237.864258px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls2_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:0.146667pt;}
.ls3_c00431{letter-spacing:2.666667pt;}
.ls0_c00431{letter-spacing:5.333333pt;}
.ls4_c00431{letter-spacing:10.666667pt;}
.ws0_c00431{word-spacing:-16.066667pt;}
.ws1_c00431{word-spacing:-14.781333pt;}
.ws2_c00431{word-spacing:0.000000pt;}
._a_c00431{margin-left:-35.144000pt;}
._6_c00431{margin-left:-22.693333pt;}
._1d_c00431{margin-left:-21.493333pt;}
._1b_c00431{margin-left:-20.576000pt;}
._10_c00431{margin-left:-16.253333pt;}
._15_c00431{margin-left:-14.781333pt;}
._19_c00431{margin-left:-13.410667pt;}
._e_c00431{margin-left:-12.512000pt;}
._26_c00431{margin-left:-10.917333pt;}
._8_c00431{margin-left:-9.752000pt;}
._c_c00431{margin-left:-8.525333pt;}
._7_c00431{margin-left:-7.298667pt;}
._5_c00431{margin-left:-5.466667pt;}
._3_c00431{margin-left:-3.933333pt;}
._4_c00431{margin-left:-2.133333pt;}
._18_c00431{margin-left:-1.210667pt;}
._14_c00431{width:1.274667pt;}
._16_c00431{width:2.514667pt;}
._21_c00431{width:3.741333pt;}
._13_c00431{width:4.648000pt;}
._0_c00431{width:6.336000pt;}
._20_c00431{width:7.394667pt;}
._b_c00431{width:8.402667pt;}
._1a_c00431{width:9.765333pt;}
._27_c00431{width:10.725333pt;}
._17_c00431{width:11.661333pt;}
._1_c00431{width:13.248000pt;}
._22_c00431{width:14.317333pt;}
._f_c00431{width:15.333333pt;}
._1c_c00431{width:16.784000pt;}
._23_c00431{width:18.389333pt;}
._1e_c00431{width:19.421333pt;}
._2b_c00431{width:21.221333pt;}
._d_c00431{width:28.642667pt;}
._24_c00431{width:34.040000pt;}
._12_c00431{width:36.970667pt;}
._25_c00431{width:42.381333pt;}
._29_c00431{width:44.845333pt;}
._11_c00431{width:69.981333pt;}
._2a_c00431{width:81.122667pt;}
._9_c00431{width:106.912000pt;}
._28_c00431{width:139.104000pt;}
._1f_c00431{width:192.210667pt;}
._2_c00431{width:366.400000pt;}
.fs5_c00431{font-size:42.666667pt;}
.fs4_c00431{font-size:58.666667pt;}
.fs2_c00431{font-size:61.333333pt;}
.fs0_c00431{font-size:64.000000pt;}
.fs1_c00431{font-size:66.666667pt;}
.fs3_c00431{font-size:82.666667pt;}
.y0_c00431{bottom:0.000000pt;}
.y1e_c00431{bottom:2.760000pt;}
.y1d_c00431{bottom:6.425212pt;}
.y1c_c00431{bottom:76.800000pt;}
.y1b_c00431{bottom:100.133333pt;}
.y1a_c00431{bottom:122.666667pt;}
.y19_c00431{bottom:145.200000pt;}
.y18_c00431{bottom:167.600000pt;}
.y17_c00431{bottom:189.866667pt;}
.y16_c00431{bottom:212.133333pt;}
.y15_c00431{bottom:234.800000pt;}
.y14_c00431{bottom:257.333333pt;}
.y13_c00431{bottom:278.933333pt;}
.y12_c00431{bottom:300.933333pt;}
.y11_c00431{bottom:323.333333pt;}
.y10_c00431{bottom:345.866667pt;}
.yf_c00431{bottom:368.000000pt;}
.ye_c00431{bottom:390.533333pt;}
.yd_c00431{bottom:412.533333pt;}
.yc_c00431{bottom:434.933333pt;}
.yb_c00431{bottom:458.000000pt;}
.ya_c00431{bottom:480.800000pt;}
.y9_c00431{bottom:503.066667pt;}
.y8_c00431{bottom:525.333333pt;}
.y7_c00431{bottom:547.466667pt;}
.y6_c00431{bottom:569.733333pt;}
.y5_c00431{bottom:592.400000pt;}
.y4_c00431{bottom:614.666667pt;}
.y3_c00431{bottom:658.800000pt;}
.y2_c00431{bottom:681.600000pt;}
.y1_c00431{bottom:703.733333pt;}
.h5_c00431{height:11.733399pt;}
.h6_c00431{height:38.937500pt;}
.h3_c00431{height:77.654948pt;}
.h2_c00431{height:81.031250pt;}
.h4_c00431{height:96.753906pt;}
.h1_c00431{height:735.333333pt;}
.h0_c00431{height:735.600000pt;}
.w2_c00431{width:93.222667pt;}
.w0_c00431{width:508.533333pt;}
.w1_c00431{width:508.666667pt;}
.x0_c00431{left:0.000000pt;}
.xc_c00431{left:25.866667pt;}
.xb_c00431{left:40.800000pt;}
.xa_c00431{left:62.133333pt;}
.x6_c00431{left:80.133333pt;}
.x8_c00431{left:81.333333pt;}
.x5_c00431{left:82.266667pt;}
.x7_c00431{left:84.000000pt;}
.x2_c00431{left:89.200000pt;}
.x1_c00431{left:93.066667pt;}
.x9_c00431{left:103.600000pt;}
.x4_c00431{left:104.800000pt;}
.x3_c00431{left:152.400000pt;}
.xd_c00431{left:211.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_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_34945f0c4883bd85190e9e9b.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_e8f61af230853a8c5d06c90c.woff2')format("woff");}.ff2_c00432{font-family:ff2_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:ff3_c00432;src:url('chunks/assets/font_4af427f5efbba84f0bd43afb.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00432{font-family:ff4_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);}
.m1_c00432{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_c00432{vertical-align:0.000000px;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:3.000000px;}
.ls2_c00432{letter-spacing:9.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;}
}
.ws1_c00432{word-spacing:-39.100800px;}
.ws2_c00432{word-spacing:-19.629000px;}
.ws0_c00432{word-spacing:-16.629000px;}
.ws3_c00432{word-spacing:0.000000px;}
._28_c00432{margin-left:-35.397000px;}
._21_c00432{margin-left:-23.391000px;}
._1d_c00432{margin-left:-22.038000px;}
._1c_c00432{margin-left:-20.289000px;}
._1b_c00432{margin-left:-18.384000px;}
._13_c00432{margin-left:-13.761000px;}
._23_c00432{margin-left:-12.462000px;}
._18_c00432{margin-left:-10.893000px;}
._22_c00432{margin-left:-9.123000px;}
._2_c00432{margin-left:-7.935000px;}
._17_c00432{margin-left:-5.829000px;}
._9_c00432{margin-left:-4.554000px;}
._10_c00432{margin-left:-3.279000px;}
._5_c00432{margin-left:-1.794000px;}
._a_c00432{width:1.239000px;}
._0_c00432{width:2.346000px;}
._6_c00432{width:3.450000px;}
._4_c00432{width:4.830000px;}
._c_c00432{width:5.868000px;}
._7_c00432{width:7.212000px;}
._1a_c00432{width:8.487000px;}
._11_c00432{width:9.729000px;}
._b_c00432{width:10.764000px;}
._f_c00432{width:11.868000px;}
._19_c00432{width:13.662000px;}
._e_c00432{width:15.111000px;}
._d_c00432{width:16.449000px;}
._8_c00432{width:17.871000px;}
._15_c00432{width:19.485000px;}
._1e_c00432{width:21.087000px;}
._12_c00432{width:22.290000px;}
._2a_c00432{width:25.197000px;}
._16_c00432{width:31.260000px;}
._27_c00432{width:35.520000px;}
._2d_c00432{width:37.467000px;}
._2b_c00432{width:40.227000px;}
._20_c00432{width:50.301000px;}
._1_c00432{width:51.867000px;}
._29_c00432{width:55.959000px;}
._26_c00432{width:89.250000px;}
._24_c00432{width:111.786000px;}
._1f_c00432{width:121.440000px;}
._2c_c00432{width:147.729000px;}
._2e_c00432{width:204.609000px;}
._25_c00432{width:328.623000px;}
._3_c00432{width:403.650000px;}
._14_c00432{width:421.401000px;}
.fc2_c00432{color:transparent;}
.fc1_c00432{color:rgb(128,128,128);}
.fc0_c00432{color:rgb(0,0,0);}
.fs2_c00432{font-size:48.000000px;}
.fs1_c00432{font-size:55.200000px;}
.fs0_c00432{font-size:69.000000px;}
.y0_c00432{bottom:0.000000px;}
.y1d_c00432{bottom:3.105000px;}
.y1c_c00432{bottom:7.228371px;}
.y1b_c00432{bottom:70.215000px;}
.y1a_c00432{bottom:87.165000px;}
.y19_c00432{bottom:116.115000px;}
.y18_c00432{bottom:138.165000px;}
.y17_c00432{bottom:163.365000px;}
.y16_c00432{bottom:188.715000px;}
.y15_c00432{bottom:213.615000px;}
.y14_c00432{bottom:238.965000px;}
.y13_c00432{bottom:264.315000px;}
.y12_c00432{bottom:314.865000px;}
.y11_c00432{bottom:339.915000px;}
.y10_c00432{bottom:365.865000px;}
.yf_c00432{bottom:390.615000px;}
.ye_c00432{bottom:416.265000px;}
.yd_c00432{bottom:440.865000px;}
.yc_c00432{bottom:466.065000px;}
.yb_c00432{bottom:490.515000px;}
.ya_c00432{bottom:516.165000px;}
.y9_c00432{bottom:541.065000px;}
.y8_c00432{bottom:565.965000px;}
.y7_c00432{bottom:591.015000px;}
.y6_c00432{bottom:616.365000px;}
.y5_c00432{bottom:641.265000px;}
.y4_c00432{bottom:665.865000px;}
.y3_c00432{bottom:691.515000px;}
.y2_c00432{bottom:741.165000px;}
.y1_c00432{bottom:791.565000px;}
.h4_c00432{height:13.200074px;}
.h5_c00432{height:43.804688px;}
.h3_c00432{height:80.758301px;}
.h2_c00432{height:87.361816px;}
.h1_c00432{height:831.000000px;}
.h0_c00432{height:831.075000px;}
.w2_c00432{width:104.875500px;}
.w0_c00432{width:582.375000px;}
.w1_c00432{width:582.750000px;}
.x0_c00432{left:0.000000px;}
.x4_c00432{left:33.750000px;}
.x5_c00432{left:34.800000px;}
.x7_c00432{left:36.000000px;}
.x8_c00432{left:37.500000px;}
.xb_c00432{left:39.150000px;}
.xc_c00432{left:40.800000px;}
.x3_c00432{left:57.300000px;}
.x6_c00432{left:59.400000px;}
.xa_c00432{left:64.200000px;}
.x2_c00432{left:106.050000px;}
.x1_c00432{left:185.550000px;}
.x9_c00432{left:222.150000px;}
.xe_c00432{left:243.001740px;}
.xd_c00432{left:294.900000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:2.666667pt;}
.ls2_c00432{letter-spacing:8.000000pt;}
.ws1_c00432{word-spacing:-34.756267pt;}
.ws2_c00432{word-spacing:-17.448000pt;}
.ws0_c00432{word-spacing:-14.781333pt;}
.ws3_c00432{word-spacing:0.000000pt;}
._28_c00432{margin-left:-31.464000pt;}
._21_c00432{margin-left:-20.792000pt;}
._1d_c00432{margin-left:-19.589333pt;}
._1c_c00432{margin-left:-18.034667pt;}
._1b_c00432{margin-left:-16.341333pt;}
._13_c00432{margin-left:-12.232000pt;}
._23_c00432{margin-left:-11.077333pt;}
._18_c00432{margin-left:-9.682667pt;}
._22_c00432{margin-left:-8.109333pt;}
._2_c00432{margin-left:-7.053333pt;}
._17_c00432{margin-left:-5.181333pt;}
._9_c00432{margin-left:-4.048000pt;}
._10_c00432{margin-left:-2.914667pt;}
._5_c00432{margin-left:-1.594667pt;}
._a_c00432{width:1.101333pt;}
._0_c00432{width:2.085333pt;}
._6_c00432{width:3.066667pt;}
._4_c00432{width:4.293333pt;}
._c_c00432{width:5.216000pt;}
._7_c00432{width:6.410667pt;}
._1a_c00432{width:7.544000pt;}
._11_c00432{width:8.648000pt;}
._b_c00432{width:9.568000pt;}
._f_c00432{width:10.549333pt;}
._19_c00432{width:12.144000pt;}
._e_c00432{width:13.432000pt;}
._d_c00432{width:14.621333pt;}
._8_c00432{width:15.885333pt;}
._15_c00432{width:17.320000pt;}
._1e_c00432{width:18.744000pt;}
._12_c00432{width:19.813333pt;}
._2a_c00432{width:22.397333pt;}
._16_c00432{width:27.786667pt;}
._27_c00432{width:31.573333pt;}
._2d_c00432{width:33.304000pt;}
._2b_c00432{width:35.757333pt;}
._20_c00432{width:44.712000pt;}
._1_c00432{width:46.104000pt;}
._29_c00432{width:49.741333pt;}
._26_c00432{width:79.333333pt;}
._24_c00432{width:99.365333pt;}
._1f_c00432{width:107.946667pt;}
._2c_c00432{width:131.314667pt;}
._2e_c00432{width:181.874667pt;}
._25_c00432{width:292.109333pt;}
._3_c00432{width:358.800000pt;}
._14_c00432{width:374.578667pt;}
.fs2_c00432{font-size:42.666667pt;}
.fs1_c00432{font-size:49.066667pt;}
.fs0_c00432{font-size:61.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y1d_c00432{bottom:2.760000pt;}
.y1c_c00432{bottom:6.425219pt;}
.y1b_c00432{bottom:62.413333pt;}
.y1a_c00432{bottom:77.480000pt;}
.y19_c00432{bottom:103.213333pt;}
.y18_c00432{bottom:122.813333pt;}
.y17_c00432{bottom:145.213333pt;}
.y16_c00432{bottom:167.746667pt;}
.y15_c00432{bottom:189.880000pt;}
.y14_c00432{bottom:212.413333pt;}
.y13_c00432{bottom:234.946667pt;}
.y12_c00432{bottom:279.880000pt;}
.y11_c00432{bottom:302.146667pt;}
.y10_c00432{bottom:325.213333pt;}
.yf_c00432{bottom:347.213333pt;}
.ye_c00432{bottom:370.013333pt;}
.yd_c00432{bottom:391.880000pt;}
.yc_c00432{bottom:414.280000pt;}
.yb_c00432{bottom:436.013333pt;}
.ya_c00432{bottom:458.813333pt;}
.y9_c00432{bottom:480.946667pt;}
.y8_c00432{bottom:503.080000pt;}
.y7_c00432{bottom:525.346667pt;}
.y6_c00432{bottom:547.880000pt;}
.y5_c00432{bottom:570.013333pt;}
.y4_c00432{bottom:591.880000pt;}
.y3_c00432{bottom:614.680000pt;}
.y2_c00432{bottom:658.813333pt;}
.y1_c00432{bottom:703.613333pt;}
.h4_c00432{height:11.733399pt;}
.h5_c00432{height:38.937500pt;}
.h3_c00432{height:71.785156pt;}
.h2_c00432{height:77.654948pt;}
.h1_c00432{height:738.666667pt;}
.h0_c00432{height:738.733333pt;}
.w2_c00432{width:93.222667pt;}
.w0_c00432{width:517.666667pt;}
.w1_c00432{width:518.000000pt;}
.x0_c00432{left:0.000000pt;}
.x4_c00432{left:30.000000pt;}
.x5_c00432{left:30.933333pt;}
.x7_c00432{left:32.000000pt;}
.x8_c00432{left:33.333333pt;}
.xb_c00432{left:34.800000pt;}
.xc_c00432{left:36.266667pt;}
.x3_c00432{left:50.933333pt;}
.x6_c00432{left:52.800000pt;}
.xa_c00432{left:57.066667pt;}
.x2_c00432{left:94.266667pt;}
.x1_c00432{left:164.933333pt;}
.x9_c00432{left:197.466667pt;}
.xe_c00432{left:216.001546pt;}
.xd_c00432{left:262.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_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_68200612b6d7ea43d27c67a1.woff2')format("woff");}.ff1_c00433{font-family:ff1_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:ff2_c00433;src:url('chunks/assets/font_f96ea438c9fe02beb9b39d1b.woff2')format("woff");}.ff2_c00433{font-family:ff2_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:ff3_c00433;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00433{font-family:ff3_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;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls3_c00433{letter-spacing:3.000000px;}
.ls2_c00433{letter-spacing:9.000000px;}
.ls0_c00433{letter-spacing:17.325000px;}
.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:-19.629000px;}
.ws1_c00433{word-spacing:-16.629000px;}
.ws0_c00433{word-spacing:-5.274000px;}
.ws3_c00433{word-spacing:0.000000px;}
._24_c00433{margin-left:-27.309000px;}
._2a_c00433{margin-left:-23.115000px;}
._1d_c00433{margin-left:-21.873000px;}
._2_c00433{margin-left:-17.181000px;}
._19_c00433{margin-left:-14.697000px;}
._13_c00433{margin-left:-13.173000px;}
._1b_c00433{margin-left:-11.385000px;}
._12_c00433{margin-left:-10.074000px;}
._11_c00433{margin-left:-8.280000px;}
._17_c00433{margin-left:-7.107000px;}
._e_c00433{margin-left:-5.796000px;}
._f_c00433{margin-left:-3.795000px;}
._0_c00433{margin-left:-2.208000px;}
._1_c00433{margin-left:-1.104000px;}
._a_c00433{width:1.380000px;}
._b_c00433{width:2.622000px;}
._d_c00433{width:3.933000px;}
._8_c00433{width:5.589000px;}
._15_c00433{width:6.969000px;}
._c_c00433{width:8.556000px;}
._14_c00433{width:10.074000px;}
._9_c00433{width:11.109000px;}
._21_c00433{width:12.903000px;}
._5_c00433{width:15.387000px;}
._4_c00433{width:16.491000px;}
._2c_c00433{width:17.871000px;}
._16_c00433{width:18.906000px;}
._28_c00433{width:20.631000px;}
._3_c00433{width:21.666000px;}
._6_c00433{width:23.115000px;}
._23_c00433{width:24.219000px;}
._25_c00433{width:25.806000px;}
._7_c00433{width:27.861000px;}
._29_c00433{width:28.980000px;}
._2b_c00433{width:33.501000px;}
._26_c00433{width:35.328000px;}
._18_c00433{width:36.984000px;}
._10_c00433{width:38.847000px;}
._1c_c00433{width:48.549000px;}
._1f_c00433{width:63.963000px;}
._22_c00433{width:90.873000px;}
._1a_c00433{width:102.963000px;}
._2d_c00433{width:113.778000px;}
._1e_c00433{width:132.423000px;}
._27_c00433{width:210.003000px;}
._20_c00433{width:228.114000px;}
.fc2_c00433{color:transparent;}
.fc1_c00433{color:rgb(128,128,128);}
.fc0_c00433{color:rgb(0,0,0);}
.fs1_c00433{font-size:48.000000px;}
.fs0_c00433{font-size:69.000000px;}
.y0_c00433{bottom:0.000000px;}
.y1e_c00433{bottom:3.105000px;}
.y1d_c00433{bottom:7.228363px;}
.y1b_c00433{bottom:78.750000px;}
.y1a_c00433{bottom:105.000000px;}
.y19_c00433{bottom:134.700000px;}
.y18_c00433{bottom:155.550000px;}
.y17_c00433{bottom:181.200000px;}
.y16_c00433{bottom:206.550000px;}
.y15_c00433{bottom:231.900000px;}
.y14_c00433{bottom:256.500000px;}
.y13_c00433{bottom:282.450000px;}
.y12_c00433{bottom:306.900000px;}
.y11_c00433{bottom:331.800000px;}
.y10_c00433{bottom:356.700000px;}
.yf_c00433{bottom:382.050000px;}
.ye_c00433{bottom:406.800000px;}
.y1c_c00433{bottom:414.150000px;}
.yd_c00433{bottom:433.800000px;}
.yc_c00433{bottom:457.950000px;}
.yb_c00433{bottom:483.600000px;}
.ya_c00433{bottom:508.050000px;}
.y9_c00433{bottom:533.250000px;}
.y8_c00433{bottom:559.200000px;}
.y7_c00433{bottom:584.250000px;}
.y6_c00433{bottom:609.600000px;}
.y5_c00433{bottom:634.800000px;}
.y4_c00433{bottom:660.450000px;}
.y3_c00433{bottom:685.200000px;}
.y2_c00433{bottom:734.700000px;}
.y1_c00433{bottom:786.300000px;}
.h4_c00433{height:13.200074px;}
.h5_c00433{height:43.804688px;}
.h2_c00433{height:80.758301px;}
.h3_c00433{height:87.361816px;}
.h1_c00433{height:827.250000px;}
.h0_c00433{height:827.550000px;}
.w2_c00433{width:104.875500px;}
.w0_c00433{width:572.100000px;}
.w1_c00433{width:572.250000px;}
.x0_c00433{left:0.000000px;}
.x7_c00433{left:27.000000px;}
.x6_c00433{left:28.050000px;}
.xf_c00433{left:31.050000px;}
.xe_c00433{left:33.450000px;}
.xc_c00433{left:36.150000px;}
.x9_c00433{left:44.250000px;}
.x5_c00433{left:48.000000px;}
.xd_c00433{left:50.400000px;}
.x8_c00433{left:92.250000px;}
.x4_c00433{left:93.750000px;}
.xa_c00433{left:95.250000px;}
.xb_c00433{left:96.600000px;}
.x3_c00433{left:118.500000px;}
.x2_c00433{left:197.100000px;}
.x10_c00433{left:237.864258px;}
.x1_c00433{left:247.950000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls3_c00433{letter-spacing:2.666667pt;}
.ls2_c00433{letter-spacing:8.000000pt;}
.ls0_c00433{letter-spacing:15.400000pt;}
.ws2_c00433{word-spacing:-17.448000pt;}
.ws1_c00433{word-spacing:-14.781333pt;}
.ws0_c00433{word-spacing:-4.688000pt;}
.ws3_c00433{word-spacing:0.000000pt;}
._24_c00433{margin-left:-24.274667pt;}
._2a_c00433{margin-left:-20.546667pt;}
._1d_c00433{margin-left:-19.442667pt;}
._2_c00433{margin-left:-15.272000pt;}
._19_c00433{margin-left:-13.064000pt;}
._13_c00433{margin-left:-11.709333pt;}
._1b_c00433{margin-left:-10.120000pt;}
._12_c00433{margin-left:-8.954667pt;}
._11_c00433{margin-left:-7.360000pt;}
._17_c00433{margin-left:-6.317333pt;}
._e_c00433{margin-left:-5.152000pt;}
._f_c00433{margin-left:-3.373333pt;}
._0_c00433{margin-left:-1.962667pt;}
._1_c00433{margin-left:-0.981333pt;}
._a_c00433{width:1.226667pt;}
._b_c00433{width:2.330667pt;}
._d_c00433{width:3.496000pt;}
._8_c00433{width:4.968000pt;}
._15_c00433{width:6.194667pt;}
._c_c00433{width:7.605333pt;}
._14_c00433{width:8.954667pt;}
._9_c00433{width:9.874667pt;}
._21_c00433{width:11.469333pt;}
._5_c00433{width:13.677333pt;}
._4_c00433{width:14.658667pt;}
._2c_c00433{width:15.885333pt;}
._16_c00433{width:16.805333pt;}
._28_c00433{width:18.338667pt;}
._3_c00433{width:19.258667pt;}
._6_c00433{width:20.546667pt;}
._23_c00433{width:21.528000pt;}
._25_c00433{width:22.938667pt;}
._7_c00433{width:24.765333pt;}
._29_c00433{width:25.760000pt;}
._2b_c00433{width:29.778667pt;}
._26_c00433{width:31.402667pt;}
._18_c00433{width:32.874667pt;}
._10_c00433{width:34.530667pt;}
._1c_c00433{width:43.154667pt;}
._1f_c00433{width:56.856000pt;}
._22_c00433{width:80.776000pt;}
._1a_c00433{width:91.522667pt;}
._2d_c00433{width:101.136000pt;}
._1e_c00433{width:117.709333pt;}
._27_c00433{width:186.669333pt;}
._20_c00433{width:202.768000pt;}
.fs1_c00433{font-size:42.666667pt;}
.fs0_c00433{font-size:61.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y1e_c00433{bottom:2.760000pt;}
.y1d_c00433{bottom:6.425212pt;}
.y1b_c00433{bottom:70.000000pt;}
.y1a_c00433{bottom:93.333333pt;}
.y19_c00433{bottom:119.733333pt;}
.y18_c00433{bottom:138.266667pt;}
.y17_c00433{bottom:161.066667pt;}
.y16_c00433{bottom:183.600000pt;}
.y15_c00433{bottom:206.133333pt;}
.y14_c00433{bottom:228.000000pt;}
.y13_c00433{bottom:251.066667pt;}
.y12_c00433{bottom:272.800000pt;}
.y11_c00433{bottom:294.933333pt;}
.y10_c00433{bottom:317.066667pt;}
.yf_c00433{bottom:339.600000pt;}
.ye_c00433{bottom:361.600000pt;}
.y1c_c00433{bottom:368.133333pt;}
.yd_c00433{bottom:385.600000pt;}
.yc_c00433{bottom:407.066667pt;}
.yb_c00433{bottom:429.866667pt;}
.ya_c00433{bottom:451.600000pt;}
.y9_c00433{bottom:474.000000pt;}
.y8_c00433{bottom:497.066667pt;}
.y7_c00433{bottom:519.333333pt;}
.y6_c00433{bottom:541.866667pt;}
.y5_c00433{bottom:564.266667pt;}
.y4_c00433{bottom:587.066667pt;}
.y3_c00433{bottom:609.066667pt;}
.y2_c00433{bottom:653.066667pt;}
.y1_c00433{bottom:698.933333pt;}
.h4_c00433{height:11.733399pt;}
.h5_c00433{height:38.937500pt;}
.h2_c00433{height:71.785156pt;}
.h3_c00433{height:77.654948pt;}
.h1_c00433{height:735.333333pt;}
.h0_c00433{height:735.600000pt;}
.w2_c00433{width:93.222667pt;}
.w0_c00433{width:508.533333pt;}
.w1_c00433{width:508.666667pt;}
.x0_c00433{left:0.000000pt;}
.x7_c00433{left:24.000000pt;}
.x6_c00433{left:24.933333pt;}
.xf_c00433{left:27.600000pt;}
.xe_c00433{left:29.733333pt;}
.xc_c00433{left:32.133333pt;}
.x9_c00433{left:39.333333pt;}
.x5_c00433{left:42.666667pt;}
.xd_c00433{left:44.800000pt;}
.x8_c00433{left:82.000000pt;}
.x4_c00433{left:83.333333pt;}
.xa_c00433{left:84.666667pt;}
.xb_c00433{left:85.866667pt;}
.x3_c00433{left:105.333333pt;}
.x2_c00433{left:175.200000pt;}
.x10_c00433{left:211.434896pt;}
.x1_c00433{left:220.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b09a57dae0c3da11d3024e4.woff2')format("woff");}.ff1_c00434{font-family:ff1_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:ff2_c00434;src:url('chunks/assets/font_79cd10c59871597df213b71b.woff2')format("woff");}.ff2_c00434{font-family:ff2_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:ff3_c00434;src:url('chunks/assets/font_aa60eef2ae38e707e63a0da6.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_f64b4d3d3bb01eec8f695235.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00434{font-family:ff5_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;}
.ls3_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:3.000000px;}
.ls4_c00434{letter-spacing:9.000000px;}
.ls1_c00434{letter-spacing:24.000000px;}
.ls0_c00434{letter-spacing:500.571000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00434{word-spacing:-44.022000px;}
.ws4_c00434{word-spacing:-39.100800px;}
.ws3_c00434{word-spacing:-25.629000px;}
.ws0_c00434{word-spacing:-19.629000px;}
.ws1_c00434{word-spacing:-16.629000px;}
.ws5_c00434{word-spacing:0.000000px;}
._0_c00434{margin-left:-40.779000px;}
._16_c00434{margin-left:-26.091000px;}
._1f_c00434{margin-left:-21.324000px;}
._5_c00434{margin-left:-18.837000px;}
._24_c00434{margin-left:-16.884000px;}
._18_c00434{margin-left:-12.345000px;}
._19_c00434{margin-left:-9.453000px;}
._1c_c00434{margin-left:-8.337000px;}
._4_c00434{margin-left:-7.023000px;}
._f_c00434{margin-left:-5.382000px;}
._21_c00434{margin-left:-4.323000px;}
._12_c00434{margin-left:-3.084000px;}
._3_c00434{margin-left:-1.932000px;}
._c_c00434{width:1.035000px;}
._b_c00434{width:2.622000px;}
._9_c00434{width:3.657000px;}
._17_c00434{width:4.719000px;}
._7_c00434{width:5.727000px;}
._6_c00434{width:6.762000px;}
._1a_c00434{width:7.866000px;}
._8_c00434{width:9.108000px;}
._1b_c00434{width:10.143000px;}
._2_c00434{width:11.661000px;}
._e_c00434{width:13.179000px;}
._d_c00434{width:14.421000px;}
._11_c00434{width:16.620000px;}
._10_c00434{width:17.769000px;}
._a_c00434{width:21.114000px;}
._13_c00434{width:22.404000px;}
._22_c00434{width:24.303000px;}
._23_c00434{width:25.650000px;}
._15_c00434{width:30.498000px;}
._25_c00434{width:34.332000px;}
._1e_c00434{width:37.464000px;}
._1_c00434{width:69.783000px;}
._20_c00434{width:93.771000px;}
._1d_c00434{width:139.329000px;}
._14_c00434{width:151.089000px;}
._26_c00434{width:1360.143000px;}
.fc2_c00434{color:transparent;}
.fc1_c00434{color:rgb(128,128,128);}
.fc0_c00434{color:rgb(0,0,0);}
.fs3_c00434{font-size:48.000000px;}
.fs2_c00434{font-size:55.200000px;}
.fs1_c00434{font-size:66.000000px;}
.fs0_c00434{font-size:69.000000px;}
.y0_c00434{bottom:0.000000px;}
.y1f_c00434{bottom:3.105000px;}
.y1e_c00434{bottom:7.228371px;}
.y1d_c00434{bottom:63.465000px;}
.y1c_c00434{bottom:112.515000px;}
.y1b_c00434{bottom:138.165000px;}
.y1a_c00434{bottom:163.665000px;}
.y19_c00434{bottom:187.965000px;}
.y18_c00434{bottom:213.315000px;}
.y17_c00434{bottom:238.365000px;}
.y16_c00434{bottom:263.265000px;}
.y15_c00434{bottom:288.015000px;}
.y14_c00434{bottom:312.615000px;}
.y13_c00434{bottom:337.815000px;}
.y12_c00434{bottom:362.865000px;}
.y11_c00434{bottom:387.765000px;}
.y10_c00434{bottom:412.815000px;}
.yf_c00434{bottom:438.165000px;}
.ye_c00434{bottom:462.915000px;}
.yd_c00434{bottom:487.815000px;}
.yc_c00434{bottom:512.715000px;}
.yb_c00434{bottom:537.615000px;}
.ya_c00434{bottom:562.365000px;}
.y9_c00434{bottom:587.565000px;}
.y8_c00434{bottom:612.615000px;}
.y7_c00434{bottom:637.515000px;}
.y6_c00434{bottom:662.265000px;}
.y5_c00434{bottom:687.615000px;}
.y4_c00434{bottom:712.815000px;}
.y3_c00434{bottom:737.565000px;}
.y2_c00434{bottom:762.465000px;}
.y1_c00434{bottom:786.765000px;}
.h3_c00434{height:13.200074px;}
.h4_c00434{height:43.804688px;}
.h2_c00434{height:87.361816px;}
.h1_c00434{height:831.000000px;}
.h0_c00434{height:831.075000px;}
.w2_c00434{width:104.875500px;}
.w0_c00434{width:582.375000px;}
.w1_c00434{width:582.750000px;}
.x0_c00434{left:0.000000px;}
.x6_c00434{left:25.350000px;}
.x8_c00434{left:28.650000px;}
.x7_c00434{left:30.300000px;}
.x4_c00434{left:31.650000px;}
.x5_c00434{left:33.000000px;}
.x2_c00434{left:34.500000px;}
.x3_c00434{left:36.000000px;}
.x1_c00434{left:157.800000px;}
.xa_c00434{left:243.001740px;}
.x9_c00434{left:259.200000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls3_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:2.666667pt;}
.ls4_c00434{letter-spacing:8.000000pt;}
.ls1_c00434{letter-spacing:21.333333pt;}
.ls0_c00434{letter-spacing:444.952000pt;}
.ws2_c00434{word-spacing:-39.130667pt;}
.ws4_c00434{word-spacing:-34.756267pt;}
.ws3_c00434{word-spacing:-22.781333pt;}
.ws0_c00434{word-spacing:-17.448000pt;}
.ws1_c00434{word-spacing:-14.781333pt;}
.ws5_c00434{word-spacing:0.000000pt;}
._0_c00434{margin-left:-36.248000pt;}
._16_c00434{margin-left:-23.192000pt;}
._1f_c00434{margin-left:-18.954667pt;}
._5_c00434{margin-left:-16.744000pt;}
._24_c00434{margin-left:-15.008000pt;}
._18_c00434{margin-left:-10.973333pt;}
._19_c00434{margin-left:-8.402667pt;}
._1c_c00434{margin-left:-7.410667pt;}
._4_c00434{margin-left:-6.242667pt;}
._f_c00434{margin-left:-4.784000pt;}
._21_c00434{margin-left:-3.842667pt;}
._12_c00434{margin-left:-2.741333pt;}
._3_c00434{margin-left:-1.717333pt;}
._c_c00434{width:0.920000pt;}
._b_c00434{width:2.330667pt;}
._9_c00434{width:3.250667pt;}
._17_c00434{width:4.194667pt;}
._7_c00434{width:5.090667pt;}
._6_c00434{width:6.010667pt;}
._1a_c00434{width:6.992000pt;}
._8_c00434{width:8.096000pt;}
._1b_c00434{width:9.016000pt;}
._2_c00434{width:10.365333pt;}
._e_c00434{width:11.714667pt;}
._d_c00434{width:12.818667pt;}
._11_c00434{width:14.773333pt;}
._10_c00434{width:15.794667pt;}
._a_c00434{width:18.768000pt;}
._13_c00434{width:19.914667pt;}
._22_c00434{width:21.602667pt;}
._23_c00434{width:22.800000pt;}
._15_c00434{width:27.109333pt;}
._25_c00434{width:30.517333pt;}
._1e_c00434{width:33.301333pt;}
._1_c00434{width:62.029333pt;}
._20_c00434{width:83.352000pt;}
._1d_c00434{width:123.848000pt;}
._14_c00434{width:134.301333pt;}
._26_c00434{width:1209.016000pt;}
.fs3_c00434{font-size:42.666667pt;}
.fs2_c00434{font-size:49.066667pt;}
.fs1_c00434{font-size:58.666667pt;}
.fs0_c00434{font-size:61.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y1f_c00434{bottom:2.760000pt;}
.y1e_c00434{bottom:6.425219pt;}
.y1d_c00434{bottom:56.413333pt;}
.y1c_c00434{bottom:100.013333pt;}
.y1b_c00434{bottom:122.813333pt;}
.y1a_c00434{bottom:145.480000pt;}
.y19_c00434{bottom:167.080000pt;}
.y18_c00434{bottom:189.613333pt;}
.y17_c00434{bottom:211.880000pt;}
.y16_c00434{bottom:234.013333pt;}
.y15_c00434{bottom:256.013333pt;}
.y14_c00434{bottom:277.880000pt;}
.y13_c00434{bottom:300.280000pt;}
.y12_c00434{bottom:322.546667pt;}
.y11_c00434{bottom:344.680000pt;}
.y10_c00434{bottom:366.946667pt;}
.yf_c00434{bottom:389.480000pt;}
.ye_c00434{bottom:411.480000pt;}
.yd_c00434{bottom:433.613333pt;}
.yc_c00434{bottom:455.746667pt;}
.yb_c00434{bottom:477.880000pt;}
.ya_c00434{bottom:499.880000pt;}
.y9_c00434{bottom:522.280000pt;}
.y8_c00434{bottom:544.546667pt;}
.y7_c00434{bottom:566.680000pt;}
.y6_c00434{bottom:588.680000pt;}
.y5_c00434{bottom:611.213333pt;}
.y4_c00434{bottom:633.613333pt;}
.y3_c00434{bottom:655.613333pt;}
.y2_c00434{bottom:677.746667pt;}
.y1_c00434{bottom:699.346667pt;}
.h3_c00434{height:11.733399pt;}
.h4_c00434{height:38.937500pt;}
.h2_c00434{height:77.654948pt;}
.h1_c00434{height:738.666667pt;}
.h0_c00434{height:738.733333pt;}
.w2_c00434{width:93.222667pt;}
.w0_c00434{width:517.666667pt;}
.w1_c00434{width:518.000000pt;}
.x0_c00434{left:0.000000pt;}
.x6_c00434{left:22.533333pt;}
.x8_c00434{left:25.466667pt;}
.x7_c00434{left:26.933333pt;}
.x4_c00434{left:28.133333pt;}
.x5_c00434{left:29.333333pt;}
.x2_c00434{left:30.666667pt;}
.x3_c00434{left:32.000000pt;}
.x1_c00434{left:140.266667pt;}
.xa_c00434{left:216.001546pt;}
.x9_c00434{left:230.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33c83fc5a9509b24a1a9761c.woff2')format("woff");}.ff1_c00435{font-family:ff1_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:ff2_c00435;src:url('chunks/assets/font_91f3127089b3f285665cda04.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_9481aa81315f3bbee462f673.woff2')format("woff");}.ff3_c00435{font-family:ff3_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:ff4_c00435;src:url('chunks/assets/font_75d502e2afbc1217f75b18f4.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00435{font-family:ff5_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);}
.m1_c00435{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls8_c00435{letter-spacing:0.000000px;}
.ls7_c00435{letter-spacing:3.000000px;}
.ls5_c00435{letter-spacing:6.000000px;}
.ls6_c00435{letter-spacing:9.000000px;}
.ls4_c00435{letter-spacing:16.353000px;}
.ls3_c00435{letter-spacing:30.114000px;}
.ls2_c00435{letter-spacing:37.200000px;}
.ls0_c00435{letter-spacing:39.600000px;}
.ls1_c00435{letter-spacing:49.299000px;}
.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;}
}
.ws6_c00435{word-spacing:-44.022000px;}
.ws4_c00435{word-spacing:-25.629000px;}
.ws5_c00435{word-spacing:-19.629000px;}
.ws3_c00435{word-spacing:-16.629000px;}
.ws2_c00435{word-spacing:-8.112000px;}
.ws0_c00435{word-spacing:-8.103000px;}
.ws1_c00435{word-spacing:-5.826000px;}
.ws7_c00435{word-spacing:0.000000px;}
._25_c00435{margin-left:-64.224000px;}
._2b_c00435{margin-left:-58.773000px;}
._23_c00435{margin-left:-34.431000px;}
._32_c00435{margin-left:-29.433000px;}
._21_c00435{margin-left:-24.702000px;}
._1f_c00435{margin-left:-22.494000px;}
._6_c00435{margin-left:-20.367000px;}
._2f_c00435{margin-left:-17.457000px;}
._7_c00435{margin-left:-15.801000px;}
._15_c00435{margin-left:-14.559000px;}
._34_c00435{margin-left:-11.928000px;}
._f_c00435{margin-left:-10.491000px;}
._1d_c00435{margin-left:-9.108000px;}
._13_c00435{margin-left:-7.866000px;}
._c_c00435{margin-left:-6.762000px;}
._a_c00435{margin-left:-5.175000px;}
._d_c00435{margin-left:-3.795000px;}
._b_c00435{margin-left:-2.553000px;}
._e_c00435{margin-left:-1.449000px;}
._9_c00435{width:2.001000px;}
._1c_c00435{width:3.174000px;}
._4_c00435{width:4.209000px;}
._5_c00435{width:5.658000px;}
._11_c00435{width:7.245000px;}
._37_c00435{width:8.247000px;}
._18_c00435{width:9.384000px;}
._29_c00435{width:11.004000px;}
._1_c00435{width:12.144000px;}
._17_c00435{width:13.593000px;}
._12_c00435{width:15.249000px;}
._1b_c00435{width:16.872000px;}
._10_c00435{width:18.561000px;}
._3a_c00435{width:19.950000px;}
._2_c00435{width:21.981000px;}
._16_c00435{width:23.874000px;}
._38_c00435{width:26.358000px;}
._3_c00435{width:29.604000px;}
._14_c00435{width:31.563000px;}
._27_c00435{width:33.777000px;}
._0_c00435{width:35.400000px;}
._28_c00435{width:37.293000px;}
._2c_c00435{width:48.162000px;}
._33_c00435{width:50.904000px;}
._39_c00435{width:88.911000px;}
._2a_c00435{width:90.285000px;}
._2e_c00435{width:116.268000px;}
._2d_c00435{width:121.440000px;}
._35_c00435{width:131.583000px;}
._19_c00435{width:158.700000px;}
._8_c00435{width:161.598000px;}
._36_c00435{width:182.274000px;}
._30_c00435{width:184.368000px;}
._31_c00435{width:187.542000px;}
._24_c00435{width:214.383000px;}
._22_c00435{width:256.980000px;}
._1a_c00435{width:280.830000px;}
._1e_c00435{width:625.152000px;}
._26_c00435{width:626.949000px;}
._20_c00435{width:711.459000px;}
._3b_c00435{width:779.649000px;}
.fc2_c00435{color:transparent;}
.fc1_c00435{color:rgb(128,128,128);}
.fc0_c00435{color:rgb(0,0,0);}
.fs2_c00435{font-size:48.000000px;}
.fs1_c00435{font-size:66.000000px;}
.fs0_c00435{font-size:69.000000px;}
.y0_c00435{bottom:0.000000px;}
.y1d_c00435{bottom:3.105000px;}
.y1c_c00435{bottom:7.228371px;}
.y1b_c00435{bottom:39.915000px;}
.y1a_c00435{bottom:65.265000px;}
.y19_c00435{bottom:91.515000px;}
.y18_c00435{bottom:115.815000px;}
.y17_c00435{bottom:142.515000px;}
.y16_c00435{bottom:167.715000px;}
.y15_c00435{bottom:192.165000px;}
.y14_c00435{bottom:217.365000px;}
.y13_c00435{bottom:241.665000px;}
.y12_c00435{bottom:267.615000px;}
.y11_c00435{bottom:292.365000px;}
.y10_c00435{bottom:316.215000px;}
.yf_c00435{bottom:341.265000px;}
.ye_c00435{bottom:366.165000px;}
.yd_c00435{bottom:416.565000px;}
.yc_c00435{bottom:445.965000px;}
.yb_c00435{bottom:466.065000px;}
.ya_c00435{bottom:491.715000px;}
.y9_c00435{bottom:518.115000px;}
.y8_c00435{bottom:541.815000px;}
.y7_c00435{bottom:567.315000px;}
.y6_c00435{bottom:592.365000px;}
.y5_c00435{bottom:616.965000px;}
.y4_c00435{bottom:641.715000px;}
.y3_c00435{bottom:667.665000px;}
.y2_c00435{bottom:716.265000px;}
.y1_c00435{bottom:740.865000px;}
.h4_c00435{height:13.200074px;}
.h5_c00435{height:43.804688px;}
.h2_c00435{height:80.758301px;}
.h3_c00435{height:87.361816px;}
.h0_c00435{height:812.175000px;}
.h1_c00435{height:812.250000px;}
.w2_c00435{width:104.875500px;}
.w1_c00435{width:561.000000px;}
.w0_c00435{width:561.075000px;}
.x0_c00435{left:0.000000px;}
.xb_c00435{left:26.700000px;}
.xe_c00435{left:28.050000px;}
.x6_c00435{left:34.800000px;}
.x8_c00435{left:41.850000px;}
.x3_c00435{left:54.750000px;}
.x9_c00435{left:63.000000px;}
.x5_c00435{left:88.050000px;}
.x7_c00435{left:90.150000px;}
.x4_c00435{left:91.800000px;}
.xd_c00435{left:93.450000px;}
.xa_c00435{left:117.450000px;}
.xc_c00435{left:130.650000px;}
.x2_c00435{left:198.450000px;}
.x11_c00435{left:232.351730px;}
.xf_c00435{left:248.100000px;}
.x10_c00435{left:263.850000px;}
.x1_c00435{left:433.650000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls8_c00435{letter-spacing:0.000000pt;}
.ls7_c00435{letter-spacing:2.666667pt;}
.ls5_c00435{letter-spacing:5.333333pt;}
.ls6_c00435{letter-spacing:8.000000pt;}
.ls4_c00435{letter-spacing:14.536000pt;}
.ls3_c00435{letter-spacing:26.768000pt;}
.ls2_c00435{letter-spacing:33.066667pt;}
.ls0_c00435{letter-spacing:35.200000pt;}
.ls1_c00435{letter-spacing:43.821333pt;}
.ws6_c00435{word-spacing:-39.130667pt;}
.ws4_c00435{word-spacing:-22.781333pt;}
.ws5_c00435{word-spacing:-17.448000pt;}
.ws3_c00435{word-spacing:-14.781333pt;}
.ws2_c00435{word-spacing:-7.210667pt;}
.ws0_c00435{word-spacing:-7.202667pt;}
.ws1_c00435{word-spacing:-5.178667pt;}
.ws7_c00435{word-spacing:0.000000pt;}
._25_c00435{margin-left:-57.088000pt;}
._2b_c00435{margin-left:-52.242667pt;}
._23_c00435{margin-left:-30.605333pt;}
._32_c00435{margin-left:-26.162667pt;}
._21_c00435{margin-left:-21.957333pt;}
._1f_c00435{margin-left:-19.994667pt;}
._6_c00435{margin-left:-18.104000pt;}
._2f_c00435{margin-left:-15.517333pt;}
._7_c00435{margin-left:-14.045333pt;}
._15_c00435{margin-left:-12.941333pt;}
._34_c00435{margin-left:-10.602667pt;}
._f_c00435{margin-left:-9.325333pt;}
._1d_c00435{margin-left:-8.096000pt;}
._13_c00435{margin-left:-6.992000pt;}
._c_c00435{margin-left:-6.010667pt;}
._a_c00435{margin-left:-4.600000pt;}
._d_c00435{margin-left:-3.373333pt;}
._b_c00435{margin-left:-2.269333pt;}
._e_c00435{margin-left:-1.288000pt;}
._9_c00435{width:1.778667pt;}
._1c_c00435{width:2.821333pt;}
._4_c00435{width:3.741333pt;}
._5_c00435{width:5.029333pt;}
._11_c00435{width:6.440000pt;}
._37_c00435{width:7.330667pt;}
._18_c00435{width:8.341333pt;}
._29_c00435{width:9.781333pt;}
._1_c00435{width:10.794667pt;}
._17_c00435{width:12.082667pt;}
._12_c00435{width:13.554667pt;}
._1b_c00435{width:14.997333pt;}
._10_c00435{width:16.498667pt;}
._3a_c00435{width:17.733333pt;}
._2_c00435{width:19.538667pt;}
._16_c00435{width:21.221333pt;}
._38_c00435{width:23.429333pt;}
._3_c00435{width:26.314667pt;}
._14_c00435{width:28.056000pt;}
._27_c00435{width:30.024000pt;}
._0_c00435{width:31.466667pt;}
._28_c00435{width:33.149333pt;}
._2c_c00435{width:42.810667pt;}
._33_c00435{width:45.248000pt;}
._39_c00435{width:79.032000pt;}
._2a_c00435{width:80.253333pt;}
._2e_c00435{width:103.349333pt;}
._2d_c00435{width:107.946667pt;}
._35_c00435{width:116.962667pt;}
._19_c00435{width:141.066667pt;}
._8_c00435{width:143.642667pt;}
._36_c00435{width:162.021333pt;}
._30_c00435{width:163.882667pt;}
._31_c00435{width:166.704000pt;}
._24_c00435{width:190.562667pt;}
._22_c00435{width:228.426667pt;}
._1a_c00435{width:249.626667pt;}
._1e_c00435{width:555.690667pt;}
._26_c00435{width:557.288000pt;}
._20_c00435{width:632.408000pt;}
._3b_c00435{width:693.021333pt;}
.fs2_c00435{font-size:42.666667pt;}
.fs1_c00435{font-size:58.666667pt;}
.fs0_c00435{font-size:61.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y1d_c00435{bottom:2.760000pt;}
.y1c_c00435{bottom:6.425219pt;}
.y1b_c00435{bottom:35.480000pt;}
.y1a_c00435{bottom:58.013333pt;}
.y19_c00435{bottom:81.346667pt;}
.y18_c00435{bottom:102.946667pt;}
.y17_c00435{bottom:126.680000pt;}
.y16_c00435{bottom:149.080000pt;}
.y15_c00435{bottom:170.813333pt;}
.y14_c00435{bottom:193.213333pt;}
.y13_c00435{bottom:214.813333pt;}
.y12_c00435{bottom:237.880000pt;}
.y11_c00435{bottom:259.880000pt;}
.y10_c00435{bottom:281.080000pt;}
.yf_c00435{bottom:303.346667pt;}
.ye_c00435{bottom:325.480000pt;}
.yd_c00435{bottom:370.280000pt;}
.yc_c00435{bottom:396.413333pt;}
.yb_c00435{bottom:414.280000pt;}
.ya_c00435{bottom:437.080000pt;}
.y9_c00435{bottom:460.546667pt;}
.y8_c00435{bottom:481.613333pt;}
.y7_c00435{bottom:504.280000pt;}
.y6_c00435{bottom:526.546667pt;}
.y5_c00435{bottom:548.413333pt;}
.y4_c00435{bottom:570.413333pt;}
.y3_c00435{bottom:593.480000pt;}
.y2_c00435{bottom:636.680000pt;}
.y1_c00435{bottom:658.546667pt;}
.h4_c00435{height:11.733399pt;}
.h5_c00435{height:38.937500pt;}
.h2_c00435{height:71.785156pt;}
.h3_c00435{height:77.654948pt;}
.h0_c00435{height:721.933333pt;}
.h1_c00435{height:722.000000pt;}
.w2_c00435{width:93.222667pt;}
.w1_c00435{width:498.666667pt;}
.w0_c00435{width:498.733333pt;}
.x0_c00435{left:0.000000pt;}
.xb_c00435{left:23.733333pt;}
.xe_c00435{left:24.933333pt;}
.x6_c00435{left:30.933333pt;}
.x8_c00435{left:37.200000pt;}
.x3_c00435{left:48.666667pt;}
.x9_c00435{left:56.000000pt;}
.x5_c00435{left:78.266667pt;}
.x7_c00435{left:80.133333pt;}
.x4_c00435{left:81.600000pt;}
.xd_c00435{left:83.066667pt;}
.xa_c00435{left:104.400000pt;}
.xc_c00435{left:116.133333pt;}
.x2_c00435{left:176.400000pt;}
.x11_c00435{left:206.534871pt;}
.xf_c00435{left:220.533333pt;}
.x10_c00435{left:234.533333pt;}
.x1_c00435{left:385.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_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_cae1034e3a59a2502d50db11.woff2')format("woff");}.ff1_c00436{font-family:ff1_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:ff2_c00436;src:url('chunks/assets/font_60465ce687d429cdb89bc519.woff2')format("woff");}.ff2_c00436{font-family:ff2_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:ff3_c00436;src:url('chunks/assets/font_085fcbea32599ea9e5a1a566.woff2')format("woff");}.ff3_c00436{font-family:ff3_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:ff4_c00436;src:url('chunks/assets/font_829d7adb0389338f7fd3d9da.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_ea3efc9c4f20e20bd0647566.woff2')format("woff");}.ff5_c00436{font-family:ff5_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:ff6_c00436;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00436{font-family:ff6_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);}
.v0_c00436{vertical-align:0.000000px;}
.ls4_c00436{letter-spacing:-6.000000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls2_c00436{letter-spacing:3.000000px;}
.ls0_c00436{letter-spacing:9.000000px;}
.ls3_c00436{letter-spacing:15.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00436{word-spacing:-56.235000px;}
.ws2_c00436{word-spacing:-44.988000px;}
.ws1_c00436{word-spacing:-25.629000px;}
.ws0_c00436{word-spacing:-16.629000px;}
.ws4_c00436{word-spacing:0.000000px;}
._26_c00436{margin-left:-22.737000px;}
._19_c00436{margin-left:-19.734000px;}
._29_c00436{margin-left:-17.688000px;}
._20_c00436{margin-left:-16.008000px;}
._3_c00436{margin-left:-14.283000px;}
._1e_c00436{margin-left:-13.248000px;}
._12_c00436{margin-left:-11.523000px;}
._7_c00436{margin-left:-10.488000px;}
._c_c00436{margin-left:-8.556000px;}
._9_c00436{margin-left:-7.107000px;}
._6_c00436{margin-left:-5.382000px;}
._e_c00436{margin-left:-4.140000px;}
._a_c00436{margin-left:-3.036000px;}
._4_c00436{margin-left:-1.725000px;}
._2_c00436{width:1.449000px;}
._14_c00436{width:2.553000px;}
._1_c00436{width:4.209000px;}
._15_c00436{width:5.313000px;}
._0_c00436{width:6.555000px;}
._8_c00436{width:7.659000px;}
._b_c00436{width:9.177000px;}
._17_c00436{width:11.040000px;}
._d_c00436{width:13.110000px;}
._10_c00436{width:14.904000px;}
._27_c00436{width:16.068000px;}
._25_c00436{width:17.700000px;}
._1a_c00436{width:18.906000px;}
._1b_c00436{width:20.073000px;}
._2f_c00436{width:21.114000px;}
._23_c00436{width:22.140000px;}
._28_c00436{width:23.736000px;}
._1f_c00436{width:24.771000px;}
._f_c00436{width:26.013000px;}
._11_c00436{width:27.255000px;}
._18_c00436{width:28.284000px;}
._2e_c00436{width:29.394000px;}
._2c_c00436{width:32.205000px;}
._1c_c00436{width:33.813000px;}
._2a_c00436{width:36.225000px;}
._2b_c00436{width:39.675000px;}
._16_c00436{width:46.161000px;}
._21_c00436{width:52.578000px;}
._13_c00436{width:74.796000px;}
._1d_c00436{width:109.347000px;}
._22_c00436{width:167.643000px;}
._24_c00436{width:177.054000px;}
._2d_c00436{width:243.507000px;}
._5_c00436{width:418.785000px;}
._30_c00436{width:555.051000px;}
.fc2_c00436{color:transparent;}
.fc1_c00436{color:rgb(128,128,128);}
.fc0_c00436{color:rgb(0,0,0);}
.fs6_c00436{font-size:48.000000px;}
.fs1_c00436{font-size:55.200000px;}
.fs0_c00436{font-size:69.000000px;}
.fs4_c00436{font-size:72.000000px;}
.fs3_c00436{font-size:75.000000px;}
.fs2_c00436{font-size:78.000000px;}
.fs5_c00436{font-size:81.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1e_c00436{bottom:3.105000px;}
.y1d_c00436{bottom:7.228363px;}
.y1c_c00436{bottom:60.750000px;}
.y1b_c00436{bottom:85.500000px;}
.y1a_c00436{bottom:111.750000px;}
.y19_c00436{bottom:136.050000px;}
.y18_c00436{bottom:160.950000px;}
.y17_c00436{bottom:185.700000px;}
.y16_c00436{bottom:210.900000px;}
.y15_c00436{bottom:235.650000px;}
.y14_c00436{bottom:260.850000px;}
.y13_c00436{bottom:285.600000px;}
.y12_c00436{bottom:310.200000px;}
.y11_c00436{bottom:335.250000px;}
.y10_c00436{bottom:359.850000px;}
.yf_c00436{bottom:386.100000px;}
.ye_c00436{bottom:410.700000px;}
.yd_c00436{bottom:460.050000px;}
.yc_c00436{bottom:510.300000px;}
.yb_c00436{bottom:535.050000px;}
.ya_c00436{bottom:560.250000px;}
.y9_c00436{bottom:585.000000px;}
.y8_c00436{bottom:609.900000px;}
.y7_c00436{bottom:635.250000px;}
.y6_c00436{bottom:660.450000px;}
.y5_c00436{bottom:684.900000px;}
.y4_c00436{bottom:710.100000px;}
.y3_c00436{bottom:735.000000px;}
.y2_c00436{bottom:759.750000px;}
.y1_c00436{bottom:783.000000px;}
.h7_c00436{height:13.200074px;}
.h8_c00436{height:43.804688px;}
.h3_c00436{height:76.514648px;}
.h2_c00436{height:80.758301px;}
.h1_c00436{height:87.361816px;}
.h5_c00436{height:91.160156px;}
.h4_c00436{height:94.958496px;}
.h6_c00436{height:102.555176px;}
.h0_c00436{height:823.500000px;}
.w1_c00436{width:104.875500px;}
.w0_c00436{width:576.750000px;}
.x0_c00436{left:0.000000px;}
.x2_c00436{left:35.400000px;}
.x3_c00436{left:37.050000px;}
.x4_c00436{left:38.850000px;}
.x7_c00436{left:40.200000px;}
.x6_c00436{left:61.050000px;}
.x5_c00436{left:142.800000px;}
.x1_c00436{left:199.800000px;}
.x9_c00436{left:240.189240px;}
.x8_c00436{left:276.450000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls4_c00436{letter-spacing:-5.333333pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls2_c00436{letter-spacing:2.666667pt;}
.ls0_c00436{letter-spacing:8.000000pt;}
.ls3_c00436{letter-spacing:13.333333pt;}
.ws3_c00436{word-spacing:-49.986667pt;}
.ws2_c00436{word-spacing:-39.989333pt;}
.ws1_c00436{word-spacing:-22.781333pt;}
.ws0_c00436{word-spacing:-14.781333pt;}
.ws4_c00436{word-spacing:0.000000pt;}
._26_c00436{margin-left:-20.210667pt;}
._19_c00436{margin-left:-17.541333pt;}
._29_c00436{margin-left:-15.722667pt;}
._20_c00436{margin-left:-14.229333pt;}
._3_c00436{margin-left:-12.696000pt;}
._1e_c00436{margin-left:-11.776000pt;}
._12_c00436{margin-left:-10.242667pt;}
._7_c00436{margin-left:-9.322667pt;}
._c_c00436{margin-left:-7.605333pt;}
._9_c00436{margin-left:-6.317333pt;}
._6_c00436{margin-left:-4.784000pt;}
._e_c00436{margin-left:-3.680000pt;}
._a_c00436{margin-left:-2.698667pt;}
._4_c00436{margin-left:-1.533333pt;}
._2_c00436{width:1.288000pt;}
._14_c00436{width:2.269333pt;}
._1_c00436{width:3.741333pt;}
._15_c00436{width:4.722667pt;}
._0_c00436{width:5.826667pt;}
._8_c00436{width:6.808000pt;}
._b_c00436{width:8.157333pt;}
._17_c00436{width:9.813333pt;}
._d_c00436{width:11.653333pt;}
._10_c00436{width:13.248000pt;}
._27_c00436{width:14.282667pt;}
._25_c00436{width:15.733333pt;}
._1a_c00436{width:16.805333pt;}
._1b_c00436{width:17.842667pt;}
._2f_c00436{width:18.768000pt;}
._23_c00436{width:19.680000pt;}
._28_c00436{width:21.098667pt;}
._1f_c00436{width:22.018667pt;}
._f_c00436{width:23.122667pt;}
._11_c00436{width:24.226667pt;}
._18_c00436{width:25.141333pt;}
._2e_c00436{width:26.128000pt;}
._2c_c00436{width:28.626667pt;}
._1c_c00436{width:30.056000pt;}
._2a_c00436{width:32.200000pt;}
._2b_c00436{width:35.266667pt;}
._16_c00436{width:41.032000pt;}
._21_c00436{width:46.736000pt;}
._13_c00436{width:66.485333pt;}
._1d_c00436{width:97.197333pt;}
._22_c00436{width:149.016000pt;}
._24_c00436{width:157.381333pt;}
._2d_c00436{width:216.450667pt;}
._5_c00436{width:372.253333pt;}
._30_c00436{width:493.378667pt;}
.fs6_c00436{font-size:42.666667pt;}
.fs1_c00436{font-size:49.066667pt;}
.fs0_c00436{font-size:61.333333pt;}
.fs4_c00436{font-size:64.000000pt;}
.fs3_c00436{font-size:66.666667pt;}
.fs2_c00436{font-size:69.333333pt;}
.fs5_c00436{font-size:72.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y1e_c00436{bottom:2.760000pt;}
.y1d_c00436{bottom:6.425212pt;}
.y1c_c00436{bottom:54.000000pt;}
.y1b_c00436{bottom:76.000000pt;}
.y1a_c00436{bottom:99.333333pt;}
.y19_c00436{bottom:120.933333pt;}
.y18_c00436{bottom:143.066667pt;}
.y17_c00436{bottom:165.066667pt;}
.y16_c00436{bottom:187.466667pt;}
.y15_c00436{bottom:209.466667pt;}
.y14_c00436{bottom:231.866667pt;}
.y13_c00436{bottom:253.866667pt;}
.y12_c00436{bottom:275.733333pt;}
.y11_c00436{bottom:298.000000pt;}
.y10_c00436{bottom:319.866667pt;}
.yf_c00436{bottom:343.200000pt;}
.ye_c00436{bottom:365.066667pt;}
.yd_c00436{bottom:408.933333pt;}
.yc_c00436{bottom:453.600000pt;}
.yb_c00436{bottom:475.600000pt;}
.ya_c00436{bottom:498.000000pt;}
.y9_c00436{bottom:520.000000pt;}
.y8_c00436{bottom:542.133333pt;}
.y7_c00436{bottom:564.666667pt;}
.y6_c00436{bottom:587.066667pt;}
.y5_c00436{bottom:608.800000pt;}
.y4_c00436{bottom:631.200000pt;}
.y3_c00436{bottom:653.333333pt;}
.y2_c00436{bottom:675.333333pt;}
.y1_c00436{bottom:696.000000pt;}
.h7_c00436{height:11.733399pt;}
.h8_c00436{height:38.937500pt;}
.h3_c00436{height:68.013021pt;}
.h2_c00436{height:71.785156pt;}
.h1_c00436{height:77.654948pt;}
.h5_c00436{height:81.031250pt;}
.h4_c00436{height:84.407552pt;}
.h6_c00436{height:91.160156pt;}
.h0_c00436{height:732.000000pt;}
.w1_c00436{width:93.222667pt;}
.w0_c00436{width:512.666667pt;}
.x0_c00436{left:0.000000pt;}
.x2_c00436{left:31.466667pt;}
.x3_c00436{left:32.933333pt;}
.x4_c00436{left:34.533333pt;}
.x7_c00436{left:35.733333pt;}
.x6_c00436{left:54.266667pt;}
.x5_c00436{left:126.933333pt;}
.x1_c00436{left:177.600000pt;}
.x9_c00436{left:213.501546pt;}
.x8_c00436{left:245.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_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_408618edb6f335159697ea53.woff2')format("woff");}.ff1_c00437{font-family:ff1_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:ff2_c00437;src:url('chunks/assets/font_6cde6a92a5760e3c5fb48a0e.woff2')format("woff");}.ff2_c00437{font-family:ff2_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:ff3_c00437;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00437{font-family:ff3_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);}
.v0_c00437{vertical-align:0.000000px;}
.ls2_c00437{letter-spacing:0.000000px;}
.ls1_c00437{letter-spacing:3.000000px;}
.ls0_c00437{letter-spacing:4.560000px;}
.ls3_c00437{letter-spacing:9.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:-25.629000px;}
.ws1_c00437{word-spacing:0.000000px;}
._27_c00437{margin-left:-15.801000px;}
._e_c00437{margin-left:-13.041000px;}
._4_c00437{margin-left:-10.833000px;}
._d_c00437{margin-left:-9.315000px;}
._6_c00437{margin-left:-8.211000px;}
._1c_c00437{margin-left:-6.072000px;}
._12_c00437{margin-left:-5.070000px;}
._1d_c00437{margin-left:-3.969000px;}
._8_c00437{margin-left:-2.898000px;}
._7_c00437{margin-left:-1.725000px;}
._2_c00437{width:1.725000px;}
._0_c00437{width:3.036000px;}
._1_c00437{width:4.485000px;}
._10_c00437{width:5.970000px;}
._a_c00437{width:7.452000px;}
._b_c00437{width:8.694000px;}
._21_c00437{width:9.726000px;}
._14_c00437{width:10.764000px;}
._13_c00437{width:12.729000px;}
._15_c00437{width:14.733000px;}
._11_c00437{width:16.077000px;}
._f_c00437{width:17.733000px;}
._24_c00437{width:19.530000px;}
._26_c00437{width:20.769000px;}
._1a_c00437{width:23.457000px;}
._18_c00437{width:24.669000px;}
._25_c00437{width:27.360000px;}
._5_c00437{width:28.956000px;}
._17_c00437{width:32.430000px;}
._16_c00437{width:34.119000px;}
._c_c00437{width:35.880000px;}
._19_c00437{width:38.535000px;}
._1b_c00437{width:63.825000px;}
._9_c00437{width:116.265000px;}
._23_c00437{width:121.326000px;}
._22_c00437{width:205.056000px;}
._1e_c00437{width:266.319000px;}
._20_c00437{width:272.688000px;}
._1f_c00437{width:424.557000px;}
._3_c00437{width:429.801000px;}
.fc2_c00437{color:transparent;}
.fc1_c00437{color:rgb(128,128,128);}
.fc0_c00437{color:rgb(0,0,0);}
.fs3_c00437{font-size:48.000000px;}
.fs1_c00437{font-size:54.000000px;}
.fs0_c00437{font-size:69.000000px;}
.fs2_c00437{font-size:81.000000px;}
.y0_c00437{bottom:0.000000px;}
.y1a_c00437{bottom:3.105000px;}
.y19_c00437{bottom:7.228363px;}
.y18_c00437{bottom:151.500000px;}
.y17_c00437{bottom:177.150000px;}
.y16_c00437{bottom:227.700000px;}
.y15_c00437{bottom:253.350000px;}
.y14_c00437{bottom:286.800000px;}
.y13_c00437{bottom:302.100000px;}
.y12_c00437{bottom:351.900000px;}
.y11_c00437{bottom:376.950000px;}
.y10_c00437{bottom:399.150000px;}
.yf_c00437{bottom:427.200000px;}
.ye_c00437{bottom:452.550000px;}
.yd_c00437{bottom:477.150000px;}
.yc_c00437{bottom:502.200000px;}
.yb_c00437{bottom:527.400000px;}
.ya_c00437{bottom:552.150000px;}
.y9_c00437{bottom:576.750000px;}
.y8_c00437{bottom:601.650000px;}
.y7_c00437{bottom:626.700000px;}
.y6_c00437{bottom:652.050000px;}
.y5_c00437{bottom:676.350000px;}
.y4_c00437{bottom:701.250000px;}
.y3_c00437{bottom:726.000000px;}
.y2_c00437{bottom:751.050000px;}
.y1_c00437{bottom:776.250000px;}
.h6_c00437{height:13.200074px;}
.h7_c00437{height:43.804688px;}
.h3_c00437{height:68.370117px;}
.h4_c00437{height:80.758301px;}
.h2_c00437{height:87.361816px;}
.h5_c00437{height:102.555176px;}
.h1_c00437{height:827.250000px;}
.h0_c00437{height:827.550000px;}
.w2_c00437{width:104.875500px;}
.w0_c00437{width:572.100000px;}
.w1_c00437{width:572.250000px;}
.x0_c00437{left:0.000000px;}
.x7_c00437{left:33.000000px;}
.x5_c00437{left:75.300000px;}
.xa_c00437{left:94.800000px;}
.x3_c00437{left:96.450000px;}
.x6_c00437{left:99.150000px;}
.x4_c00437{left:100.950000px;}
.x2_c00437{left:102.300000px;}
.x1_c00437{left:114.750000px;}
.x9_c00437{left:120.750000px;}
.x8_c00437{left:132.900000px;}
.xb_c00437{left:237.864258px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls2_c00437{letter-spacing:0.000000pt;}
.ls1_c00437{letter-spacing:2.666667pt;}
.ls0_c00437{letter-spacing:4.053333pt;}
.ls3_c00437{letter-spacing:8.000000pt;}
.ws0_c00437{word-spacing:-22.781333pt;}
.ws1_c00437{word-spacing:0.000000pt;}
._27_c00437{margin-left:-14.045333pt;}
._e_c00437{margin-left:-11.592000pt;}
._4_c00437{margin-left:-9.629333pt;}
._d_c00437{margin-left:-8.280000pt;}
._6_c00437{margin-left:-7.298667pt;}
._1c_c00437{margin-left:-5.397333pt;}
._12_c00437{margin-left:-4.506667pt;}
._1d_c00437{margin-left:-3.528000pt;}
._8_c00437{margin-left:-2.576000pt;}
._7_c00437{margin-left:-1.533333pt;}
._2_c00437{width:1.533333pt;}
._0_c00437{width:2.698667pt;}
._1_c00437{width:3.986667pt;}
._10_c00437{width:5.306667pt;}
._a_c00437{width:6.624000pt;}
._b_c00437{width:7.728000pt;}
._21_c00437{width:8.645333pt;}
._14_c00437{width:9.568000pt;}
._13_c00437{width:11.314667pt;}
._15_c00437{width:13.096000pt;}
._11_c00437{width:14.290667pt;}
._f_c00437{width:15.762667pt;}
._24_c00437{width:17.360000pt;}
._26_c00437{width:18.461333pt;}
._1a_c00437{width:20.850667pt;}
._18_c00437{width:21.928000pt;}
._25_c00437{width:24.320000pt;}
._5_c00437{width:25.738667pt;}
._17_c00437{width:28.826667pt;}
._16_c00437{width:30.328000pt;}
._c_c00437{width:31.893333pt;}
._19_c00437{width:34.253333pt;}
._1b_c00437{width:56.733333pt;}
._9_c00437{width:103.346667pt;}
._23_c00437{width:107.845333pt;}
._22_c00437{width:182.272000pt;}
._1e_c00437{width:236.728000pt;}
._20_c00437{width:242.389333pt;}
._1f_c00437{width:377.384000pt;}
._3_c00437{width:382.045333pt;}
.fs3_c00437{font-size:42.666667pt;}
.fs1_c00437{font-size:48.000000pt;}
.fs0_c00437{font-size:61.333333pt;}
.fs2_c00437{font-size:72.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y1a_c00437{bottom:2.760000pt;}
.y19_c00437{bottom:6.425212pt;}
.y18_c00437{bottom:134.666667pt;}
.y17_c00437{bottom:157.466667pt;}
.y16_c00437{bottom:202.400000pt;}
.y15_c00437{bottom:225.200000pt;}
.y14_c00437{bottom:254.933333pt;}
.y13_c00437{bottom:268.533333pt;}
.y12_c00437{bottom:312.800000pt;}
.y11_c00437{bottom:335.066667pt;}
.y10_c00437{bottom:354.800000pt;}
.yf_c00437{bottom:379.733333pt;}
.ye_c00437{bottom:402.266667pt;}
.yd_c00437{bottom:424.133333pt;}
.yc_c00437{bottom:446.400000pt;}
.yb_c00437{bottom:468.800000pt;}
.ya_c00437{bottom:490.800000pt;}
.y9_c00437{bottom:512.666667pt;}
.y8_c00437{bottom:534.800000pt;}
.y7_c00437{bottom:557.066667pt;}
.y6_c00437{bottom:579.600000pt;}
.y5_c00437{bottom:601.200000pt;}
.y4_c00437{bottom:623.333333pt;}
.y3_c00437{bottom:645.333333pt;}
.y2_c00437{bottom:667.600000pt;}
.y1_c00437{bottom:690.000000pt;}
.h6_c00437{height:11.733399pt;}
.h7_c00437{height:38.937500pt;}
.h3_c00437{height:60.773438pt;}
.h4_c00437{height:71.785156pt;}
.h2_c00437{height:77.654948pt;}
.h5_c00437{height:91.160156pt;}
.h1_c00437{height:735.333333pt;}
.h0_c00437{height:735.600000pt;}
.w2_c00437{width:93.222667pt;}
.w0_c00437{width:508.533333pt;}
.w1_c00437{width:508.666667pt;}
.x0_c00437{left:0.000000pt;}
.x7_c00437{left:29.333333pt;}
.x5_c00437{left:66.933333pt;}
.xa_c00437{left:84.266667pt;}
.x3_c00437{left:85.733333pt;}
.x6_c00437{left:88.133333pt;}
.x4_c00437{left:89.733333pt;}
.x2_c00437{left:90.933333pt;}
.x1_c00437{left:102.000000pt;}
.x9_c00437{left:107.333333pt;}
.x8_c00437{left:118.133333pt;}
.xb_c00437{left:211.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_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_2aa649679ccc19667c620afe.woff2')format("woff");}.ff1_c00438{font-family:ff1_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:ff2_c00438;src:url('chunks/assets/font_c68d025fa8c04ab9d265322a.woff2')format("woff");}.ff2_c00438{font-family:ff2_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:ff3_c00438;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00438{font-family:ff4_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;}
.ls4_c00438{letter-spacing:0.000000px;}
.ls3_c00438{letter-spacing:3.000000px;}
.ls2_c00438{letter-spacing:9.000000px;}
.ls1_c00438{letter-spacing:23.400000px;}
.ls0_c00438{letter-spacing:421.971000px;}
.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:-25.629000px;}
.ws0_c00438{word-spacing:-19.629000px;}
.ws2_c00438{word-spacing:-16.629000px;}
.ws3_c00438{word-spacing:0.000000px;}
._1b_c00438{margin-left:-20.355000px;}
._13_c00438{margin-left:-17.724000px;}
._5_c00438{margin-left:-15.525000px;}
._0_c00438{margin-left:-12.903000px;}
._11_c00438{margin-left:-11.316000px;}
._12_c00438{margin-left:-9.591000px;}
._c_c00438{margin-left:-7.935000px;}
._4_c00438{margin-left:-6.696000px;}
._f_c00438{margin-left:-5.313000px;}
._b_c00438{margin-left:-3.864000px;}
._e_c00438{margin-left:-2.553000px;}
._3_c00438{margin-left:-1.311000px;}
._16_c00438{width:1.263000px;}
._10_c00438{width:2.622000px;}
._17_c00438{width:3.657000px;}
._8_c00438{width:5.520000px;}
._2_c00438{width:6.555000px;}
._6_c00438{width:7.659000px;}
._9_c00438{width:8.832000px;}
._14_c00438{width:10.077000px;}
._7_c00438{width:12.006000px;}
._d_c00438{width:13.671000px;}
._1d_c00438{width:14.970000px;}
._1f_c00438{width:16.314000px;}
._18_c00438{width:18.069000px;}
._15_c00438{width:19.869000px;}
._1e_c00438{width:21.549000px;}
._21_c00438{width:23.097000px;}
._19_c00438{width:32.175000px;}
._a_c00438{width:36.744000px;}
._1_c00438{width:39.444000px;}
._20_c00438{width:60.657000px;}
._1a_c00438{width:133.308000px;}
._1c_c00438{width:213.195000px;}
.fc2_c00438{color:transparent;}
.fc1_c00438{color:rgb(128,128,128);}
.fc0_c00438{color:rgb(0,0,0);}
.fs3_c00438{font-size:48.000000px;}
.fs1_c00438{font-size:66.000000px;}
.fs0_c00438{font-size:69.000000px;}
.fs2_c00438{font-size:75.000000px;}
.y0_c00438{bottom:0.000000px;}
.y1a_c00438{bottom:3.105000px;}
.y19_c00438{bottom:7.228371px;}
.y18_c00438{bottom:129.615000px;}
.y17_c00438{bottom:154.965000px;}
.y16_c00438{bottom:180.315000px;}
.y15_c00438{bottom:205.215000px;}
.y14_c00438{bottom:230.565000px;}
.y13_c00438{bottom:255.165000px;}
.y12_c00438{bottom:279.765000px;}
.y11_c00438{bottom:304.515000px;}
.y10_c00438{bottom:329.115000px;}
.yf_c00438{bottom:354.465000px;}
.ye_c00438{bottom:380.115000px;}
.yd_c00438{bottom:403.965000px;}
.yc_c00438{bottom:429.015000px;}
.yb_c00438{bottom:453.915000px;}
.ya_c00438{bottom:478.215000px;}
.y9_c00438{bottom:503.565000px;}
.y8_c00438{bottom:528.315000px;}
.y7_c00438{bottom:578.265000px;}
.y6_c00438{bottom:603.465000px;}
.y5_c00438{bottom:628.815000px;}
.y4_c00438{bottom:653.865000px;}
.y3_c00438{bottom:679.065000px;}
.y2_c00438{bottom:727.365000px;}
.y1_c00438{bottom:775.965000px;}
.h5_c00438{height:13.200074px;}
.h6_c00438{height:43.804688px;}
.h3_c00438{height:80.758301px;}
.h2_c00438{height:87.361816px;}
.h4_c00438{height:94.958496px;}
.h1_c00438{height:817.500000px;}
.h0_c00438{height:817.575000px;}
.w2_c00438{width:104.875500px;}
.w1_c00438{width:572.250000px;}
.w0_c00438{width:572.400000px;}
.x0_c00438{left:0.000000px;}
.x4_c00438{left:30.300000px;}
.x7_c00438{left:31.350000px;}
.x5_c00438{left:32.700000px;}
.x8_c00438{left:34.050000px;}
.x9_c00438{left:36.000000px;}
.xa_c00438{left:37.350000px;}
.x3_c00438{left:42.900000px;}
.x6_c00438{left:51.000000px;}
.x2_c00438{left:155.250000px;}
.x1_c00438{left:177.900000px;}
.xb_c00438{left:238.014267px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls4_c00438{letter-spacing:0.000000pt;}
.ls3_c00438{letter-spacing:2.666667pt;}
.ls2_c00438{letter-spacing:8.000000pt;}
.ls1_c00438{letter-spacing:20.800000pt;}
.ls0_c00438{letter-spacing:375.085333pt;}
.ws1_c00438{word-spacing:-22.781333pt;}
.ws0_c00438{word-spacing:-17.448000pt;}
.ws2_c00438{word-spacing:-14.781333pt;}
.ws3_c00438{word-spacing:0.000000pt;}
._1b_c00438{margin-left:-18.093333pt;}
._13_c00438{margin-left:-15.754667pt;}
._5_c00438{margin-left:-13.800000pt;}
._0_c00438{margin-left:-11.469333pt;}
._11_c00438{margin-left:-10.058667pt;}
._12_c00438{margin-left:-8.525333pt;}
._c_c00438{margin-left:-7.053333pt;}
._4_c00438{margin-left:-5.952000pt;}
._f_c00438{margin-left:-4.722667pt;}
._b_c00438{margin-left:-3.434667pt;}
._e_c00438{margin-left:-2.269333pt;}
._3_c00438{margin-left:-1.165333pt;}
._16_c00438{width:1.122667pt;}
._10_c00438{width:2.330667pt;}
._17_c00438{width:3.250667pt;}
._8_c00438{width:4.906667pt;}
._2_c00438{width:5.826667pt;}
._6_c00438{width:6.808000pt;}
._9_c00438{width:7.850667pt;}
._14_c00438{width:8.957333pt;}
._7_c00438{width:10.672000pt;}
._d_c00438{width:12.152000pt;}
._1d_c00438{width:13.306667pt;}
._1f_c00438{width:14.501333pt;}
._18_c00438{width:16.061333pt;}
._15_c00438{width:17.661333pt;}
._1e_c00438{width:19.154667pt;}
._21_c00438{width:20.530667pt;}
._19_c00438{width:28.600000pt;}
._a_c00438{width:32.661333pt;}
._1_c00438{width:35.061333pt;}
._20_c00438{width:53.917333pt;}
._1a_c00438{width:118.496000pt;}
._1c_c00438{width:189.506667pt;}
.fs3_c00438{font-size:42.666667pt;}
.fs1_c00438{font-size:58.666667pt;}
.fs0_c00438{font-size:61.333333pt;}
.fs2_c00438{font-size:66.666667pt;}
.y0_c00438{bottom:0.000000pt;}
.y1a_c00438{bottom:2.760000pt;}
.y19_c00438{bottom:6.425219pt;}
.y18_c00438{bottom:115.213333pt;}
.y17_c00438{bottom:137.746667pt;}
.y16_c00438{bottom:160.280000pt;}
.y15_c00438{bottom:182.413333pt;}
.y14_c00438{bottom:204.946667pt;}
.y13_c00438{bottom:226.813333pt;}
.y12_c00438{bottom:248.680000pt;}
.y11_c00438{bottom:270.680000pt;}
.y10_c00438{bottom:292.546667pt;}
.yf_c00438{bottom:315.080000pt;}
.ye_c00438{bottom:337.880000pt;}
.yd_c00438{bottom:359.080000pt;}
.yc_c00438{bottom:381.346667pt;}
.yb_c00438{bottom:403.480000pt;}
.ya_c00438{bottom:425.080000pt;}
.y9_c00438{bottom:447.613333pt;}
.y8_c00438{bottom:469.613333pt;}
.y7_c00438{bottom:514.013333pt;}
.y6_c00438{bottom:536.413333pt;}
.y5_c00438{bottom:558.946667pt;}
.y4_c00438{bottom:581.213333pt;}
.y3_c00438{bottom:603.613333pt;}
.y2_c00438{bottom:646.546667pt;}
.y1_c00438{bottom:689.746667pt;}
.h5_c00438{height:11.733399pt;}
.h6_c00438{height:38.937500pt;}
.h3_c00438{height:71.785156pt;}
.h2_c00438{height:77.654948pt;}
.h4_c00438{height:84.407552pt;}
.h1_c00438{height:726.666667pt;}
.h0_c00438{height:726.733333pt;}
.w2_c00438{width:93.222667pt;}
.w1_c00438{width:508.666667pt;}
.w0_c00438{width:508.800000pt;}
.x0_c00438{left:0.000000pt;}
.x4_c00438{left:26.933333pt;}
.x7_c00438{left:27.866667pt;}
.x5_c00438{left:29.066667pt;}
.x8_c00438{left:30.266667pt;}
.x9_c00438{left:32.000000pt;}
.xa_c00438{left:33.200000pt;}
.x3_c00438{left:38.133333pt;}
.x6_c00438{left:45.333333pt;}
.x2_c00438{left:138.000000pt;}
.x1_c00438{left:158.133333pt;}
.xb_c00438{left:211.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_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_2a05e83516fc9c947640ff14.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_70c88cd153da025f451c4f5b.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_b41900bdf50a92d63ac97bb6.woff2')format("woff");}.ff3_c00439{font-family:ff3_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:ff4_c00439;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00439{font-family:ff4_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);}
.v0_c00439{vertical-align:0.000000px;}
.ls8_c00439{letter-spacing:0.000000px;}
.ls4_c00439{letter-spacing:0.102000px;}
.ls7_c00439{letter-spacing:3.000000px;}
.ls6_c00439{letter-spacing:3.036000px;}
.ls3_c00439{letter-spacing:7.800000px;}
.ls9_c00439{letter-spacing:9.000000px;}
.ls2_c00439{letter-spacing:14.091000px;}
.ls1_c00439{letter-spacing:19.200000px;}
.ls0_c00439{letter-spacing:23.400000px;}
.ls5_c00439{letter-spacing:34.914000px;}
.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;}
}
.ws2_c00439{word-spacing:-36.000000px;}
.ws3_c00439{word-spacing:-25.629000px;}
.ws0_c00439{word-spacing:-16.629000px;}
.ws4_c00439{word-spacing:0.000000px;}
.ws1_c00439{word-spacing:28.242000px;}
._1c_c00439{margin-left:-31.947000px;}
._f_c00439{margin-left:-15.282000px;}
._1_c00439{margin-left:-12.903000px;}
._0_c00439{margin-left:-11.661000px;}
._23_c00439{margin-left:-10.593000px;}
._21_c00439{margin-left:-8.763000px;}
._d_c00439{margin-left:-7.176000px;}
._25_c00439{margin-left:-6.108000px;}
._9_c00439{margin-left:-4.968000px;}
._c_c00439{margin-left:-3.519000px;}
._a_c00439{margin-left:-2.484000px;}
._b_c00439{margin-left:-1.311000px;}
._3_c00439{width:1.863000px;}
._7_c00439{width:3.105000px;}
._11_c00439{width:4.968000px;}
._8_c00439{width:6.762000px;}
._10_c00439{width:8.901000px;}
._16_c00439{width:10.302000px;}
._5_c00439{width:11.418000px;}
._18_c00439{width:12.423000px;}
._14_c00439{width:14.490000px;}
._12_c00439{width:16.251000px;}
._17_c00439{width:18.216000px;}
._15_c00439{width:19.734000px;}
._13_c00439{width:21.321000px;}
._1b_c00439{width:23.019000px;}
._20_c00439{width:24.048000px;}
._1e_c00439{width:28.083000px;}
._1f_c00439{width:31.119000px;}
._6_c00439{width:33.753000px;}
._22_c00439{width:35.934000px;}
._e_c00439{width:44.574000px;}
._4_c00439{width:46.851000px;}
._1a_c00439{width:49.404000px;}
._24_c00439{width:89.286000px;}
._1d_c00439{width:102.099000px;}
._26_c00439{width:121.089000px;}
._19_c00439{width:190.200000px;}
._2_c00439{width:458.556000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(128,128,128);}
.fc0_c00439{color:rgb(0,0,0);}
.fs2_c00439{font-size:48.000000px;}
.fs1_c00439{font-size:66.000000px;}
.fs0_c00439{font-size:69.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1c_c00439{bottom:3.105000px;}
.y1b_c00439{bottom:7.228357px;}
.y1a_c00439{bottom:79.980000px;}
.y19_c00439{bottom:105.330000px;}
.y18_c00439{bottom:129.630000px;}
.y17_c00439{bottom:154.980000px;}
.y16_c00439{bottom:180.180000px;}
.y15_c00439{bottom:230.130000px;}
.y14_c00439{bottom:254.580000px;}
.y13_c00439{bottom:279.480000px;}
.y12_c00439{bottom:304.080000px;}
.y11_c00439{bottom:328.680000px;}
.y10_c00439{bottom:352.680000px;}
.yf_c00439{bottom:378.630000px;}
.ye_c00439{bottom:403.080000px;}
.yd_c00439{bottom:428.280000px;}
.yc_c00439{bottom:453.030000px;}
.yb_c00439{bottom:477.630000px;}
.ya_c00439{bottom:502.980000px;}
.y9_c00439{bottom:529.230000px;}
.y8_c00439{bottom:552.930000px;}
.y7_c00439{bottom:578.430000px;}
.y6_c00439{bottom:603.480000px;}
.y5_c00439{bottom:628.080000px;}
.y4_c00439{bottom:653.730000px;}
.y3_c00439{bottom:678.030000px;}
.y2_c00439{bottom:727.380000px;}
.y1_c00439{bottom:776.580000px;}
.h3_c00439{height:13.200074px;}
.h4_c00439{height:43.804688px;}
.h2_c00439{height:80.758301px;}
.h1_c00439{height:87.361816px;}
.h0_c00439{height:819.750000px;}
.w2_c00439{width:104.875500px;}
.w1_c00439{width:566.250000px;}
.w0_c00439{width:566.475000px;}
.x0_c00439{left:0.000000px;}
.xb_c00439{left:22.950000px;}
.xf_c00439{left:24.600000px;}
.x4_c00439{left:26.250000px;}
.x8_c00439{left:40.050000px;}
.x9_c00439{left:65.100000px;}
.x7_c00439{left:86.100000px;}
.xc_c00439{left:87.750000px;}
.xa_c00439{left:88.800000px;}
.x6_c00439{left:90.150000px;}
.x5_c00439{left:91.800000px;}
.x1_c00439{left:104.250000px;}
.xe_c00439{left:112.350000px;}
.x3_c00439{left:116.700000px;}
.xd_c00439{left:175.200000px;}
.x2_c00439{left:219.000000px;}
.x10_c00439{left:235.051758px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls8_c00439{letter-spacing:0.000000pt;}
.ls4_c00439{letter-spacing:0.090667pt;}
.ls7_c00439{letter-spacing:2.666667pt;}
.ls6_c00439{letter-spacing:2.698667pt;}
.ls3_c00439{letter-spacing:6.933333pt;}
.ls9_c00439{letter-spacing:8.000000pt;}
.ls2_c00439{letter-spacing:12.525333pt;}
.ls1_c00439{letter-spacing:17.066667pt;}
.ls0_c00439{letter-spacing:20.800000pt;}
.ls5_c00439{letter-spacing:31.034667pt;}
.ws2_c00439{word-spacing:-32.000000pt;}
.ws3_c00439{word-spacing:-22.781333pt;}
.ws0_c00439{word-spacing:-14.781333pt;}
.ws4_c00439{word-spacing:0.000000pt;}
.ws1_c00439{word-spacing:25.104000pt;}
._1c_c00439{margin-left:-28.397333pt;}
._f_c00439{margin-left:-13.584000pt;}
._1_c00439{margin-left:-11.469333pt;}
._0_c00439{margin-left:-10.365333pt;}
._23_c00439{margin-left:-9.416000pt;}
._21_c00439{margin-left:-7.789333pt;}
._d_c00439{margin-left:-6.378667pt;}
._25_c00439{margin-left:-5.429333pt;}
._9_c00439{margin-left:-4.416000pt;}
._c_c00439{margin-left:-3.128000pt;}
._a_c00439{margin-left:-2.208000pt;}
._b_c00439{margin-left:-1.165333pt;}
._3_c00439{width:1.656000pt;}
._7_c00439{width:2.760000pt;}
._11_c00439{width:4.416000pt;}
._8_c00439{width:6.010667pt;}
._10_c00439{width:7.912000pt;}
._16_c00439{width:9.157333pt;}
._5_c00439{width:10.149333pt;}
._18_c00439{width:11.042667pt;}
._14_c00439{width:12.880000pt;}
._12_c00439{width:14.445333pt;}
._17_c00439{width:16.192000pt;}
._15_c00439{width:17.541333pt;}
._13_c00439{width:18.952000pt;}
._1b_c00439{width:20.461333pt;}
._20_c00439{width:21.376000pt;}
._1e_c00439{width:24.962667pt;}
._1f_c00439{width:27.661333pt;}
._6_c00439{width:30.002667pt;}
._22_c00439{width:31.941333pt;}
._e_c00439{width:39.621333pt;}
._4_c00439{width:41.645333pt;}
._1a_c00439{width:43.914667pt;}
._24_c00439{width:79.365333pt;}
._1d_c00439{width:90.754667pt;}
._26_c00439{width:107.634667pt;}
._19_c00439{width:169.066667pt;}
._2_c00439{width:407.605333pt;}
.fs2_c00439{font-size:42.666667pt;}
.fs1_c00439{font-size:58.666667pt;}
.fs0_c00439{font-size:61.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y1c_c00439{bottom:2.760000pt;}
.y1b_c00439{bottom:6.425206pt;}
.y1a_c00439{bottom:71.093333pt;}
.y19_c00439{bottom:93.626667pt;}
.y18_c00439{bottom:115.226667pt;}
.y17_c00439{bottom:137.760000pt;}
.y16_c00439{bottom:160.160000pt;}
.y15_c00439{bottom:204.560000pt;}
.y14_c00439{bottom:226.293333pt;}
.y13_c00439{bottom:248.426667pt;}
.y12_c00439{bottom:270.293333pt;}
.y11_c00439{bottom:292.160000pt;}
.y10_c00439{bottom:313.493333pt;}
.yf_c00439{bottom:336.560000pt;}
.ye_c00439{bottom:358.293333pt;}
.yd_c00439{bottom:380.693333pt;}
.yc_c00439{bottom:402.693333pt;}
.yb_c00439{bottom:424.560000pt;}
.ya_c00439{bottom:447.093333pt;}
.y9_c00439{bottom:470.426667pt;}
.y8_c00439{bottom:491.493333pt;}
.y7_c00439{bottom:514.160000pt;}
.y6_c00439{bottom:536.426667pt;}
.y5_c00439{bottom:558.293333pt;}
.y4_c00439{bottom:581.093333pt;}
.y3_c00439{bottom:602.693333pt;}
.y2_c00439{bottom:646.560000pt;}
.y1_c00439{bottom:690.293333pt;}
.h3_c00439{height:11.733399pt;}
.h4_c00439{height:38.937500pt;}
.h2_c00439{height:71.785156pt;}
.h1_c00439{height:77.654948pt;}
.h0_c00439{height:728.666667pt;}
.w2_c00439{width:93.222667pt;}
.w1_c00439{width:503.333333pt;}
.w0_c00439{width:503.533333pt;}
.x0_c00439{left:0.000000pt;}
.xb_c00439{left:20.400000pt;}
.xf_c00439{left:21.866667pt;}
.x4_c00439{left:23.333333pt;}
.x8_c00439{left:35.600000pt;}
.x9_c00439{left:57.866667pt;}
.x7_c00439{left:76.533333pt;}
.xc_c00439{left:78.000000pt;}
.xa_c00439{left:78.933333pt;}
.x6_c00439{left:80.133333pt;}
.x5_c00439{left:81.600000pt;}
.x1_c00439{left:92.666667pt;}
.xe_c00439{left:99.866667pt;}
.x3_c00439{left:103.733333pt;}
.xd_c00439{left:155.733333pt;}
.x2_c00439{left:194.666667pt;}
.x10_c00439{left:208.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45fc3ba26efd23a3cef55c75.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_08771a8035ac20f4740d4905.woff2')format("woff");}.ff2_c00440{font-family:ff2_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:ff3_c00440;src:url('chunks/assets/font_49dfb3b56a4a9e0d7ccabca7.woff2')format("woff");}.ff3_c00440{font-family:ff3_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:ff4_c00440;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00440{font-family:ff4_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);}
.v0_c00440{vertical-align:0.000000px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls5_c00440{letter-spacing:3.000000px;}
.ls1_c00440{letter-spacing:9.000000px;}
.ls2_c00440{letter-spacing:13.125000px;}
.ls0_c00440{letter-spacing:14.325000px;}
.ls3_c00440{letter-spacing:15.525000px;}
.ls6_c00440{letter-spacing:24.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;}
}
.ws2_c00440{word-spacing:-56.235000px;}
.ws3_c00440{word-spacing:-44.988000px;}
.ws4_c00440{word-spacing:-40.629000px;}
.ws0_c00440{word-spacing:-25.629000px;}
.ws5_c00440{word-spacing:-19.629000px;}
.ws1_c00440{word-spacing:-16.629000px;}
.ws6_c00440{word-spacing:0.000000px;}
._1a_c00440{margin-left:-21.459000px;}
._3_c00440{margin-left:-16.629000px;}
._6_c00440{margin-left:-14.628000px;}
._13_c00440{margin-left:-10.698000px;}
._e_c00440{margin-left:-9.177000px;}
._d_c00440{margin-left:-7.143000px;}
._9_c00440{margin-left:-5.382000px;}
._5_c00440{margin-left:-4.002000px;}
._4_c00440{margin-left:-2.484000px;}
._7_c00440{margin-left:-1.035000px;}
._a_c00440{width:1.311000px;}
._b_c00440{width:2.553000px;}
._c_c00440{width:3.795000px;}
._10_c00440{width:5.451000px;}
._14_c00440{width:6.900000px;}
._2_c00440{width:8.349000px;}
._1_c00440{width:9.453000px;}
._0_c00440{width:10.695000px;}
._f_c00440{width:12.627000px;}
._11_c00440{width:14.421000px;}
._18_c00440{width:15.594000px;}
._19_c00440{width:16.698000px;}
._15_c00440{width:17.802000px;}
._1d_c00440{width:21.603000px;}
._1c_c00440{width:28.356000px;}
._1b_c00440{width:32.652000px;}
._16_c00440{width:34.224000px;}
._12_c00440{width:37.233000px;}
._1f_c00440{width:62.940000px;}
._17_c00440{width:88.527000px;}
._1e_c00440{width:99.084000px;}
._8_c00440{width:488.031000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(128,128,128);}
.fc0_c00440{color:rgb(0,0,0);}
.fs3_c00440{font-size:48.000000px;}
.fs1_c00440{font-size:55.200000px;}
.fs0_c00440{font-size:69.000000px;}
.fs2_c00440{font-size:75.000000px;}
.y0_c00440{bottom:0.000000px;}
.y1e_c00440{bottom:3.105000px;}
.y1d_c00440{bottom:7.228371px;}
.y1c_c00440{bottom:80.715000px;}
.y1b_c00440{bottom:103.965000px;}
.y1a_c00440{bottom:129.315000px;}
.y19_c00440{bottom:153.915000px;}
.y18_c00440{bottom:178.665000px;}
.y17_c00440{bottom:204.165000px;}
.y16_c00440{bottom:228.615000px;}
.y15_c00440{bottom:254.115000px;}
.y14_c00440{bottom:278.415000px;}
.y13_c00440{bottom:304.065000px;}
.y12_c00440{bottom:328.365000px;}
.y11_c00440{bottom:353.415000px;}
.y10_c00440{bottom:378.465000px;}
.yf_c00440{bottom:403.365000px;}
.ye_c00440{bottom:427.965000px;}
.yd_c00440{bottom:454.965000px;}
.yc_c00440{bottom:478.215000px;}
.yb_c00440{bottom:502.965000px;}
.ya_c00440{bottom:527.565000px;}
.y9_c00440{bottom:552.465000px;}
.y8_c00440{bottom:577.815000px;}
.y7_c00440{bottom:602.415000px;}
.y6_c00440{bottom:627.765000px;}
.y5_c00440{bottom:651.765000px;}
.y4_c00440{bottom:702.015000px;}
.y3_c00440{bottom:727.665000px;}
.y2_c00440{bottom:752.715000px;}
.y1_c00440{bottom:775.365000px;}
.h5_c00440{height:13.200074px;}
.h6_c00440{height:43.804688px;}
.h3_c00440{height:80.758301px;}
.h2_c00440{height:87.361816px;}
.h4_c00440{height:94.958496px;}
.h1_c00440{height:817.500000px;}
.h0_c00440{height:817.575000px;}
.w2_c00440{width:104.875500px;}
.w1_c00440{width:572.250000px;}
.w0_c00440{width:572.400000px;}
.x0_c00440{left:0.000000px;}
.x3_c00440{left:24.300000px;}
.x2_c00440{left:26.400000px;}
.x4_c00440{left:28.350000px;}
.x7_c00440{left:29.700000px;}
.x9_c00440{left:31.800000px;}
.xa_c00440{left:33.750000px;}
.xb_c00440{left:35.400000px;}
.xc_c00440{left:36.750000px;}
.xd_c00440{left:37.800000px;}
.x6_c00440{left:53.700000px;}
.x8_c00440{left:55.050000px;}
.x5_c00440{left:154.350000px;}
.x1_c00440{left:178.200000px;}
.xe_c00440{left:238.014267px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls5_c00440{letter-spacing:2.666667pt;}
.ls1_c00440{letter-spacing:8.000000pt;}
.ls2_c00440{letter-spacing:11.666667pt;}
.ls0_c00440{letter-spacing:12.733333pt;}
.ls3_c00440{letter-spacing:13.800000pt;}
.ls6_c00440{letter-spacing:21.333333pt;}
.ws2_c00440{word-spacing:-49.986667pt;}
.ws3_c00440{word-spacing:-39.989333pt;}
.ws4_c00440{word-spacing:-36.114667pt;}
.ws0_c00440{word-spacing:-22.781333pt;}
.ws5_c00440{word-spacing:-17.448000pt;}
.ws1_c00440{word-spacing:-14.781333pt;}
.ws6_c00440{word-spacing:0.000000pt;}
._1a_c00440{margin-left:-19.074667pt;}
._3_c00440{margin-left:-14.781333pt;}
._6_c00440{margin-left:-13.002667pt;}
._13_c00440{margin-left:-9.509333pt;}
._e_c00440{margin-left:-8.157333pt;}
._d_c00440{margin-left:-6.349333pt;}
._9_c00440{margin-left:-4.784000pt;}
._5_c00440{margin-left:-3.557333pt;}
._4_c00440{margin-left:-2.208000pt;}
._7_c00440{margin-left:-0.920000pt;}
._a_c00440{width:1.165333pt;}
._b_c00440{width:2.269333pt;}
._c_c00440{width:3.373333pt;}
._10_c00440{width:4.845333pt;}
._14_c00440{width:6.133333pt;}
._2_c00440{width:7.421333pt;}
._1_c00440{width:8.402667pt;}
._0_c00440{width:9.506667pt;}
._f_c00440{width:11.224000pt;}
._11_c00440{width:12.818667pt;}
._18_c00440{width:13.861333pt;}
._19_c00440{width:14.842667pt;}
._15_c00440{width:15.824000pt;}
._1d_c00440{width:19.202667pt;}
._1c_c00440{width:25.205333pt;}
._1b_c00440{width:29.024000pt;}
._16_c00440{width:30.421333pt;}
._12_c00440{width:33.096000pt;}
._1f_c00440{width:55.946667pt;}
._17_c00440{width:78.690667pt;}
._1e_c00440{width:88.074667pt;}
._8_c00440{width:433.805333pt;}
.fs3_c00440{font-size:42.666667pt;}
.fs1_c00440{font-size:49.066667pt;}
.fs0_c00440{font-size:61.333333pt;}
.fs2_c00440{font-size:66.666667pt;}
.y0_c00440{bottom:0.000000pt;}
.y1e_c00440{bottom:2.760000pt;}
.y1d_c00440{bottom:6.425219pt;}
.y1c_c00440{bottom:71.746667pt;}
.y1b_c00440{bottom:92.413333pt;}
.y1a_c00440{bottom:114.946667pt;}
.y19_c00440{bottom:136.813333pt;}
.y18_c00440{bottom:158.813333pt;}
.y17_c00440{bottom:181.480000pt;}
.y16_c00440{bottom:203.213333pt;}
.y15_c00440{bottom:225.880000pt;}
.y14_c00440{bottom:247.480000pt;}
.y13_c00440{bottom:270.280000pt;}
.y12_c00440{bottom:291.880000pt;}
.y11_c00440{bottom:314.146667pt;}
.y10_c00440{bottom:336.413333pt;}
.yf_c00440{bottom:358.546667pt;}
.ye_c00440{bottom:380.413333pt;}
.yd_c00440{bottom:404.413333pt;}
.yc_c00440{bottom:425.080000pt;}
.yb_c00440{bottom:447.080000pt;}
.ya_c00440{bottom:468.946667pt;}
.y9_c00440{bottom:491.080000pt;}
.y8_c00440{bottom:513.613333pt;}
.y7_c00440{bottom:535.480000pt;}
.y6_c00440{bottom:558.013333pt;}
.y5_c00440{bottom:579.346667pt;}
.y4_c00440{bottom:624.013333pt;}
.y3_c00440{bottom:646.813333pt;}
.y2_c00440{bottom:669.080000pt;}
.y1_c00440{bottom:689.213333pt;}
.h5_c00440{height:11.733399pt;}
.h6_c00440{height:38.937500pt;}
.h3_c00440{height:71.785156pt;}
.h2_c00440{height:77.654948pt;}
.h4_c00440{height:84.407552pt;}
.h1_c00440{height:726.666667pt;}
.h0_c00440{height:726.733333pt;}
.w2_c00440{width:93.222667pt;}
.w1_c00440{width:508.666667pt;}
.w0_c00440{width:508.800000pt;}
.x0_c00440{left:0.000000pt;}
.x3_c00440{left:21.600000pt;}
.x2_c00440{left:23.466667pt;}
.x4_c00440{left:25.200000pt;}
.x7_c00440{left:26.400000pt;}
.x9_c00440{left:28.266667pt;}
.xa_c00440{left:30.000000pt;}
.xb_c00440{left:31.466667pt;}
.xc_c00440{left:32.666667pt;}
.xd_c00440{left:33.600000pt;}
.x6_c00440{left:47.733333pt;}
.x8_c00440{left:48.933333pt;}
.x5_c00440{left:137.200000pt;}
.x1_c00440{left:158.400000pt;}
.xe_c00440{left:211.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_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_2ce4a5e2634a6ceda363198b.woff2')format("woff");}.ff1_c00441{font-family:ff1_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:ff2_c00441;src:url('chunks/assets/font_7a01663ec7738039ee92d99e.woff2')format("woff");}.ff2_c00441{font-family:ff2_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:ff3_c00441;src:url('chunks/assets/font_5e18f57e2260c4dddad52710.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls0_c00441{letter-spacing:0.000000px;}
.ls3_c00441{letter-spacing:3.000000px;}
.ls4_c00441{letter-spacing:9.000000px;}
.ls1_c00441{letter-spacing:36.000000px;}
.ls2_c00441{letter-spacing:48.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00441{word-spacing:-64.629000px;}
.ws0_c00441{word-spacing:-58.500000px;}
.ws2_c00441{word-spacing:-25.629000px;}
.ws3_c00441{word-spacing:0.000000px;}
._1_c00441{margin-left:-15.870000px;}
._14_c00441{margin-left:-12.675000px;}
._e_c00441{margin-left:-9.660000px;}
._18_c00441{margin-left:-8.298000px;}
._7_c00441{margin-left:-6.834000px;}
._15_c00441{margin-left:-5.652000px;}
._d_c00441{margin-left:-4.062000px;}
._2_c00441{margin-left:-3.015000px;}
._8_c00441{margin-left:-1.743000px;}
._0_c00441{width:1.104000px;}
._4_c00441{width:2.430000px;}
._3_c00441{width:4.266000px;}
._5_c00441{width:6.324000px;}
._9_c00441{width:7.401000px;}
._6_c00441{width:8.532000px;}
._13_c00441{width:9.654000px;}
._16_c00441{width:11.928000px;}
._12_c00441{width:13.365000px;}
._b_c00441{width:15.543000px;}
._c_c00441{width:17.472000px;}
._a_c00441{width:18.960000px;}
._10_c00441{width:20.793000px;}
._1b_c00441{width:22.830000px;}
._1e_c00441{width:24.228000px;}
._1c_c00441{width:28.419000px;}
._1f_c00441{width:35.733000px;}
._f_c00441{width:37.398000px;}
._17_c00441{width:40.914000px;}
._1a_c00441{width:45.885000px;}
._19_c00441{width:88.227000px;}
._1d_c00441{width:90.567000px;}
._11_c00441{width:96.846000px;}
.fc2_c00441{color:transparent;}
.fc1_c00441{color:rgb(128,128,128);}
.fc0_c00441{color:rgb(0,0,0);}
.fs1_c00441{font-size:45.000000px;}
.fs3_c00441{font-size:48.000000px;}
.fs2_c00441{font-size:54.000000px;}
.fs0_c00441{font-size:69.000000px;}
.y0_c00441{bottom:0.000000px;}
.y1b_c00441{bottom:3.105000px;}
.y1a_c00441{bottom:7.228363px;}
.y19_c00441{bottom:81.300000px;}
.y18_c00441{bottom:106.050000px;}
.y17_c00441{bottom:131.250000px;}
.y16_c00441{bottom:156.900000px;}
.y15_c00441{bottom:189.300000px;}
.y14_c00441{bottom:222.450000px;}
.y13_c00441{bottom:255.600000px;}
.y12_c00441{bottom:280.800000px;}
.y11_c00441{bottom:305.550000px;}
.y10_c00441{bottom:329.850000px;}
.yf_c00441{bottom:362.100000px;}
.ye_c00441{bottom:394.200000px;}
.yd_c00441{bottom:426.300000px;}
.yc_c00441{bottom:451.500000px;}
.yb_c00441{bottom:476.250000px;}
.ya_c00441{bottom:501.150000px;}
.y9_c00441{bottom:525.750000px;}
.y8_c00441{bottom:550.350000px;}
.y7_c00441{bottom:600.000000px;}
.y6_c00441{bottom:653.700000px;}
.y5_c00441{bottom:670.200000px;}
.y4_c00441{bottom:686.850000px;}
.y3_c00441{bottom:706.050000px;}
.y2_c00441{bottom:740.850000px;}
.y1_c00441{bottom:778.200000px;}
.h6_c00441{height:13.200074px;}
.h7_c00441{height:43.804688px;}
.h3_c00441{height:44.143066px;}
.h4_c00441{height:68.370117px;}
.h5_c00441{height:80.758301px;}
.h2_c00441{height:87.361816px;}
.h1_c00441{height:827.250000px;}
.h0_c00441{height:827.550000px;}
.w2_c00441{width:104.875500px;}
.w0_c00441{width:572.100000px;}
.w1_c00441{width:572.250000px;}
.x0_c00441{left:0.000000px;}
.xb_c00441{left:92.100000px;}
.xa_c00441{left:93.600000px;}
.x9_c00441{left:95.100000px;}
.xc_c00441{left:96.150000px;}
.x7_c00441{left:97.500000px;}
.x4_c00441{left:100.950000px;}
.x3_c00441{left:117.450000px;}
.x6_c00441{left:119.550000px;}
.x8_c00441{left:123.450000px;}
.x5_c00441{left:236.250000px;}
.xd_c00441{left:237.864258px;}
.x2_c00441{left:244.800000px;}
.x1_c00441{left:258.900000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ls3_c00441{letter-spacing:2.666667pt;}
.ls4_c00441{letter-spacing:8.000000pt;}
.ls1_c00441{letter-spacing:32.000000pt;}
.ls2_c00441{letter-spacing:42.666667pt;}
.ws1_c00441{word-spacing:-57.448000pt;}
.ws0_c00441{word-spacing:-52.000000pt;}
.ws2_c00441{word-spacing:-22.781333pt;}
.ws3_c00441{word-spacing:0.000000pt;}
._1_c00441{margin-left:-14.106667pt;}
._14_c00441{margin-left:-11.266667pt;}
._e_c00441{margin-left:-8.586667pt;}
._18_c00441{margin-left:-7.376000pt;}
._7_c00441{margin-left:-6.074667pt;}
._15_c00441{margin-left:-5.024000pt;}
._d_c00441{margin-left:-3.610667pt;}
._2_c00441{margin-left:-2.680000pt;}
._8_c00441{margin-left:-1.549333pt;}
._0_c00441{width:0.981333pt;}
._4_c00441{width:2.160000pt;}
._3_c00441{width:3.792000pt;}
._5_c00441{width:5.621333pt;}
._9_c00441{width:6.578667pt;}
._6_c00441{width:7.584000pt;}
._13_c00441{width:8.581333pt;}
._16_c00441{width:10.602667pt;}
._12_c00441{width:11.880000pt;}
._b_c00441{width:13.816000pt;}
._c_c00441{width:15.530667pt;}
._a_c00441{width:16.853333pt;}
._10_c00441{width:18.482667pt;}
._1b_c00441{width:20.293333pt;}
._1e_c00441{width:21.536000pt;}
._1c_c00441{width:25.261333pt;}
._1f_c00441{width:31.762667pt;}
._f_c00441{width:33.242667pt;}
._17_c00441{width:36.368000pt;}
._1a_c00441{width:40.786667pt;}
._19_c00441{width:78.424000pt;}
._1d_c00441{width:80.504000pt;}
._11_c00441{width:86.085333pt;}
.fs1_c00441{font-size:40.000000pt;}
.fs3_c00441{font-size:42.666667pt;}
.fs2_c00441{font-size:48.000000pt;}
.fs0_c00441{font-size:61.333333pt;}
.y0_c00441{bottom:0.000000pt;}
.y1b_c00441{bottom:2.760000pt;}
.y1a_c00441{bottom:6.425212pt;}
.y19_c00441{bottom:72.266667pt;}
.y18_c00441{bottom:94.266667pt;}
.y17_c00441{bottom:116.666667pt;}
.y16_c00441{bottom:139.466667pt;}
.y15_c00441{bottom:168.266667pt;}
.y14_c00441{bottom:197.733333pt;}
.y13_c00441{bottom:227.200000pt;}
.y12_c00441{bottom:249.600000pt;}
.y11_c00441{bottom:271.600000pt;}
.y10_c00441{bottom:293.200000pt;}
.yf_c00441{bottom:321.866667pt;}
.ye_c00441{bottom:350.400000pt;}
.yd_c00441{bottom:378.933333pt;}
.yc_c00441{bottom:401.333333pt;}
.yb_c00441{bottom:423.333333pt;}
.ya_c00441{bottom:445.466667pt;}
.y9_c00441{bottom:467.333333pt;}
.y8_c00441{bottom:489.200000pt;}
.y7_c00441{bottom:533.333333pt;}
.y6_c00441{bottom:581.066667pt;}
.y5_c00441{bottom:595.733333pt;}
.y4_c00441{bottom:610.533333pt;}
.y3_c00441{bottom:627.600000pt;}
.y2_c00441{bottom:658.533333pt;}
.y1_c00441{bottom:691.733333pt;}
.h6_c00441{height:11.733399pt;}
.h7_c00441{height:38.937500pt;}
.h3_c00441{height:39.238281pt;}
.h4_c00441{height:60.773438pt;}
.h5_c00441{height:71.785156pt;}
.h2_c00441{height:77.654948pt;}
.h1_c00441{height:735.333333pt;}
.h0_c00441{height:735.600000pt;}
.w2_c00441{width:93.222667pt;}
.w0_c00441{width:508.533333pt;}
.w1_c00441{width:508.666667pt;}
.x0_c00441{left:0.000000pt;}
.xb_c00441{left:81.866667pt;}
.xa_c00441{left:83.200000pt;}
.x9_c00441{left:84.533333pt;}
.xc_c00441{left:85.466667pt;}
.x7_c00441{left:86.666667pt;}
.x4_c00441{left:89.733333pt;}
.x3_c00441{left:104.400000pt;}
.x6_c00441{left:106.266667pt;}
.x8_c00441{left:109.733333pt;}
.x5_c00441{left:210.000000pt;}
.xd_c00441{left:211.434896pt;}
.x2_c00441{left:217.600000pt;}
.x1_c00441{left:230.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_0a52ffdb26f706353b36cfe9.woff2')format("woff");}.ff1_c00442{font-family:ff1_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:ff2_c00442;src:url('chunks/assets/font_bdbd4d26a4cebad9cc69e4f2.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.568848;font-style:normal;font-weight:normal;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_c62f2fa0797a0ce3d451ffcf.woff2')format("woff");}.ff3_c00442{font-family:ff3_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:ff4_c00442;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_dcec59d1395ee9542b341fcb.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00442;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00442{font-family:ff6_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;}
.ls8_c00442{letter-spacing:-3.000000px;}
.ls4_c00442{letter-spacing:0.000000px;}
.ls5_c00442{letter-spacing:3.000000px;}
.ls7_c00442{letter-spacing:9.000000px;}
.ls2_c00442{letter-spacing:10.269000px;}
.ls3_c00442{letter-spacing:14.400000px;}
.ls6_c00442{letter-spacing:21.000000px;}
.ls0_c00442{letter-spacing:24.519000px;}
.ls1_c00442{letter-spacing:24.760800px;}
.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;}
}
.ws4_c00442{word-spacing:-39.468000px;}
.ws0_c00442{word-spacing:-37.629000px;}
.ws1_c00442{word-spacing:-25.629000px;}
.ws2_c00442{word-spacing:-16.629000px;}
.ws3_c00442{word-spacing:-10.737000px;}
.ws5_c00442{word-spacing:0.000000px;}
._24_c00442{margin-left:-28.773000px;}
._10_c00442{margin-left:-16.629000px;}
._27_c00442{margin-left:-12.282000px;}
._26_c00442{margin-left:-9.993000px;}
._3_c00442{margin-left:-8.622000px;}
._14_c00442{margin-left:-7.176000px;}
._11_c00442{margin-left:-5.385000px;}
._4_c00442{margin-left:-3.726000px;}
._1_c00442{margin-left:-2.346000px;}
._2_c00442{margin-left:-1.242000px;}
._e_c00442{width:1.932000px;}
._17_c00442{width:3.039000px;}
._0_c00442{width:4.140000px;}
._6_c00442{width:5.175000px;}
._16_c00442{width:6.210000px;}
._f_c00442{width:7.521000px;}
._18_c00442{width:8.544000px;}
._7_c00442{width:9.729000px;}
._19_c00442{width:10.821000px;}
._22_c00442{width:11.928000px;}
._8_c00442{width:13.524000px;}
._9_c00442{width:15.318000px;}
._1b_c00442{width:16.353000px;}
._b_c00442{width:17.388000px;}
._13_c00442{width:18.450000px;}
._c_c00442{width:20.178000px;}
._21_c00442{width:21.573000px;}
._a_c00442{width:22.866000px;}
._d_c00442{width:24.495000px;}
._20_c00442{width:27.831000px;}
._15_c00442{width:29.052000px;}
._1c_c00442{width:32.289000px;}
._1d_c00442{width:35.328000px;}
._1e_c00442{width:39.054000px;}
._1f_c00442{width:91.188000px;}
._1a_c00442{width:145.860000px;}
._28_c00442{width:159.993000px;}
._12_c00442{width:166.212000px;}
._23_c00442{width:231.759000px;}
._25_c00442{width:340.713000px;}
._5_c00442{width:394.059000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(128,128,128);}
.fc0_c00442{color:rgb(0,0,0);}
.fs5_c00442{font-size:48.000000px;}
.fs1_c00442{font-size:55.200000px;}
.fs3_c00442{font-size:57.000000px;}
.fs4_c00442{font-size:60.000000px;}
.fs2_c00442{font-size:66.000000px;}
.fs0_c00442{font-size:69.000000px;}
.y0_c00442{bottom:0.000000px;}
.y1b_c00442{bottom:3.105000px;}
.y1a_c00442{bottom:7.228371px;}
.y19_c00442{bottom:67.215000px;}
.y18_c00442{bottom:164.115000px;}
.y17_c00442{bottom:185.265000px;}
.y16_c00442{bottom:210.315000px;}
.y15_c00442{bottom:234.915000px;}
.y14_c00442{bottom:259.665000px;}
.y13_c00442{bottom:284.565000px;}
.y12_c00442{bottom:309.165000px;}
.y11_c00442{bottom:334.515000px;}
.y10_c00442{bottom:358.515000px;}
.yf_c00442{bottom:383.865000px;}
.ye_c00442{bottom:409.065000px;}
.yd_c00442{bottom:433.365000px;}
.yc_c00442{bottom:459.315000px;}
.yb_c00442{bottom:483.315000px;}
.ya_c00442{bottom:508.065000px;}
.y9_c00442{bottom:532.665000px;}
.y8_c00442{bottom:557.865000px;}
.y7_c00442{bottom:582.615000px;}
.y6_c00442{bottom:607.815000px;}
.y5_c00442{bottom:632.865000px;}
.y4_c00442{bottom:657.915000px;}
.y3_c00442{bottom:682.815000px;}
.y2_c00442{bottom:732.465000px;}
.y1_c00442{bottom:781.965000px;}
.h4_c00442{height:13.200074px;}
.h5_c00442{height:43.804688px;}
.h3_c00442{height:75.966797px;}
.h2_c00442{height:87.361816px;}
.h1_c00442{height:831.000000px;}
.h0_c00442{height:831.075000px;}
.w2_c00442{width:104.875500px;}
.w0_c00442{width:582.375000px;}
.w1_c00442{width:582.750000px;}
.x0_c00442{left:0.000000px;}
.x5_c00442{left:32.400000px;}
.x4_c00442{left:34.050000px;}
.x7_c00442{left:36.150000px;}
.x8_c00442{left:37.500000px;}
.x9_c00442{left:38.700000px;}
.xa_c00442{left:40.200000px;}
.xb_c00442{left:42.150000px;}
.xc_c00442{left:44.550000px;}
.x6_c00442{left:49.650000px;}
.x3_c00442{left:56.700000px;}
.x2_c00442{left:139.050000px;}
.x1_c00442{left:195.750000px;}
.xe_c00442{left:243.001740px;}
.xd_c00442{left:310.500000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls8_c00442{letter-spacing:-2.666667pt;}
.ls4_c00442{letter-spacing:0.000000pt;}
.ls5_c00442{letter-spacing:2.666667pt;}
.ls7_c00442{letter-spacing:8.000000pt;}
.ls2_c00442{letter-spacing:9.128000pt;}
.ls3_c00442{letter-spacing:12.800000pt;}
.ls6_c00442{letter-spacing:18.666667pt;}
.ls0_c00442{letter-spacing:21.794667pt;}
.ls1_c00442{letter-spacing:22.009600pt;}
.ws4_c00442{word-spacing:-35.082667pt;}
.ws0_c00442{word-spacing:-33.448000pt;}
.ws1_c00442{word-spacing:-22.781333pt;}
.ws2_c00442{word-spacing:-14.781333pt;}
.ws3_c00442{word-spacing:-9.544000pt;}
.ws5_c00442{word-spacing:0.000000pt;}
._24_c00442{margin-left:-25.576000pt;}
._10_c00442{margin-left:-14.781333pt;}
._27_c00442{margin-left:-10.917333pt;}
._26_c00442{margin-left:-8.882667pt;}
._3_c00442{margin-left:-7.664000pt;}
._14_c00442{margin-left:-6.378667pt;}
._11_c00442{margin-left:-4.786667pt;}
._4_c00442{margin-left:-3.312000pt;}
._1_c00442{margin-left:-2.085333pt;}
._2_c00442{margin-left:-1.104000pt;}
._e_c00442{width:1.717333pt;}
._17_c00442{width:2.701333pt;}
._0_c00442{width:3.680000pt;}
._6_c00442{width:4.600000pt;}
._16_c00442{width:5.520000pt;}
._f_c00442{width:6.685333pt;}
._18_c00442{width:7.594667pt;}
._7_c00442{width:8.648000pt;}
._19_c00442{width:9.618667pt;}
._22_c00442{width:10.602667pt;}
._8_c00442{width:12.021333pt;}
._9_c00442{width:13.616000pt;}
._1b_c00442{width:14.536000pt;}
._b_c00442{width:15.456000pt;}
._13_c00442{width:16.400000pt;}
._c_c00442{width:17.936000pt;}
._21_c00442{width:19.176000pt;}
._a_c00442{width:20.325333pt;}
._d_c00442{width:21.773333pt;}
._20_c00442{width:24.738667pt;}
._15_c00442{width:25.824000pt;}
._1c_c00442{width:28.701333pt;}
._1d_c00442{width:31.402667pt;}
._1e_c00442{width:34.714667pt;}
._1f_c00442{width:81.056000pt;}
._1a_c00442{width:129.653333pt;}
._28_c00442{width:142.216000pt;}
._12_c00442{width:147.744000pt;}
._23_c00442{width:206.008000pt;}
._25_c00442{width:302.856000pt;}
._5_c00442{width:350.274667pt;}
.fs5_c00442{font-size:42.666667pt;}
.fs1_c00442{font-size:49.066667pt;}
.fs3_c00442{font-size:50.666667pt;}
.fs4_c00442{font-size:53.333333pt;}
.fs2_c00442{font-size:58.666667pt;}
.fs0_c00442{font-size:61.333333pt;}
.y0_c00442{bottom:0.000000pt;}
.y1b_c00442{bottom:2.760000pt;}
.y1a_c00442{bottom:6.425219pt;}
.y19_c00442{bottom:59.746667pt;}
.y18_c00442{bottom:145.880000pt;}
.y17_c00442{bottom:164.680000pt;}
.y16_c00442{bottom:186.946667pt;}
.y15_c00442{bottom:208.813333pt;}
.y14_c00442{bottom:230.813333pt;}
.y13_c00442{bottom:252.946667pt;}
.y12_c00442{bottom:274.813333pt;}
.y11_c00442{bottom:297.346667pt;}
.y10_c00442{bottom:318.680000pt;}
.yf_c00442{bottom:341.213333pt;}
.ye_c00442{bottom:363.613333pt;}
.yd_c00442{bottom:385.213333pt;}
.yc_c00442{bottom:408.280000pt;}
.yb_c00442{bottom:429.613333pt;}
.ya_c00442{bottom:451.613333pt;}
.y9_c00442{bottom:473.480000pt;}
.y8_c00442{bottom:495.880000pt;}
.y7_c00442{bottom:517.880000pt;}
.y6_c00442{bottom:540.280000pt;}
.y5_c00442{bottom:562.546667pt;}
.y4_c00442{bottom:584.813333pt;}
.y3_c00442{bottom:606.946667pt;}
.y2_c00442{bottom:651.080000pt;}
.y1_c00442{bottom:695.080000pt;}
.h4_c00442{height:11.733399pt;}
.h5_c00442{height:38.937500pt;}
.h3_c00442{height:67.526042pt;}
.h2_c00442{height:77.654948pt;}
.h1_c00442{height:738.666667pt;}
.h0_c00442{height:738.733333pt;}
.w2_c00442{width:93.222667pt;}
.w0_c00442{width:517.666667pt;}
.w1_c00442{width:518.000000pt;}
.x0_c00442{left:0.000000pt;}
.x5_c00442{left:28.800000pt;}
.x4_c00442{left:30.266667pt;}
.x7_c00442{left:32.133333pt;}
.x8_c00442{left:33.333333pt;}
.x9_c00442{left:34.400000pt;}
.xa_c00442{left:35.733333pt;}
.xb_c00442{left:37.466667pt;}
.xc_c00442{left:39.600000pt;}
.x6_c00442{left:44.133333pt;}
.x3_c00442{left:50.400000pt;}
.x2_c00442{left:123.600000pt;}
.x1_c00442{left:174.000000pt;}
.xe_c00442{left:216.001546pt;}
.xd_c00442{left:276.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_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_add2d06df8ffc79ee0feeb55.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.568848;font-style:normal;font-weight:normal;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_537e9ad9b4d6b0bc081a834c.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_dd69b4561a9c748cdddc8ffa.woff2')format("woff");}.ff3_c00443{font-family:ff3_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:ff4_c00443;src:url('chunks/assets/font_d7ceb7b9e163919eaf8558af.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00443;src:url('chunks/assets/font_84387b0718abc27ad2595533.woff2')format("woff");}.ff5_c00443{font-family:ff5_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:ff6_c00443;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00443{font-family:ff6_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;}
.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;}
.ls3_c00443{letter-spacing:0.000000px;}
.ls2_c00443{letter-spacing:3.000000px;}
.ls4_c00443{letter-spacing:9.000000px;}
.ls1_c00443{letter-spacing:20.325000px;}
.ls0_c00443{letter-spacing:36.171000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00443{word-spacing:-25.629000px;}
.ws3_c00443{word-spacing:-20.352000px;}
.ws0_c00443{word-spacing:-16.629000px;}
.ws1_c00443{word-spacing:-13.303200px;}
.ws4_c00443{word-spacing:0.000000px;}
._2d_c00443{margin-left:-54.600000px;}
._2e_c00443{margin-left:-35.025000px;}
._31_c00443{margin-left:-28.725000px;}
._23_c00443{margin-left:-23.874000px;}
._2c_c00443{margin-left:-21.600000px;}
._19_c00443{margin-left:-18.100200px;}
._b_c00443{margin-left:-16.629000px;}
._15_c00443{margin-left:-14.929800px;}
._18_c00443{margin-left:-13.167600px;}
._14_c00443{margin-left:-11.814000px;}
._1d_c00443{margin-left:-10.005000px;}
._d_c00443{margin-left:-8.964000px;}
._11_c00443{margin-left:-7.761600px;}
._16_c00443{margin-left:-6.640200px;}
._c_c00443{margin-left:-5.202600px;}
._8_c00443{margin-left:-3.357600px;}
._7_c00443{margin-left:-1.711200px;}
._2_c00443{width:1.311000px;}
._0_c00443{width:2.415000px;}
._3_c00443{width:3.588000px;}
._17_c00443{width:4.819800px;}
._4_c00443{width:6.279000px;}
._5_c00443{width:7.383000px;}
._1f_c00443{width:8.815800px;}
._9_c00443{width:10.212000px;}
._10_c00443{width:11.937000px;}
._f_c00443{width:13.938000px;}
._13_c00443{width:15.442200px;}
._20_c00443{width:16.590600px;}
._1b_c00443{width:17.770800px;}
._e_c00443{width:20.340600px;}
._1a_c00443{width:25.033200px;}
._a_c00443{width:26.965200px;}
._2a_c00443{width:27.984000px;}
._28_c00443{width:32.012400px;}
._27_c00443{width:33.132600px;}
._6_c00443{width:37.425000px;}
._29_c00443{width:45.986400px;}
._2f_c00443{width:54.225000px;}
._12_c00443{width:70.728000px;}
._22_c00443{width:90.061200px;}
._1e_c00443{width:96.387000px;}
._25_c00443{width:98.205000px;}
._1c_c00443{width:103.078800px;}
._2b_c00443{width:107.446800px;}
._24_c00443{width:124.959000px;}
._1_c00443{width:324.273000px;}
._30_c00443{width:446.959200px;}
._26_c00443{width:540.981000px;}
._21_c00443{width:569.701800px;}
._32_c00443{width:943.125000px;}
.fc2_c00443{color:transparent;}
.fc1_c00443{color:rgb(128,128,128);}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:48.000000px;}
.fs1_c00443{font-size:55.200000px;}
.fs2_c00443{font-size:66.000000px;}
.fs0_c00443{font-size:69.000000px;}
.fs3_c00443{font-size:75.000000px;}
.y0_c00443{bottom:0.000000px;}
.y1e_c00443{bottom:3.105000px;}
.y1d_c00443{bottom:7.228369px;}
.y1c_c00443{bottom:64.020000px;}
.y1b_c00443{bottom:87.120000px;}
.y1a_c00443{bottom:112.770000px;}
.y19_c00443{bottom:137.970000px;}
.y18_c00443{bottom:163.920000px;}
.y17_c00443{bottom:188.220000px;}
.y16_c00443{bottom:213.570000px;}
.y15_c00443{bottom:238.920000px;}
.y14_c00443{bottom:263.220000px;}
.y13_c00443{bottom:287.820000px;}
.y12_c00443{bottom:313.470000px;}
.y11_c00443{bottom:338.520000px;}
.y10_c00443{bottom:363.120000px;}
.yf_c00443{bottom:388.020000px;}
.ye_c00443{bottom:412.770000px;}
.yd_c00443{bottom:437.670000px;}
.yc_c00443{bottom:463.320000px;}
.yb_c00443{bottom:487.620000px;}
.ya_c00443{bottom:512.370000px;}
.y9_c00443{bottom:537.870000px;}
.y8_c00443{bottom:561.870000px;}
.y7_c00443{bottom:587.520000px;}
.y6_c00443{bottom:612.570000px;}
.y5_c00443{bottom:637.470000px;}
.y4_c00443{bottom:662.820000px;}
.y3_c00443{bottom:687.420000px;}
.y2_c00443{bottom:736.770000px;}
.y1_c00443{bottom:784.920000px;}
.h5_c00443{height:13.200073px;}
.h6_c00443{height:43.804688px;}
.h3_c00443{height:80.758301px;}
.h2_c00443{height:87.361816px;}
.h4_c00443{height:94.958496px;}
.h0_c00443{height:821.850000px;}
.h1_c00443{height:822.000000px;}
.w2_c00443{width:104.875500px;}
.w1_c00443{width:567.750000px;}
.w0_c00443{width:568.050000px;}
.x0_c00443{left:0.000000px;}
.x10_c00443{left:32.100000px;}
.xa_c00443{left:35.400000px;}
.x4_c00443{left:36.450000px;}
.xb_c00443{left:48.300000px;}
.xd_c00443{left:49.500000px;}
.x9_c00443{left:50.850000px;}
.x12_c00443{left:65.400000px;}
.xc_c00443{left:70.800000px;}
.x11_c00443{left:95.850000px;}
.xf_c00443{left:97.500000px;}
.xe_c00443{left:98.550000px;}
.x6_c00443{left:99.600000px;}
.x7_c00443{left:101.550000px;}
.x5_c00443{left:103.500000px;}
.x1_c00443{left:115.650000px;}
.x13_c00443{left:118.500000px;}
.x8_c00443{left:126.150000px;}
.x3_c00443{left:127.500000px;}
.x2_c00443{left:229.800000px;}
.x14_c00443{left:235.839249px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls3_c00443{letter-spacing:0.000000pt;}
.ls2_c00443{letter-spacing:2.666667pt;}
.ls4_c00443{letter-spacing:8.000000pt;}
.ls1_c00443{letter-spacing:18.066667pt;}
.ls0_c00443{letter-spacing:32.152000pt;}
.ws2_c00443{word-spacing:-22.781333pt;}
.ws3_c00443{word-spacing:-18.090667pt;}
.ws0_c00443{word-spacing:-14.781333pt;}
.ws1_c00443{word-spacing:-11.825067pt;}
.ws4_c00443{word-spacing:0.000000pt;}
._2d_c00443{margin-left:-48.533333pt;}
._2e_c00443{margin-left:-31.133333pt;}
._31_c00443{margin-left:-25.533333pt;}
._23_c00443{margin-left:-21.221333pt;}
._2c_c00443{margin-left:-19.200000pt;}
._19_c00443{margin-left:-16.089067pt;}
._b_c00443{margin-left:-14.781333pt;}
._15_c00443{margin-left:-13.270933pt;}
._18_c00443{margin-left:-11.704533pt;}
._14_c00443{margin-left:-10.501333pt;}
._1d_c00443{margin-left:-8.893333pt;}
._d_c00443{margin-left:-7.968000pt;}
._11_c00443{margin-left:-6.899200pt;}
._16_c00443{margin-left:-5.902400pt;}
._c_c00443{margin-left:-4.624533pt;}
._8_c00443{margin-left:-2.984533pt;}
._7_c00443{margin-left:-1.521067pt;}
._2_c00443{width:1.165333pt;}
._0_c00443{width:2.146667pt;}
._3_c00443{width:3.189333pt;}
._17_c00443{width:4.284267pt;}
._4_c00443{width:5.581333pt;}
._5_c00443{width:6.562667pt;}
._1f_c00443{width:7.836267pt;}
._9_c00443{width:9.077333pt;}
._10_c00443{width:10.610667pt;}
._f_c00443{width:12.389333pt;}
._13_c00443{width:13.726400pt;}
._20_c00443{width:14.747200pt;}
._1b_c00443{width:15.796267pt;}
._e_c00443{width:18.080533pt;}
._1a_c00443{width:22.251733pt;}
._a_c00443{width:23.969067pt;}
._2a_c00443{width:24.874667pt;}
._28_c00443{width:28.455467pt;}
._27_c00443{width:29.451200pt;}
._6_c00443{width:33.266667pt;}
._29_c00443{width:40.876800pt;}
._2f_c00443{width:48.200000pt;}
._12_c00443{width:62.869333pt;}
._22_c00443{width:80.054400pt;}
._1e_c00443{width:85.677333pt;}
._25_c00443{width:87.293333pt;}
._1c_c00443{width:91.625600pt;}
._2b_c00443{width:95.508267pt;}
._24_c00443{width:111.074667pt;}
._1_c00443{width:288.242667pt;}
._30_c00443{width:397.297067pt;}
._26_c00443{width:480.872000pt;}
._21_c00443{width:506.401600pt;}
._32_c00443{width:838.333333pt;}
.fs4_c00443{font-size:42.666667pt;}
.fs1_c00443{font-size:49.066667pt;}
.fs2_c00443{font-size:58.666667pt;}
.fs0_c00443{font-size:61.333333pt;}
.fs3_c00443{font-size:66.666667pt;}
.y0_c00443{bottom:0.000000pt;}
.y1e_c00443{bottom:2.760000pt;}
.y1d_c00443{bottom:6.425217pt;}
.y1c_c00443{bottom:56.906667pt;}
.y1b_c00443{bottom:77.440000pt;}
.y1a_c00443{bottom:100.240000pt;}
.y19_c00443{bottom:122.640000pt;}
.y18_c00443{bottom:145.706667pt;}
.y17_c00443{bottom:167.306667pt;}
.y16_c00443{bottom:189.840000pt;}
.y15_c00443{bottom:212.373333pt;}
.y14_c00443{bottom:233.973333pt;}
.y13_c00443{bottom:255.840000pt;}
.y12_c00443{bottom:278.640000pt;}
.y11_c00443{bottom:300.906667pt;}
.y10_c00443{bottom:322.773333pt;}
.yf_c00443{bottom:344.906667pt;}
.ye_c00443{bottom:366.906667pt;}
.yd_c00443{bottom:389.040000pt;}
.yc_c00443{bottom:411.840000pt;}
.yb_c00443{bottom:433.440000pt;}
.ya_c00443{bottom:455.440000pt;}
.y9_c00443{bottom:478.106667pt;}
.y8_c00443{bottom:499.440000pt;}
.y7_c00443{bottom:522.240000pt;}
.y6_c00443{bottom:544.506667pt;}
.y5_c00443{bottom:566.640000pt;}
.y4_c00443{bottom:589.173333pt;}
.y3_c00443{bottom:611.040000pt;}
.y2_c00443{bottom:654.906667pt;}
.y1_c00443{bottom:697.706667pt;}
.h5_c00443{height:11.733399pt;}
.h6_c00443{height:38.937500pt;}
.h3_c00443{height:71.785156pt;}
.h2_c00443{height:77.654948pt;}
.h4_c00443{height:84.407552pt;}
.h0_c00443{height:730.533333pt;}
.h1_c00443{height:730.666667pt;}
.w2_c00443{width:93.222667pt;}
.w1_c00443{width:504.666667pt;}
.w0_c00443{width:504.933333pt;}
.x0_c00443{left:0.000000pt;}
.x10_c00443{left:28.533333pt;}
.xa_c00443{left:31.466667pt;}
.x4_c00443{left:32.400000pt;}
.xb_c00443{left:42.933333pt;}
.xd_c00443{left:44.000000pt;}
.x9_c00443{left:45.200000pt;}
.x12_c00443{left:58.133333pt;}
.xc_c00443{left:62.933333pt;}
.x11_c00443{left:85.200000pt;}
.xf_c00443{left:86.666667pt;}
.xe_c00443{left:87.600000pt;}
.x6_c00443{left:88.533333pt;}
.x7_c00443{left:90.266667pt;}
.x5_c00443{left:92.000000pt;}
.x1_c00443{left:102.800000pt;}
.x13_c00443{left:105.333333pt;}
.x8_c00443{left:112.133333pt;}
.x3_c00443{left:113.333333pt;}
.x2_c00443{left:204.266667pt;}
.x14_c00443{left:209.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_326f961105f57eecd9ebafca.woff2')format("woff");}.ff1_c00444{font-family:ff1_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:ff2_c00444;src:url('chunks/assets/font_5daee1112ac657599946d03c.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.480469;font-style:normal;font-weight:normal;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_f5c44eba80e7dcaaded31819.woff2')format("woff");}.ff3_c00444{font-family:ff3_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:ff4_c00444;src:url('chunks/assets/font_2140a03803692a49ddc99cb2.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_4610b6e51d40ef557909edaa.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;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_c00444;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00444{font-family:ff6_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;}
.ls6_c00444{letter-spacing:0.000000px;}
.ls5_c00444{letter-spacing:3.000000px;}
.ls1_c00444{letter-spacing:6.000000px;}
.ls3_c00444{letter-spacing:6.771000px;}
.ls4_c00444{letter-spacing:7.761600px;}
.ls2_c00444{letter-spacing:10.971000px;}
.ls7_c00444{letter-spacing:18.000000px;}
.ls0_c00444{letter-spacing:28.971000px;}
.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;}
}
.ws4_c00444{word-spacing:-48.126000px;}
.ws6_c00444{word-spacing:-42.000000px;}
.ws0_c00444{word-spacing:-34.629000px;}
.ws7_c00444{word-spacing:-29.484000px;}
.ws1_c00444{word-spacing:-24.798000px;}
.ws2_c00444{word-spacing:-22.629000px;}
.ws5_c00444{word-spacing:-16.629000px;}
.ws3_c00444{word-spacing:-5.778000px;}
.ws8_c00444{word-spacing:0.000000px;}
._0_c00444{margin-left:-66.585000px;}
._27_c00444{margin-left:-28.911000px;}
._1c_c00444{margin-left:-17.283000px;}
._19_c00444{margin-left:-16.008000px;}
._17_c00444{margin-left:-14.697000px;}
._18_c00444{margin-left:-13.041000px;}
._a_c00444{margin-left:-11.661000px;}
._29_c00444{margin-left:-9.798000px;}
._9_c00444{margin-left:-8.763000px;}
._1b_c00444{margin-left:-7.185000px;}
._11_c00444{margin-left:-5.382000px;}
._14_c00444{margin-left:-3.519000px;}
._5_c00444{margin-left:-2.208000px;}
._6_c00444{margin-left:-1.104000px;}
._3_c00444{width:1.311000px;}
._2_c00444{width:2.346000px;}
._4_c00444{width:3.795000px;}
._d_c00444{width:5.451000px;}
._8_c00444{width:6.555000px;}
._15_c00444{width:8.073000px;}
._c_c00444{width:9.246000px;}
._b_c00444{width:10.557000px;}
._f_c00444{width:11.730000px;}
._12_c00444{width:12.939000px;}
._e_c00444{width:14.352000px;}
._16_c00444{width:15.594000px;}
._13_c00444{width:16.905000px;}
._10_c00444{width:18.285000px;}
._1a_c00444{width:19.425000px;}
._2a_c00444{width:20.838000px;}
._1d_c00444{width:24.651000px;}
._1e_c00444{width:26.601000px;}
._21_c00444{width:30.468000px;}
._20_c00444{width:32.913000px;}
._22_c00444{width:35.190000px;}
._28_c00444{width:70.059000px;}
._1f_c00444{width:97.446000px;}
._24_c00444{width:116.016000px;}
._23_c00444{width:125.931000px;}
._1_c00444{width:137.556000px;}
._26_c00444{width:185.103000px;}
._25_c00444{width:386.040000px;}
._7_c00444{width:416.388000px;}
._2b_c00444{width:743.820000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(128,128,128);}
.fc0_c00444{color:rgb(0,0,0);}
.fs4_c00444{font-size:24.000000px;}
.fs6_c00444{font-size:48.000000px;}
.fs2_c00444{font-size:55.200000px;}
.fs0_c00444{font-size:69.000000px;}
.fs1_c00444{font-size:78.000000px;}
.fs5_c00444{font-size:81.000000px;}
.fs3_c00444{font-size:84.000000px;}
.y0_c00444{bottom:0.000000px;}
.y1c_c00444{bottom:3.105000px;}
.y1b_c00444{bottom:7.228363px;}
.y1a_c00444{bottom:64.350000px;}
.y19_c00444{bottom:114.750000px;}
.y18_c00444{bottom:140.100000px;}
.y17_c00444{bottom:165.300000px;}
.y16_c00444{bottom:201.150000px;}
.y15_c00444{bottom:214.350000px;}
.y14_c00444{bottom:263.850000px;}
.y13_c00444{bottom:288.600000px;}
.y12_c00444{bottom:314.100000px;}
.y11_c00444{bottom:338.550000px;}
.y10_c00444{bottom:363.750000px;}
.yf_c00444{bottom:388.350000px;}
.ye_c00444{bottom:413.700000px;}
.yd_c00444{bottom:438.000000px;}
.yc_c00444{bottom:463.050000px;}
.yb_c00444{bottom:488.250000px;}
.ya_c00444{bottom:512.700000px;}
.y9_c00444{bottom:561.600000px;}
.y8_c00444{bottom:610.500000px;}
.y7_c00444{bottom:636.150000px;}
.y6_c00444{bottom:661.200000px;}
.y5_c00444{bottom:685.800000px;}
.y4_c00444{bottom:710.400000px;}
.y3_c00444{bottom:735.300000px;}
.y2_c00444{bottom:760.050000px;}
.y1_c00444{bottom:784.650000px;}
.h5_c00444{height:13.200074px;}
.h4_c00444{height:30.386719px;}
.h6_c00444{height:43.804688px;}
.h3_c00444{height:80.758301px;}
.h1_c00444{height:87.361816px;}
.h2_c00444{height:98.756836px;}
.h0_c00444{height:823.500000px;}
.w1_c00444{width:104.875500px;}
.w0_c00444{width:576.750000px;}
.x0_c00444{left:0.000000px;}
.x7_c00444{left:30.450000px;}
.x6_c00444{left:33.150000px;}
.x4_c00444{left:35.100000px;}
.x3_c00444{left:36.750000px;}
.xc_c00444{left:41.850000px;}
.xb_c00444{left:44.100000px;}
.x2_c00444{left:58.050000px;}
.x8_c00444{left:59.100000px;}
.xa_c00444{left:73.800000px;}
.x5_c00444{left:139.050000px;}
.x1_c00444{left:156.450000px;}
.x9_c00444{left:158.850000px;}
.xd_c00444{left:240.189240px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls6_c00444{letter-spacing:0.000000pt;}
.ls5_c00444{letter-spacing:2.666667pt;}
.ls1_c00444{letter-spacing:5.333333pt;}
.ls3_c00444{letter-spacing:6.018667pt;}
.ls4_c00444{letter-spacing:6.899200pt;}
.ls2_c00444{letter-spacing:9.752000pt;}
.ls7_c00444{letter-spacing:16.000000pt;}
.ls0_c00444{letter-spacing:25.752000pt;}
.ws4_c00444{word-spacing:-42.778667pt;}
.ws6_c00444{word-spacing:-37.333333pt;}
.ws0_c00444{word-spacing:-30.781333pt;}
.ws7_c00444{word-spacing:-26.208000pt;}
.ws1_c00444{word-spacing:-22.042667pt;}
.ws2_c00444{word-spacing:-20.114667pt;}
.ws5_c00444{word-spacing:-14.781333pt;}
.ws3_c00444{word-spacing:-5.136000pt;}
.ws8_c00444{word-spacing:0.000000pt;}
._0_c00444{margin-left:-59.186667pt;}
._27_c00444{margin-left:-25.698667pt;}
._1c_c00444{margin-left:-15.362667pt;}
._19_c00444{margin-left:-14.229333pt;}
._17_c00444{margin-left:-13.064000pt;}
._18_c00444{margin-left:-11.592000pt;}
._a_c00444{margin-left:-10.365333pt;}
._29_c00444{margin-left:-8.709333pt;}
._9_c00444{margin-left:-7.789333pt;}
._1b_c00444{margin-left:-6.386667pt;}
._11_c00444{margin-left:-4.784000pt;}
._14_c00444{margin-left:-3.128000pt;}
._5_c00444{margin-left:-1.962667pt;}
._6_c00444{margin-left:-0.981333pt;}
._3_c00444{width:1.165333pt;}
._2_c00444{width:2.085333pt;}
._4_c00444{width:3.373333pt;}
._d_c00444{width:4.845333pt;}
._8_c00444{width:5.826667pt;}
._15_c00444{width:7.176000pt;}
._c_c00444{width:8.218667pt;}
._b_c00444{width:9.384000pt;}
._f_c00444{width:10.426667pt;}
._12_c00444{width:11.501333pt;}
._e_c00444{width:12.757333pt;}
._16_c00444{width:13.861333pt;}
._13_c00444{width:15.026667pt;}
._10_c00444{width:16.253333pt;}
._1a_c00444{width:17.266667pt;}
._2a_c00444{width:18.522667pt;}
._1d_c00444{width:21.912000pt;}
._1e_c00444{width:23.645333pt;}
._21_c00444{width:27.082667pt;}
._20_c00444{width:29.256000pt;}
._22_c00444{width:31.280000pt;}
._28_c00444{width:62.274667pt;}
._1f_c00444{width:86.618667pt;}
._24_c00444{width:103.125333pt;}
._23_c00444{width:111.938667pt;}
._1_c00444{width:122.272000pt;}
._26_c00444{width:164.536000pt;}
._25_c00444{width:343.146667pt;}
._7_c00444{width:370.122667pt;}
._2b_c00444{width:661.173333pt;}
.fs4_c00444{font-size:21.333333pt;}
.fs6_c00444{font-size:42.666667pt;}
.fs2_c00444{font-size:49.066667pt;}
.fs0_c00444{font-size:61.333333pt;}
.fs1_c00444{font-size:69.333333pt;}
.fs5_c00444{font-size:72.000000pt;}
.fs3_c00444{font-size:74.666667pt;}
.y0_c00444{bottom:0.000000pt;}
.y1c_c00444{bottom:2.760000pt;}
.y1b_c00444{bottom:6.425212pt;}
.y1a_c00444{bottom:57.200000pt;}
.y19_c00444{bottom:102.000000pt;}
.y18_c00444{bottom:124.533333pt;}
.y17_c00444{bottom:146.933333pt;}
.y16_c00444{bottom:178.800000pt;}
.y15_c00444{bottom:190.533333pt;}
.y14_c00444{bottom:234.533333pt;}
.y13_c00444{bottom:256.533333pt;}
.y12_c00444{bottom:279.200000pt;}
.y11_c00444{bottom:300.933333pt;}
.y10_c00444{bottom:323.333333pt;}
.yf_c00444{bottom:345.200000pt;}
.ye_c00444{bottom:367.733333pt;}
.yd_c00444{bottom:389.333333pt;}
.yc_c00444{bottom:411.600000pt;}
.yb_c00444{bottom:434.000000pt;}
.ya_c00444{bottom:455.733333pt;}
.y9_c00444{bottom:499.200000pt;}
.y8_c00444{bottom:542.666667pt;}
.y7_c00444{bottom:565.466667pt;}
.y6_c00444{bottom:587.733333pt;}
.y5_c00444{bottom:609.600000pt;}
.y4_c00444{bottom:631.466667pt;}
.y3_c00444{bottom:653.600000pt;}
.y2_c00444{bottom:675.600000pt;}
.y1_c00444{bottom:697.466667pt;}
.h5_c00444{height:11.733399pt;}
.h4_c00444{height:27.010417pt;}
.h6_c00444{height:38.937500pt;}
.h3_c00444{height:71.785156pt;}
.h1_c00444{height:77.654948pt;}
.h2_c00444{height:87.783854pt;}
.h0_c00444{height:732.000000pt;}
.w1_c00444{width:93.222667pt;}
.w0_c00444{width:512.666667pt;}
.x0_c00444{left:0.000000pt;}
.x7_c00444{left:27.066667pt;}
.x6_c00444{left:29.466667pt;}
.x4_c00444{left:31.200000pt;}
.x3_c00444{left:32.666667pt;}
.xc_c00444{left:37.200000pt;}
.xb_c00444{left:39.200000pt;}
.x2_c00444{left:51.600000pt;}
.x8_c00444{left:52.533333pt;}
.xa_c00444{left:65.600000pt;}
.x5_c00444{left:123.600000pt;}
.x1_c00444{left:139.066667pt;}
.x9_c00444{left:141.200000pt;}
.xd_c00444{left:213.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_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_3e0b8e649b61b2970a059549.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.568848;font-style:normal;font-weight:normal;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_38151a7ba7267e8105f4413b.woff2')format("woff");}.ff2_c00445{font-family:ff2_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:ff3_c00445;src:url('chunks/assets/font_9268461a2a14046e9750194c.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_40aa9ac7c71b7ec71cee73b6.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00445{font-family:ff5_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;}
.ls3_c00445{letter-spacing:-9.000000px;}
.ls4_c00445{letter-spacing:-6.000000px;}
.ls2_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:3.000000px;}
.ls0_c00445{letter-spacing:17.400000px;}
.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;}
}
.ws5_c00445{word-spacing:-19.629000px;}
.ws1_c00445{word-spacing:-16.629000px;}
.ws4_c00445{word-spacing:-16.303200px;}
.ws3_c00445{word-spacing:-13.737000px;}
.ws2_c00445{word-spacing:-13.521000px;}
.ws0_c00445{word-spacing:-7.629000px;}
.ws6_c00445{word-spacing:0.000000px;}
._4_c00445{margin-left:-20.493000px;}
._15_c00445{margin-left:-17.940000px;}
._e_c00445{margin-left:-15.732000px;}
._16_c00445{margin-left:-14.559000px;}
._9_c00445{margin-left:-12.558000px;}
._14_c00445{margin-left:-10.047000px;}
._10_c00445{margin-left:-9.039000px;}
._a_c00445{margin-left:-7.107000px;}
._7_c00445{margin-left:-5.727000px;}
._d_c00445{margin-left:-4.347000px;}
._b_c00445{margin-left:-3.243000px;}
._c_c00445{margin-left:-1.311000px;}
._6_c00445{width:1.380000px;}
._2_c00445{width:3.243000px;}
._8_c00445{width:4.830000px;}
._0_c00445{width:6.003000px;}
._1_c00445{width:7.107000px;}
._f_c00445{width:8.625000px;}
._17_c00445{width:9.660000px;}
._13_c00445{width:11.523000px;}
._12_c00445{width:13.221000px;}
._5_c00445{width:15.147000px;}
._21_c00445{width:16.722000px;}
._11_c00445{width:18.492000px;}
._1e_c00445{width:20.007000px;}
._1f_c00445{width:22.083000px;}
._1c_c00445{width:23.796000px;}
._1b_c00445{width:32.568000px;}
._1a_c00445{width:34.293000px;}
._19_c00445{width:36.639000px;}
._20_c00445{width:39.225000px;}
._1d_c00445{width:41.055000px;}
._22_c00445{width:55.629000px;}
._18_c00445{width:102.879000px;}
._23_c00445{width:351.885000px;}
._3_c00445{width:443.601000px;}
.fc2_c00445{color:transparent;}
.fc1_c00445{color:rgb(128,128,128);}
.fc0_c00445{color:rgb(0,0,0);}
.fs6_c00445{font-size:48.000000px;}
.fs5_c00445{font-size:55.200000px;}
.fs4_c00445{font-size:57.000000px;}
.fs1_c00445{font-size:66.000000px;}
.fs0_c00445{font-size:69.000000px;}
.fs2_c00445{font-size:75.000000px;}
.fs3_c00445{font-size:81.000000px;}
.y0_c00445{bottom:0.000000px;}
.y20_c00445{bottom:3.105000px;}
.y1f_c00445{bottom:7.228355px;}
.y1a_c00445{bottom:53.985000px;}
.y19_c00445{bottom:130.635000px;}
.y18_c00445{bottom:155.535000px;}
.y1e_c00445{bottom:176.085000px;}
.y17_c00445{bottom:181.185000px;}
.y1d_c00445{bottom:191.235000px;}
.y16_c00445{bottom:206.085000px;}
.y15_c00445{bottom:230.535000px;}
.y14_c00445{bottom:256.035000px;}
.y13_c00445{bottom:281.385000px;}
.y12_c00445{bottom:305.985000px;}
.y1c_c00445{bottom:325.035000px;}
.y11_c00445{bottom:329.985000px;}
.y1b_c00445{bottom:342.885000px;}
.y10_c00445{bottom:355.035000px;}
.yf_c00445{bottom:380.235000px;}
.ye_c00445{bottom:404.985000px;}
.yd_c00445{bottom:428.985000px;}
.yc_c00445{bottom:455.985000px;}
.yb_c00445{bottom:476.535000px;}
.ya_c00445{bottom:528.435000px;}
.y9_c00445{bottom:579.135000px;}
.y8_c00445{bottom:603.135000px;}
.y7_c00445{bottom:628.335000px;}
.y6_c00445{bottom:653.085000px;}
.y5_c00445{bottom:677.985000px;}
.y4_c00445{bottom:702.885000px;}
.y3_c00445{bottom:727.935000px;}
.y2_c00445{bottom:752.535000px;}
.y1_c00445{bottom:775.935000px;}
.h7_c00445{height:13.200074px;}
.h8_c00445{height:43.804688px;}
.h6_c00445{height:72.168457px;}
.h3_c00445{height:80.758301px;}
.h2_c00445{height:87.361816px;}
.h5_c00445{height:94.803223px;}
.h4_c00445{height:94.958496px;}
.h0_c00445{height:815.925000px;}
.h1_c00445{height:816.000000px;}
.w2_c00445{width:104.875500px;}
.w0_c00445{width:563.775000px;}
.w1_c00445{width:564.000000px;}
.x0_c00445{left:0.000000px;}
.x10_c00445{left:25.650000px;}
.xe_c00445{left:31.050000px;}
.xf_c00445{left:42.150000px;}
.xc_c00445{left:88.500000px;}
.xa_c00445{left:90.150000px;}
.xb_c00445{left:92.550000px;}
.x9_c00445{left:93.750000px;}
.x5_c00445{left:94.950000px;}
.x4_c00445{left:97.650000px;}
.x3_c00445{left:99.600000px;}
.x1_c00445{left:109.350000px;}
.x8_c00445{left:119.700000px;}
.x7_c00445{left:121.050000px;}
.x2_c00445{left:123.900000px;}
.x6_c00445{left:205.500000px;}
.x11_c00445{left:233.701767px;}
.xd_c00445{left:492.750000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls3_c00445{letter-spacing:-8.000000pt;}
.ls4_c00445{letter-spacing:-5.333333pt;}
.ls2_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:2.666667pt;}
.ls0_c00445{letter-spacing:15.466667pt;}
.ws5_c00445{word-spacing:-17.448000pt;}
.ws1_c00445{word-spacing:-14.781333pt;}
.ws4_c00445{word-spacing:-14.491733pt;}
.ws3_c00445{word-spacing:-12.210667pt;}
.ws2_c00445{word-spacing:-12.018667pt;}
.ws0_c00445{word-spacing:-6.781333pt;}
.ws6_c00445{word-spacing:0.000000pt;}
._4_c00445{margin-left:-18.216000pt;}
._15_c00445{margin-left:-15.946667pt;}
._e_c00445{margin-left:-13.984000pt;}
._16_c00445{margin-left:-12.941333pt;}
._9_c00445{margin-left:-11.162667pt;}
._14_c00445{margin-left:-8.930667pt;}
._10_c00445{margin-left:-8.034667pt;}
._a_c00445{margin-left:-6.317333pt;}
._7_c00445{margin-left:-5.090667pt;}
._d_c00445{margin-left:-3.864000pt;}
._b_c00445{margin-left:-2.882667pt;}
._c_c00445{margin-left:-1.165333pt;}
._6_c00445{width:1.226667pt;}
._2_c00445{width:2.882667pt;}
._8_c00445{width:4.293333pt;}
._0_c00445{width:5.336000pt;}
._1_c00445{width:6.317333pt;}
._f_c00445{width:7.666667pt;}
._17_c00445{width:8.586667pt;}
._13_c00445{width:10.242667pt;}
._12_c00445{width:11.752000pt;}
._5_c00445{width:13.464000pt;}
._21_c00445{width:14.864000pt;}
._11_c00445{width:16.437333pt;}
._1e_c00445{width:17.784000pt;}
._1f_c00445{width:19.629333pt;}
._1c_c00445{width:21.152000pt;}
._1b_c00445{width:28.949333pt;}
._1a_c00445{width:30.482667pt;}
._19_c00445{width:32.568000pt;}
._20_c00445{width:34.866667pt;}
._1d_c00445{width:36.493333pt;}
._22_c00445{width:49.448000pt;}
._18_c00445{width:91.448000pt;}
._23_c00445{width:312.786667pt;}
._3_c00445{width:394.312000pt;}
.fs6_c00445{font-size:42.666667pt;}
.fs5_c00445{font-size:49.066667pt;}
.fs4_c00445{font-size:50.666667pt;}
.fs1_c00445{font-size:58.666667pt;}
.fs0_c00445{font-size:61.333333pt;}
.fs2_c00445{font-size:66.666667pt;}
.fs3_c00445{font-size:72.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y20_c00445{bottom:2.760000pt;}
.y1f_c00445{bottom:6.425204pt;}
.y1a_c00445{bottom:47.986667pt;}
.y19_c00445{bottom:116.120000pt;}
.y18_c00445{bottom:138.253333pt;}
.y1e_c00445{bottom:156.520000pt;}
.y17_c00445{bottom:161.053333pt;}
.y1d_c00445{bottom:169.986667pt;}
.y16_c00445{bottom:183.186667pt;}
.y15_c00445{bottom:204.920000pt;}
.y14_c00445{bottom:227.586667pt;}
.y13_c00445{bottom:250.120000pt;}
.y12_c00445{bottom:271.986667pt;}
.y1c_c00445{bottom:288.920000pt;}
.y11_c00445{bottom:293.320000pt;}
.y1b_c00445{bottom:304.786667pt;}
.y10_c00445{bottom:315.586667pt;}
.yf_c00445{bottom:337.986667pt;}
.ye_c00445{bottom:359.986667pt;}
.yd_c00445{bottom:381.320000pt;}
.yc_c00445{bottom:405.320000pt;}
.yb_c00445{bottom:423.586667pt;}
.ya_c00445{bottom:469.720000pt;}
.y9_c00445{bottom:514.786667pt;}
.y8_c00445{bottom:536.120000pt;}
.y7_c00445{bottom:558.520000pt;}
.y6_c00445{bottom:580.520000pt;}
.y5_c00445{bottom:602.653333pt;}
.y4_c00445{bottom:624.786667pt;}
.y3_c00445{bottom:647.053333pt;}
.y2_c00445{bottom:668.920000pt;}
.y1_c00445{bottom:689.720000pt;}
.h7_c00445{height:11.733399pt;}
.h8_c00445{height:38.937500pt;}
.h6_c00445{height:64.149740pt;}
.h3_c00445{height:71.785156pt;}
.h2_c00445{height:77.654948pt;}
.h5_c00445{height:84.269531pt;}
.h4_c00445{height:84.407552pt;}
.h0_c00445{height:725.266667pt;}
.h1_c00445{height:725.333333pt;}
.w2_c00445{width:93.222667pt;}
.w0_c00445{width:501.133333pt;}
.w1_c00445{width:501.333333pt;}
.x0_c00445{left:0.000000pt;}
.x10_c00445{left:22.800000pt;}
.xe_c00445{left:27.600000pt;}
.xf_c00445{left:37.466667pt;}
.xc_c00445{left:78.666667pt;}
.xa_c00445{left:80.133333pt;}
.xb_c00445{left:82.266667pt;}
.x9_c00445{left:83.333333pt;}
.x5_c00445{left:84.400000pt;}
.x4_c00445{left:86.800000pt;}
.x3_c00445{left:88.533333pt;}
.x1_c00445{left:97.200000pt;}
.x8_c00445{left:106.400000pt;}
.x7_c00445{left:107.600000pt;}
.x2_c00445{left:110.133333pt;}
.x6_c00445{left:182.666667pt;}
.x11_c00445{left:207.734904pt;}
.xd_c00445{left:438.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_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_b89dad609817b5546cb7d137.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_7970ce6de9e40b475b7282e7.woff2')format("woff");}.ff2_c00446{font-family:ff2_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:ff3_c00446;src:url('chunks/assets/font_6e47347a03eed3036a7ab24e.woff2')format("woff");}.ff3_c00446{font-family:ff3_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:ff4_c00446;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00446{font-family:ff4_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);}
.v0_c00446{vertical-align:0.000000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls2_c00446{letter-spacing:3.000000px;}
.ls3_c00446{letter-spacing:9.000000px;}
.ls0_c00446{letter-spacing:15.600000px;}
.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:-36.000000px;}
.ws0_c00446{word-spacing:-25.629000px;}
.ws3_c00446{word-spacing:-22.338000px;}
.ws2_c00446{word-spacing:-16.629000px;}
.ws4_c00446{word-spacing:0.000000px;}
._28_c00446{margin-left:-27.945000px;}
._16_c00446{margin-left:-22.287000px;}
._19_c00446{margin-left:-18.630000px;}
._7_c00446{margin-left:-15.042000px;}
._23_c00446{margin-left:-12.213000px;}
._15_c00446{margin-left:-10.212000px;}
._11_c00446{margin-left:-9.177000px;}
._9_c00446{margin-left:-7.107000px;}
._5_c00446{margin-left:-6.072000px;}
._13_c00446{margin-left:-4.899000px;}
._6_c00446{margin-left:-3.864000px;}
._3_c00446{margin-left:-2.691000px;}
._4_c00446{margin-left:-1.380000px;}
._1_c00446{width:1.173000px;}
._0_c00446{width:2.208000px;}
._8_c00446{width:3.657000px;}
._b_c00446{width:4.692000px;}
._2_c00446{width:5.934000px;}
._e_c00446{width:7.590000px;}
._10_c00446{width:10.074000px;}
._d_c00446{width:12.006000px;}
._f_c00446{width:13.041000px;}
._a_c00446{width:14.076000px;}
._c_c00446{width:15.594000px;}
._1e_c00446{width:16.968000px;}
._26_c00446{width:18.090000px;}
._20_c00446{width:19.389000px;}
._21_c00446{width:20.721000px;}
._1c_c00446{width:22.089000px;}
._1f_c00446{width:24.081000px;}
._1d_c00446{width:27.531000px;}
._18_c00446{width:32.346000px;}
._17_c00446{width:35.259000px;}
._1b_c00446{width:36.576000px;}
._29_c00446{width:38.766000px;}
._22_c00446{width:43.401000px;}
._25_c00446{width:84.732000px;}
._27_c00446{width:99.084000px;}
._1a_c00446{width:105.165000px;}
._14_c00446{width:131.649000px;}
._12_c00446{width:227.079000px;}
._24_c00446{width:370.833000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(128,128,128);}
.fc0_c00446{color:rgb(0,0,0);}
.fs2_c00446{font-size:48.000000px;}
.fs1_c00446{font-size:66.000000px;}
.fs0_c00446{font-size:69.000000px;}
.y0_c00446{bottom:0.000000px;}
.y1a_c00446{bottom:3.105000px;}
.y19_c00446{bottom:7.228357px;}
.y18_c00446{bottom:94.230000px;}
.y17_c00446{bottom:118.830000px;}
.y16_c00446{bottom:144.480000px;}
.y15_c00446{bottom:169.080000px;}
.y14_c00446{bottom:193.830000px;}
.y13_c00446{bottom:219.030000px;}
.y12_c00446{bottom:244.080000px;}
.y11_c00446{bottom:268.380000px;}
.y10_c00446{bottom:292.980000px;}
.yf_c00446{bottom:317.880000px;}
.ye_c00446{bottom:342.630000px;}
.yd_c00446{bottom:367.230000px;}
.yc_c00446{bottom:392.580000px;}
.yb_c00446{bottom:441.180000px;}
.ya_c00446{bottom:490.680000px;}
.y9_c00446{bottom:516.030000px;}
.y8_c00446{bottom:540.780000px;}
.y7_c00446{bottom:566.280000px;}
.y6_c00446{bottom:590.730000px;}
.y5_c00446{bottom:615.930000px;}
.y4_c00446{bottom:640.230000px;}
.y3_c00446{bottom:664.830000px;}
.y2_c00446{bottom:689.580000px;}
.y1_c00446{bottom:739.080000px;}
.h3_c00446{height:13.200074px;}
.h4_c00446{height:43.804688px;}
.h1_c00446{height:80.758301px;}
.h2_c00446{height:87.361816px;}
.h0_c00446{height:819.750000px;}
.w2_c00446{width:104.875500px;}
.w1_c00446{width:573.750000px;}
.w0_c00446{width:574.050000px;}
.x0_c00446{left:0.000000px;}
.x6_c00446{left:27.750000px;}
.x4_c00446{left:29.700000px;}
.x3_c00446{left:31.050000px;}
.x9_c00446{left:32.100000px;}
.xa_c00446{left:33.750000px;}
.x8_c00446{left:46.950000px;}
.x2_c00446{left:53.700000px;}
.x5_c00446{left:54.900000px;}
.x1_c00446{left:115.650000px;}
.x7_c00446{left:158.250000px;}
.xb_c00446{left:238.839249px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls2_c00446{letter-spacing:2.666667pt;}
.ls3_c00446{letter-spacing:8.000000pt;}
.ls0_c00446{letter-spacing:13.866667pt;}
.ws1_c00446{word-spacing:-32.000000pt;}
.ws0_c00446{word-spacing:-22.781333pt;}
.ws3_c00446{word-spacing:-19.856000pt;}
.ws2_c00446{word-spacing:-14.781333pt;}
.ws4_c00446{word-spacing:0.000000pt;}
._28_c00446{margin-left:-24.840000pt;}
._16_c00446{margin-left:-19.810667pt;}
._19_c00446{margin-left:-16.560000pt;}
._7_c00446{margin-left:-13.370667pt;}
._23_c00446{margin-left:-10.856000pt;}
._15_c00446{margin-left:-9.077333pt;}
._11_c00446{margin-left:-8.157333pt;}
._9_c00446{margin-left:-6.317333pt;}
._5_c00446{margin-left:-5.397333pt;}
._13_c00446{margin-left:-4.354667pt;}
._6_c00446{margin-left:-3.434667pt;}
._3_c00446{margin-left:-2.392000pt;}
._4_c00446{margin-left:-1.226667pt;}
._1_c00446{width:1.042667pt;}
._0_c00446{width:1.962667pt;}
._8_c00446{width:3.250667pt;}
._b_c00446{width:4.170667pt;}
._2_c00446{width:5.274667pt;}
._e_c00446{width:6.746667pt;}
._10_c00446{width:8.954667pt;}
._d_c00446{width:10.672000pt;}
._f_c00446{width:11.592000pt;}
._a_c00446{width:12.512000pt;}
._c_c00446{width:13.861333pt;}
._1e_c00446{width:15.082667pt;}
._26_c00446{width:16.080000pt;}
._20_c00446{width:17.234667pt;}
._21_c00446{width:18.418667pt;}
._1c_c00446{width:19.634667pt;}
._1f_c00446{width:21.405333pt;}
._1d_c00446{width:24.472000pt;}
._18_c00446{width:28.752000pt;}
._17_c00446{width:31.341333pt;}
._1b_c00446{width:32.512000pt;}
._29_c00446{width:34.458667pt;}
._22_c00446{width:38.578667pt;}
._25_c00446{width:75.317333pt;}
._27_c00446{width:88.074667pt;}
._1a_c00446{width:93.480000pt;}
._14_c00446{width:117.021333pt;}
._12_c00446{width:201.848000pt;}
._24_c00446{width:329.629333pt;}
.fs2_c00446{font-size:42.666667pt;}
.fs1_c00446{font-size:58.666667pt;}
.fs0_c00446{font-size:61.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y1a_c00446{bottom:2.760000pt;}
.y19_c00446{bottom:6.425206pt;}
.y18_c00446{bottom:83.760000pt;}
.y17_c00446{bottom:105.626667pt;}
.y16_c00446{bottom:128.426667pt;}
.y15_c00446{bottom:150.293333pt;}
.y14_c00446{bottom:172.293333pt;}
.y13_c00446{bottom:194.693333pt;}
.y12_c00446{bottom:216.960000pt;}
.y11_c00446{bottom:238.560000pt;}
.y10_c00446{bottom:260.426667pt;}
.yf_c00446{bottom:282.560000pt;}
.ye_c00446{bottom:304.560000pt;}
.yd_c00446{bottom:326.426667pt;}
.yc_c00446{bottom:348.960000pt;}
.yb_c00446{bottom:392.160000pt;}
.ya_c00446{bottom:436.160000pt;}
.y9_c00446{bottom:458.693333pt;}
.y8_c00446{bottom:480.693333pt;}
.y7_c00446{bottom:503.360000pt;}
.y6_c00446{bottom:525.093333pt;}
.y5_c00446{bottom:547.493333pt;}
.y4_c00446{bottom:569.093333pt;}
.y3_c00446{bottom:590.960000pt;}
.y2_c00446{bottom:612.960000pt;}
.y1_c00446{bottom:656.960000pt;}
.h3_c00446{height:11.733399pt;}
.h4_c00446{height:38.937500pt;}
.h1_c00446{height:71.785156pt;}
.h2_c00446{height:77.654948pt;}
.h0_c00446{height:728.666667pt;}
.w2_c00446{width:93.222667pt;}
.w1_c00446{width:510.000000pt;}
.w0_c00446{width:510.266667pt;}
.x0_c00446{left:0.000000pt;}
.x6_c00446{left:24.666667pt;}
.x4_c00446{left:26.400000pt;}
.x3_c00446{left:27.600000pt;}
.x9_c00446{left:28.533333pt;}
.xa_c00446{left:30.000000pt;}
.x8_c00446{left:41.733333pt;}
.x2_c00446{left:47.733333pt;}
.x5_c00446{left:48.800000pt;}
.x1_c00446{left:102.800000pt;}
.x7_c00446{left:140.666667pt;}
.xb_c00446{left:212.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95cc55aa251f75b0431b710e.woff2')format("woff");}.ff1_c00447{font-family:ff1_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:ff2_c00447;src:url('chunks/assets/font_e6106c0634a0f6200ffb3c1b.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_16512ee54226dfac580ccedc.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_95ae6880bda0e736ea019579.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00447{font-family:ff5_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:ff6_c00447;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00447{letter-spacing:0.000000px;}
.ls3_c00447{letter-spacing:3.000000px;}
.ls5_c00447{letter-spacing:9.000000px;}
.ls0_c00447{letter-spacing:13.125000px;}
.ls2_c00447{letter-spacing:19.800000px;}
.ls1_c00447{letter-spacing:30.048000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00447{word-spacing:-44.943000px;}
.ws2_c00447{word-spacing:-44.022000px;}
.ws3_c00447{word-spacing:-25.629000px;}
.ws4_c00447{word-spacing:-19.629000px;}
.ws0_c00447{word-spacing:-16.629000px;}
.ws5_c00447{word-spacing:0.000000px;}
._1e_c00447{margin-left:-37.944000px;}
._28_c00447{margin-left:-29.877000px;}
._1d_c00447{margin-left:-26.319000px;}
._22_c00447{margin-left:-22.287000px;}
._2_c00447{margin-left:-17.043000px;}
._1_c00447{margin-left:-15.249000px;}
._18_c00447{margin-left:-13.041000px;}
._3_c00447{margin-left:-11.592000px;}
._19_c00447{margin-left:-9.522000px;}
._11_c00447{margin-left:-8.280000px;}
._12_c00447{margin-left:-7.038000px;}
._0_c00447{margin-left:-5.865000px;}
._1a_c00447{margin-left:-4.623000px;}
._f_c00447{margin-left:-3.381000px;}
._c_c00447{margin-left:-1.725000px;}
._4_c00447{width:1.173000px;}
._6_c00447{width:2.691000px;}
._7_c00447{width:4.209000px;}
._8_c00447{width:5.796000px;}
._a_c00447{width:7.314000px;}
._d_c00447{width:8.625000px;}
._13_c00447{width:10.695000px;}
._17_c00447{width:11.868000px;}
._25_c00447{width:12.972000px;}
._9_c00447{width:14.073000px;}
._e_c00447{width:15.801000px;}
._10_c00447{width:16.974000px;}
._b_c00447{width:17.985000px;}
._1f_c00447{width:20.700000px;}
._14_c00447{width:23.046000px;}
._1b_c00447{width:24.495000px;}
._26_c00447{width:33.933000px;}
._20_c00447{width:34.983000px;}
._16_c00447{width:38.778000px;}
._24_c00447{width:42.228000px;}
._27_c00447{width:44.781000px;}
._15_c00447{width:97.428000px;}
._29_c00447{width:110.814000px;}
._23_c00447{width:157.044000px;}
._21_c00447{width:197.478000px;}
._1c_c00447{width:215.418000px;}
._5_c00447{width:405.768000px;}
.fc2_c00447{color:transparent;}
.fc1_c00447{color:rgb(128,128,128);}
.fc0_c00447{color:rgb(0,0,0);}
.fs4_c00447{font-size:48.000000px;}
.fs3_c00447{font-size:66.000000px;}
.fs0_c00447{font-size:69.000000px;}
.fs2_c00447{font-size:72.000000px;}
.fs1_c00447{font-size:93.000000px;}
.y0_c00447{bottom:0.000000px;}
.y21_c00447{bottom:3.105000px;}
.y20_c00447{bottom:7.228363px;}
.y1f_c00447{bottom:30.150000px;}
.y1e_c00447{bottom:54.000000px;}
.y1d_c00447{bottom:79.650000px;}
.y1c_c00447{bottom:104.700000px;}
.y1b_c00447{bottom:129.600000px;}
.y1a_c00447{bottom:154.650000px;}
.y19_c00447{bottom:179.550000px;}
.y18_c00447{bottom:203.850000px;}
.y17_c00447{bottom:228.900000px;}
.y16_c00447{bottom:253.800000px;}
.y15_c00447{bottom:278.100000px;}
.y14_c00447{bottom:302.850000px;}
.y13_c00447{bottom:327.450000px;}
.y12_c00447{bottom:352.350000px;}
.y11_c00447{bottom:377.400000px;}
.y10_c00447{bottom:401.700000px;}
.yf_c00447{bottom:425.700000px;}
.ye_c00447{bottom:452.250000px;}
.yd_c00447{bottom:476.850000px;}
.yc_c00447{bottom:501.600000px;}
.yb_c00447{bottom:526.800000px;}
.ya_c00447{bottom:551.250000px;}
.y9_c00447{bottom:575.850000px;}
.y8_c00447{bottom:601.050000px;}
.y7_c00447{bottom:625.500000px;}
.y6_c00447{bottom:650.400000px;}
.y5_c00447{bottom:675.000000px;}
.y4_c00447{bottom:699.750000px;}
.y3_c00447{bottom:724.650000px;}
.y2_c00447{bottom:749.850000px;}
.y1_c00447{bottom:774.000000px;}
.h3_c00447{height:13.200074px;}
.h4_c00447{height:43.804688px;}
.h1_c00447{height:87.361816px;}
.h2_c00447{height:108.848145px;}
.h0_c00447{height:810.000000px;}
.w2_c00447{width:104.875500px;}
.w0_c00447{width:559.950000px;}
.w1_c00447{width:560.250000px;}
.x0_c00447{left:0.000000px;}
.x6_c00447{left:12.450000px;}
.x9_c00447{left:14.550000px;}
.x4_c00447{left:28.650000px;}
.x5_c00447{left:54.450000px;}
.x8_c00447{left:60.150000px;}
.xa_c00447{left:73.650000px;}
.x2_c00447{left:75.300000px;}
.x3_c00447{left:76.650000px;}
.x7_c00447{left:78.300000px;}
.x1_c00447{left:88.200000px;}
.xc_c00447{left:231.789230px;}
.xb_c00447{left:495.150000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls4_c00447{letter-spacing:0.000000pt;}
.ls3_c00447{letter-spacing:2.666667pt;}
.ls5_c00447{letter-spacing:8.000000pt;}
.ls0_c00447{letter-spacing:11.666667pt;}
.ls2_c00447{letter-spacing:17.600000pt;}
.ls1_c00447{letter-spacing:26.709333pt;}
.ws1_c00447{word-spacing:-39.949333pt;}
.ws2_c00447{word-spacing:-39.130667pt;}
.ws3_c00447{word-spacing:-22.781333pt;}
.ws4_c00447{word-spacing:-17.448000pt;}
.ws0_c00447{word-spacing:-14.781333pt;}
.ws5_c00447{word-spacing:0.000000pt;}
._1e_c00447{margin-left:-33.728000pt;}
._28_c00447{margin-left:-26.557333pt;}
._1d_c00447{margin-left:-23.394667pt;}
._22_c00447{margin-left:-19.810667pt;}
._2_c00447{margin-left:-15.149333pt;}
._1_c00447{margin-left:-13.554667pt;}
._18_c00447{margin-left:-11.592000pt;}
._3_c00447{margin-left:-10.304000pt;}
._19_c00447{margin-left:-8.464000pt;}
._11_c00447{margin-left:-7.360000pt;}
._12_c00447{margin-left:-6.256000pt;}
._0_c00447{margin-left:-5.213333pt;}
._1a_c00447{margin-left:-4.109333pt;}
._f_c00447{margin-left:-3.005333pt;}
._c_c00447{margin-left:-1.533333pt;}
._4_c00447{width:1.042667pt;}
._6_c00447{width:2.392000pt;}
._7_c00447{width:3.741333pt;}
._8_c00447{width:5.152000pt;}
._a_c00447{width:6.501333pt;}
._d_c00447{width:7.666667pt;}
._13_c00447{width:9.506667pt;}
._17_c00447{width:10.549333pt;}
._25_c00447{width:11.530667pt;}
._9_c00447{width:12.509333pt;}
._e_c00447{width:14.045333pt;}
._10_c00447{width:15.088000pt;}
._b_c00447{width:15.986667pt;}
._1f_c00447{width:18.400000pt;}
._14_c00447{width:20.485333pt;}
._1b_c00447{width:21.773333pt;}
._26_c00447{width:30.162667pt;}
._20_c00447{width:31.096000pt;}
._16_c00447{width:34.469333pt;}
._24_c00447{width:37.536000pt;}
._27_c00447{width:39.805333pt;}
._15_c00447{width:86.602667pt;}
._29_c00447{width:98.501333pt;}
._23_c00447{width:139.594667pt;}
._21_c00447{width:175.536000pt;}
._1c_c00447{width:191.482667pt;}
._5_c00447{width:360.682667pt;}
.fs4_c00447{font-size:42.666667pt;}
.fs3_c00447{font-size:58.666667pt;}
.fs0_c00447{font-size:61.333333pt;}
.fs2_c00447{font-size:64.000000pt;}
.fs1_c00447{font-size:82.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y21_c00447{bottom:2.760000pt;}
.y20_c00447{bottom:6.425212pt;}
.y1f_c00447{bottom:26.800000pt;}
.y1e_c00447{bottom:48.000000pt;}
.y1d_c00447{bottom:70.800000pt;}
.y1c_c00447{bottom:93.066667pt;}
.y1b_c00447{bottom:115.200000pt;}
.y1a_c00447{bottom:137.466667pt;}
.y19_c00447{bottom:159.600000pt;}
.y18_c00447{bottom:181.200000pt;}
.y17_c00447{bottom:203.466667pt;}
.y16_c00447{bottom:225.600000pt;}
.y15_c00447{bottom:247.200000pt;}
.y14_c00447{bottom:269.200000pt;}
.y13_c00447{bottom:291.066667pt;}
.y12_c00447{bottom:313.200000pt;}
.y11_c00447{bottom:335.466667pt;}
.y10_c00447{bottom:357.066667pt;}
.yf_c00447{bottom:378.400000pt;}
.ye_c00447{bottom:402.000000pt;}
.yd_c00447{bottom:423.866667pt;}
.yc_c00447{bottom:445.866667pt;}
.yb_c00447{bottom:468.266667pt;}
.ya_c00447{bottom:490.000000pt;}
.y9_c00447{bottom:511.866667pt;}
.y8_c00447{bottom:534.266667pt;}
.y7_c00447{bottom:556.000000pt;}
.y6_c00447{bottom:578.133333pt;}
.y5_c00447{bottom:600.000000pt;}
.y4_c00447{bottom:622.000000pt;}
.y3_c00447{bottom:644.133333pt;}
.y2_c00447{bottom:666.533333pt;}
.y1_c00447{bottom:688.000000pt;}
.h3_c00447{height:11.733399pt;}
.h4_c00447{height:38.937500pt;}
.h1_c00447{height:77.654948pt;}
.h2_c00447{height:96.753906pt;}
.h0_c00447{height:720.000000pt;}
.w2_c00447{width:93.222667pt;}
.w0_c00447{width:497.733333pt;}
.w1_c00447{width:498.000000pt;}
.x0_c00447{left:0.000000pt;}
.x6_c00447{left:11.066667pt;}
.x9_c00447{left:12.933333pt;}
.x4_c00447{left:25.466667pt;}
.x5_c00447{left:48.400000pt;}
.x8_c00447{left:53.466667pt;}
.xa_c00447{left:65.466667pt;}
.x2_c00447{left:66.933333pt;}
.x3_c00447{left:68.133333pt;}
.x7_c00447{left:69.600000pt;}
.x1_c00447{left:78.400000pt;}
.xc_c00447{left:206.034871pt;}
.xb_c00447{left:440.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_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_4a725a449d4d3a4eeba7e571.woff2')format("woff");}.ff1_c00448{font-family:ff1_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:ff2_c00448;src:url('chunks/assets/font_ffef5aedc29f38842caefc80.woff2')format("woff");}.ff2_c00448{font-family:ff2_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:ff3_c00448;src:url('chunks/assets/font_3febd0d0c04c0941c997e006.woff2')format("woff");}.ff3_c00448{font-family:ff3_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:ff4_c00448;src:url('chunks/assets/font_a183cffc3dbf07b42b8dae4b.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;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_c00448;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00448{font-family:ff5_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;}
.ls6_c00448{letter-spacing:-9.000000px;}
.ls3_c00448{letter-spacing:0.000000px;}
.ls2_c00448{letter-spacing:3.000000px;}
.ls5_c00448{letter-spacing:6.000000px;}
.ls1_c00448{letter-spacing:16.494000px;}
.ls0_c00448{letter-spacing:19.725000px;}
.ls4_c00448{letter-spacing:39.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00448{word-spacing:-54.906000px;}
.ws0_c00448{word-spacing:-44.022000px;}
.ws1_c00448{word-spacing:-16.629000px;}
.ws3_c00448{word-spacing:-15.906000px;}
.ws5_c00448{word-spacing:-6.906000px;}
.ws4_c00448{word-spacing:-0.087000px;}
.ws7_c00448{word-spacing:0.000000px;}
.ws6_c00448{word-spacing:10.992000px;}
._29_c00448{margin-left:-62.376000px;}
._25_c00448{margin-left:-42.174000px;}
._22_c00448{margin-left:-40.656000px;}
._23_c00448{margin-left:-37.092000px;}
._24_c00448{margin-left:-34.914000px;}
._26_c00448{margin-left:-33.630000px;}
._1e_c00448{margin-left:-31.620000px;}
._7_c00448{margin-left:-26.916000px;}
._1d_c00448{margin-left:-19.995000px;}
._1c_c00448{margin-left:-16.413000px;}
._1b_c00448{margin-left:-13.248000px;}
._20_c00448{margin-left:-10.980000px;}
._a_c00448{margin-left:-9.246000px;}
._14_c00448{margin-left:-7.875000px;}
._15_c00448{margin-left:-6.417000px;}
._16_c00448{margin-left:-4.761000px;}
._2_c00448{margin-left:-3.519000px;}
._17_c00448{margin-left:-2.484000px;}
._c_c00448{margin-left:-1.380000px;}
._1_c00448{width:1.656000px;}
._0_c00448{width:3.588000px;}
._4_c00448{width:4.761000px;}
._11_c00448{width:5.934000px;}
._3_c00448{width:7.176000px;}
._10_c00448{width:8.970000px;}
._5_c00448{width:11.316000px;}
._1a_c00448{width:12.654000px;}
._f_c00448{width:14.076000px;}
._12_c00448{width:15.732000px;}
._b_c00448{width:16.974000px;}
._8_c00448{width:18.147000px;}
._9_c00448{width:20.976000px;}
._19_c00448{width:22.425000px;}
._18_c00448{width:24.090000px;}
._d_c00448{width:26.013000px;}
._e_c00448{width:31.431000px;}
._13_c00448{width:34.914000px;}
._2b_c00448{width:36.855000px;}
._21_c00448{width:42.090000px;}
._28_c00448{width:59.280000px;}
._1f_c00448{width:71.283000px;}
._2c_c00448{width:78.714000px;}
._6_c00448{width:185.058000px;}
._2a_c00448{width:261.717000px;}
._27_c00448{width:449.811000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(128,128,128);}
.fc0_c00448{color:rgb(0,0,0);}
.fs5_c00448{font-size:48.000000px;}
.fs1_c00448{font-size:66.000000px;}
.fs0_c00448{font-size:69.000000px;}
.fs3_c00448{font-size:72.000000px;}
.fs2_c00448{font-size:75.000000px;}
.fs4_c00448{font-size:87.000000px;}
.y0_c00448{bottom:0.000000px;}
.y20_c00448{bottom:3.105000px;}
.y1f_c00448{bottom:7.228363px;}
.y1e_c00448{bottom:44.850000px;}
.y1d_c00448{bottom:76.200000px;}
.y1c_c00448{bottom:108.300000px;}
.y1b_c00448{bottom:120.600000px;}
.y1a_c00448{bottom:140.700000px;}
.y19_c00448{bottom:171.450000px;}
.y18_c00448{bottom:196.350000px;}
.y17_c00448{bottom:221.400000px;}
.y16_c00448{bottom:246.600000px;}
.y15_c00448{bottom:270.750000px;}
.y14_c00448{bottom:295.950000px;}
.y13_c00448{bottom:319.650000px;}
.y12_c00448{bottom:345.000000px;}
.y11_c00448{bottom:369.900000px;}
.y10_c00448{bottom:394.500000px;}
.yf_c00448{bottom:419.250000px;}
.ye_c00448{bottom:443.850000px;}
.yd_c00448{bottom:469.050000px;}
.yc_c00448{bottom:493.650000px;}
.yb_c00448{bottom:516.750000px;}
.ya_c00448{bottom:542.700000px;}
.y9_c00448{bottom:567.600000px;}
.y8_c00448{bottom:592.200000px;}
.y7_c00448{bottom:616.950000px;}
.y6_c00448{bottom:641.850000px;}
.y5_c00448{bottom:666.600000px;}
.y4_c00448{bottom:690.750000px;}
.y3_c00448{bottom:716.400000px;}
.y2_c00448{bottom:741.150000px;}
.y1_c00448{bottom:765.450000px;}
.h8_c00448{height:13.200074px;}
.h9_c00448{height:43.804688px;}
.h4_c00448{height:77.247070px;}
.h5_c00448{height:80.758301px;}
.h2_c00448{height:87.361816px;}
.h6_c00448{height:91.160156px;}
.h7_c00448{height:94.308000px;}
.h3_c00448{height:94.958496px;}
.h0_c00448{height:831.600000px;}
.h1_c00448{height:831.750000px;}
.w1_c00448{width:104.875500px;}
.w0_c00448{width:576.750000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:36.900000px;}
.x3_c00448{left:38.100000px;}
.x4_c00448{left:39.150000px;}
.x5_c00448{left:40.200000px;}
.x8_c00448{left:41.250000px;}
.x2_c00448{left:61.050000px;}
.x6_c00448{left:64.500000px;}
.x7_c00448{left:173.850000px;}
.xa_c00448{left:240.189240px;}
.x9_c00448{left:254.700000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls6_c00448{letter-spacing:-8.000000pt;}
.ls3_c00448{letter-spacing:0.000000pt;}
.ls2_c00448{letter-spacing:2.666667pt;}
.ls5_c00448{letter-spacing:5.333333pt;}
.ls1_c00448{letter-spacing:14.661333pt;}
.ls0_c00448{letter-spacing:17.533333pt;}
.ls4_c00448{letter-spacing:34.666667pt;}
.ws2_c00448{word-spacing:-48.805333pt;}
.ws0_c00448{word-spacing:-39.130667pt;}
.ws1_c00448{word-spacing:-14.781333pt;}
.ws3_c00448{word-spacing:-14.138667pt;}
.ws5_c00448{word-spacing:-6.138667pt;}
.ws4_c00448{word-spacing:-0.077333pt;}
.ws7_c00448{word-spacing:0.000000pt;}
.ws6_c00448{word-spacing:9.770667pt;}
._29_c00448{margin-left:-55.445333pt;}
._25_c00448{margin-left:-37.488000pt;}
._22_c00448{margin-left:-36.138667pt;}
._23_c00448{margin-left:-32.970667pt;}
._24_c00448{margin-left:-31.034667pt;}
._26_c00448{margin-left:-29.893333pt;}
._1e_c00448{margin-left:-28.106667pt;}
._7_c00448{margin-left:-23.925333pt;}
._1d_c00448{margin-left:-17.773333pt;}
._1c_c00448{margin-left:-14.589333pt;}
._1b_c00448{margin-left:-11.776000pt;}
._20_c00448{margin-left:-9.760000pt;}
._a_c00448{margin-left:-8.218667pt;}
._14_c00448{margin-left:-7.000000pt;}
._15_c00448{margin-left:-5.704000pt;}
._16_c00448{margin-left:-4.232000pt;}
._2_c00448{margin-left:-3.128000pt;}
._17_c00448{margin-left:-2.208000pt;}
._c_c00448{margin-left:-1.226667pt;}
._1_c00448{width:1.472000pt;}
._0_c00448{width:3.189333pt;}
._4_c00448{width:4.232000pt;}
._11_c00448{width:5.274667pt;}
._3_c00448{width:6.378667pt;}
._10_c00448{width:7.973333pt;}
._5_c00448{width:10.058667pt;}
._1a_c00448{width:11.248000pt;}
._f_c00448{width:12.512000pt;}
._12_c00448{width:13.984000pt;}
._b_c00448{width:15.088000pt;}
._8_c00448{width:16.130667pt;}
._9_c00448{width:18.645333pt;}
._19_c00448{width:19.933333pt;}
._18_c00448{width:21.413333pt;}
._d_c00448{width:23.122667pt;}
._e_c00448{width:27.938667pt;}
._13_c00448{width:31.034667pt;}
._2b_c00448{width:32.760000pt;}
._21_c00448{width:37.413333pt;}
._28_c00448{width:52.693333pt;}
._1f_c00448{width:63.362667pt;}
._2c_c00448{width:69.968000pt;}
._6_c00448{width:164.496000pt;}
._2a_c00448{width:232.637333pt;}
._27_c00448{width:399.832000pt;}
.fs5_c00448{font-size:42.666667pt;}
.fs1_c00448{font-size:58.666667pt;}
.fs0_c00448{font-size:61.333333pt;}
.fs3_c00448{font-size:64.000000pt;}
.fs2_c00448{font-size:66.666667pt;}
.fs4_c00448{font-size:77.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y20_c00448{bottom:2.760000pt;}
.y1f_c00448{bottom:6.425212pt;}
.y1e_c00448{bottom:39.866667pt;}
.y1d_c00448{bottom:67.733333pt;}
.y1c_c00448{bottom:96.266667pt;}
.y1b_c00448{bottom:107.200000pt;}
.y1a_c00448{bottom:125.066667pt;}
.y19_c00448{bottom:152.400000pt;}
.y18_c00448{bottom:174.533333pt;}
.y17_c00448{bottom:196.800000pt;}
.y16_c00448{bottom:219.200000pt;}
.y15_c00448{bottom:240.666667pt;}
.y14_c00448{bottom:263.066667pt;}
.y13_c00448{bottom:284.133333pt;}
.y12_c00448{bottom:306.666667pt;}
.y11_c00448{bottom:328.800000pt;}
.y10_c00448{bottom:350.666667pt;}
.yf_c00448{bottom:372.666667pt;}
.ye_c00448{bottom:394.533333pt;}
.yd_c00448{bottom:416.933333pt;}
.yc_c00448{bottom:438.800000pt;}
.yb_c00448{bottom:459.333333pt;}
.ya_c00448{bottom:482.400000pt;}
.y9_c00448{bottom:504.533333pt;}
.y8_c00448{bottom:526.400000pt;}
.y7_c00448{bottom:548.400000pt;}
.y6_c00448{bottom:570.533333pt;}
.y5_c00448{bottom:592.533333pt;}
.y4_c00448{bottom:614.000000pt;}
.y3_c00448{bottom:636.800000pt;}
.y2_c00448{bottom:658.800000pt;}
.y1_c00448{bottom:680.400000pt;}
.h8_c00448{height:11.733399pt;}
.h9_c00448{height:38.937500pt;}
.h4_c00448{height:68.664062pt;}
.h5_c00448{height:71.785156pt;}
.h2_c00448{height:77.654948pt;}
.h6_c00448{height:81.031250pt;}
.h7_c00448{height:83.829333pt;}
.h3_c00448{height:84.407552pt;}
.h0_c00448{height:739.200000pt;}
.h1_c00448{height:739.333333pt;}
.w1_c00448{width:93.222667pt;}
.w0_c00448{width:512.666667pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:32.800000pt;}
.x3_c00448{left:33.866667pt;}
.x4_c00448{left:34.800000pt;}
.x5_c00448{left:35.733333pt;}
.x8_c00448{left:36.666667pt;}
.x2_c00448{left:54.266667pt;}
.x6_c00448{left:57.333333pt;}
.x7_c00448{left:154.533333pt;}
.xa_c00448{left:213.501546pt;}
.x9_c00448{left:226.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c47f041322b4a60b7b4c4132.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.568848;font-style:normal;font-weight:normal;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_91361056c299c6494ccfd01c.woff2')format("woff");}.ff2_c00449{font-family:ff2_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:ff3_c00449;src:url('chunks/assets/font_2d60668ba22a16e14ef37bd1.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00449{font-family:ff4_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;}
.ls2_c00449{letter-spacing:-3.000000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls4_c00449{letter-spacing:3.000000px;}
.ls1_c00449{letter-spacing:8.616000px;}
.ls5_c00449{letter-spacing:21.000000px;}
.ls0_c00449{letter-spacing:414.672000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00449{word-spacing:-36.906000px;}
.ws0_c00449{word-spacing:-21.582000px;}
.ws1_c00449{word-spacing:-16.629000px;}
.ws3_c00449{word-spacing:0.000000px;}
._8_c00449{margin-left:-32.334000px;}
._1_c00449{margin-left:-23.076000px;}
._3_c00449{margin-left:-20.502000px;}
._4_c00449{margin-left:-17.544000px;}
._5_c00449{margin-left:-16.116000px;}
._6_c00449{margin-left:-14.688000px;}
._1a_c00449{margin-left:-13.605000px;}
._7_c00449{margin-left:-12.240000px;}
._2_c00449{margin-left:-10.506000px;}
._9_c00449{margin-left:-8.976000px;}
._0_c00449{margin-left:-7.854000px;}
._15_c00449{margin-left:-6.801000px;}
._a_c00449{margin-left:-5.382000px;}
._b_c00449{margin-left:-4.209000px;}
._f_c00449{margin-left:-3.105000px;}
._10_c00449{margin-left:-1.725000px;}
._e_c00449{width:1.449000px;}
._d_c00449{width:2.898000px;}
._21_c00449{width:4.209000px;}
._14_c00449{width:5.244000px;}
._11_c00449{width:7.245000px;}
._16_c00449{width:8.349000px;}
._1b_c00449{width:10.281000px;}
._27_c00449{width:11.592000px;}
._13_c00449{width:12.834000px;}
._25_c00449{width:14.145000px;}
._1c_c00449{width:15.252000px;}
._20_c00449{width:16.629000px;}
._17_c00449{width:17.664000px;}
._18_c00449{width:19.044000px;}
._12_c00449{width:21.489000px;}
._28_c00449{width:22.701000px;}
._24_c00449{width:23.736000px;}
._26_c00449{width:32.601000px;}
._22_c00449{width:33.615000px;}
._1e_c00449{width:35.178000px;}
._23_c00449{width:38.337000px;}
._c_c00449{width:78.375000px;}
._1d_c00449{width:107.076000px;}
._1f_c00449{width:161.052000px;}
._19_c00449{width:324.456000px;}
.fc2_c00449{color:transparent;}
.fc1_c00449{color:rgb(128,128,128);}
.fc0_c00449{color:rgb(0,0,0);}
.fs4_c00449{font-size:48.000000px;}
.fs3_c00449{font-size:66.000000px;}
.fs2_c00449{font-size:69.000000px;}
.fs1_c00449{font-size:78.000000px;}
.fs0_c00449{font-size:102.000000px;}
.y0_c00449{bottom:0.000000px;}
.y1e_c00449{bottom:3.105000px;}
.y1d_c00449{bottom:7.228363px;}
.y1c_c00449{bottom:58.350000px;}
.y1b_c00449{bottom:82.650000px;}
.y1a_c00449{bottom:108.300000px;}
.y19_c00449{bottom:132.900000px;}
.y18_c00449{bottom:158.250000px;}
.y17_c00449{bottom:183.300000px;}
.y16_c00449{bottom:207.600000px;}
.y15_c00449{bottom:232.800000px;}
.y14_c00449{bottom:257.550000px;}
.y13_c00449{bottom:282.750000px;}
.y12_c00449{bottom:307.350000px;}
.y11_c00449{bottom:331.650000px;}
.y10_c00449{bottom:356.400000px;}
.yf_c00449{bottom:381.600000px;}
.ye_c00449{bottom:406.650000px;}
.yd_c00449{bottom:431.250000px;}
.yc_c00449{bottom:456.600000px;}
.yb_c00449{bottom:481.500000px;}
.ya_c00449{bottom:506.850000px;}
.y9_c00449{bottom:555.450000px;}
.y8_c00449{bottom:605.700000px;}
.y7_c00449{bottom:630.750000px;}
.y6_c00449{bottom:655.800000px;}
.y5_c00449{bottom:680.700000px;}
.y4_c00449{bottom:705.000000px;}
.y3_c00449{bottom:730.350000px;}
.y2_c00449{bottom:755.550000px;}
.y1_c00449{bottom:779.700000px;}
.h6_c00449{height:13.200074px;}
.h7_c00449{height:43.804688px;}
.h4_c00449{height:80.758301px;}
.h3_c00449{height:87.361816px;}
.h5_c00449{height:98.756836px;}
.h2_c00449{height:129.143555px;}
.h1_c00449{height:827.250000px;}
.h0_c00449{height:827.550000px;}
.w2_c00449{width:104.875500px;}
.w0_c00449{width:572.100000px;}
.w1_c00449{width:572.250000px;}
.x0_c00449{left:0.000000px;}
.xa_c00449{left:34.050000px;}
.x4_c00449{left:38.100000px;}
.x5_c00449{left:39.450000px;}
.x2_c00449{left:51.300000px;}
.x6_c00449{left:96.450000px;}
.xb_c00449{left:98.550000px;}
.x9_c00449{left:99.600000px;}
.x3_c00449{left:100.800000px;}
.x1_c00449{left:113.100000px;}
.x8_c00449{left:124.200000px;}
.x7_c00449{left:207.900000px;}
.xd_c00449{left:237.864258px;}
.xc_c00449{left:505.200000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls2_c00449{letter-spacing:-2.666667pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls4_c00449{letter-spacing:2.666667pt;}
.ls1_c00449{letter-spacing:7.658667pt;}
.ls5_c00449{letter-spacing:18.666667pt;}
.ls0_c00449{letter-spacing:368.597333pt;}
.ws2_c00449{word-spacing:-32.805333pt;}
.ws0_c00449{word-spacing:-19.184000pt;}
.ws1_c00449{word-spacing:-14.781333pt;}
.ws3_c00449{word-spacing:0.000000pt;}
._8_c00449{margin-left:-28.741333pt;}
._1_c00449{margin-left:-20.512000pt;}
._3_c00449{margin-left:-18.224000pt;}
._4_c00449{margin-left:-15.594667pt;}
._5_c00449{margin-left:-14.325333pt;}
._6_c00449{margin-left:-13.056000pt;}
._1a_c00449{margin-left:-12.093333pt;}
._7_c00449{margin-left:-10.880000pt;}
._2_c00449{margin-left:-9.338667pt;}
._9_c00449{margin-left:-7.978667pt;}
._0_c00449{margin-left:-6.981333pt;}
._15_c00449{margin-left:-6.045333pt;}
._a_c00449{margin-left:-4.784000pt;}
._b_c00449{margin-left:-3.741333pt;}
._f_c00449{margin-left:-2.760000pt;}
._10_c00449{margin-left:-1.533333pt;}
._e_c00449{width:1.288000pt;}
._d_c00449{width:2.576000pt;}
._21_c00449{width:3.741333pt;}
._14_c00449{width:4.661333pt;}
._11_c00449{width:6.440000pt;}
._16_c00449{width:7.421333pt;}
._1b_c00449{width:9.138667pt;}
._27_c00449{width:10.304000pt;}
._13_c00449{width:11.408000pt;}
._25_c00449{width:12.573333pt;}
._1c_c00449{width:13.557333pt;}
._20_c00449{width:14.781333pt;}
._17_c00449{width:15.701333pt;}
._18_c00449{width:16.928000pt;}
._12_c00449{width:19.101333pt;}
._28_c00449{width:20.178667pt;}
._24_c00449{width:21.098667pt;}
._26_c00449{width:28.978667pt;}
._22_c00449{width:29.880000pt;}
._1e_c00449{width:31.269333pt;}
._23_c00449{width:34.077333pt;}
._c_c00449{width:69.666667pt;}
._1d_c00449{width:95.178667pt;}
._1f_c00449{width:143.157333pt;}
._19_c00449{width:288.405333pt;}
.fs4_c00449{font-size:42.666667pt;}
.fs3_c00449{font-size:58.666667pt;}
.fs2_c00449{font-size:61.333333pt;}
.fs1_c00449{font-size:69.333333pt;}
.fs0_c00449{font-size:90.666667pt;}
.y0_c00449{bottom:0.000000pt;}
.y1e_c00449{bottom:2.760000pt;}
.y1d_c00449{bottom:6.425212pt;}
.y1c_c00449{bottom:51.866667pt;}
.y1b_c00449{bottom:73.466667pt;}
.y1a_c00449{bottom:96.266667pt;}
.y19_c00449{bottom:118.133333pt;}
.y18_c00449{bottom:140.666667pt;}
.y17_c00449{bottom:162.933333pt;}
.y16_c00449{bottom:184.533333pt;}
.y15_c00449{bottom:206.933333pt;}
.y14_c00449{bottom:228.933333pt;}
.y13_c00449{bottom:251.333333pt;}
.y12_c00449{bottom:273.200000pt;}
.y11_c00449{bottom:294.800000pt;}
.y10_c00449{bottom:316.800000pt;}
.yf_c00449{bottom:339.200000pt;}
.ye_c00449{bottom:361.466667pt;}
.yd_c00449{bottom:383.333333pt;}
.yc_c00449{bottom:405.866667pt;}
.yb_c00449{bottom:428.000000pt;}
.ya_c00449{bottom:450.533333pt;}
.y9_c00449{bottom:493.733333pt;}
.y8_c00449{bottom:538.400000pt;}
.y7_c00449{bottom:560.666667pt;}
.y6_c00449{bottom:582.933333pt;}
.y5_c00449{bottom:605.066667pt;}
.y4_c00449{bottom:626.666667pt;}
.y3_c00449{bottom:649.200000pt;}
.y2_c00449{bottom:671.600000pt;}
.y1_c00449{bottom:693.066667pt;}
.h6_c00449{height:11.733399pt;}
.h7_c00449{height:38.937500pt;}
.h4_c00449{height:71.785156pt;}
.h3_c00449{height:77.654948pt;}
.h5_c00449{height:87.783854pt;}
.h2_c00449{height:114.794271pt;}
.h1_c00449{height:735.333333pt;}
.h0_c00449{height:735.600000pt;}
.w2_c00449{width:93.222667pt;}
.w0_c00449{width:508.533333pt;}
.w1_c00449{width:508.666667pt;}
.x0_c00449{left:0.000000pt;}
.xa_c00449{left:30.266667pt;}
.x4_c00449{left:33.866667pt;}
.x5_c00449{left:35.066667pt;}
.x2_c00449{left:45.600000pt;}
.x6_c00449{left:85.733333pt;}
.xb_c00449{left:87.600000pt;}
.x9_c00449{left:88.533333pt;}
.x3_c00449{left:89.600000pt;}
.x1_c00449{left:100.533333pt;}
.x8_c00449{left:110.400000pt;}
.x7_c00449{left:184.800000pt;}
.xd_c00449{left:211.434896pt;}
.xc_c00449{left:449.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_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_e91f210b7d2ad9e8e106987b.woff2')format("woff");}.ff1_c00450{font-family:ff1_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:ff2_c00450;src:url('chunks/assets/font_f53cd0bc288e2336b9197dfa.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_f1d9fe1aef568720f301efd2.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;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_c00450;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff4_c00450{font-family:ff4_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:ff5_c00450;src:url('chunks/assets/font_0bb3568c0376b29a9b0ed324.woff2')format("woff");}.ff5_c00450{font-family:ff5_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:ff6_c00450;src:url('chunks/assets/font_27dd934cadf33575657d2c58.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_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff7_c00450{font-family:ff7_c00450;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_c00450;src:url('chunks/assets/font_6d63fbffc5e76bcfde7a8e7d.woff2')format("woff");}.ff8_c00450{font-family:ff8_c00450;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_c00450;src:url('chunks/assets/font_87c24bbd9cdb85ca1aceab04.woff2')format("woff");}.ff9_c00450{font-family:ff9_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:ffa_c00450;src:url('chunks/assets/font_20c4459f5982345b24032225.woff2')format("woff");}.ffa_c00450{font-family:ffa_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:ffb_c00450;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00450{font-family:ffb_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;}
.ls5_c00450{letter-spacing:-9.000000px;}
.ls1_c00450{letter-spacing:-3.000000px;}
.ls2_c00450{letter-spacing:0.000000px;}
.ls3_c00450{letter-spacing:3.000000px;}
.ls4_c00450{letter-spacing:30.000000px;}
.ls0_c00450{letter-spacing:421.848000px;}
.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;}
}
.ws2_c00450{word-spacing:-49.818000px;}
.ws1_c00450{word-spacing:-44.022000px;}
.ws0_c00450{word-spacing:-0.087000px;}
.ws4_c00450{word-spacing:0.000000px;}
.ws3_c00450{word-spacing:8.952000px;}
._1c_c00450{margin-left:-24.702000px;}
._6_c00450{margin-left:-19.320000px;}
._1e_c00450{margin-left:-17.319000px;}
._29_c00450{margin-left:-15.183000px;}
._2_c00450{margin-left:-13.860000px;}
._28_c00450{margin-left:-12.858000px;}
._0_c00450{margin-left:-11.844000px;}
._4_c00450{margin-left:-9.912000px;}
._3_c00450{margin-left:-7.980000px;}
._1_c00450{margin-left:-6.552000px;}
._5_c00450{margin-left:-5.208000px;}
._15_c00450{margin-left:-3.663000px;}
._8_c00450{margin-left:-1.974000px;}
._d_c00450{width:1.317000px;}
._c_c00450{width:2.445000px;}
._9_c00450{width:3.561000px;}
._a_c00450{width:4.857000px;}
._7_c00450{width:6.075000px;}
._14_c00450{width:8.064000px;}
._23_c00450{width:9.135000px;}
._e_c00450{width:10.260000px;}
._11_c00450{width:11.727000px;}
._f_c00450{width:13.338000px;}
._b_c00450{width:15.246000px;}
._10_c00450{width:16.257000px;}
._16_c00450{width:17.646000px;}
._25_c00450{width:18.687000px;}
._13_c00450{width:21.093000px;}
._18_c00450{width:22.410000px;}
._1b_c00450{width:24.600000px;}
._26_c00450{width:27.723000px;}
._27_c00450{width:29.664000px;}
._17_c00450{width:39.198000px;}
._24_c00450{width:42.105000px;}
._20_c00450{width:52.578000px;}
._21_c00450{width:79.350000px;}
._1d_c00450{width:86.250000px;}
._22_c00450{width:126.201000px;}
._1a_c00450{width:139.953000px;}
._19_c00450{width:207.183000px;}
._12_c00450{width:227.181000px;}
._2b_c00450{width:464.868000px;}
._1f_c00450{width:750.168000px;}
._2a_c00450{width:986.232000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(128,128,128);}
.fc0_c00450{color:rgb(0,0,0);}
.fs8_c00450{font-size:48.000000px;}
.fs6_c00450{font-size:54.000000px;}
.fs7_c00450{font-size:57.000000px;}
.fs4_c00450{font-size:66.000000px;}
.fs3_c00450{font-size:69.000000px;}
.fs1_c00450{font-size:72.000000px;}
.fs5_c00450{font-size:78.000000px;}
.fs0_c00450{font-size:84.000000px;}
.fs2_c00450{font-size:87.000000px;}
.y0_c00450{bottom:0.000000px;}
.y1f_c00450{bottom:3.105000px;}
.y1e_c00450{bottom:7.228369px;}
.y1d_c00450{bottom:76.920000px;}
.y1c_c00450{bottom:101.220000px;}
.y1b_c00450{bottom:127.470000px;}
.y1a_c00450{bottom:152.220000px;}
.y19_c00450{bottom:202.470000px;}
.y18_c00450{bottom:248.970000px;}
.y17_c00450{bottom:266.670000px;}
.y16_c00450{bottom:284.520000px;}
.y15_c00450{bottom:301.620000px;}
.y14_c00450{bottom:336.870000px;}
.y13_c00450{bottom:373.920000px;}
.y12_c00450{bottom:398.970000px;}
.y11_c00450{bottom:424.170000px;}
.y10_c00450{bottom:448.770000px;}
.yf_c00450{bottom:473.970000px;}
.ye_c00450{bottom:498.720000px;}
.yd_c00450{bottom:523.470000px;}
.yc_c00450{bottom:547.770000px;}
.yb_c00450{bottom:558.120000px;}
.ya_c00450{bottom:572.670000px;}
.y9_c00450{bottom:596.670000px;}
.y8_c00450{bottom:622.020000px;}
.y7_c00450{bottom:647.220000px;}
.y6_c00450{bottom:671.970000px;}
.y5_c00450{bottom:696.570000px;}
.y4_c00450{bottom:721.170000px;}
.y3_c00450{bottom:746.520000px;}
.y2_c00450{bottom:771.420000px;}
.y1_c00450{bottom:794.370000px;}
.ha_c00450{height:13.200073px;}
.hb_c00450{height:43.804688px;}
.h7_c00450{height:57.618000px;}
.h5_c00450{height:58.536000px;}
.h6_c00450{height:72.168457px;}
.h9_c00450{height:83.563477px;}
.h3_c00450{height:87.361816px;}
.h8_c00450{height:91.056000px;}
.h2_c00450{height:92.829000px;}
.h4_c00450{height:98.756836px;}
.h0_c00450{height:829.950000px;}
.h1_c00450{height:830.250000px;}
.w2_c00450{width:104.875500px;}
.w0_c00450{width:575.625000px;}
.w1_c00450{width:576.000000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:30.600000px;}
.x3_c00450{left:32.400000px;}
.x6_c00450{left:33.450000px;}
.x9_c00450{left:35.850000px;}
.xa_c00450{left:36.900000px;}
.xd_c00450{left:39.150000px;}
.x10_c00450{left:40.950000px;}
.x5_c00450{left:45.450000px;}
.x8_c00450{left:52.650000px;}
.x4_c00450{left:57.750000px;}
.xf_c00450{left:62.850000px;}
.xe_c00450{left:162.300000px;}
.x7_c00450{left:179.250000px;}
.x1_c00450{left:196.050000px;}
.xb_c00450{left:203.550000px;}
.xc_c00450{left:213.750000px;}
.x11_c00450{left:239.626740px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls5_c00450{letter-spacing:-8.000000pt;}
.ls1_c00450{letter-spacing:-2.666667pt;}
.ls2_c00450{letter-spacing:0.000000pt;}
.ls3_c00450{letter-spacing:2.666667pt;}
.ls4_c00450{letter-spacing:26.666667pt;}
.ls0_c00450{letter-spacing:374.976000pt;}
.ws2_c00450{word-spacing:-44.282667pt;}
.ws1_c00450{word-spacing:-39.130667pt;}
.ws0_c00450{word-spacing:-0.077333pt;}
.ws4_c00450{word-spacing:0.000000pt;}
.ws3_c00450{word-spacing:7.957333pt;}
._1c_c00450{margin-left:-21.957333pt;}
._6_c00450{margin-left:-17.173333pt;}
._1e_c00450{margin-left:-15.394667pt;}
._29_c00450{margin-left:-13.496000pt;}
._2_c00450{margin-left:-12.320000pt;}
._28_c00450{margin-left:-11.429333pt;}
._0_c00450{margin-left:-10.528000pt;}
._4_c00450{margin-left:-8.810667pt;}
._3_c00450{margin-left:-7.093333pt;}
._1_c00450{margin-left:-5.824000pt;}
._5_c00450{margin-left:-4.629333pt;}
._15_c00450{margin-left:-3.256000pt;}
._8_c00450{margin-left:-1.754667pt;}
._d_c00450{width:1.170667pt;}
._c_c00450{width:2.173333pt;}
._9_c00450{width:3.165333pt;}
._a_c00450{width:4.317333pt;}
._7_c00450{width:5.400000pt;}
._14_c00450{width:7.168000pt;}
._23_c00450{width:8.120000pt;}
._e_c00450{width:9.120000pt;}
._11_c00450{width:10.424000pt;}
._f_c00450{width:11.856000pt;}
._b_c00450{width:13.552000pt;}
._10_c00450{width:14.450667pt;}
._16_c00450{width:15.685333pt;}
._25_c00450{width:16.610667pt;}
._13_c00450{width:18.749333pt;}
._18_c00450{width:19.920000pt;}
._1b_c00450{width:21.866667pt;}
._26_c00450{width:24.642667pt;}
._27_c00450{width:26.368000pt;}
._17_c00450{width:34.842667pt;}
._24_c00450{width:37.426667pt;}
._20_c00450{width:46.736000pt;}
._21_c00450{width:70.533333pt;}
._1d_c00450{width:76.666667pt;}
._22_c00450{width:112.178667pt;}
._1a_c00450{width:124.402667pt;}
._19_c00450{width:184.162667pt;}
._12_c00450{width:201.938667pt;}
._2b_c00450{width:413.216000pt;}
._1f_c00450{width:666.816000pt;}
._2a_c00450{width:876.650667pt;}
.fs8_c00450{font-size:42.666667pt;}
.fs6_c00450{font-size:48.000000pt;}
.fs7_c00450{font-size:50.666667pt;}
.fs4_c00450{font-size:58.666667pt;}
.fs3_c00450{font-size:61.333333pt;}
.fs1_c00450{font-size:64.000000pt;}
.fs5_c00450{font-size:69.333333pt;}
.fs0_c00450{font-size:74.666667pt;}
.fs2_c00450{font-size:77.333333pt;}
.y0_c00450{bottom:0.000000pt;}
.y1f_c00450{bottom:2.760000pt;}
.y1e_c00450{bottom:6.425217pt;}
.y1d_c00450{bottom:68.373333pt;}
.y1c_c00450{bottom:89.973333pt;}
.y1b_c00450{bottom:113.306667pt;}
.y1a_c00450{bottom:135.306667pt;}
.y19_c00450{bottom:179.973333pt;}
.y18_c00450{bottom:221.306667pt;}
.y17_c00450{bottom:237.040000pt;}
.y16_c00450{bottom:252.906667pt;}
.y15_c00450{bottom:268.106667pt;}
.y14_c00450{bottom:299.440000pt;}
.y13_c00450{bottom:332.373333pt;}
.y12_c00450{bottom:354.640000pt;}
.y11_c00450{bottom:377.040000pt;}
.y10_c00450{bottom:398.906667pt;}
.yf_c00450{bottom:421.306667pt;}
.ye_c00450{bottom:443.306667pt;}
.yd_c00450{bottom:465.306667pt;}
.yc_c00450{bottom:486.906667pt;}
.yb_c00450{bottom:496.106667pt;}
.ya_c00450{bottom:509.040000pt;}
.y9_c00450{bottom:530.373333pt;}
.y8_c00450{bottom:552.906667pt;}
.y7_c00450{bottom:575.306667pt;}
.y6_c00450{bottom:597.306667pt;}
.y5_c00450{bottom:619.173333pt;}
.y4_c00450{bottom:641.040000pt;}
.y3_c00450{bottom:663.573333pt;}
.y2_c00450{bottom:685.706667pt;}
.y1_c00450{bottom:706.106667pt;}
.ha_c00450{height:11.733399pt;}
.hb_c00450{height:38.937500pt;}
.h7_c00450{height:51.216000pt;}
.h5_c00450{height:52.032000pt;}
.h6_c00450{height:64.149740pt;}
.h9_c00450{height:74.278646pt;}
.h3_c00450{height:77.654948pt;}
.h8_c00450{height:80.938667pt;}
.h2_c00450{height:82.514667pt;}
.h4_c00450{height:87.783854pt;}
.h0_c00450{height:737.733333pt;}
.h1_c00450{height:738.000000pt;}
.w2_c00450{width:93.222667pt;}
.w0_c00450{width:511.666667pt;}
.w1_c00450{width:512.000000pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:27.200000pt;}
.x3_c00450{left:28.800000pt;}
.x6_c00450{left:29.733333pt;}
.x9_c00450{left:31.866667pt;}
.xa_c00450{left:32.800000pt;}
.xd_c00450{left:34.800000pt;}
.x10_c00450{left:36.400000pt;}
.x5_c00450{left:40.400000pt;}
.x8_c00450{left:46.800000pt;}
.x4_c00450{left:51.333333pt;}
.xf_c00450{left:55.866667pt;}
.xe_c00450{left:144.266667pt;}
.x7_c00450{left:159.333333pt;}
.x1_c00450{left:174.266667pt;}
.xb_c00450{left:180.933333pt;}
.xc_c00450{left:190.000000pt;}
.x11_c00450{left:213.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b96b9163860ece42f973052.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_1660da6a837c5d247486c061.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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_128dbb5f47b6edd919009f30.woff2')format("woff");}.ff4_c00451{font-family:ff4_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:ff5_c00451;src:url('chunks/assets/font_616c08d6ee3796fd39cfa57a.woff2')format("woff");}.ff5_c00451{font-family:ff5_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:ff6_c00451;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00451{font-family:ff6_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;}
.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;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:3.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;}
}
.ws3_c00451{word-spacing:-44.022000px;}
.ws0_c00451{word-spacing:-33.000000px;}
.ws2_c00451{word-spacing:-16.629000px;}
.ws4_c00451{word-spacing:0.000000px;}
.ws1_c00451{word-spacing:1.104000px;}
._23_c00451{margin-left:-20.286000px;}
._17_c00451{margin-left:-16.215000px;}
._11_c00451{margin-left:-14.973000px;}
._13_c00451{margin-left:-11.385000px;}
._6_c00451{margin-left:-8.625000px;}
._12_c00451{margin-left:-6.555000px;}
._b_c00451{margin-left:-4.416000px;}
._c_c00451{margin-left:-3.174000px;}
._a_c00451{margin-left:-2.139000px;}
._9_c00451{margin-left:-1.104000px;}
._7_c00451{width:1.035000px;}
._4_c00451{width:2.139000px;}
._5_c00451{width:3.312000px;}
._e_c00451{width:4.347000px;}
._2_c00451{width:5.658000px;}
._10_c00451{width:7.245000px;}
._1_c00451{width:8.763000px;}
._24_c00451{width:9.900000px;}
._0_c00451{width:11.109000px;}
._20_c00451{width:12.423000px;}
._18_c00451{width:13.524000px;}
._15_c00451{width:14.835000px;}
._19_c00451{width:15.939000px;}
._1c_c00451{width:17.802000px;}
._16_c00451{width:18.837000px;}
._1b_c00451{width:19.941000px;}
._d_c00451{width:21.321000px;}
._21_c00451{width:22.389000px;}
._1f_c00451{width:23.565000px;}
._1e_c00451{width:25.014000px;}
._25_c00451{width:28.371000px;}
._8_c00451{width:31.464000px;}
._28_c00451{width:33.150000px;}
._22_c00451{width:35.121000px;}
._27_c00451{width:36.294000px;}
._1a_c00451{width:40.494000px;}
._26_c00451{width:90.183000px;}
._f_c00451{width:93.495000px;}
._1d_c00451{width:114.816000px;}
._14_c00451{width:162.363000px;}
._3_c00451{width:292.662000px;}
.fc2_c00451{color:transparent;}
.fc1_c00451{color:rgb(128,128,128);}
.fc0_c00451{color:rgb(0,0,0);}
.fs3_c00451{font-size:48.000000px;}
.fs1_c00451{font-size:66.000000px;}
.fs0_c00451{font-size:69.000000px;}
.fs2_c00451{font-size:81.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1b_c00451{bottom:3.105000px;}
.y1a_c00451{bottom:7.228363px;}
.y19_c00451{bottom:131.700000px;}
.y18_c00451{bottom:157.050000px;}
.y17_c00451{bottom:182.700000px;}
.y16_c00451{bottom:209.700000px;}
.y15_c00451{bottom:232.950000px;}
.y14_c00451{bottom:258.150000px;}
.y13_c00451{bottom:282.900000px;}
.y12_c00451{bottom:308.100000px;}
.y11_c00451{bottom:332.100000px;}
.y10_c00451{bottom:357.150000px;}
.yf_c00451{bottom:381.750000px;}
.ye_c00451{bottom:408.450000px;}
.yd_c00451{bottom:432.450000px;}
.yc_c00451{bottom:457.650000px;}
.yb_c00451{bottom:506.850000px;}
.ya_c00451{bottom:556.800000px;}
.y9_c00451{bottom:582.900000px;}
.y8_c00451{bottom:607.800000px;}
.y7_c00451{bottom:632.850000px;}
.y6_c00451{bottom:658.050000px;}
.y5_c00451{bottom:682.800000px;}
.y4_c00451{bottom:708.000000px;}
.y3_c00451{bottom:732.750000px;}
.y2_c00451{bottom:757.650000px;}
.y1_c00451{bottom:782.700000px;}
.h5_c00451{height:13.200074px;}
.h6_c00451{height:43.804688px;}
.h3_c00451{height:80.758301px;}
.h2_c00451{height:87.361816px;}
.h4_c00451{height:102.555176px;}
.h1_c00451{height:827.250000px;}
.h0_c00451{height:827.550000px;}
.w2_c00451{width:104.875500px;}
.w0_c00451{width:572.100000px;}
.w1_c00451{width:572.250000px;}
.x0_c00451{left:0.000000px;}
.xe_c00451{left:36.000000px;}
.x6_c00451{left:45.450000px;}
.xd_c00451{left:57.300000px;}
.xc_c00451{left:75.300000px;}
.xf_c00451{left:103.500000px;}
.x7_c00451{left:105.000000px;}
.xb_c00451{left:107.250000px;}
.x2_c00451{left:108.300000px;}
.x8_c00451{left:109.950000px;}
.x5_c00451{left:111.000000px;}
.x3_c00451{left:114.300000px;}
.x1_c00451{left:123.150000px;}
.xa_c00451{left:134.550000px;}
.x4_c00451{left:136.350000px;}
.x10_c00451{left:237.864258px;}
.x9_c00451{left:238.950000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:2.666667pt;}
.ws3_c00451{word-spacing:-39.130667pt;}
.ws0_c00451{word-spacing:-29.333333pt;}
.ws2_c00451{word-spacing:-14.781333pt;}
.ws4_c00451{word-spacing:0.000000pt;}
.ws1_c00451{word-spacing:0.981333pt;}
._23_c00451{margin-left:-18.032000pt;}
._17_c00451{margin-left:-14.413333pt;}
._11_c00451{margin-left:-13.309333pt;}
._13_c00451{margin-left:-10.120000pt;}
._6_c00451{margin-left:-7.666667pt;}
._12_c00451{margin-left:-5.826667pt;}
._b_c00451{margin-left:-3.925333pt;}
._c_c00451{margin-left:-2.821333pt;}
._a_c00451{margin-left:-1.901333pt;}
._9_c00451{margin-left:-0.981333pt;}
._7_c00451{width:0.920000pt;}
._4_c00451{width:1.901333pt;}
._5_c00451{width:2.944000pt;}
._e_c00451{width:3.864000pt;}
._2_c00451{width:5.029333pt;}
._10_c00451{width:6.440000pt;}
._1_c00451{width:7.789333pt;}
._24_c00451{width:8.800000pt;}
._0_c00451{width:9.874667pt;}
._20_c00451{width:11.042667pt;}
._18_c00451{width:12.021333pt;}
._15_c00451{width:13.186667pt;}
._19_c00451{width:14.168000pt;}
._1c_c00451{width:15.824000pt;}
._16_c00451{width:16.744000pt;}
._1b_c00451{width:17.725333pt;}
._d_c00451{width:18.952000pt;}
._21_c00451{width:19.901333pt;}
._1f_c00451{width:20.946667pt;}
._1e_c00451{width:22.234667pt;}
._25_c00451{width:25.218667pt;}
._8_c00451{width:27.968000pt;}
._28_c00451{width:29.466667pt;}
._22_c00451{width:31.218667pt;}
._27_c00451{width:32.261333pt;}
._1a_c00451{width:35.994667pt;}
._26_c00451{width:80.162667pt;}
._f_c00451{width:83.106667pt;}
._1d_c00451{width:102.058667pt;}
._14_c00451{width:144.322667pt;}
._3_c00451{width:260.144000pt;}
.fs3_c00451{font-size:42.666667pt;}
.fs1_c00451{font-size:58.666667pt;}
.fs0_c00451{font-size:61.333333pt;}
.fs2_c00451{font-size:72.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1b_c00451{bottom:2.760000pt;}
.y1a_c00451{bottom:6.425212pt;}
.y19_c00451{bottom:117.066667pt;}
.y18_c00451{bottom:139.600000pt;}
.y17_c00451{bottom:162.400000pt;}
.y16_c00451{bottom:186.400000pt;}
.y15_c00451{bottom:207.066667pt;}
.y14_c00451{bottom:229.466667pt;}
.y13_c00451{bottom:251.466667pt;}
.y12_c00451{bottom:273.866667pt;}
.y11_c00451{bottom:295.200000pt;}
.y10_c00451{bottom:317.466667pt;}
.yf_c00451{bottom:339.333333pt;}
.ye_c00451{bottom:363.066667pt;}
.yd_c00451{bottom:384.400000pt;}
.yc_c00451{bottom:406.800000pt;}
.yb_c00451{bottom:450.533333pt;}
.ya_c00451{bottom:494.933333pt;}
.y9_c00451{bottom:518.133333pt;}
.y8_c00451{bottom:540.266667pt;}
.y7_c00451{bottom:562.533333pt;}
.y6_c00451{bottom:584.933333pt;}
.y5_c00451{bottom:606.933333pt;}
.y4_c00451{bottom:629.333333pt;}
.y3_c00451{bottom:651.333333pt;}
.y2_c00451{bottom:673.466667pt;}
.y1_c00451{bottom:695.733333pt;}
.h5_c00451{height:11.733399pt;}
.h6_c00451{height:38.937500pt;}
.h3_c00451{height:71.785156pt;}
.h2_c00451{height:77.654948pt;}
.h4_c00451{height:91.160156pt;}
.h1_c00451{height:735.333333pt;}
.h0_c00451{height:735.600000pt;}
.w2_c00451{width:93.222667pt;}
.w0_c00451{width:508.533333pt;}
.w1_c00451{width:508.666667pt;}
.x0_c00451{left:0.000000pt;}
.xe_c00451{left:32.000000pt;}
.x6_c00451{left:40.400000pt;}
.xd_c00451{left:50.933333pt;}
.xc_c00451{left:66.933333pt;}
.xf_c00451{left:92.000000pt;}
.x7_c00451{left:93.333333pt;}
.xb_c00451{left:95.333333pt;}
.x2_c00451{left:96.266667pt;}
.x8_c00451{left:97.733333pt;}
.x5_c00451{left:98.666667pt;}
.x3_c00451{left:101.600000pt;}
.x1_c00451{left:109.466667pt;}
.xa_c00451{left:119.600000pt;}
.x4_c00451{left:121.200000pt;}
.x10_c00451{left:211.434896pt;}
.x9_c00451{left:212.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71992491d37cf7e0b577b531.woff2')format("woff");}.ff1_c00452{font-family:ff1_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:ff2_c00452;src:url('chunks/assets/font_8d924e3f57e686acaa5bac75.woff2')format("woff");}.ff2_c00452{font-family:ff2_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:ff3_c00452;src:url('chunks/assets/font_9268461a2a14046e9750194c.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00452{font-family:ff5_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);}
.v0_c00452{vertical-align:0.000000px;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:0.600000px;}
.ls3_c00452{letter-spacing:3.000000px;}
.ls0_c00452{letter-spacing:23.400000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00452{word-spacing:-16.629000px;}
.ws2_c00452{word-spacing:0.000000px;}
.ws0_c00452{word-spacing:11.937000px;}
._2a_c00452{margin-left:-33.603000px;}
._26_c00452{margin-left:-25.737000px;}
._2b_c00452{margin-left:-21.315000px;}
._18_c00452{margin-left:-17.268000px;}
._c_c00452{margin-left:-15.387000px;}
._d_c00452{margin-left:-14.214000px;}
._1c_c00452{margin-left:-12.141000px;}
._1e_c00452{margin-left:-10.350000px;}
._14_c00452{margin-left:-9.288000px;}
._13_c00452{margin-left:-7.548000px;}
._24_c00452{margin-left:-6.486000px;}
._15_c00452{margin-left:-5.244000px;}
._f_c00452{margin-left:-3.933000px;}
._1_c00452{margin-left:-2.484000px;}
._2_c00452{margin-left:-1.104000px;}
._e_c00452{width:1.380000px;}
._12_c00452{width:2.511000px;}
._0_c00452{width:3.795000px;}
._1f_c00452{width:4.845000px;}
._a_c00452{width:5.865000px;}
._19_c00452{width:6.900000px;}
._4_c00452{width:8.418000px;}
._20_c00452{width:9.756000px;}
._8_c00452{width:10.971000px;}
._5_c00452{width:12.972000px;}
._17_c00452{width:14.076000px;}
._b_c00452{width:15.456000px;}
._11_c00452{width:16.782000px;}
._10_c00452{width:18.561000px;}
._1b_c00452{width:20.229000px;}
._7_c00452{width:21.735000px;}
._2c_c00452{width:23.022000px;}
._6_c00452{width:24.633000px;}
._16_c00452{width:28.152000px;}
._21_c00452{width:29.229000px;}
._25_c00452{width:32.409000px;}
._9_c00452{width:35.913000px;}
._1a_c00452{width:43.470000px;}
._22_c00452{width:45.954000px;}
._23_c00452{width:58.167000px;}
._28_c00452{width:93.135000px;}
._27_c00452{width:108.765000px;}
._29_c00452{width:127.788000px;}
._1d_c00452{width:221.835000px;}
._2d_c00452{width:400.656000px;}
._3_c00452{width:497.121000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(128,128,128);}
.fc0_c00452{color:rgb(0,0,0);}
.fs2_c00452{font-size:48.000000px;}
.fs1_c00452{font-size:66.000000px;}
.fs0_c00452{font-size:69.000000px;}
.y0_c00452{bottom:0.000000px;}
.y1f_c00452{bottom:3.105000px;}
.y1e_c00452{bottom:7.228371px;}
.y1d_c00452{bottom:72.915000px;}
.y1c_c00452{bottom:97.215000px;}
.y1b_c00452{bottom:123.165000px;}
.y1a_c00452{bottom:147.915000px;}
.y19_c00452{bottom:171.915000px;}
.y18_c00452{bottom:197.565000px;}
.y17_c00452{bottom:222.465000px;}
.y16_c00452{bottom:247.365000px;}
.y15_c00452{bottom:272.715000px;}
.y14_c00452{bottom:297.315000px;}
.y13_c00452{bottom:321.315000px;}
.y12_c00452{bottom:346.965000px;}
.y11_c00452{bottom:372.015000px;}
.y10_c00452{bottom:397.215000px;}
.yf_c00452{bottom:421.965000px;}
.ye_c00452{bottom:447.165000px;}
.yd_c00452{bottom:472.215000px;}
.yc_c00452{bottom:497.115000px;}
.yb_c00452{bottom:521.565000px;}
.ya_c00452{bottom:546.465000px;}
.y9_c00452{bottom:571.365000px;}
.y8_c00452{bottom:596.115000px;}
.y7_c00452{bottom:621.015000px;}
.y6_c00452{bottom:646.065000px;}
.y5_c00452{bottom:670.965000px;}
.y4_c00452{bottom:696.015000px;}
.y3_c00452{bottom:720.915000px;}
.y2_c00452{bottom:745.665000px;}
.y1_c00452{bottom:795.465000px;}
.h4_c00452{height:13.200074px;}
.h5_c00452{height:43.804688px;}
.h3_c00452{height:80.758301px;}
.h2_c00452{height:87.361816px;}
.h0_c00452{height:825.675000px;}
.h1_c00452{height:825.750000px;}
.w2_c00452{width:104.875500px;}
.w1_c00452{width:572.250000px;}
.w0_c00452{width:572.400000px;}
.x0_c00452{left:0.000000px;}
.x7_c00452{left:24.300000px;}
.x9_c00452{left:27.600000px;}
.xa_c00452{left:29.700000px;}
.x8_c00452{left:31.050000px;}
.x6_c00452{left:32.100000px;}
.x5_c00452{left:34.050000px;}
.x4_c00452{left:35.400000px;}
.xb_c00452{left:54.000000px;}
.x3_c00452{left:58.050000px;}
.x2_c00452{left:157.650000px;}
.x1_c00452{left:186.900000px;}
.xd_c00452{left:238.014267px;}
.xc_c00452{left:292.650000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:0.533333pt;}
.ls3_c00452{letter-spacing:2.666667pt;}
.ls0_c00452{letter-spacing:20.800000pt;}
.ws1_c00452{word-spacing:-14.781333pt;}
.ws2_c00452{word-spacing:0.000000pt;}
.ws0_c00452{word-spacing:10.610667pt;}
._2a_c00452{margin-left:-29.869333pt;}
._26_c00452{margin-left:-22.877333pt;}
._2b_c00452{margin-left:-18.946667pt;}
._18_c00452{margin-left:-15.349333pt;}
._c_c00452{margin-left:-13.677333pt;}
._d_c00452{margin-left:-12.634667pt;}
._1c_c00452{margin-left:-10.792000pt;}
._1e_c00452{margin-left:-9.200000pt;}
._14_c00452{margin-left:-8.256000pt;}
._13_c00452{margin-left:-6.709333pt;}
._24_c00452{margin-left:-5.765333pt;}
._15_c00452{margin-left:-4.661333pt;}
._f_c00452{margin-left:-3.496000pt;}
._1_c00452{margin-left:-2.208000pt;}
._2_c00452{margin-left:-0.981333pt;}
._e_c00452{width:1.226667pt;}
._12_c00452{width:2.232000pt;}
._0_c00452{width:3.373333pt;}
._1f_c00452{width:4.306667pt;}
._a_c00452{width:5.213333pt;}
._19_c00452{width:6.133333pt;}
._4_c00452{width:7.482667pt;}
._20_c00452{width:8.672000pt;}
._8_c00452{width:9.752000pt;}
._5_c00452{width:11.530667pt;}
._17_c00452{width:12.512000pt;}
._b_c00452{width:13.738667pt;}
._11_c00452{width:14.917333pt;}
._10_c00452{width:16.498667pt;}
._1b_c00452{width:17.981333pt;}
._7_c00452{width:19.320000pt;}
._2c_c00452{width:20.464000pt;}
._6_c00452{width:21.896000pt;}
._16_c00452{width:25.024000pt;}
._21_c00452{width:25.981333pt;}
._25_c00452{width:28.808000pt;}
._9_c00452{width:31.922667pt;}
._1a_c00452{width:38.640000pt;}
._22_c00452{width:40.848000pt;}
._23_c00452{width:51.704000pt;}
._28_c00452{width:82.786667pt;}
._27_c00452{width:96.680000pt;}
._29_c00452{width:113.589333pt;}
._1d_c00452{width:197.186667pt;}
._2d_c00452{width:356.138667pt;}
._3_c00452{width:441.885333pt;}
.fs2_c00452{font-size:42.666667pt;}
.fs1_c00452{font-size:58.666667pt;}
.fs0_c00452{font-size:61.333333pt;}
.y0_c00452{bottom:0.000000pt;}
.y1f_c00452{bottom:2.760000pt;}
.y1e_c00452{bottom:6.425219pt;}
.y1d_c00452{bottom:64.813333pt;}
.y1c_c00452{bottom:86.413333pt;}
.y1b_c00452{bottom:109.480000pt;}
.y1a_c00452{bottom:131.480000pt;}
.y19_c00452{bottom:152.813333pt;}
.y18_c00452{bottom:175.613333pt;}
.y17_c00452{bottom:197.746667pt;}
.y16_c00452{bottom:219.880000pt;}
.y15_c00452{bottom:242.413333pt;}
.y14_c00452{bottom:264.280000pt;}
.y13_c00452{bottom:285.613333pt;}
.y12_c00452{bottom:308.413333pt;}
.y11_c00452{bottom:330.680000pt;}
.y10_c00452{bottom:353.080000pt;}
.yf_c00452{bottom:375.080000pt;}
.ye_c00452{bottom:397.480000pt;}
.yd_c00452{bottom:419.746667pt;}
.yc_c00452{bottom:441.880000pt;}
.yb_c00452{bottom:463.613333pt;}
.ya_c00452{bottom:485.746667pt;}
.y9_c00452{bottom:507.880000pt;}
.y8_c00452{bottom:529.880000pt;}
.y7_c00452{bottom:552.013333pt;}
.y6_c00452{bottom:574.280000pt;}
.y5_c00452{bottom:596.413333pt;}
.y4_c00452{bottom:618.680000pt;}
.y3_c00452{bottom:640.813333pt;}
.y2_c00452{bottom:662.813333pt;}
.y1_c00452{bottom:707.080000pt;}
.h4_c00452{height:11.733399pt;}
.h5_c00452{height:38.937500pt;}
.h3_c00452{height:71.785156pt;}
.h2_c00452{height:77.654948pt;}
.h0_c00452{height:733.933333pt;}
.h1_c00452{height:734.000000pt;}
.w2_c00452{width:93.222667pt;}
.w1_c00452{width:508.666667pt;}
.w0_c00452{width:508.800000pt;}
.x0_c00452{left:0.000000pt;}
.x7_c00452{left:21.600000pt;}
.x9_c00452{left:24.533333pt;}
.xa_c00452{left:26.400000pt;}
.x8_c00452{left:27.600000pt;}
.x6_c00452{left:28.533333pt;}
.x5_c00452{left:30.266667pt;}
.x4_c00452{left:31.466667pt;}
.xb_c00452{left:48.000000pt;}
.x3_c00452{left:51.600000pt;}
.x2_c00452{left:140.133333pt;}
.x1_c00452{left:166.133333pt;}
.xd_c00452{left:211.568237pt;}
.xc_c00452{left:260.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_4b12a81a0444bdb4e1243996.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_9b483d21708c8522cb3816cc.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_90e6bd9460e1cdc650fbc25d.woff2')format("woff");}.ff3_c00453{font-family:ff3_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:ff4_c00453;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00453{font-family:ff4_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;}
.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;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:3.000000px;}
.ls0_c00453{letter-spacing:3.621000px;}
.ls3_c00453{letter-spacing:6.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;}
}
.ws2_c00453{word-spacing:-19.629000px;}
.ws3_c00453{word-spacing:-16.845000px;}
.ws0_c00453{word-spacing:-16.629000px;}
.ws1_c00453{word-spacing:-10.260000px;}
.ws4_c00453{word-spacing:0.000000px;}
._18_c00453{margin-left:-12.456000px;}
._3_c00453{margin-left:-10.488000px;}
._1c_c00453{margin-left:-9.246000px;}
._11_c00453{margin-left:-7.935000px;}
._10_c00453{margin-left:-6.693000px;}
._e_c00453{margin-left:-5.589000px;}
._d_c00453{margin-left:-3.864000px;}
._2_c00453{margin-left:-2.622000px;}
._1_c00453{margin-left:-1.311000px;}
._5_c00453{width:1.311000px;}
._4_c00453{width:2.622000px;}
._c_c00453{width:3.795000px;}
._6_c00453{width:4.968000px;}
._1b_c00453{width:6.003000px;}
._9_c00453{width:7.038000px;}
._7_c00453{width:8.901000px;}
._14_c00453{width:10.902000px;}
._8_c00453{width:12.903000px;}
._f_c00453{width:14.145000px;}
._b_c00453{width:15.939000px;}
._a_c00453{width:18.078000px;}
._12_c00453{width:21.081000px;}
._13_c00453{width:22.356000px;}
._19_c00453{width:24.429000px;}
._16_c00453{width:27.048000px;}
._15_c00453{width:31.119000px;}
._1d_c00453{width:52.578000px;}
._17_c00453{width:53.889000px;}
._1a_c00453{width:90.045000px;}
._0_c00453{width:325.161000px;}
.fc2_c00453{color:transparent;}
.fc1_c00453{color:rgb(128,128,128);}
.fc0_c00453{color:rgb(0,0,0);}
.fs3_c00453{font-size:45.000000px;}
.fs4_c00453{font-size:48.000000px;}
.fs2_c00453{font-size:57.000000px;}
.fs0_c00453{font-size:69.000000px;}
.fs1_c00453{font-size:75.000000px;}
.y0_c00453{bottom:0.000000px;}
.y23_c00453{bottom:3.105000px;}
.y22_c00453{bottom:7.228355px;}
.y1e_c00453{bottom:47.835000px;}
.y1d_c00453{bottom:74.235000px;}
.y1c_c00453{bottom:97.785000px;}
.y1b_c00453{bottom:123.885000px;}
.y1a_c00453{bottom:149.535000px;}
.y19_c00453{bottom:174.135000px;}
.y18_c00453{bottom:199.785000px;}
.y17_c00453{bottom:223.785000px;}
.y16_c00453{bottom:250.035000px;}
.y15_c00453{bottom:274.935000px;}
.y14_c00453{bottom:299.685000px;}
.y13_c00453{bottom:324.285000px;}
.y12_c00453{bottom:349.185000px;}
.y11_c00453{bottom:374.235000px;}
.y10_c00453{bottom:397.935000px;}
.y21_c00453{bottom:417.435000px;}
.yf_c00453{bottom:423.885000px;}
.y20_c00453{bottom:430.635000px;}
.ye_c00453{bottom:449.085000px;}
.yd_c00453{bottom:473.535000px;}
.yc_c00453{bottom:498.435000px;}
.y1f_c00453{bottom:513.885000px;}
.yb_c00453{bottom:523.335000px;}
.ya_c00453{bottom:548.385000px;}
.y9_c00453{bottom:572.385000px;}
.y8_c00453{bottom:597.735000px;}
.y7_c00453{bottom:623.235000px;}
.y6_c00453{bottom:647.985000px;}
.y5_c00453{bottom:672.585000px;}
.y4_c00453{bottom:697.635000px;}
.y3_c00453{bottom:722.535000px;}
.y2_c00453{bottom:747.435000px;}
.y1_c00453{bottom:771.735000px;}
.h6_c00453{height:13.200074px;}
.h7_c00453{height:43.804688px;}
.h5_c00453{height:56.975098px;}
.h4_c00453{height:72.168457px;}
.h2_c00453{height:87.361816px;}
.h3_c00453{height:94.958496px;}
.h0_c00453{height:815.925000px;}
.h1_c00453{height:816.000000px;}
.w2_c00453{width:104.875500px;}
.w0_c00453{width:563.775000px;}
.w1_c00453{width:564.000000px;}
.x0_c00453{left:0.000000px;}
.x7_c00453{left:27.600000px;}
.xb_c00453{left:30.000000px;}
.x6_c00453{left:43.500000px;}
.xc_c00453{left:45.150000px;}
.x9_c00453{left:88.500000px;}
.x8_c00453{left:90.450000px;}
.x5_c00453{left:91.500000px;}
.x4_c00453{left:93.450000px;}
.x2_c00453{left:94.500000px;}
.x3_c00453{left:95.850000px;}
.x1_c00453{left:106.650000px;}
.xd_c00453{left:233.701767px;}
.xa_c00453{left:511.350000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:2.666667pt;}
.ls0_c00453{letter-spacing:3.218667pt;}
.ls3_c00453{letter-spacing:5.333333pt;}
.ws2_c00453{word-spacing:-17.448000pt;}
.ws3_c00453{word-spacing:-14.973333pt;}
.ws0_c00453{word-spacing:-14.781333pt;}
.ws1_c00453{word-spacing:-9.120000pt;}
.ws4_c00453{word-spacing:0.000000pt;}
._18_c00453{margin-left:-11.072000pt;}
._3_c00453{margin-left:-9.322667pt;}
._1c_c00453{margin-left:-8.218667pt;}
._11_c00453{margin-left:-7.053333pt;}
._10_c00453{margin-left:-5.949333pt;}
._e_c00453{margin-left:-4.968000pt;}
._d_c00453{margin-left:-3.434667pt;}
._2_c00453{margin-left:-2.330667pt;}
._1_c00453{margin-left:-1.165333pt;}
._5_c00453{width:1.165333pt;}
._4_c00453{width:2.330667pt;}
._c_c00453{width:3.373333pt;}
._6_c00453{width:4.416000pt;}
._1b_c00453{width:5.336000pt;}
._9_c00453{width:6.256000pt;}
._7_c00453{width:7.912000pt;}
._14_c00453{width:9.690667pt;}
._8_c00453{width:11.469333pt;}
._f_c00453{width:12.573333pt;}
._b_c00453{width:14.168000pt;}
._a_c00453{width:16.069333pt;}
._12_c00453{width:18.738667pt;}
._13_c00453{width:19.872000pt;}
._19_c00453{width:21.714667pt;}
._16_c00453{width:24.042667pt;}
._15_c00453{width:27.661333pt;}
._1d_c00453{width:46.736000pt;}
._17_c00453{width:47.901333pt;}
._1a_c00453{width:80.040000pt;}
._0_c00453{width:289.032000pt;}
.fs3_c00453{font-size:40.000000pt;}
.fs4_c00453{font-size:42.666667pt;}
.fs2_c00453{font-size:50.666667pt;}
.fs0_c00453{font-size:61.333333pt;}
.fs1_c00453{font-size:66.666667pt;}
.y0_c00453{bottom:0.000000pt;}
.y23_c00453{bottom:2.760000pt;}
.y22_c00453{bottom:6.425204pt;}
.y1e_c00453{bottom:42.520000pt;}
.y1d_c00453{bottom:65.986667pt;}
.y1c_c00453{bottom:86.920000pt;}
.y1b_c00453{bottom:110.120000pt;}
.y1a_c00453{bottom:132.920000pt;}
.y19_c00453{bottom:154.786667pt;}
.y18_c00453{bottom:177.586667pt;}
.y17_c00453{bottom:198.920000pt;}
.y16_c00453{bottom:222.253333pt;}
.y15_c00453{bottom:244.386667pt;}
.y14_c00453{bottom:266.386667pt;}
.y13_c00453{bottom:288.253333pt;}
.y12_c00453{bottom:310.386667pt;}
.y11_c00453{bottom:332.653333pt;}
.y10_c00453{bottom:353.720000pt;}
.y21_c00453{bottom:371.053333pt;}
.yf_c00453{bottom:376.786667pt;}
.y20_c00453{bottom:382.786667pt;}
.ye_c00453{bottom:399.186667pt;}
.yd_c00453{bottom:420.920000pt;}
.yc_c00453{bottom:443.053333pt;}
.y1f_c00453{bottom:456.786667pt;}
.yb_c00453{bottom:465.186667pt;}
.ya_c00453{bottom:487.453333pt;}
.y9_c00453{bottom:508.786667pt;}
.y8_c00453{bottom:531.320000pt;}
.y7_c00453{bottom:553.986667pt;}
.y6_c00453{bottom:575.986667pt;}
.y5_c00453{bottom:597.853333pt;}
.y4_c00453{bottom:620.120000pt;}
.y3_c00453{bottom:642.253333pt;}
.y2_c00453{bottom:664.386667pt;}
.y1_c00453{bottom:685.986667pt;}
.h6_c00453{height:11.733399pt;}
.h7_c00453{height:38.937500pt;}
.h5_c00453{height:50.644531pt;}
.h4_c00453{height:64.149740pt;}
.h2_c00453{height:77.654948pt;}
.h3_c00453{height:84.407552pt;}
.h0_c00453{height:725.266667pt;}
.h1_c00453{height:725.333333pt;}
.w2_c00453{width:93.222667pt;}
.w0_c00453{width:501.133333pt;}
.w1_c00453{width:501.333333pt;}
.x0_c00453{left:0.000000pt;}
.x7_c00453{left:24.533333pt;}
.xb_c00453{left:26.666667pt;}
.x6_c00453{left:38.666667pt;}
.xc_c00453{left:40.133333pt;}
.x9_c00453{left:78.666667pt;}
.x8_c00453{left:80.400000pt;}
.x5_c00453{left:81.333333pt;}
.x4_c00453{left:83.066667pt;}
.x2_c00453{left:84.000000pt;}
.x3_c00453{left:85.200000pt;}
.x1_c00453{left:94.800000pt;}
.xd_c00453{left:207.734904pt;}
.xa_c00453{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_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_2a3ebadea0fb0d3442697ffa.woff2')format("woff");}.ff1_c00454{font-family:ff1_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:ff2_c00454;src:url('chunks/assets/font_d05bacfdb3610a71b5854626.woff2')format("woff");}.ff2_c00454{font-family:ff2_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:ff3_c00454;src:url('chunks/assets/font_c62237d2da207555ccace58f.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00454{font-family:ff4_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);}
.v0_c00454{vertical-align:0.000000px;}
.ls3_c00454{letter-spacing:-15.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.ls1_c00454{letter-spacing:3.000000px;}
.ls2_c00454{letter-spacing:6.000000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00454{word-spacing:-22.629000px;}
.ws3_c00454{word-spacing:-19.629000px;}
.ws0_c00454{word-spacing:-16.629000px;}
.ws4_c00454{word-spacing:0.000000px;}
.ws2_c00454{word-spacing:15.807000px;}
._7_c00454{margin-left:-21.114000px;}
._1d_c00454{margin-left:-18.423000px;}
._2_c00454{margin-left:-15.387000px;}
._1c_c00454{margin-left:-8.970000px;}
._14_c00454{margin-left:-5.625000px;}
._4_c00454{margin-left:-3.864000px;}
._3_c00454{margin-left:-2.553000px;}
._5_c00454{margin-left:-1.380000px;}
._12_c00454{width:1.035000px;}
._1_c00454{width:2.346000px;}
._b_c00454{width:4.002000px;}
._f_c00454{width:5.313000px;}
._0_c00454{width:7.107000px;}
._9_c00454{width:8.832000px;}
._a_c00454{width:10.833000px;}
._15_c00454{width:12.558000px;}
._10_c00454{width:14.145000px;}
._d_c00454{width:15.249000px;}
._e_c00454{width:16.560000px;}
._c_c00454{width:17.664000px;}
._16_c00454{width:20.838000px;}
._17_c00454{width:22.425000px;}
._13_c00454{width:26.601000px;}
._1a_c00454{width:31.878000px;}
._19_c00454{width:33.258000px;}
._18_c00454{width:34.707000px;}
._20_c00454{width:35.835000px;}
._1b_c00454{width:40.572000px;}
._6_c00454{width:59.280000px;}
._11_c00454{width:86.250000px;}
._22_c00454{width:111.861000px;}
._1e_c00454{width:182.850000px;}
._21_c00454{width:185.541000px;}
._1f_c00454{width:228.276000px;}
._8_c00454{width:395.853000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(128,128,128);}
.fc0_c00454{color:rgb(0,0,0);}
.fs1_c00454{font-size:48.000000px;}
.fs0_c00454{font-size:69.000000px;}
.y0_c00454{bottom:0.000000px;}
.y1c_c00454{bottom:3.105000px;}
.y1b_c00454{bottom:7.228363px;}
.y1a_c00454{bottom:73.800000px;}
.y19_c00454{bottom:97.200000px;}
.y18_c00454{bottom:122.100000px;}
.y17_c00454{bottom:145.050000px;}
.y16_c00454{bottom:171.750000px;}
.y15_c00454{bottom:196.350000px;}
.y14_c00454{bottom:221.700000px;}
.y13_c00454{bottom:246.000000px;}
.y12_c00454{bottom:271.350000px;}
.y11_c00454{bottom:296.550000px;}
.y10_c00454{bottom:345.300000px;}
.yf_c00454{bottom:396.450000px;}
.ye_c00454{bottom:421.200000px;}
.yd_c00454{bottom:445.800000px;}
.yc_c00454{bottom:470.850000px;}
.yb_c00454{bottom:519.450000px;}
.ya_c00454{bottom:569.250000px;}
.y9_c00454{bottom:594.300000px;}
.y8_c00454{bottom:619.350000px;}
.y7_c00454{bottom:645.000000px;}
.y6_c00454{bottom:668.850000px;}
.y5_c00454{bottom:693.450000px;}
.y4_c00454{bottom:718.800000px;}
.y3_c00454{bottom:743.400000px;}
.y2_c00454{bottom:768.150000px;}
.y1_c00454{bottom:793.500000px;}
.h3_c00454{height:13.200074px;}
.h4_c00454{height:43.804688px;}
.h2_c00454{height:80.758301px;}
.h1_c00454{height:87.361816px;}
.h0_c00454{height:823.500000px;}
.w2_c00454{width:104.875500px;}
.w0_c00454{width:571.350000px;}
.w1_c00454{width:571.500000px;}
.x0_c00454{left:0.000000px;}
.x8_c00454{left:32.400000px;}
.x7_c00454{left:37.500000px;}
.xa_c00454{left:39.150000px;}
.x4_c00454{left:40.500000px;}
.x3_c00454{left:41.550000px;}
.x2_c00454{left:65.100000px;}
.x5_c00454{left:66.600000px;}
.x9_c00454{left:166.800000px;}
.x6_c00454{left:175.200000px;}
.x1_c00454{left:193.650000px;}
.xc_c00454{left:237.489258px;}
.xb_c00454{left:463.050000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls3_c00454{letter-spacing:-13.333333pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ls1_c00454{letter-spacing:2.666667pt;}
.ls2_c00454{letter-spacing:5.333333pt;}
.ws1_c00454{word-spacing:-20.114667pt;}
.ws3_c00454{word-spacing:-17.448000pt;}
.ws0_c00454{word-spacing:-14.781333pt;}
.ws4_c00454{word-spacing:0.000000pt;}
.ws2_c00454{word-spacing:14.050667pt;}
._7_c00454{margin-left:-18.768000pt;}
._1d_c00454{margin-left:-16.376000pt;}
._2_c00454{margin-left:-13.677333pt;}
._1c_c00454{margin-left:-7.973333pt;}
._14_c00454{margin-left:-5.000000pt;}
._4_c00454{margin-left:-3.434667pt;}
._3_c00454{margin-left:-2.269333pt;}
._5_c00454{margin-left:-1.226667pt;}
._12_c00454{width:0.920000pt;}
._1_c00454{width:2.085333pt;}
._b_c00454{width:3.557333pt;}
._f_c00454{width:4.722667pt;}
._0_c00454{width:6.317333pt;}
._9_c00454{width:7.850667pt;}
._a_c00454{width:9.629333pt;}
._15_c00454{width:11.162667pt;}
._10_c00454{width:12.573333pt;}
._d_c00454{width:13.554667pt;}
._e_c00454{width:14.720000pt;}
._c_c00454{width:15.701333pt;}
._16_c00454{width:18.522667pt;}
._17_c00454{width:19.933333pt;}
._13_c00454{width:23.645333pt;}
._1a_c00454{width:28.336000pt;}
._19_c00454{width:29.562667pt;}
._18_c00454{width:30.850667pt;}
._20_c00454{width:31.853333pt;}
._1b_c00454{width:36.064000pt;}
._6_c00454{width:52.693333pt;}
._11_c00454{width:76.666667pt;}
._22_c00454{width:99.432000pt;}
._1e_c00454{width:162.533333pt;}
._21_c00454{width:164.925333pt;}
._1f_c00454{width:202.912000pt;}
._8_c00454{width:351.869333pt;}
.fs1_c00454{font-size:42.666667pt;}
.fs0_c00454{font-size:61.333333pt;}
.y0_c00454{bottom:0.000000pt;}
.y1c_c00454{bottom:2.760000pt;}
.y1b_c00454{bottom:6.425212pt;}
.y1a_c00454{bottom:65.600000pt;}
.y19_c00454{bottom:86.400000pt;}
.y18_c00454{bottom:108.533333pt;}
.y17_c00454{bottom:128.933333pt;}
.y16_c00454{bottom:152.666667pt;}
.y15_c00454{bottom:174.533333pt;}
.y14_c00454{bottom:197.066667pt;}
.y13_c00454{bottom:218.666667pt;}
.y12_c00454{bottom:241.200000pt;}
.y11_c00454{bottom:263.600000pt;}
.y10_c00454{bottom:306.933333pt;}
.yf_c00454{bottom:352.400000pt;}
.ye_c00454{bottom:374.400000pt;}
.yd_c00454{bottom:396.266667pt;}
.yc_c00454{bottom:418.533333pt;}
.yb_c00454{bottom:461.733333pt;}
.ya_c00454{bottom:506.000000pt;}
.y9_c00454{bottom:528.266667pt;}
.y8_c00454{bottom:550.533333pt;}
.y7_c00454{bottom:573.333333pt;}
.y6_c00454{bottom:594.533333pt;}
.y5_c00454{bottom:616.400000pt;}
.y4_c00454{bottom:638.933333pt;}
.y3_c00454{bottom:660.800000pt;}
.y2_c00454{bottom:682.800000pt;}
.y1_c00454{bottom:705.333333pt;}
.h3_c00454{height:11.733399pt;}
.h4_c00454{height:38.937500pt;}
.h2_c00454{height:71.785156pt;}
.h1_c00454{height:77.654948pt;}
.h0_c00454{height:732.000000pt;}
.w2_c00454{width:93.222667pt;}
.w0_c00454{width:507.866667pt;}
.w1_c00454{width:508.000000pt;}
.x0_c00454{left:0.000000pt;}
.x8_c00454{left:28.800000pt;}
.x7_c00454{left:33.333333pt;}
.xa_c00454{left:34.800000pt;}
.x4_c00454{left:36.000000pt;}
.x3_c00454{left:36.933333pt;}
.x2_c00454{left:57.866667pt;}
.x5_c00454{left:59.200000pt;}
.x9_c00454{left:148.266667pt;}
.x6_c00454{left:155.733333pt;}
.x1_c00454{left:172.133333pt;}
.xc_c00454{left:211.101563pt;}
.xb_c00454{left:411.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_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_faaa3ab964583a1a988f9c9c.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_038007be8f9c535a9f21eae3.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_a1f14dbd4ddc4f913782fc57.woff2')format("woff");}.ff3_c00455{font-family:ff3_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:ff4_c00455;src:url('chunks/assets/font_0b321682bd978d6dd2fdb66e.woff2')format("woff");}.ff4_c00455{font-family:ff4_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:ff5_c00455;src:url('chunks/assets/font_c8b54bb3fa4a75f3b946bb77.woff2')format("woff");}.ff5_c00455{font-family:ff5_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:ff6_c00455;src:url('chunks/assets/font_6f4b645db882a4eb6603c5a6.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;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_c00455;src:url('chunks/assets/font_dfb181282580e7d016f3e9f7.woff2')format("woff");}.ff7_c00455{font-family:ff7_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:ff8_c00455;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00455{font-family:ff8_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;}
.ls2_c00455{letter-spacing:-3.000000px;}
.ls1_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:3.000000px;}
.ls3_c00455{letter-spacing:9.000000px;}
.ls4_c00455{letter-spacing:18.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;}
}
.ws1_c00455{word-spacing:-39.100800px;}
.ws4_c00455{word-spacing:-34.629000px;}
.ws3_c00455{word-spacing:-30.000000px;}
.ws5_c00455{word-spacing:-19.629000px;}
.ws0_c00455{word-spacing:-19.050000px;}
.ws2_c00455{word-spacing:-16.629000px;}
.ws6_c00455{word-spacing:0.000000px;}
._21_c00455{margin-left:-48.279000px;}
._4_c00455{margin-left:-15.582000px;}
._26_c00455{margin-left:-14.235000px;}
._1e_c00455{margin-left:-12.225000px;}
._27_c00455{margin-left:-11.118000px;}
._e_c00455{margin-left:-9.810000px;}
._7_c00455{margin-left:-8.475000px;}
._6_c00455{margin-left:-6.975000px;}
._28_c00455{margin-left:-5.940000px;}
._5_c00455{margin-left:-4.875000px;}
._2_c00455{margin-left:-3.381000px;}
._3_c00455{margin-left:-2.070000px;}
._1b_c00455{margin-left:-1.035000px;}
._a_c00455{width:1.104000px;}
._8_c00455{width:2.277000px;}
._9_c00455{width:3.312000px;}
._b_c00455{width:4.554000px;}
._12_c00455{width:5.727000px;}
._0_c00455{width:6.900000px;}
._c_c00455{width:8.970000px;}
._1c_c00455{width:10.179000px;}
._19_c00455{width:11.316000px;}
._10_c00455{width:13.386000px;}
._14_c00455{width:15.363000px;}
._13_c00455{width:16.698000px;}
._18_c00455{width:17.760000px;}
._24_c00455{width:19.098000px;}
._f_c00455{width:20.631000px;}
._20_c00455{width:22.707000px;}
._23_c00455{width:23.973000px;}
._d_c00455{width:25.425000px;}
._29_c00455{width:26.451000px;}
._1d_c00455{width:27.714000px;}
._22_c00455{width:29.469000px;}
._1a_c00455{width:33.969000px;}
._17_c00455{width:35.562000px;}
._25_c00455{width:37.479000px;}
._16_c00455{width:57.903000px;}
._1f_c00455{width:168.840000px;}
._15_c00455{width:172.344000px;}
._11_c00455{width:285.177000px;}
._1_c00455{width:405.447000px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(128,128,128);}
.fc0_c00455{color:rgb(0,0,0);}
.fs6_c00455{font-size:39.000000px;}
.fs4_c00455{font-size:42.000000px;}
.fs8_c00455{font-size:48.000000px;}
.fs2_c00455{font-size:55.200000px;}
.fs5_c00455{font-size:57.000000px;}
.fs7_c00455{font-size:66.000000px;}
.fs0_c00455{font-size:69.000000px;}
.fs3_c00455{font-size:72.000000px;}
.fs1_c00455{font-size:75.000000px;}
.y0_c00455{bottom:0.000000px;}
.y1f_c00455{bottom:3.105000px;}
.y1e_c00455{bottom:7.228363px;}
.y1d_c00455{bottom:62.850000px;}
.y1c_c00455{bottom:85.500000px;}
.y1b_c00455{bottom:111.450000px;}
.y1a_c00455{bottom:136.800000px;}
.y19_c00455{bottom:186.600000px;}
.y18_c00455{bottom:212.250000px;}
.y17_c00455{bottom:260.850000px;}
.y16_c00455{bottom:308.850000px;}
.y15_c00455{bottom:326.400000px;}
.y14_c00455{bottom:343.950000px;}
.y13_c00455{bottom:361.500000px;}
.y12_c00455{bottom:379.350000px;}
.y11_c00455{bottom:396.900000px;}
.y10_c00455{bottom:414.450000px;}
.yf_c00455{bottom:435.750000px;}
.ye_c00455{bottom:459.450000px;}
.yd_c00455{bottom:484.650000px;}
.yc_c00455{bottom:510.000000px;}
.yb_c00455{bottom:534.300000px;}
.ya_c00455{bottom:559.350000px;}
.y9_c00455{bottom:583.950000px;}
.y8_c00455{bottom:609.150000px;}
.y7_c00455{bottom:634.200000px;}
.y6_c00455{bottom:659.550000px;}
.y5_c00455{bottom:683.850000px;}
.y4_c00455{bottom:708.450000px;}
.y3_c00455{bottom:732.450000px;}
.y2_c00455{bottom:758.400000px;}
.y1_c00455{bottom:783.000000px;}
.h8_c00455{height:13.200074px;}
.h9_c00455{height:43.804688px;}
.h5_c00455{height:44.814000px;}
.h6_c00455{height:72.168457px;}
.h3_c00455{height:87.361816px;}
.h2_c00455{height:87.780762px;}
.h4_c00455{height:91.160156px;}
.h7_c00455{height:94.958496px;}
.h1_c00455{height:827.250000px;}
.h0_c00455{height:827.550000px;}
.w2_c00455{width:104.875500px;}
.w0_c00455{width:572.100000px;}
.w1_c00455{width:572.250000px;}
.x0_c00455{left:0.000000px;}
.x3_c00455{left:34.500000px;}
.x9_c00455{left:84.750000px;}
.x6_c00455{left:97.500000px;}
.x2_c00455{left:99.000000px;}
.x4_c00455{left:100.200000px;}
.x5_c00455{left:102.600000px;}
.xb_c00455{left:109.950000px;}
.x1_c00455{left:111.450000px;}
.xc_c00455{left:124.200000px;}
.x8_c00455{left:133.350000px;}
.xa_c00455{left:206.250000px;}
.xe_c00455{left:237.864258px;}
.x7_c00455{left:440.700000px;}
.xd_c00455{left:514.050000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls2_c00455{letter-spacing:-2.666667pt;}
.ls1_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:2.666667pt;}
.ls3_c00455{letter-spacing:8.000000pt;}
.ls4_c00455{letter-spacing:16.000000pt;}
.ws1_c00455{word-spacing:-34.756267pt;}
.ws4_c00455{word-spacing:-30.781333pt;}
.ws3_c00455{word-spacing:-26.666667pt;}
.ws5_c00455{word-spacing:-17.448000pt;}
.ws0_c00455{word-spacing:-16.933333pt;}
.ws2_c00455{word-spacing:-14.781333pt;}
.ws6_c00455{word-spacing:0.000000pt;}
._21_c00455{margin-left:-42.914667pt;}
._4_c00455{margin-left:-13.850667pt;}
._26_c00455{margin-left:-12.653333pt;}
._1e_c00455{margin-left:-10.866667pt;}
._27_c00455{margin-left:-9.882667pt;}
._e_c00455{margin-left:-8.720000pt;}
._7_c00455{margin-left:-7.533333pt;}
._6_c00455{margin-left:-6.200000pt;}
._28_c00455{margin-left:-5.280000pt;}
._5_c00455{margin-left:-4.333333pt;}
._2_c00455{margin-left:-3.005333pt;}
._3_c00455{margin-left:-1.840000pt;}
._1b_c00455{margin-left:-0.920000pt;}
._a_c00455{width:0.981333pt;}
._8_c00455{width:2.024000pt;}
._9_c00455{width:2.944000pt;}
._b_c00455{width:4.048000pt;}
._12_c00455{width:5.090667pt;}
._0_c00455{width:6.133333pt;}
._c_c00455{width:7.973333pt;}
._1c_c00455{width:9.048000pt;}
._19_c00455{width:10.058667pt;}
._10_c00455{width:11.898667pt;}
._14_c00455{width:13.656000pt;}
._13_c00455{width:14.842667pt;}
._18_c00455{width:15.786667pt;}
._24_c00455{width:16.976000pt;}
._f_c00455{width:18.338667pt;}
._20_c00455{width:20.184000pt;}
._23_c00455{width:21.309333pt;}
._d_c00455{width:22.600000pt;}
._29_c00455{width:23.512000pt;}
._1d_c00455{width:24.634667pt;}
._22_c00455{width:26.194667pt;}
._1a_c00455{width:30.194667pt;}
._17_c00455{width:31.610667pt;}
._25_c00455{width:33.314667pt;}
._16_c00455{width:51.469333pt;}
._1f_c00455{width:150.080000pt;}
._15_c00455{width:153.194667pt;}
._11_c00455{width:253.490667pt;}
._1_c00455{width:360.397333pt;}
.fs6_c00455{font-size:34.666667pt;}
.fs4_c00455{font-size:37.333333pt;}
.fs8_c00455{font-size:42.666667pt;}
.fs2_c00455{font-size:49.066667pt;}
.fs5_c00455{font-size:50.666667pt;}
.fs7_c00455{font-size:58.666667pt;}
.fs0_c00455{font-size:61.333333pt;}
.fs3_c00455{font-size:64.000000pt;}
.fs1_c00455{font-size:66.666667pt;}
.y0_c00455{bottom:0.000000pt;}
.y1f_c00455{bottom:2.760000pt;}
.y1e_c00455{bottom:6.425212pt;}
.y1d_c00455{bottom:55.866667pt;}
.y1c_c00455{bottom:76.000000pt;}
.y1b_c00455{bottom:99.066667pt;}
.y1a_c00455{bottom:121.600000pt;}
.y19_c00455{bottom:165.866667pt;}
.y18_c00455{bottom:188.666667pt;}
.y17_c00455{bottom:231.866667pt;}
.y16_c00455{bottom:274.533333pt;}
.y15_c00455{bottom:290.133333pt;}
.y14_c00455{bottom:305.733333pt;}
.y13_c00455{bottom:321.333333pt;}
.y12_c00455{bottom:337.200000pt;}
.y11_c00455{bottom:352.800000pt;}
.y10_c00455{bottom:368.400000pt;}
.yf_c00455{bottom:387.333333pt;}
.ye_c00455{bottom:408.400000pt;}
.yd_c00455{bottom:430.800000pt;}
.yc_c00455{bottom:453.333333pt;}
.yb_c00455{bottom:474.933333pt;}
.ya_c00455{bottom:497.200000pt;}
.y9_c00455{bottom:519.066667pt;}
.y8_c00455{bottom:541.466667pt;}
.y7_c00455{bottom:563.733333pt;}
.y6_c00455{bottom:586.266667pt;}
.y5_c00455{bottom:607.866667pt;}
.y4_c00455{bottom:629.733333pt;}
.y3_c00455{bottom:651.066667pt;}
.y2_c00455{bottom:674.133333pt;}
.y1_c00455{bottom:696.000000pt;}
.h8_c00455{height:11.733399pt;}
.h9_c00455{height:38.937500pt;}
.h5_c00455{height:39.834667pt;}
.h6_c00455{height:64.149740pt;}
.h3_c00455{height:77.654948pt;}
.h2_c00455{height:78.027344pt;}
.h4_c00455{height:81.031250pt;}
.h7_c00455{height:84.407552pt;}
.h1_c00455{height:735.333333pt;}
.h0_c00455{height:735.600000pt;}
.w2_c00455{width:93.222667pt;}
.w0_c00455{width:508.533333pt;}
.w1_c00455{width:508.666667pt;}
.x0_c00455{left:0.000000pt;}
.x3_c00455{left:30.666667pt;}
.x9_c00455{left:75.333333pt;}
.x6_c00455{left:86.666667pt;}
.x2_c00455{left:88.000000pt;}
.x4_c00455{left:89.066667pt;}
.x5_c00455{left:91.200000pt;}
.xb_c00455{left:97.733333pt;}
.x1_c00455{left:99.066667pt;}
.xc_c00455{left:110.400000pt;}
.x8_c00455{left:118.533333pt;}
.xa_c00455{left:183.333333pt;}
.xe_c00455{left:211.434896pt;}
.x7_c00455{left:391.733333pt;}
.xd_c00455{left:456.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_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_4427e09ffbf402dd4b450b38.woff2')format("woff");}.ff1_c00456{font-family:ff1_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:ff2_c00456;src:url('chunks/assets/font_d107353182df70f4bab935c6.woff2')format("woff");}.ff2_c00456{font-family:ff2_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:ff3_c00456;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.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_86327a2fb4114e4b57158afc.woff2')format("woff");}.ff4_c00456{font-family:ff4_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:ff5_c00456;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00456{font-family:ff5_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;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls2_c00456{letter-spacing:3.000000px;}
.ls0_c00456{letter-spacing:15.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00456{word-spacing:-44.022000px;}
.ws3_c00456{word-spacing:-33.075000px;}
.ws0_c00456{word-spacing:-16.629000px;}
.ws4_c00456{word-spacing:0.000000px;}
.ws2_c00456{word-spacing:17.319000px;}
._22_c00456{margin-left:-20.625000px;}
._28_c00456{margin-left:-17.208000px;}
._1b_c00456{margin-left:-15.237000px;}
._3_c00456{margin-left:-13.896000px;}
._19_c00456{margin-left:-11.301000px;}
._18_c00456{margin-left:-9.639000px;}
._15_c00456{margin-left:-7.839000px;}
._0_c00456{margin-left:-5.976000px;}
._17_c00456{margin-left:-4.590000px;}
._1_c00456{margin-left:-3.240000px;}
._10_c00456{margin-left:-1.788000px;}
._8_c00456{width:1.152000px;}
._6_c00456{width:2.160000px;}
._5_c00456{width:3.795000px;}
._4_c00456{width:5.040000px;}
._9_c00456{width:6.843000px;}
._a_c00456{width:8.343000px;}
._2_c00456{width:9.648000px;}
._c_c00456{width:11.796000px;}
._16_c00456{width:13.377000px;}
._11_c00456{width:14.835000px;}
._e_c00456{width:15.966000px;}
._f_c00456{width:17.595000px;}
._24_c00456{width:18.945000px;}
._25_c00456{width:20.445000px;}
._d_c00456{width:22.377000px;}
._13_c00456{width:24.366000px;}
._1d_c00456{width:28.683000px;}
._1f_c00456{width:30.786000px;}
._1a_c00456{width:34.959000px;}
._1e_c00456{width:36.846000px;}
._26_c00456{width:42.309000px;}
._23_c00456{width:44.376000px;}
._b_c00456{width:47.043000px;}
._20_c00456{width:71.094000px;}
._14_c00456{width:104.556000px;}
._21_c00456{width:135.864000px;}
._27_c00456{width:152.784000px;}
._12_c00456{width:158.265000px;}
._7_c00456{width:393.162000px;}
._1c_c00456{width:580.041000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(128,128,128);}
.fc0_c00456{color:rgb(0,0,0);}
.fs6_c00456{font-size:48.000000px;}
.fs5_c00456{font-size:57.000000px;}
.fs2_c00456{font-size:66.000000px;}
.fs1_c00456{font-size:69.000000px;}
.fs0_c00456{font-size:72.000000px;}
.fs3_c00456{font-size:75.000000px;}
.fs4_c00456{font-size:81.000000px;}
.y0_c00456{bottom:0.000000px;}
.y1d_c00456{bottom:3.105000px;}
.y1c_c00456{bottom:7.228369px;}
.y1b_c00456{bottom:74.970000px;}
.y1a_c00456{bottom:105.870000px;}
.y19_c00456{bottom:132.270000px;}
.y18_c00456{bottom:157.170000px;}
.y17_c00456{bottom:181.470000px;}
.y16_c00456{bottom:206.220000px;}
.y15_c00456{bottom:231.870000px;}
.y14_c00456{bottom:281.820000px;}
.y13_c00456{bottom:307.020000px;}
.y12_c00456{bottom:355.620000px;}
.y11_c00456{bottom:431.370000px;}
.y10_c00456{bottom:456.270000px;}
.yf_c00456{bottom:481.320000px;}
.ye_c00456{bottom:505.920000px;}
.yd_c00456{bottom:530.820000px;}
.yc_c00456{bottom:555.570000px;}
.yb_c00456{bottom:580.770000px;}
.ya_c00456{bottom:605.070000px;}
.y9_c00456{bottom:630.720000px;}
.y8_c00456{bottom:654.120000px;}
.y7_c00456{bottom:679.320000px;}
.y6_c00456{bottom:704.670000px;}
.y1_c00456{bottom:712.170000px;}
.y5_c00456{bottom:729.270000px;}
.y4_c00456{bottom:753.870000px;}
.y3_c00456{bottom:778.320000px;}
.y2_c00456{bottom:802.470000px;}
.h8_c00456{height:13.200073px;}
.h9_c00456{height:43.804688px;}
.h7_c00456{height:72.168457px;}
.h4_c00456{height:80.758301px;}
.h3_c00456{height:87.361816px;}
.h2_c00456{height:91.160156px;}
.h5_c00456{height:94.958496px;}
.h6_c00456{height:102.555176px;}
.h1_c00456{height:839.250000px;}
.h0_c00456{height:839.400000px;}
.w2_c00456{width:104.875500px;}
.w0_c00456{width:582.375000px;}
.w1_c00456{width:582.750000px;}
.x0_c00456{left:0.000000px;}
.x3_c00456{left:37.500000px;}
.x4_c00456{left:39.750000px;}
.x5_c00456{left:40.800000px;}
.x6_c00456{left:42.150000px;}
.x9_c00456{left:43.500000px;}
.x8_c00456{left:67.050000px;}
.xa_c00456{left:68.250000px;}
.x7_c00456{left:143.400000px;}
.x2_c00456{left:206.550000px;}
.xc_c00456{left:243.001740px;}
.xb_c00456{left:475.200000px;}
.x1_c00456{left:497.850000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls2_c00456{letter-spacing:2.666667pt;}
.ls0_c00456{letter-spacing:13.333333pt;}
.ws1_c00456{word-spacing:-39.130667pt;}
.ws3_c00456{word-spacing:-29.400000pt;}
.ws0_c00456{word-spacing:-14.781333pt;}
.ws4_c00456{word-spacing:0.000000pt;}
.ws2_c00456{word-spacing:15.394667pt;}
._22_c00456{margin-left:-18.333333pt;}
._28_c00456{margin-left:-15.296000pt;}
._1b_c00456{margin-left:-13.544000pt;}
._3_c00456{margin-left:-12.352000pt;}
._19_c00456{margin-left:-10.045333pt;}
._18_c00456{margin-left:-8.568000pt;}
._15_c00456{margin-left:-6.968000pt;}
._0_c00456{margin-left:-5.312000pt;}
._17_c00456{margin-left:-4.080000pt;}
._1_c00456{margin-left:-2.880000pt;}
._10_c00456{margin-left:-1.589333pt;}
._8_c00456{width:1.024000pt;}
._6_c00456{width:1.920000pt;}
._5_c00456{width:3.373333pt;}
._4_c00456{width:4.480000pt;}
._9_c00456{width:6.082667pt;}
._a_c00456{width:7.416000pt;}
._2_c00456{width:8.576000pt;}
._c_c00456{width:10.485333pt;}
._16_c00456{width:11.890667pt;}
._11_c00456{width:13.186667pt;}
._e_c00456{width:14.192000pt;}
._f_c00456{width:15.640000pt;}
._24_c00456{width:16.840000pt;}
._25_c00456{width:18.173333pt;}
._d_c00456{width:19.890667pt;}
._13_c00456{width:21.658667pt;}
._1d_c00456{width:25.496000pt;}
._1f_c00456{width:27.365333pt;}
._1a_c00456{width:31.074667pt;}
._1e_c00456{width:32.752000pt;}
._26_c00456{width:37.608000pt;}
._23_c00456{width:39.445333pt;}
._b_c00456{width:41.816000pt;}
._20_c00456{width:63.194667pt;}
._14_c00456{width:92.938667pt;}
._21_c00456{width:120.768000pt;}
._27_c00456{width:135.808000pt;}
._12_c00456{width:140.680000pt;}
._7_c00456{width:349.477333pt;}
._1c_c00456{width:515.592000pt;}
.fs6_c00456{font-size:42.666667pt;}
.fs5_c00456{font-size:50.666667pt;}
.fs2_c00456{font-size:58.666667pt;}
.fs1_c00456{font-size:61.333333pt;}
.fs0_c00456{font-size:64.000000pt;}
.fs3_c00456{font-size:66.666667pt;}
.fs4_c00456{font-size:72.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y1d_c00456{bottom:2.760000pt;}
.y1c_c00456{bottom:6.425217pt;}
.y1b_c00456{bottom:66.640000pt;}
.y1a_c00456{bottom:94.106667pt;}
.y19_c00456{bottom:117.573333pt;}
.y18_c00456{bottom:139.706667pt;}
.y17_c00456{bottom:161.306667pt;}
.y16_c00456{bottom:183.306667pt;}
.y15_c00456{bottom:206.106667pt;}
.y14_c00456{bottom:250.506667pt;}
.y13_c00456{bottom:272.906667pt;}
.y12_c00456{bottom:316.106667pt;}
.y11_c00456{bottom:383.440000pt;}
.y10_c00456{bottom:405.573333pt;}
.yf_c00456{bottom:427.840000pt;}
.ye_c00456{bottom:449.706667pt;}
.yd_c00456{bottom:471.840000pt;}
.yc_c00456{bottom:493.840000pt;}
.yb_c00456{bottom:516.240000pt;}
.ya_c00456{bottom:537.840000pt;}
.y9_c00456{bottom:560.640000pt;}
.y8_c00456{bottom:581.440000pt;}
.y7_c00456{bottom:603.840000pt;}
.y6_c00456{bottom:626.373333pt;}
.y1_c00456{bottom:633.040000pt;}
.y5_c00456{bottom:648.240000pt;}
.y4_c00456{bottom:670.106667pt;}
.y3_c00456{bottom:691.840000pt;}
.y2_c00456{bottom:713.306667pt;}
.h8_c00456{height:11.733399pt;}
.h9_c00456{height:38.937500pt;}
.h7_c00456{height:64.149740pt;}
.h4_c00456{height:71.785156pt;}
.h3_c00456{height:77.654948pt;}
.h2_c00456{height:81.031250pt;}
.h5_c00456{height:84.407552pt;}
.h6_c00456{height:91.160156pt;}
.h1_c00456{height:746.000000pt;}
.h0_c00456{height:746.133333pt;}
.w2_c00456{width:93.222667pt;}
.w0_c00456{width:517.666667pt;}
.w1_c00456{width:518.000000pt;}
.x0_c00456{left:0.000000pt;}
.x3_c00456{left:33.333333pt;}
.x4_c00456{left:35.333333pt;}
.x5_c00456{left:36.266667pt;}
.x6_c00456{left:37.466667pt;}
.x9_c00456{left:38.666667pt;}
.x8_c00456{left:59.600000pt;}
.xa_c00456{left:60.666667pt;}
.x7_c00456{left:127.466667pt;}
.x2_c00456{left:183.600000pt;}
.xc_c00456{left:216.001546pt;}
.xb_c00456{left:422.400000pt;}
.x1_c00456{left:442.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_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_ff1985f983bef39d76c43179.woff2')format("woff");}.ff1_c00457{font-family:ff1_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:ff2_c00457;src:url('chunks/assets/font_a2015d086536361d6f28f4f4.woff2')format("woff");}.ff2_c00457{font-family:ff2_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:ff3_c00457;src:url('chunks/assets/font_c46b0585b81e40c7b59401ca.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_9268461a2a14046e9750194c.woff2')format("woff");}.ff4_c00457{font-family:ff4_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:ff5_c00457;src:url('chunks/assets/font_6bc24caa91f66ed05b830e81.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;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_c00457;src:url('chunks/assets/font_4d4ff98d06eca3cf9833205a.woff2')format("woff");}.ff6_c00457{font-family:ff6_c00457;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00457;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00457{font-family:ff7_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;}
.lsa_c00457{letter-spacing:-3.000000px;}
.ls7_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:1.146000px;}
.ls8_c00457{letter-spacing:3.000000px;}
.ls4_c00457{letter-spacing:6.600000px;}
.ls1_c00457{letter-spacing:7.200000px;}
.lsb_c00457{letter-spacing:9.000000px;}
.ls2_c00457{letter-spacing:9.600000px;}
.ls6_c00457{letter-spacing:15.600000px;}
.ls5_c00457{letter-spacing:16.800000px;}
.ls3_c00457{letter-spacing:18.000000px;}
.ls9_c00457{letter-spacing:24.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00457{word-spacing:-18.798000px;}
.ws2_c00457{word-spacing:0.000000px;}
.ws0_c00457{word-spacing:2.898000px;}
._2b_c00457{margin-left:-39.648000px;}
._2d_c00457{margin-left:-22.512000px;}
._2f_c00457{margin-left:-21.462000px;}
._23_c00457{margin-left:-20.079000px;}
._22_c00457{margin-left:-16.905000px;}
._2_c00457{margin-left:-15.111000px;}
._7_c00457{margin-left:-14.076000px;}
._32_c00457{margin-left:-12.933000px;}
._20_c00457{margin-left:-11.637000px;}
._14_c00457{margin-left:-10.017000px;}
._12_c00457{margin-left:-8.004000px;}
._18_c00457{margin-left:-6.984000px;}
._b_c00457{margin-left:-5.658000px;}
._10_c00457{margin-left:-4.050000px;}
._13_c00457{margin-left:-2.850000px;}
._3_c00457{margin-left:-1.518000px;}
._0_c00457{width:1.656000px;}
._1_c00457{width:2.691000px;}
._5_c00457{width:3.933000px;}
._4_c00457{width:5.175000px;}
._6_c00457{width:6.309000px;}
._11_c00457{width:7.383000px;}
._15_c00457{width:8.877000px;}
._1f_c00457{width:9.936000px;}
._8_c00457{width:11.523000px;}
._16_c00457{width:12.972000px;}
._19_c00457{width:14.595000px;}
._17_c00457{width:15.720000px;}
._9_c00457{width:16.905000px;}
._f_c00457{width:18.492000px;}
._26_c00457{width:19.695000px;}
._a_c00457{width:21.045000px;}
._e_c00457{width:22.479000px;}
._1d_c00457{width:24.012000px;}
._c_c00457{width:26.565000px;}
._d_c00457{width:31.119000px;}
._1b_c00457{width:36.081000px;}
._28_c00457{width:37.497000px;}
._1c_c00457{width:43.515000px;}
._25_c00457{width:44.982000px;}
._2e_c00457{width:72.303000px;}
._30_c00457{width:97.524000px;}
._2c_c00457{width:105.630000px;}
._24_c00457{width:116.610000px;}
._1a_c00457{width:120.885000px;}
._27_c00457{width:164.427000px;}
._33_c00457{width:173.133000px;}
._21_c00457{width:232.791000px;}
._2a_c00457{width:302.094000px;}
._31_c00457{width:321.972000px;}
._1e_c00457{width:345.138000px;}
._29_c00457{width:1200.165000px;}
.fc2_c00457{color:transparent;}
.fc1_c00457{color:rgb(128,128,128);}
.fc0_c00457{color:rgb(0,0,0);}
.fs2_c00457{font-size:42.000000px;}
.fs5_c00457{font-size:48.000000px;}
.fs1_c00457{font-size:66.000000px;}
.fs0_c00457{font-size:69.000000px;}
.fs3_c00457{font-size:75.000000px;}
.fs4_c00457{font-size:78.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1e_c00457{bottom:3.105000px;}
.y1d_c00457{bottom:7.228363px;}
.y1c_c00457{bottom:58.650000px;}
.y1b_c00457{bottom:82.050000px;}
.y1a_c00457{bottom:106.950000px;}
.y19_c00457{bottom:133.200000px;}
.y18_c00457{bottom:158.550000px;}
.y17_c00457{bottom:183.600000px;}
.y16_c00457{bottom:209.550000px;}
.y15_c00457{bottom:214.650000px;}
.y14_c00457{bottom:233.550000px;}
.y13_c00457{bottom:283.800000px;}
.y12_c00457{bottom:308.700000px;}
.y11_c00457{bottom:333.150000px;}
.y10_c00457{bottom:358.350000px;}
.yf_c00457{bottom:383.100000px;}
.ye_c00457{bottom:408.300000px;}
.yd_c00457{bottom:433.050000px;}
.yc_c00457{bottom:458.250000px;}
.yb_c00457{bottom:483.300000px;}
.ya_c00457{bottom:508.200000px;}
.y9_c00457{bottom:558.150000px;}
.y8_c00457{bottom:607.200000px;}
.y7_c00457{bottom:632.100000px;}
.y6_c00457{bottom:657.150000px;}
.y5_c00457{bottom:682.200000px;}
.y4_c00457{bottom:706.800000px;}
.y3_c00457{bottom:731.100000px;}
.y2_c00457{bottom:756.450000px;}
.y1_c00457{bottom:781.350000px;}
.h7_c00457{height:13.200074px;}
.h8_c00457{height:43.804688px;}
.h4_c00457{height:44.814000px;}
.h3_c00457{height:80.758301px;}
.h2_c00457{height:87.361816px;}
.h5_c00457{height:94.958496px;}
.h6_c00457{height:98.756836px;}
.h1_c00457{height:827.250000px;}
.h0_c00457{height:827.550000px;}
.w2_c00457{width:104.875500px;}
.w0_c00457{width:572.100000px;}
.w1_c00457{width:572.250000px;}
.x0_c00457{left:0.000000px;}
.x6_c00457{left:34.050000px;}
.x8_c00457{left:36.900000px;}
.xb_c00457{left:41.250000px;}
.xf_c00457{left:70.650000px;}
.x9_c00457{left:88.500000px;}
.x7_c00457{left:97.650000px;}
.xe_c00457{left:99.900000px;}
.x2_c00457{left:101.550000px;}
.x3_c00457{left:102.600000px;}
.x5_c00457{left:126.600000px;}
.xd_c00457{left:128.250000px;}
.x4_c00457{left:175.650000px;}
.xa_c00457{left:228.900000px;}
.x11_c00457{left:237.864258px;}
.x1_c00457{left:258.150000px;}
.xc_c00457{left:301.500000px;}
.x10_c00457{left:501.150000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.lsa_c00457{letter-spacing:-2.666667pt;}
.ls7_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:1.018667pt;}
.ls8_c00457{letter-spacing:2.666667pt;}
.ls4_c00457{letter-spacing:5.866667pt;}
.ls1_c00457{letter-spacing:6.400000pt;}
.lsb_c00457{letter-spacing:8.000000pt;}
.ls2_c00457{letter-spacing:8.533333pt;}
.ls6_c00457{letter-spacing:13.866667pt;}
.ls5_c00457{letter-spacing:14.933333pt;}
.ls3_c00457{letter-spacing:16.000000pt;}
.ls9_c00457{letter-spacing:21.333333pt;}
.ws1_c00457{word-spacing:-16.709333pt;}
.ws2_c00457{word-spacing:0.000000pt;}
.ws0_c00457{word-spacing:2.576000pt;}
._2b_c00457{margin-left:-35.242667pt;}
._2d_c00457{margin-left:-20.010667pt;}
._2f_c00457{margin-left:-19.077333pt;}
._23_c00457{margin-left:-17.848000pt;}
._22_c00457{margin-left:-15.026667pt;}
._2_c00457{margin-left:-13.432000pt;}
._7_c00457{margin-left:-12.512000pt;}
._32_c00457{margin-left:-11.496000pt;}
._20_c00457{margin-left:-10.344000pt;}
._14_c00457{margin-left:-8.904000pt;}
._12_c00457{margin-left:-7.114667pt;}
._18_c00457{margin-left:-6.208000pt;}
._b_c00457{margin-left:-5.029333pt;}
._10_c00457{margin-left:-3.600000pt;}
._13_c00457{margin-left:-2.533333pt;}
._3_c00457{margin-left:-1.349333pt;}
._0_c00457{width:1.472000pt;}
._1_c00457{width:2.392000pt;}
._5_c00457{width:3.496000pt;}
._4_c00457{width:4.600000pt;}
._6_c00457{width:5.608000pt;}
._11_c00457{width:6.562667pt;}
._15_c00457{width:7.890667pt;}
._1f_c00457{width:8.832000pt;}
._8_c00457{width:10.242667pt;}
._16_c00457{width:11.530667pt;}
._19_c00457{width:12.973333pt;}
._17_c00457{width:13.973333pt;}
._9_c00457{width:15.026667pt;}
._f_c00457{width:16.437333pt;}
._26_c00457{width:17.506667pt;}
._a_c00457{width:18.706667pt;}
._e_c00457{width:19.981333pt;}
._1d_c00457{width:21.344000pt;}
._c_c00457{width:23.613333pt;}
._d_c00457{width:27.661333pt;}
._1b_c00457{width:32.072000pt;}
._28_c00457{width:33.330667pt;}
._1c_c00457{width:38.680000pt;}
._25_c00457{width:39.984000pt;}
._2e_c00457{width:64.269333pt;}
._30_c00457{width:86.688000pt;}
._2c_c00457{width:93.893333pt;}
._24_c00457{width:103.653333pt;}
._1a_c00457{width:107.453333pt;}
._27_c00457{width:146.157333pt;}
._33_c00457{width:153.896000pt;}
._21_c00457{width:206.925333pt;}
._2a_c00457{width:268.528000pt;}
._31_c00457{width:286.197333pt;}
._1e_c00457{width:306.789333pt;}
._29_c00457{width:1066.813333pt;}
.fs2_c00457{font-size:37.333333pt;}
.fs5_c00457{font-size:42.666667pt;}
.fs1_c00457{font-size:58.666667pt;}
.fs0_c00457{font-size:61.333333pt;}
.fs3_c00457{font-size:66.666667pt;}
.fs4_c00457{font-size:69.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y1e_c00457{bottom:2.760000pt;}
.y1d_c00457{bottom:6.425212pt;}
.y1c_c00457{bottom:52.133333pt;}
.y1b_c00457{bottom:72.933333pt;}
.y1a_c00457{bottom:95.066667pt;}
.y19_c00457{bottom:118.400000pt;}
.y18_c00457{bottom:140.933333pt;}
.y17_c00457{bottom:163.200000pt;}
.y16_c00457{bottom:186.266667pt;}
.y15_c00457{bottom:190.800000pt;}
.y14_c00457{bottom:207.600000pt;}
.y13_c00457{bottom:252.266667pt;}
.y12_c00457{bottom:274.400000pt;}
.y11_c00457{bottom:296.133333pt;}
.y10_c00457{bottom:318.533333pt;}
.yf_c00457{bottom:340.533333pt;}
.ye_c00457{bottom:362.933333pt;}
.yd_c00457{bottom:384.933333pt;}
.yc_c00457{bottom:407.333333pt;}
.yb_c00457{bottom:429.600000pt;}
.ya_c00457{bottom:451.733333pt;}
.y9_c00457{bottom:496.133333pt;}
.y8_c00457{bottom:539.733333pt;}
.y7_c00457{bottom:561.866667pt;}
.y6_c00457{bottom:584.133333pt;}
.y5_c00457{bottom:606.400000pt;}
.y4_c00457{bottom:628.266667pt;}
.y3_c00457{bottom:649.866667pt;}
.y2_c00457{bottom:672.400000pt;}
.y1_c00457{bottom:694.533333pt;}
.h7_c00457{height:11.733399pt;}
.h8_c00457{height:38.937500pt;}
.h4_c00457{height:39.834667pt;}
.h3_c00457{height:71.785156pt;}
.h2_c00457{height:77.654948pt;}
.h5_c00457{height:84.407552pt;}
.h6_c00457{height:87.783854pt;}
.h1_c00457{height:735.333333pt;}
.h0_c00457{height:735.600000pt;}
.w2_c00457{width:93.222667pt;}
.w0_c00457{width:508.533333pt;}
.w1_c00457{width:508.666667pt;}
.x0_c00457{left:0.000000pt;}
.x6_c00457{left:30.266667pt;}
.x8_c00457{left:32.800000pt;}
.xb_c00457{left:36.666667pt;}
.xf_c00457{left:62.800000pt;}
.x9_c00457{left:78.666667pt;}
.x7_c00457{left:86.800000pt;}
.xe_c00457{left:88.800000pt;}
.x2_c00457{left:90.266667pt;}
.x3_c00457{left:91.200000pt;}
.x5_c00457{left:112.533333pt;}
.xd_c00457{left:114.000000pt;}
.x4_c00457{left:156.133333pt;}
.xa_c00457{left:203.466667pt;}
.x11_c00457{left:211.434896pt;}
.x1_c00457{left:229.466667pt;}
.xc_c00457{left:268.000000pt;}
.x10_c00457{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_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_6f540fdd9ec00f400020d191.woff2')format("woff");}.ff1_c00458{font-family:ff1_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:ff2_c00458;src:url('chunks/assets/font_71eb8ddc841b120818647d57.woff2')format("woff");}.ff2_c00458{font-family:ff2_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:ff3_c00458;src:url('chunks/assets/font_1f9e4794c8c2566f42ca8659.woff2')format("woff");}.ff3_c00458{font-family:ff3_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:ff4_c00458;src:url('chunks/assets/font_06678107a3f411f0302d04e2.woff2')format("woff");}.ff4_c00458{font-family:ff4_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:ff5_c00458;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00458{font-family:ff5_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:0.000000px;}
.ls3_c00458{letter-spacing:3.000000px;}
.ls0_c00458{letter-spacing:19.725000px;}
.ls1_c00458{letter-spacing:27.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:-28.920000px;}
.ws0_c00458{word-spacing:-16.629000px;}
.ws2_c00458{word-spacing:0.000000px;}
._28_c00458{margin-left:-55.341000px;}
._24_c00458{margin-left:-42.237000px;}
._25_c00458{margin-left:-39.897000px;}
._26_c00458{margin-left:-33.813000px;}
._3_c00458{margin-left:-31.473000px;}
._1b_c00458{margin-left:-27.876000px;}
._4_c00458{margin-left:-23.400000px;}
._29_c00458{margin-left:-22.215000px;}
._27_c00458{margin-left:-19.773000px;}
._6_c00458{margin-left:-15.912000px;}
._2d_c00458{margin-left:-14.550000px;}
._d_c00458{margin-left:-13.179000px;}
._c_c00458{margin-left:-11.523000px;}
._2a_c00458{margin-left:-9.480000px;}
._f_c00458{margin-left:-7.899000px;}
._e_c00458{margin-left:-6.003000px;}
._14_c00458{margin-left:-4.893000px;}
._7_c00458{margin-left:-3.861000px;}
._1_c00458{margin-left:-2.484000px;}
._19_c00458{margin-left:-1.329000px;}
._8_c00458{width:1.104000px;}
._9_c00458{width:2.967000px;}
._a_c00458{width:4.587000px;}
._0_c00458{width:5.934000px;}
._15_c00458{width:7.383000px;}
._17_c00458{width:8.616000px;}
._1f_c00458{width:10.494000px;}
._16_c00458{width:12.390000px;}
._20_c00458{width:14.334000px;}
._18_c00458{width:15.801000px;}
._12_c00458{width:17.298000px;}
._11_c00458{width:18.492000px;}
._2c_c00458{width:19.842000px;}
._22_c00458{width:20.961000px;}
._10_c00458{width:22.365000px;}
._21_c00458{width:32.814000px;}
._b_c00458{width:36.222000px;}
._1a_c00458{width:38.094000px;}
._1d_c00458{width:50.088000px;}
._23_c00458{width:52.092000px;}
._1e_c00458{width:100.290000px;}
._13_c00458{width:105.762000px;}
._5_c00458{width:137.592000px;}
._1c_c00458{width:170.568000px;}
._2b_c00458{width:294.519000px;}
._2_c00458{width:410.088000px;}
._2f_c00458{width:492.264000px;}
._2e_c00458{width:822.912000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(128,128,128);}
.fc0_c00458{color:rgb(0,0,0);}
.fs4_c00458{font-size:48.000000px;}
.fs2_c00458{font-size:66.000000px;}
.fs0_c00458{font-size:69.000000px;}
.fs1_c00458{font-size:117.000000px;}
.fs3_c00458{font-size:120.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1e_c00458{bottom:3.105000px;}
.y1d_c00458{bottom:7.228363px;}
.y1c_c00458{bottom:61.800000px;}
.y1b_c00458{bottom:87.300000px;}
.y1a_c00458{bottom:112.650000px;}
.y19_c00458{bottom:138.300000px;}
.y18_c00458{bottom:163.050000px;}
.y17_c00458{bottom:188.250000px;}
.y16_c00458{bottom:213.300000px;}
.y15_c00458{bottom:238.200000px;}
.y14_c00458{bottom:287.250000px;}
.y13_c00458{bottom:337.500000px;}
.y12_c00458{bottom:362.400000px;}
.y11_c00458{bottom:387.150000px;}
.y10_c00458{bottom:411.450000px;}
.yf_c00458{bottom:436.950000px;}
.ye_c00458{bottom:461.700000px;}
.yd_c00458{bottom:486.600000px;}
.yc_c00458{bottom:510.900000px;}
.yb_c00458{bottom:535.950000px;}
.ya_c00458{bottom:560.550000px;}
.y9_c00458{bottom:585.600000px;}
.y8_c00458{bottom:610.500000px;}
.y7_c00458{bottom:635.400000px;}
.y6_c00458{bottom:660.450000px;}
.y5_c00458{bottom:685.350000px;}
.y4_c00458{bottom:710.400000px;}
.y3_c00458{bottom:734.700000px;}
.y2_c00458{bottom:759.600000px;}
.y1_c00458{bottom:782.700000px;}
.h6_c00458{height:13.200074px;}
.h7_c00458{height:43.804688px;}
.h4_c00458{height:80.758301px;}
.h3_c00458{height:87.361816px;}
.h2_c00458{height:148.135254px;}
.h5_c00458{height:151.933594px;}
.h0_c00458{height:831.600000px;}
.h1_c00458{height:831.750000px;}
.w1_c00458{width:104.875500px;}
.w0_c00458{width:576.750000px;}
.x0_c00458{left:0.000000px;}
.x9_c00458{left:26.550000px;}
.x6_c00458{left:28.950000px;}
.x2_c00458{left:30.750000px;}
.x3_c00458{left:32.400000px;}
.x5_c00458{left:34.050000px;}
.x4_c00458{left:35.400000px;}
.x8_c00458{left:55.050000px;}
.xb_c00458{left:57.300000px;}
.xa_c00458{left:63.750000px;}
.x7_c00458{left:156.600000px;}
.x1_c00458{left:196.350000px;}
.xc_c00458{left:240.189240px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls2_c00458{letter-spacing:0.000000pt;}
.ls3_c00458{letter-spacing:2.666667pt;}
.ls0_c00458{letter-spacing:17.533333pt;}
.ls1_c00458{letter-spacing:24.000000pt;}
.ws1_c00458{word-spacing:-25.706667pt;}
.ws0_c00458{word-spacing:-14.781333pt;}
.ws2_c00458{word-spacing:0.000000pt;}
._28_c00458{margin-left:-49.192000pt;}
._24_c00458{margin-left:-37.544000pt;}
._25_c00458{margin-left:-35.464000pt;}
._26_c00458{margin-left:-30.056000pt;}
._3_c00458{margin-left:-27.976000pt;}
._1b_c00458{margin-left:-24.778667pt;}
._4_c00458{margin-left:-20.800000pt;}
._29_c00458{margin-left:-19.746667pt;}
._27_c00458{margin-left:-17.576000pt;}
._6_c00458{margin-left:-14.144000pt;}
._2d_c00458{margin-left:-12.933333pt;}
._d_c00458{margin-left:-11.714667pt;}
._c_c00458{margin-left:-10.242667pt;}
._2a_c00458{margin-left:-8.426667pt;}
._f_c00458{margin-left:-7.021333pt;}
._e_c00458{margin-left:-5.336000pt;}
._14_c00458{margin-left:-4.349333pt;}
._7_c00458{margin-left:-3.432000pt;}
._1_c00458{margin-left:-2.208000pt;}
._19_c00458{margin-left:-1.181333pt;}
._8_c00458{width:0.981333pt;}
._9_c00458{width:2.637333pt;}
._a_c00458{width:4.077333pt;}
._0_c00458{width:5.274667pt;}
._15_c00458{width:6.562667pt;}
._17_c00458{width:7.658667pt;}
._1f_c00458{width:9.328000pt;}
._16_c00458{width:11.013333pt;}
._20_c00458{width:12.741333pt;}
._18_c00458{width:14.045333pt;}
._12_c00458{width:15.376000pt;}
._11_c00458{width:16.437333pt;}
._2c_c00458{width:17.637333pt;}
._22_c00458{width:18.632000pt;}
._10_c00458{width:19.880000pt;}
._21_c00458{width:29.168000pt;}
._b_c00458{width:32.197333pt;}
._1a_c00458{width:33.861333pt;}
._1d_c00458{width:44.522667pt;}
._23_c00458{width:46.304000pt;}
._1e_c00458{width:89.146667pt;}
._13_c00458{width:94.010667pt;}
._5_c00458{width:122.304000pt;}
._1c_c00458{width:151.616000pt;}
._2b_c00458{width:261.794667pt;}
._2_c00458{width:364.522667pt;}
._2f_c00458{width:437.568000pt;}
._2e_c00458{width:731.477333pt;}
.fs4_c00458{font-size:42.666667pt;}
.fs2_c00458{font-size:58.666667pt;}
.fs0_c00458{font-size:61.333333pt;}
.fs1_c00458{font-size:104.000000pt;}
.fs3_c00458{font-size:106.666667pt;}
.y0_c00458{bottom:0.000000pt;}
.y1e_c00458{bottom:2.760000pt;}
.y1d_c00458{bottom:6.425212pt;}
.y1c_c00458{bottom:54.933333pt;}
.y1b_c00458{bottom:77.600000pt;}
.y1a_c00458{bottom:100.133333pt;}
.y19_c00458{bottom:122.933333pt;}
.y18_c00458{bottom:144.933333pt;}
.y17_c00458{bottom:167.333333pt;}
.y16_c00458{bottom:189.600000pt;}
.y15_c00458{bottom:211.733333pt;}
.y14_c00458{bottom:255.333333pt;}
.y13_c00458{bottom:300.000000pt;}
.y12_c00458{bottom:322.133333pt;}
.y11_c00458{bottom:344.133333pt;}
.y10_c00458{bottom:365.733333pt;}
.yf_c00458{bottom:388.400000pt;}
.ye_c00458{bottom:410.400000pt;}
.yd_c00458{bottom:432.533333pt;}
.yc_c00458{bottom:454.133333pt;}
.yb_c00458{bottom:476.400000pt;}
.ya_c00458{bottom:498.266667pt;}
.y9_c00458{bottom:520.533333pt;}
.y8_c00458{bottom:542.666667pt;}
.y7_c00458{bottom:564.800000pt;}
.y6_c00458{bottom:587.066667pt;}
.y5_c00458{bottom:609.200000pt;}
.y4_c00458{bottom:631.466667pt;}
.y3_c00458{bottom:653.066667pt;}
.y2_c00458{bottom:675.200000pt;}
.y1_c00458{bottom:695.733333pt;}
.h6_c00458{height:11.733399pt;}
.h7_c00458{height:38.937500pt;}
.h4_c00458{height:71.785156pt;}
.h3_c00458{height:77.654948pt;}
.h2_c00458{height:131.675781pt;}
.h5_c00458{height:135.052083pt;}
.h0_c00458{height:739.200000pt;}
.h1_c00458{height:739.333333pt;}
.w1_c00458{width:93.222667pt;}
.w0_c00458{width:512.666667pt;}
.x0_c00458{left:0.000000pt;}
.x9_c00458{left:23.600000pt;}
.x6_c00458{left:25.733333pt;}
.x2_c00458{left:27.333333pt;}
.x3_c00458{left:28.800000pt;}
.x5_c00458{left:30.266667pt;}
.x4_c00458{left:31.466667pt;}
.x8_c00458{left:48.933333pt;}
.xb_c00458{left:50.933333pt;}
.xa_c00458{left:56.666667pt;}
.x7_c00458{left:139.200000pt;}
.x1_c00458{left:174.533333pt;}
.xc_c00458{left:213.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_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_213aa53f4821d55a5646b118.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_355170a990dca43479978e4a.woff2')format("woff");}.ff2_c00459{font-family:ff2_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:ff3_c00459;src:url('chunks/assets/font_9dabd6cee4a6efadccced499.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_5ebb90bd2386677414b69ca6.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;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_c00459;src:url('chunks/assets/font_1e24511b18caca10ddc794be.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;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_c00459;src:url('chunks/assets/font_42849695bb39d47047d03398.woff2')format("woff");}.ff6_c00459{font-family:ff6_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:ff7_c00459;src:url('chunks/assets/font_4dac43cf2f8dc362ac475701.woff2')format("woff");}.ff7_c00459{font-family:ff7_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:ff8_c00459;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00459{font-family:ff8_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;}
.m1_c00459{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_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;}
.ls4_c00459{letter-spacing:-3.000000px;}
.ls3_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:3.000000px;}
.ls2_c00459{letter-spacing:6.000000px;}
.ls1_c00459{letter-spacing:15.600000px;}
.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;}
}
.ws4_c00459{word-spacing:-26.688000px;}
.ws3_c00459{word-spacing:-26.568000px;}
.ws5_c00459{word-spacing:-21.000000px;}
.ws0_c00459{word-spacing:-16.629000px;}
.ws2_c00459{word-spacing:-16.500000px;}
.ws1_c00459{word-spacing:-1.173000px;}
.ws6_c00459{word-spacing:0.000000px;}
._23_c00459{margin-left:-42.588000px;}
._1d_c00459{margin-left:-20.355000px;}
._21_c00459{margin-left:-17.388000px;}
._24_c00459{margin-left:-15.657000px;}
._22_c00459{margin-left:-12.903000px;}
._1a_c00459{margin-left:-9.894000px;}
._e_c00459{margin-left:-7.545000px;}
._8_c00459{margin-left:-6.432000px;}
._11_c00459{margin-left:-4.761000px;}
._12_c00459{margin-left:-3.519000px;}
._0_c00459{margin-left:-1.932000px;}
._9_c00459{width:1.092000px;}
._4_c00459{width:2.646000px;}
._5_c00459{width:3.960000px;}
._2_c00459{width:5.328000px;}
._3_c00459{width:7.272000px;}
._1_c00459{width:9.216000px;}
._20_c00459{width:10.245000px;}
._c_c00459{width:11.253000px;}
._18_c00459{width:12.333000px;}
._b_c00459{width:13.482000px;}
._6_c00459{width:14.679000px;}
._a_c00459{width:15.804000px;}
._7_c00459{width:17.262000px;}
._d_c00459{width:18.324000px;}
._16_c00459{width:20.631000px;}
._1c_c00459{width:22.806000px;}
._1b_c00459{width:24.840000px;}
._15_c00459{width:26.907000px;}
._13_c00459{width:28.032000px;}
._25_c00459{width:37.233000px;}
._f_c00459{width:38.511000px;}
._19_c00459{width:44.343000px;}
._10_c00459{width:51.555000px;}
._17_c00459{width:54.552000px;}
._26_c00459{width:69.888000px;}
._14_c00459{width:86.733000px;}
._1e_c00459{width:93.771000px;}
._1f_c00459{width:112.680000px;}
._27_c00459{width:360.348000px;}
.fc2_c00459{color:transparent;}
.fc1_c00459{color:rgb(128,128,128);}
.fc0_c00459{color:rgb(0,0,0);}
.fs4_c00459{font-size:39.000000px;}
.fs8_c00459{font-size:42.000000px;}
.fs9_c00459{font-size:48.000000px;}
.fs2_c00459{font-size:63.000000px;}
.fs3_c00459{font-size:66.000000px;}
.fs0_c00459{font-size:69.000000px;}
.fs1_c00459{font-size:72.000000px;}
.fs7_c00459{font-size:75.000000px;}
.fs5_c00459{font-size:84.000000px;}
.fs6_c00459{font-size:96.000000px;}
.y0_c00459{bottom:0.000000px;}
.y1d_c00459{bottom:3.105000px;}
.y1c_c00459{bottom:7.228363px;}
.y1b_c00459{bottom:50.850000px;}
.y1a_c00459{bottom:70.800000px;}
.y19_c00459{bottom:122.100000px;}
.y18_c00459{bottom:196.350000px;}
.y17_c00459{bottom:222.150000px;}
.y16_c00459{bottom:247.050000px;}
.y15_c00459{bottom:272.400000px;}
.y14_c00459{bottom:297.600000px;}
.y13_c00459{bottom:321.300000px;}
.y12_c00459{bottom:346.350000px;}
.y11_c00459{bottom:371.250000px;}
.y10_c00459{bottom:396.900000px;}
.yf_c00459{bottom:421.500000px;}
.ye_c00459{bottom:447.150000px;}
.yd_c00459{bottom:471.150000px;}
.yc_c00459{bottom:496.200000px;}
.yb_c00459{bottom:520.200000px;}
.ya_c00459{bottom:546.450000px;}
.y9_c00459{bottom:571.050000px;}
.y8_c00459{bottom:595.650000px;}
.y7_c00459{bottom:621.450000px;}
.y6_c00459{bottom:645.600000px;}
.y5_c00459{bottom:670.350000px;}
.y4_c00459{bottom:695.250000px;}
.y3_c00459{bottom:720.600000px;}
.y2_c00459{bottom:745.500000px;}
.y1_c00459{bottom:770.850000px;}
.h8_c00459{height:13.200074px;}
.h9_c00459{height:43.804688px;}
.h6_c00459{height:73.735840px;}
.h7_c00459{height:80.758301px;}
.h2_c00459{height:87.361816px;}
.h3_c00459{height:91.160156px;}
.h4_c00459{height:94.171875px;}
.h5_c00459{height:94.958496px;}
.h0_c00459{height:818.100000px;}
.h1_c00459{height:818.250000px;}
.w2_c00459{width:104.875500px;}
.w0_c00459{width:565.350000px;}
.w1_c00459{width:565.500000px;}
.x0_c00459{left:0.000000px;}
.xa_c00459{left:30.600000px;}
.x6_c00459{left:31.950000px;}
.xc_c00459{left:41.850000px;}
.x7_c00459{left:50.250000px;}
.xb_c00459{left:59.700000px;}
.xd_c00459{left:67.050000px;}
.xe_c00459{left:92.850000px;}
.x9_c00459{left:94.800000px;}
.x5_c00459{left:96.900000px;}
.x2_c00459{left:98.250000px;}
.x3_c00459{left:99.600000px;}
.x10_c00459{left:117.000000px;}
.x4_c00459{left:122.850000px;}
.x8_c00459{left:127.800000px;}
.x11_c00459{left:146.700000px;}
.x12_c00459{left:204.450000px;}
.xf_c00459{left:220.650000px;}
.x13_c00459{left:235.200000px;}
.x1_c00459{left:254.100000px;}
.x14_c00459{left:302.700000px;}
.x15_c00459{left:318.600000px;}
.x16_c00459{left:387.300000px;}
.x18_c00459{left:388.350000px;}
.x17_c00459{left:482.250000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls4_c00459{letter-spacing:-2.666667pt;}
.ls3_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:2.666667pt;}
.ls2_c00459{letter-spacing:5.333333pt;}
.ls1_c00459{letter-spacing:13.866667pt;}
.ws4_c00459{word-spacing:-23.722667pt;}
.ws3_c00459{word-spacing:-23.616000pt;}
.ws5_c00459{word-spacing:-18.666667pt;}
.ws0_c00459{word-spacing:-14.781333pt;}
.ws2_c00459{word-spacing:-14.666667pt;}
.ws1_c00459{word-spacing:-1.042667pt;}
.ws6_c00459{word-spacing:0.000000pt;}
._23_c00459{margin-left:-37.856000pt;}
._1d_c00459{margin-left:-18.093333pt;}
._21_c00459{margin-left:-15.456000pt;}
._24_c00459{margin-left:-13.917333pt;}
._22_c00459{margin-left:-11.469333pt;}
._1a_c00459{margin-left:-8.794667pt;}
._e_c00459{margin-left:-6.706667pt;}
._8_c00459{margin-left:-5.717333pt;}
._11_c00459{margin-left:-4.232000pt;}
._12_c00459{margin-left:-3.128000pt;}
._0_c00459{margin-left:-1.717333pt;}
._9_c00459{width:0.970667pt;}
._4_c00459{width:2.352000pt;}
._5_c00459{width:3.520000pt;}
._2_c00459{width:4.736000pt;}
._3_c00459{width:6.464000pt;}
._1_c00459{width:8.192000pt;}
._20_c00459{width:9.106667pt;}
._c_c00459{width:10.002667pt;}
._18_c00459{width:10.962667pt;}
._b_c00459{width:11.984000pt;}
._6_c00459{width:13.048000pt;}
._a_c00459{width:14.048000pt;}
._7_c00459{width:15.344000pt;}
._d_c00459{width:16.288000pt;}
._16_c00459{width:18.338667pt;}
._1c_c00459{width:20.272000pt;}
._1b_c00459{width:22.080000pt;}
._15_c00459{width:23.917333pt;}
._13_c00459{width:24.917333pt;}
._25_c00459{width:33.096000pt;}
._f_c00459{width:34.232000pt;}
._19_c00459{width:39.416000pt;}
._10_c00459{width:45.826667pt;}
._17_c00459{width:48.490667pt;}
._26_c00459{width:62.122667pt;}
._14_c00459{width:77.096000pt;}
._1e_c00459{width:83.352000pt;}
._1f_c00459{width:100.160000pt;}
._27_c00459{width:320.309333pt;}
.fs4_c00459{font-size:34.666667pt;}
.fs8_c00459{font-size:37.333333pt;}
.fs9_c00459{font-size:42.666667pt;}
.fs2_c00459{font-size:56.000000pt;}
.fs3_c00459{font-size:58.666667pt;}
.fs0_c00459{font-size:61.333333pt;}
.fs1_c00459{font-size:64.000000pt;}
.fs7_c00459{font-size:66.666667pt;}
.fs5_c00459{font-size:74.666667pt;}
.fs6_c00459{font-size:85.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y1d_c00459{bottom:2.760000pt;}
.y1c_c00459{bottom:6.425212pt;}
.y1b_c00459{bottom:45.200000pt;}
.y1a_c00459{bottom:62.933333pt;}
.y19_c00459{bottom:108.533333pt;}
.y18_c00459{bottom:174.533333pt;}
.y17_c00459{bottom:197.466667pt;}
.y16_c00459{bottom:219.600000pt;}
.y15_c00459{bottom:242.133333pt;}
.y14_c00459{bottom:264.533333pt;}
.y13_c00459{bottom:285.600000pt;}
.y12_c00459{bottom:307.866667pt;}
.y11_c00459{bottom:330.000000pt;}
.y10_c00459{bottom:352.800000pt;}
.yf_c00459{bottom:374.666667pt;}
.ye_c00459{bottom:397.466667pt;}
.yd_c00459{bottom:418.800000pt;}
.yc_c00459{bottom:441.066667pt;}
.yb_c00459{bottom:462.400000pt;}
.ya_c00459{bottom:485.733333pt;}
.y9_c00459{bottom:507.600000pt;}
.y8_c00459{bottom:529.466667pt;}
.y7_c00459{bottom:552.400000pt;}
.y6_c00459{bottom:573.866667pt;}
.y5_c00459{bottom:595.866667pt;}
.y4_c00459{bottom:618.000000pt;}
.y3_c00459{bottom:640.533333pt;}
.y2_c00459{bottom:662.666667pt;}
.y1_c00459{bottom:685.200000pt;}
.h8_c00459{height:11.733399pt;}
.h9_c00459{height:38.937500pt;}
.h6_c00459{height:65.542969pt;}
.h7_c00459{height:71.785156pt;}
.h2_c00459{height:77.654948pt;}
.h3_c00459{height:81.031250pt;}
.h4_c00459{height:83.708333pt;}
.h5_c00459{height:84.407552pt;}
.h0_c00459{height:727.200000pt;}
.h1_c00459{height:727.333333pt;}
.w2_c00459{width:93.222667pt;}
.w0_c00459{width:502.533333pt;}
.w1_c00459{width:502.666667pt;}
.x0_c00459{left:0.000000pt;}
.xa_c00459{left:27.200000pt;}
.x6_c00459{left:28.400000pt;}
.xc_c00459{left:37.200000pt;}
.x7_c00459{left:44.666667pt;}
.xb_c00459{left:53.066667pt;}
.xd_c00459{left:59.600000pt;}
.xe_c00459{left:82.533333pt;}
.x9_c00459{left:84.266667pt;}
.x5_c00459{left:86.133333pt;}
.x2_c00459{left:87.333333pt;}
.x3_c00459{left:88.533333pt;}
.x10_c00459{left:104.000000pt;}
.x4_c00459{left:109.200000pt;}
.x8_c00459{left:113.600000pt;}
.x11_c00459{left:130.400000pt;}
.x12_c00459{left:181.733333pt;}
.xf_c00459{left:196.133333pt;}
.x13_c00459{left:209.066667pt;}
.x1_c00459{left:225.866667pt;}
.x14_c00459{left:269.066667pt;}
.x15_c00459{left:283.200000pt;}
.x16_c00459{left:344.266667pt;}
.x18_c00459{left:345.200000pt;}
.x17_c00459{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_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_dc63aba30238697e34f840b4.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.480469;font-style:normal;font-weight:normal;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_f295eb4fa2890e2e6d406865.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.568848;font-style:normal;font-weight:normal;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_053c463f4ef3b24fac5a1be1.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_ed7486626249412d6edb2ce4.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00460{font-family:ff5_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;}
.ls3_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:3.000000px;}
.ls1_c00460{letter-spacing:12.000000px;}
.ls2_c00460{letter-spacing:18.525000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-16.629000px;}
.ws1_c00460{word-spacing:0.000000px;}
._2c_c00460{margin-left:-69.912000px;}
._2d_c00460{margin-left:-32.112000px;}
._2a_c00460{margin-left:-30.240000px;}
._20_c00460{margin-left:-24.978000px;}
._12_c00460{margin-left:-23.460000px;}
._28_c00460{margin-left:-19.512000px;}
._14_c00460{margin-left:-16.422000px;}
._26_c00460{margin-left:-14.070000px;}
._21_c00460{margin-left:-12.420000px;}
._15_c00460{margin-left:-11.178000px;}
._17_c00460{margin-left:-8.556000px;}
._16_c00460{margin-left:-7.107000px;}
._0_c00460{margin-left:-5.244000px;}
._1_c00460{margin-left:-3.450000px;}
._5_c00460{margin-left:-2.277000px;}
._3_c00460{margin-left:-1.242000px;}
._a_c00460{width:1.104000px;}
._d_c00460{width:2.277000px;}
._e_c00460{width:3.450000px;}
._f_c00460{width:4.485000px;}
._2_c00460{width:5.934000px;}
._10_c00460{width:7.659000px;}
._7_c00460{width:9.108000px;}
._1b_c00460{width:10.110000px;}
._c_c00460{width:11.316000px;}
._19_c00460{width:12.696000px;}
._8_c00460{width:13.869000px;}
._9_c00460{width:15.249000px;}
._1d_c00460{width:16.353000px;}
._11_c00460{width:17.526000px;}
._6_c00460{width:20.217000px;}
._1a_c00460{width:21.597000px;}
._1e_c00460{width:25.737000px;}
._13_c00460{width:29.877000px;}
._27_c00460{width:32.292000px;}
._1f_c00460{width:34.329000px;}
._18_c00460{width:38.856000px;}
._24_c00460{width:40.710000px;}
._2e_c00460{width:66.024000px;}
._25_c00460{width:97.389000px;}
._23_c00460{width:101.259000px;}
._22_c00460{width:148.350000px;}
._29_c00460{width:186.912000px;}
._1c_c00460{width:195.927000px;}
._2f_c00460{width:419.094000px;}
._4_c00460{width:420.354000px;}
._2b_c00460{width:546.624000px;}
._b_c00460{width:561.108000px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(128,128,128);}
.fc0_c00460{color:rgb(0,0,0);}
.fs4_c00460{font-size:48.000000px;}
.fs2_c00460{font-size:57.000000px;}
.fs1_c00460{font-size:66.000000px;}
.fs0_c00460{font-size:69.000000px;}
.fs3_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y1d_c00460{bottom:3.105000px;}
.y1c_c00460{bottom:7.228369px;}
.y1b_c00460{bottom:91.020000px;}
.y1a_c00460{bottom:140.670000px;}
.y19_c00460{bottom:166.320000px;}
.y18_c00460{bottom:191.670000px;}
.y17_c00460{bottom:215.970000px;}
.y16_c00460{bottom:241.620000px;}
.y15_c00460{bottom:266.520000px;}
.y14_c00460{bottom:290.970000px;}
.y13_c00460{bottom:316.470000px;}
.y12_c00460{bottom:340.770000px;}
.y11_c00460{bottom:365.820000px;}
.y10_c00460{bottom:391.770000px;}
.yf_c00460{bottom:416.070000px;}
.ye_c00460{bottom:440.070000px;}
.yd_c00460{bottom:466.470000px;}
.yc_c00460{bottom:490.320000px;}
.yb_c00460{bottom:515.370000px;}
.ya_c00460{bottom:538.620000px;}
.y9_c00460{bottom:564.870000px;}
.y8_c00460{bottom:589.620000px;}
.y7_c00460{bottom:614.820000px;}
.y6_c00460{bottom:640.170000px;}
.y5_c00460{bottom:664.920000px;}
.y4_c00460{bottom:689.220000px;}
.y3_c00460{bottom:739.470000px;}
.y2_c00460{bottom:764.820000px;}
.y1_c00460{bottom:789.120000px;}
.h5_c00460{height:13.200073px;}
.h6_c00460{height:43.804688px;}
.h3_c00460{height:80.758301px;}
.h2_c00460{height:87.361816px;}
.h4_c00460{height:91.160156px;}
.h1_c00460{height:839.250000px;}
.h0_c00460{height:839.400000px;}
.w2_c00460{width:104.875500px;}
.w0_c00460{width:582.375000px;}
.w1_c00460{width:582.750000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:35.700000px;}
.x3_c00460{left:37.500000px;}
.x6_c00460{left:39.450000px;}
.x7_c00460{left:43.500000px;}
.x4_c00460{left:61.800000px;}
.x5_c00460{left:88.650000px;}
.x1_c00460{left:197.100000px;}
.x8_c00460{left:243.001740px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls3_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:2.666667pt;}
.ls1_c00460{letter-spacing:10.666667pt;}
.ls2_c00460{letter-spacing:16.466667pt;}
.ws0_c00460{word-spacing:-14.781333pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._2c_c00460{margin-left:-62.144000pt;}
._2d_c00460{margin-left:-28.544000pt;}
._2a_c00460{margin-left:-26.880000pt;}
._20_c00460{margin-left:-22.202667pt;}
._12_c00460{margin-left:-20.853333pt;}
._28_c00460{margin-left:-17.344000pt;}
._14_c00460{margin-left:-14.597333pt;}
._26_c00460{margin-left:-12.506667pt;}
._21_c00460{margin-left:-11.040000pt;}
._15_c00460{margin-left:-9.936000pt;}
._17_c00460{margin-left:-7.605333pt;}
._16_c00460{margin-left:-6.317333pt;}
._0_c00460{margin-left:-4.661333pt;}
._1_c00460{margin-left:-3.066667pt;}
._5_c00460{margin-left:-2.024000pt;}
._3_c00460{margin-left:-1.104000pt;}
._a_c00460{width:0.981333pt;}
._d_c00460{width:2.024000pt;}
._e_c00460{width:3.066667pt;}
._f_c00460{width:3.986667pt;}
._2_c00460{width:5.274667pt;}
._10_c00460{width:6.808000pt;}
._7_c00460{width:8.096000pt;}
._1b_c00460{width:8.986667pt;}
._c_c00460{width:10.058667pt;}
._19_c00460{width:11.285333pt;}
._8_c00460{width:12.328000pt;}
._9_c00460{width:13.554667pt;}
._1d_c00460{width:14.536000pt;}
._11_c00460{width:15.578667pt;}
._6_c00460{width:17.970667pt;}
._1a_c00460{width:19.197333pt;}
._1e_c00460{width:22.877333pt;}
._13_c00460{width:26.557333pt;}
._27_c00460{width:28.704000pt;}
._1f_c00460{width:30.514667pt;}
._18_c00460{width:34.538667pt;}
._24_c00460{width:36.186667pt;}
._2e_c00460{width:58.688000pt;}
._25_c00460{width:86.568000pt;}
._23_c00460{width:90.008000pt;}
._22_c00460{width:131.866667pt;}
._29_c00460{width:166.144000pt;}
._1c_c00460{width:174.157333pt;}
._2f_c00460{width:372.528000pt;}
._4_c00460{width:373.648000pt;}
._2b_c00460{width:485.888000pt;}
._b_c00460{width:498.762667pt;}
.fs4_c00460{font-size:42.666667pt;}
.fs2_c00460{font-size:50.666667pt;}
.fs1_c00460{font-size:58.666667pt;}
.fs0_c00460{font-size:61.333333pt;}
.fs3_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y1d_c00460{bottom:2.760000pt;}
.y1c_c00460{bottom:6.425217pt;}
.y1b_c00460{bottom:80.906667pt;}
.y1a_c00460{bottom:125.040000pt;}
.y19_c00460{bottom:147.840000pt;}
.y18_c00460{bottom:170.373333pt;}
.y17_c00460{bottom:191.973333pt;}
.y16_c00460{bottom:214.773333pt;}
.y15_c00460{bottom:236.906667pt;}
.y14_c00460{bottom:258.640000pt;}
.y13_c00460{bottom:281.306667pt;}
.y12_c00460{bottom:302.906667pt;}
.y11_c00460{bottom:325.173333pt;}
.y10_c00460{bottom:348.240000pt;}
.yf_c00460{bottom:369.840000pt;}
.ye_c00460{bottom:391.173333pt;}
.yd_c00460{bottom:414.640000pt;}
.yc_c00460{bottom:435.840000pt;}
.yb_c00460{bottom:458.106667pt;}
.ya_c00460{bottom:478.773333pt;}
.y9_c00460{bottom:502.106667pt;}
.y8_c00460{bottom:524.106667pt;}
.y7_c00460{bottom:546.506667pt;}
.y6_c00460{bottom:569.040000pt;}
.y5_c00460{bottom:591.040000pt;}
.y4_c00460{bottom:612.640000pt;}
.y3_c00460{bottom:657.306667pt;}
.y2_c00460{bottom:679.840000pt;}
.y1_c00460{bottom:701.440000pt;}
.h5_c00460{height:11.733399pt;}
.h6_c00460{height:38.937500pt;}
.h3_c00460{height:71.785156pt;}
.h2_c00460{height:77.654948pt;}
.h4_c00460{height:81.031250pt;}
.h1_c00460{height:746.000000pt;}
.h0_c00460{height:746.133333pt;}
.w2_c00460{width:93.222667pt;}
.w0_c00460{width:517.666667pt;}
.w1_c00460{width:518.000000pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:31.733333pt;}
.x3_c00460{left:33.333333pt;}
.x6_c00460{left:35.066667pt;}
.x7_c00460{left:38.666667pt;}
.x4_c00460{left:54.933333pt;}
.x5_c00460{left:78.800000pt;}
.x1_c00460{left:175.200000pt;}
.x8_c00460{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfd7bbba7f5dcf176b00da16.woff2')format("woff");}.ff1_c00461{font-family:ff1_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:ff2_c00461;src:url('chunks/assets/font_5be92a98cdd2fc26d8ade86c.woff2')format("woff");}.ff2_c00461{font-family:ff2_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:ff3_c00461;src:url('chunks/assets/font_6b1dd6e95221c34ea870b4e1.woff2')format("woff");}.ff3_c00461{font-family:ff3_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:ff4_c00461;src:url('chunks/assets/font_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.311035;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00461{font-family:ff5_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;}
.ls4_c00461{letter-spacing:0.000000px;}
.ls5_c00461{letter-spacing:3.000000px;}
.ls6_c00461{letter-spacing:6.000000px;}
.ls3_c00461{letter-spacing:8.571000px;}
.ls1_c00461{letter-spacing:11.400000px;}
.ls2_c00461{letter-spacing:18.771000px;}
.ls0_c00461{letter-spacing:353.571000px;}
.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;}
}
.ws2_c00461{word-spacing:-22.629000px;}
.ws4_c00461{word-spacing:-19.629000px;}
.ws0_c00461{word-spacing:-16.629000px;}
.ws1_c00461{word-spacing:-1.263000px;}
.ws5_c00461{word-spacing:0.000000px;}
.ws3_c00461{word-spacing:5.670000px;}
._0_c00461{margin-left:-28.197000px;}
._2_c00461{margin-left:-27.027000px;}
._1_c00461{margin-left:-25.740000px;}
._1f_c00461{margin-left:-16.491000px;}
._8_c00461{margin-left:-14.628000px;}
._20_c00461{margin-left:-13.110000px;}
._22_c00461{margin-left:-11.385000px;}
._7_c00461{margin-left:-8.073000px;}
._1c_c00461{margin-left:-6.900000px;}
._4_c00461{margin-left:-5.520000px;}
._5_c00461{margin-left:-3.795000px;}
._6_c00461{margin-left:-2.001000px;}
._d_c00461{width:1.104000px;}
._9_c00461{width:2.208000px;}
._a_c00461{width:3.312000px;}
._10_c00461{width:4.899000px;}
._e_c00461{width:6.348000px;}
._13_c00461{width:8.280000px;}
._1d_c00461{width:9.522000px;}
._c_c00461{width:11.385000px;}
._f_c00461{width:13.317000px;}
._21_c00461{width:14.352000px;}
._1a_c00461{width:15.456000px;}
._11_c00461{width:17.424000px;}
._23_c00461{width:18.492000px;}
._1e_c00461{width:19.533000px;}
._14_c00461{width:21.390000px;}
._25_c00461{width:22.527000px;}
._1b_c00461{width:24.426000px;}
._15_c00461{width:25.806000px;}
._26_c00461{width:27.048000px;}
._24_c00461{width:29.364000px;}
._17_c00461{width:31.188000px;}
._18_c00461{width:34.431000px;}
._16_c00461{width:35.742000px;}
._12_c00461{width:39.783000px;}
._19_c00461{width:41.124000px;}
._b_c00461{width:196.650000px;}
._3_c00461{width:400.788000px;}
.fc2_c00461{color:transparent;}
.fc1_c00461{color:rgb(128,128,128);}
.fc0_c00461{color:rgb(0,0,0);}
.fs3_c00461{font-size:48.000000px;}
.fs2_c00461{font-size:66.000000px;}
.fs1_c00461{font-size:69.000000px;}
.fs0_c00461{font-size:117.000000px;}
.y0_c00461{bottom:0.000000px;}
.y1c_c00461{bottom:3.105000px;}
.y1b_c00461{bottom:7.228355px;}
.y1a_c00461{bottom:51.585000px;}
.y19_c00461{bottom:75.885000px;}
.y18_c00461{bottom:101.835000px;}
.y17_c00461{bottom:126.585000px;}
.y16_c00461{bottom:152.235000px;}
.y15_c00461{bottom:177.135000px;}
.y14_c00461{bottom:226.785000px;}
.y13_c00461{bottom:277.035000px;}
.y12_c00461{bottom:302.085000px;}
.y11_c00461{bottom:326.385000px;}
.y10_c00461{bottom:350.535000px;}
.yf_c00461{bottom:375.585000px;}
.ye_c00461{bottom:401.235000px;}
.yd_c00461{bottom:426.135000px;}
.yc_c00461{bottom:451.485000px;}
.yb_c00461{bottom:500.085000px;}
.ya_c00461{bottom:550.335000px;}
.y9_c00461{bottom:575.985000px;}
.y8_c00461{bottom:600.435000px;}
.y7_c00461{bottom:625.035000px;}
.y6_c00461{bottom:649.335000px;}
.y5_c00461{bottom:674.685000px;}
.y4_c00461{bottom:700.185000px;}
.y3_c00461{bottom:724.935000px;}
.y2_c00461{bottom:748.935000px;}
.y1_c00461{bottom:774.435000px;}
.h5_c00461{height:13.200074px;}
.h6_c00461{height:43.804688px;}
.h4_c00461{height:80.758301px;}
.h3_c00461{height:87.361816px;}
.h2_c00461{height:148.135254px;}
.h0_c00461{height:815.925000px;}
.h1_c00461{height:816.000000px;}
.w2_c00461{width:104.875500px;}
.w0_c00461{width:563.775000px;}
.w1_c00461{width:564.000000px;}
.x0_c00461{left:0.000000px;}
.xd_c00461{left:22.950000px;}
.x3_c00461{left:30.150000px;}
.x2_c00461{left:46.200000px;}
.x14_c00461{left:79.950000px;}
.x13_c00461{left:82.050000px;}
.x11_c00461{left:83.700000px;}
.xe_c00461{left:88.050000px;}
.xb_c00461{left:89.100000px;}
.xc_c00461{left:91.350000px;}
.x8_c00461{left:92.400000px;}
.x7_c00461{left:93.450000px;}
.x6_c00461{left:94.500000px;}
.x5_c00461{left:95.850000px;}
.x4_c00461{left:96.900000px;}
.x12_c00461{left:102.900000px;}
.x1_c00461{left:107.700000px;}
.x10_c00461{left:108.900000px;}
.xa_c00461{left:113.850000px;}
.xf_c00461{left:194.100000px;}
.x9_c00461{left:219.000000px;}
.x16_c00461{left:233.701767px;}
.x15_c00461{left:496.350000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls4_c00461{letter-spacing:0.000000pt;}
.ls5_c00461{letter-spacing:2.666667pt;}
.ls6_c00461{letter-spacing:5.333333pt;}
.ls3_c00461{letter-spacing:7.618667pt;}
.ls1_c00461{letter-spacing:10.133333pt;}
.ls2_c00461{letter-spacing:16.685333pt;}
.ls0_c00461{letter-spacing:314.285333pt;}
.ws2_c00461{word-spacing:-20.114667pt;}
.ws4_c00461{word-spacing:-17.448000pt;}
.ws0_c00461{word-spacing:-14.781333pt;}
.ws1_c00461{word-spacing:-1.122667pt;}
.ws5_c00461{word-spacing:0.000000pt;}
.ws3_c00461{word-spacing:5.040000pt;}
._0_c00461{margin-left:-25.064000pt;}
._2_c00461{margin-left:-24.024000pt;}
._1_c00461{margin-left:-22.880000pt;}
._1f_c00461{margin-left:-14.658667pt;}
._8_c00461{margin-left:-13.002667pt;}
._20_c00461{margin-left:-11.653333pt;}
._22_c00461{margin-left:-10.120000pt;}
._7_c00461{margin-left:-7.176000pt;}
._1c_c00461{margin-left:-6.133333pt;}
._4_c00461{margin-left:-4.906667pt;}
._5_c00461{margin-left:-3.373333pt;}
._6_c00461{margin-left:-1.778667pt;}
._d_c00461{width:0.981333pt;}
._9_c00461{width:1.962667pt;}
._a_c00461{width:2.944000pt;}
._10_c00461{width:4.354667pt;}
._e_c00461{width:5.642667pt;}
._13_c00461{width:7.360000pt;}
._1d_c00461{width:8.464000pt;}
._c_c00461{width:10.120000pt;}
._f_c00461{width:11.837333pt;}
._21_c00461{width:12.757333pt;}
._1a_c00461{width:13.738667pt;}
._11_c00461{width:15.488000pt;}
._23_c00461{width:16.437333pt;}
._1e_c00461{width:17.362667pt;}
._14_c00461{width:19.013333pt;}
._25_c00461{width:20.024000pt;}
._1b_c00461{width:21.712000pt;}
._15_c00461{width:22.938667pt;}
._26_c00461{width:24.042667pt;}
._24_c00461{width:26.101333pt;}
._17_c00461{width:27.722667pt;}
._18_c00461{width:30.605333pt;}
._16_c00461{width:31.770667pt;}
._12_c00461{width:35.362667pt;}
._19_c00461{width:36.554667pt;}
._b_c00461{width:174.800000pt;}
._3_c00461{width:356.256000pt;}
.fs3_c00461{font-size:42.666667pt;}
.fs2_c00461{font-size:58.666667pt;}
.fs1_c00461{font-size:61.333333pt;}
.fs0_c00461{font-size:104.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y1c_c00461{bottom:2.760000pt;}
.y1b_c00461{bottom:6.425204pt;}
.y1a_c00461{bottom:45.853333pt;}
.y19_c00461{bottom:67.453333pt;}
.y18_c00461{bottom:90.520000pt;}
.y17_c00461{bottom:112.520000pt;}
.y16_c00461{bottom:135.320000pt;}
.y15_c00461{bottom:157.453333pt;}
.y14_c00461{bottom:201.586667pt;}
.y13_c00461{bottom:246.253333pt;}
.y12_c00461{bottom:268.520000pt;}
.y11_c00461{bottom:290.120000pt;}
.y10_c00461{bottom:311.586667pt;}
.yf_c00461{bottom:333.853333pt;}
.ye_c00461{bottom:356.653333pt;}
.yd_c00461{bottom:378.786667pt;}
.yc_c00461{bottom:401.320000pt;}
.yb_c00461{bottom:444.520000pt;}
.ya_c00461{bottom:489.186667pt;}
.y9_c00461{bottom:511.986667pt;}
.y8_c00461{bottom:533.720000pt;}
.y7_c00461{bottom:555.586667pt;}
.y6_c00461{bottom:577.186667pt;}
.y5_c00461{bottom:599.720000pt;}
.y4_c00461{bottom:622.386667pt;}
.y3_c00461{bottom:644.386667pt;}
.y2_c00461{bottom:665.720000pt;}
.y1_c00461{bottom:688.386667pt;}
.h5_c00461{height:11.733399pt;}
.h6_c00461{height:38.937500pt;}
.h4_c00461{height:71.785156pt;}
.h3_c00461{height:77.654948pt;}
.h2_c00461{height:131.675781pt;}
.h0_c00461{height:725.266667pt;}
.h1_c00461{height:725.333333pt;}
.w2_c00461{width:93.222667pt;}
.w0_c00461{width:501.133333pt;}
.w1_c00461{width:501.333333pt;}
.x0_c00461{left:0.000000pt;}
.xd_c00461{left:20.400000pt;}
.x3_c00461{left:26.800000pt;}
.x2_c00461{left:41.066667pt;}
.x14_c00461{left:71.066667pt;}
.x13_c00461{left:72.933333pt;}
.x11_c00461{left:74.400000pt;}
.xe_c00461{left:78.266667pt;}
.xb_c00461{left:79.200000pt;}
.xc_c00461{left:81.200000pt;}
.x8_c00461{left:82.133333pt;}
.x7_c00461{left:83.066667pt;}
.x6_c00461{left:84.000000pt;}
.x5_c00461{left:85.200000pt;}
.x4_c00461{left:86.133333pt;}
.x12_c00461{left:91.466667pt;}
.x1_c00461{left:95.733333pt;}
.x10_c00461{left:96.800000pt;}
.xa_c00461{left:101.200000pt;}
.xf_c00461{left:172.533333pt;}
.x9_c00461{left:194.666667pt;}
.x16_c00461{left:207.734904pt;}
.x15_c00461{left:441.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_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_5255bf5f696e5aaf575e566b.woff2')format("woff");}.ff1_c00462{font-family:ff1_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:ff2_c00462;src:url('chunks/assets/font_6c9741bee31b9c411b7a55f6.woff2')format("woff");}.ff2_c00462{font-family:ff2_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:ff3_c00462;src:url('chunks/assets/font_ea9840113ffb9b34f7f28729.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;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_c00462;src:url('chunks/assets/font_459f95868c816443dbcc212d.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_dbe10a79221f17decfa6dab2.woff2')format("woff");}.ff5_c00462{font-family:ff5_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:ff6_c00462;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00462{font-family:ff6_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:ff7_c00462;src:url('chunks/assets/font_eb1c121de1b7257aaf49eb01.woff2')format("woff");}.ff7_c00462{font-family:ff7_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:ff8_c00462;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff8_c00462{font-family:ff8_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;}
.ls6_c00462{letter-spacing:-3.000000px;}
.ls5_c00462{letter-spacing:0.000000px;}
.ls4_c00462{letter-spacing:3.000000px;}
.ls1_c00462{letter-spacing:3.465600px;}
.ls0_c00462{letter-spacing:11.670000px;}
.ls3_c00462{letter-spacing:12.525000px;}
.ls7_c00462{letter-spacing:15.000000px;}
.ls2_c00462{letter-spacing:27.309000px;}
.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:-44.022000px;}
.ws3_c00462{word-spacing:-31.629000px;}
.ws0_c00462{word-spacing:-19.629000px;}
.ws2_c00462{word-spacing:-16.629000px;}
.ws4_c00462{word-spacing:0.000000px;}
._9_c00462{margin-left:-21.735000px;}
._1b_c00462{margin-left:-18.285000px;}
._1f_c00462{margin-left:-15.732000px;}
._1c_c00462{margin-left:-13.590000px;}
._7_c00462{margin-left:-12.558000px;}
._4_c00462{margin-left:-9.438000px;}
._1_c00462{margin-left:-8.418000px;}
._0_c00462{margin-left:-6.348000px;}
._2_c00462{margin-left:-4.914000px;}
._22_c00462{margin-left:-3.885000px;}
._5_c00462{margin-left:-2.832000px;}
._d_c00462{margin-left:-1.332000px;}
._c_c00462{width:2.001000px;}
._e_c00462{width:3.273000px;}
._3_c00462{width:4.446000px;}
._b_c00462{width:5.658000px;}
._f_c00462{width:7.092000px;}
._18_c00462{width:8.136000px;}
._16_c00462{width:9.660000px;}
._15_c00462{width:11.040000px;}
._8_c00462{width:12.351000px;}
._17_c00462{width:14.280000px;}
._13_c00462{width:16.062000px;}
._12_c00462{width:17.880000px;}
._19_c00462{width:21.579000px;}
._11_c00462{width:22.605000px;}
._26_c00462{width:23.661000px;}
._27_c00462{width:26.094000px;}
._1e_c00462{width:29.937000px;}
._21_c00462{width:31.650000px;}
._10_c00462{width:32.970000px;}
._23_c00462{width:36.972000px;}
._1a_c00462{width:38.580000px;}
._14_c00462{width:47.505000px;}
._20_c00462{width:66.099000px;}
._6_c00462{width:77.220000px;}
._24_c00462{width:96.291000px;}
._25_c00462{width:121.344000px;}
._1d_c00462{width:217.446000px;}
._a_c00462{width:334.788000px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(128,128,128);}
.fc0_c00462{color:rgb(0,0,0);}
.fs3_c00462{font-size:40.800000px;}
.fs6_c00462{font-size:48.000000px;}
.fs2_c00462{font-size:51.000000px;}
.fs4_c00462{font-size:66.000000px;}
.fs0_c00462{font-size:69.000000px;}
.fs1_c00462{font-size:78.000000px;}
.fs5_c00462{font-size:108.000000px;}
.y0_c00462{bottom:0.000000px;}
.y1e_c00462{bottom:3.105000px;}
.y1d_c00462{bottom:7.228369px;}
.y1c_c00462{bottom:143.820000px;}
.y1b_c00462{bottom:169.320000px;}
.y1a_c00462{bottom:194.070000px;}
.y19_c00462{bottom:219.420000px;}
.y18_c00462{bottom:244.020000px;}
.y17_c00462{bottom:269.370000px;}
.y16_c00462{bottom:293.670000px;}
.y15_c00462{bottom:318.870000px;}
.y14_c00462{bottom:343.470000px;}
.y13_c00462{bottom:368.220000px;}
.y12_c00462{bottom:393.120000px;}
.y11_c00462{bottom:417.120000px;}
.y10_c00462{bottom:442.470000px;}
.yf_c00462{bottom:467.670000px;}
.ye_c00462{bottom:492.120000px;}
.yd_c00462{bottom:517.620000px;}
.yc_c00462{bottom:541.620000px;}
.yb_c00462{bottom:566.370000px;}
.ya_c00462{bottom:592.320000px;}
.y9_c00462{bottom:615.870000px;}
.y8_c00462{bottom:640.920000px;}
.y1_c00462{bottom:654.420000px;}
.y7_c00462{bottom:665.820000px;}
.y6_c00462{bottom:690.420000px;}
.y5_c00462{bottom:715.470000px;}
.y4_c00462{bottom:740.070000px;}
.y3_c00462{bottom:764.820000px;}
.y2_c00462{bottom:789.720000px;}
.h5_c00462{height:13.200073px;}
.h6_c00462{height:43.804688px;}
.h2_c00462{height:87.361816px;}
.h3_c00462{height:91.291992px;}
.h4_c00462{height:136.740234px;}
.h0_c00462{height:829.950000px;}
.h1_c00462{height:830.250000px;}
.w2_c00462{width:104.875500px;}
.w0_c00462{width:575.625000px;}
.w1_c00462{width:576.000000px;}
.x0_c00462{left:0.000000px;}
.x3_c00462{left:24.900000px;}
.x4_c00462{left:25.950000px;}
.x5_c00462{left:27.000000px;}
.x6_c00462{left:28.050000px;}
.x2_c00462{left:176.550000px;}
.x7_c00462{left:239.626740px;}
.x1_c00462{left:502.500000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls6_c00462{letter-spacing:-2.666667pt;}
.ls5_c00462{letter-spacing:0.000000pt;}
.ls4_c00462{letter-spacing:2.666667pt;}
.ls1_c00462{letter-spacing:3.080533pt;}
.ls0_c00462{letter-spacing:10.373333pt;}
.ls3_c00462{letter-spacing:11.133333pt;}
.ls7_c00462{letter-spacing:13.333333pt;}
.ls2_c00462{letter-spacing:24.274667pt;}
.ws1_c00462{word-spacing:-39.130667pt;}
.ws3_c00462{word-spacing:-28.114667pt;}
.ws0_c00462{word-spacing:-17.448000pt;}
.ws2_c00462{word-spacing:-14.781333pt;}
.ws4_c00462{word-spacing:0.000000pt;}
._9_c00462{margin-left:-19.320000pt;}
._1b_c00462{margin-left:-16.253333pt;}
._1f_c00462{margin-left:-13.984000pt;}
._1c_c00462{margin-left:-12.080000pt;}
._7_c00462{margin-left:-11.162667pt;}
._4_c00462{margin-left:-8.389333pt;}
._1_c00462{margin-left:-7.482667pt;}
._0_c00462{margin-left:-5.642667pt;}
._2_c00462{margin-left:-4.368000pt;}
._22_c00462{margin-left:-3.453333pt;}
._5_c00462{margin-left:-2.517333pt;}
._d_c00462{margin-left:-1.184000pt;}
._c_c00462{width:1.778667pt;}
._e_c00462{width:2.909333pt;}
._3_c00462{width:3.952000pt;}
._b_c00462{width:5.029333pt;}
._f_c00462{width:6.304000pt;}
._18_c00462{width:7.232000pt;}
._16_c00462{width:8.586667pt;}
._15_c00462{width:9.813333pt;}
._8_c00462{width:10.978667pt;}
._17_c00462{width:12.693333pt;}
._13_c00462{width:14.277333pt;}
._12_c00462{width:15.893333pt;}
._19_c00462{width:19.181333pt;}
._11_c00462{width:20.093333pt;}
._26_c00462{width:21.032000pt;}
._27_c00462{width:23.194667pt;}
._1e_c00462{width:26.610667pt;}
._21_c00462{width:28.133333pt;}
._10_c00462{width:29.306667pt;}
._23_c00462{width:32.864000pt;}
._1a_c00462{width:34.293333pt;}
._14_c00462{width:42.226667pt;}
._20_c00462{width:58.754667pt;}
._6_c00462{width:68.640000pt;}
._24_c00462{width:85.592000pt;}
._25_c00462{width:107.861333pt;}
._1d_c00462{width:193.285333pt;}
._a_c00462{width:297.589333pt;}
.fs3_c00462{font-size:36.266667pt;}
.fs6_c00462{font-size:42.666667pt;}
.fs2_c00462{font-size:45.333333pt;}
.fs4_c00462{font-size:58.666667pt;}
.fs0_c00462{font-size:61.333333pt;}
.fs1_c00462{font-size:69.333333pt;}
.fs5_c00462{font-size:96.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y1e_c00462{bottom:2.760000pt;}
.y1d_c00462{bottom:6.425217pt;}
.y1c_c00462{bottom:127.840000pt;}
.y1b_c00462{bottom:150.506667pt;}
.y1a_c00462{bottom:172.506667pt;}
.y19_c00462{bottom:195.040000pt;}
.y18_c00462{bottom:216.906667pt;}
.y17_c00462{bottom:239.440000pt;}
.y16_c00462{bottom:261.040000pt;}
.y15_c00462{bottom:283.440000pt;}
.y14_c00462{bottom:305.306667pt;}
.y13_c00462{bottom:327.306667pt;}
.y12_c00462{bottom:349.440000pt;}
.y11_c00462{bottom:370.773333pt;}
.y10_c00462{bottom:393.306667pt;}
.yf_c00462{bottom:415.706667pt;}
.ye_c00462{bottom:437.440000pt;}
.yd_c00462{bottom:460.106667pt;}
.yc_c00462{bottom:481.440000pt;}
.yb_c00462{bottom:503.440000pt;}
.ya_c00462{bottom:526.506667pt;}
.y9_c00462{bottom:547.440000pt;}
.y8_c00462{bottom:569.706667pt;}
.y1_c00462{bottom:581.706667pt;}
.y7_c00462{bottom:591.840000pt;}
.y6_c00462{bottom:613.706667pt;}
.y5_c00462{bottom:635.973333pt;}
.y4_c00462{bottom:657.840000pt;}
.y3_c00462{bottom:679.840000pt;}
.y2_c00462{bottom:701.973333pt;}
.h5_c00462{height:11.733399pt;}
.h6_c00462{height:38.937500pt;}
.h2_c00462{height:77.654948pt;}
.h3_c00462{height:81.148438pt;}
.h4_c00462{height:121.546875pt;}
.h0_c00462{height:737.733333pt;}
.h1_c00462{height:738.000000pt;}
.w2_c00462{width:93.222667pt;}
.w0_c00462{width:511.666667pt;}
.w1_c00462{width:512.000000pt;}
.x0_c00462{left:0.000000pt;}
.x3_c00462{left:22.133333pt;}
.x4_c00462{left:23.066667pt;}
.x5_c00462{left:24.000000pt;}
.x6_c00462{left:24.933333pt;}
.x2_c00462{left:156.933333pt;}
.x7_c00462{left:213.001546pt;}
.x1_c00462{left:446.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_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_abf754ea720da5f02c8c8f16.woff2')format("woff");}.ff1_c00463{font-family:ff1_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:ff2_c00463;src:url('chunks/assets/font_c165aa3b530e1af07f7799a0.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_fc282df8f474f826c89a1930.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;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_c00463;src:url('chunks/assets/font_e9fbd265f02c71f733ea25ac.woff2')format("woff");}.ff4_c00463{font-family:ff4_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:ff5_c00463;src:url('chunks/assets/font_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_d670c36f133a7f0ce9dc1fb8.woff2')format("woff");}.ff6_c00463{font-family:ff6_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:ff7_c00463;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff7_c00463{font-family:ff7_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);}
.v1_c00463{vertical-align:-87.600000px;}
.v0_c00463{vertical-align:0.000000px;}
.ls8_c00463{letter-spacing:-6.000000px;}
.ls4_c00463{letter-spacing:-3.000000px;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:2.400000px;}
.ls5_c00463{letter-spacing:3.000000px;}
.ls2_c00463{letter-spacing:11.925000px;}
.ls7_c00463{letter-spacing:12.000000px;}
.ls6_c00463{letter-spacing:15.000000px;}
.ls0_c00463{letter-spacing:200.340000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00463{word-spacing:-31.629000px;}
.ws2_c00463{word-spacing:-17.622000px;}
.ws0_c00463{word-spacing:-16.629000px;}
.ws3_c00463{word-spacing:0.000000px;}
._2_c00463{margin-left:-35.802000px;}
._0_c00463{margin-left:-32.994000px;}
._1_c00463{margin-left:-30.537000px;}
._15_c00463{margin-left:-19.389000px;}
._2c_c00463{margin-left:-17.019000px;}
._2b_c00463{margin-left:-14.901000px;}
._1f_c00463{margin-left:-13.524000px;}
._20_c00463{margin-left:-11.661000px;}
._11_c00463{margin-left:-9.957000px;}
._25_c00463{margin-left:-8.628000px;}
._5_c00463{margin-left:-7.452000px;}
._7_c00463{margin-left:-5.658000px;}
._6_c00463{margin-left:-4.347000px;}
._4_c00463{margin-left:-2.898000px;}
._d_c00463{margin-left:-1.764000px;}
._8_c00463{width:1.242000px;}
._9_c00463{width:2.967000px;}
._12_c00463{width:4.554000px;}
._17_c00463{width:5.865000px;}
._a_c00463{width:7.491000px;}
._27_c00463{width:8.532000px;}
._b_c00463{width:10.308000px;}
._13_c00463{width:11.385000px;}
._1d_c00463{width:12.411000px;}
._19_c00463{width:14.007000px;}
._18_c00463{width:15.180000px;}
._1e_c00463{width:16.767000px;}
._1b_c00463{width:18.255000px;}
._24_c00463{width:21.039000px;}
._22_c00463{width:22.110000px;}
._1a_c00463{width:24.534000px;}
._26_c00463{width:26.088000px;}
._21_c00463{width:27.294000px;}
._14_c00463{width:30.606000px;}
._23_c00463{width:34.125000px;}
._16_c00463{width:35.604000px;}
._1c_c00463{width:39.468000px;}
._28_c00463{width:40.641000px;}
._c_c00463{width:44.793000px;}
._10_c00463{width:66.096000px;}
._2e_c00463{width:146.655000px;}
._f_c00463{width:178.950000px;}
._2a_c00463{width:187.719000px;}
._29_c00463{width:205.896000px;}
._3_c00463{width:304.209000px;}
._2d_c00463{width:686.505000px;}
._2f_c00463{width:739.029000px;}
._30_c00463{width:789.015000px;}
._e_c00463{width:816.942000px;}
.fc2_c00463{color:transparent;}
.fc1_c00463{color:rgb(128,128,128);}
.fc0_c00463{color:rgb(0,0,0);}
.fs2_c00463{font-size:42.000000px;}
.fs7_c00463{font-size:48.000000px;}
.fs3_c00463{font-size:54.000000px;}
.fs4_c00463{font-size:66.000000px;}
.fs1_c00463{font-size:69.000000px;}
.fs6_c00463{font-size:75.000000px;}
.fs5_c00463{font-size:93.000000px;}
.fs0_c00463{font-size:117.000000px;}
.y0_c00463{bottom:0.000000px;}
.y1b_c00463{bottom:3.105000px;}
.y1a_c00463{bottom:7.228363px;}
.y19_c00463{bottom:57.600000px;}
.y18_c00463{bottom:82.350000px;}
.y17_c00463{bottom:133.200000px;}
.y16_c00463{bottom:158.850000px;}
.y15_c00463{bottom:208.200000px;}
.y14_c00463{bottom:283.800000px;}
.y13_c00463{bottom:308.850000px;}
.y12_c00463{bottom:332.850000px;}
.y11_c00463{bottom:357.150000px;}
.y10_c00463{bottom:382.350000px;}
.yf_c00463{bottom:406.950000px;}
.ye_c00463{bottom:431.700000px;}
.yd_c00463{bottom:456.900000px;}
.yc_c00463{bottom:481.650000px;}
.yb_c00463{bottom:505.500000px;}
.ya_c00463{bottom:531.000000px;}
.y9_c00463{bottom:555.900000px;}
.y8_c00463{bottom:580.800000px;}
.y7_c00463{bottom:605.700000px;}
.y6_c00463{bottom:630.450000px;}
.y5_c00463{bottom:655.050000px;}
.y4_c00463{bottom:702.000000px;}
.y3_c00463{bottom:729.300000px;}
.y2_c00463{bottom:764.550000px;}
.y1_c00463{bottom:779.550000px;}
.ha_c00463{height:13.200074px;}
.hb_c00463{height:43.804688px;}
.h3_c00463{height:44.814000px;}
.h5_c00463{height:63.202148px;}
.h4_c00463{height:80.758301px;}
.h6_c00463{height:87.361816px;}
.h7_c00463{height:87.961816px;}
.h9_c00463{height:94.958496px;}
.h8_c00463{height:108.848145px;}
.h2_c00463{height:148.135254px;}
.h0_c00463{height:818.100000px;}
.h1_c00463{height:818.250000px;}
.w2_c00463{width:104.875500px;}
.w0_c00463{width:565.350000px;}
.w1_c00463{width:565.500000px;}
.x0_c00463{left:0.000000px;}
.x5_c00463{left:31.350000px;}
.x8_c00463{left:33.750000px;}
.xd_c00463{left:63.150000px;}
.x6_c00463{left:70.800000px;}
.x9_c00463{left:96.600000px;}
.x7_c00463{left:97.650000px;}
.xa_c00463{left:99.000000px;}
.x4_c00463{left:100.350000px;}
.x1_c00463{left:107.700000px;}
.xc_c00463{left:127.200000px;}
.x2_c00463{left:171.900000px;}
.xb_c00463{left:202.950000px;}
.xe_c00463{left:234.489258px;}
.x3_c00463{left:243.750000px;}
@media print{
.v1_c00463{vertical-align:-77.866667pt;}
.v0_c00463{vertical-align:0.000000pt;}
.ls8_c00463{letter-spacing:-5.333333pt;}
.ls4_c00463{letter-spacing:-2.666667pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:2.133333pt;}
.ls5_c00463{letter-spacing:2.666667pt;}
.ls2_c00463{letter-spacing:10.600000pt;}
.ls7_c00463{letter-spacing:10.666667pt;}
.ls6_c00463{letter-spacing:13.333333pt;}
.ls0_c00463{letter-spacing:178.080000pt;}
.ws1_c00463{word-spacing:-28.114667pt;}
.ws2_c00463{word-spacing:-15.664000pt;}
.ws0_c00463{word-spacing:-14.781333pt;}
.ws3_c00463{word-spacing:0.000000pt;}
._2_c00463{margin-left:-31.824000pt;}
._0_c00463{margin-left:-29.328000pt;}
._1_c00463{margin-left:-27.144000pt;}
._15_c00463{margin-left:-17.234667pt;}
._2c_c00463{margin-left:-15.128000pt;}
._2b_c00463{margin-left:-13.245333pt;}
._1f_c00463{margin-left:-12.021333pt;}
._20_c00463{margin-left:-10.365333pt;}
._11_c00463{margin-left:-8.850667pt;}
._25_c00463{margin-left:-7.669333pt;}
._5_c00463{margin-left:-6.624000pt;}
._7_c00463{margin-left:-5.029333pt;}
._6_c00463{margin-left:-3.864000pt;}
._4_c00463{margin-left:-2.576000pt;}
._d_c00463{margin-left:-1.568000pt;}
._8_c00463{width:1.104000pt;}
._9_c00463{width:2.637333pt;}
._12_c00463{width:4.048000pt;}
._17_c00463{width:5.213333pt;}
._a_c00463{width:6.658667pt;}
._27_c00463{width:7.584000pt;}
._b_c00463{width:9.162667pt;}
._13_c00463{width:10.120000pt;}
._1d_c00463{width:11.032000pt;}
._19_c00463{width:12.450667pt;}
._18_c00463{width:13.493333pt;}
._1e_c00463{width:14.904000pt;}
._1b_c00463{width:16.226667pt;}
._24_c00463{width:18.701333pt;}
._22_c00463{width:19.653333pt;}
._1a_c00463{width:21.808000pt;}
._26_c00463{width:23.189333pt;}
._21_c00463{width:24.261333pt;}
._14_c00463{width:27.205333pt;}
._23_c00463{width:30.333333pt;}
._16_c00463{width:31.648000pt;}
._1c_c00463{width:35.082667pt;}
._28_c00463{width:36.125333pt;}
._c_c00463{width:39.816000pt;}
._10_c00463{width:58.752000pt;}
._2e_c00463{width:130.360000pt;}
._f_c00463{width:159.066667pt;}
._2a_c00463{width:166.861333pt;}
._29_c00463{width:183.018667pt;}
._3_c00463{width:270.408000pt;}
._2d_c00463{width:610.226667pt;}
._2f_c00463{width:656.914667pt;}
._30_c00463{width:701.346667pt;}
._e_c00463{width:726.170667pt;}
.fs2_c00463{font-size:37.333333pt;}
.fs7_c00463{font-size:42.666667pt;}
.fs3_c00463{font-size:48.000000pt;}
.fs4_c00463{font-size:58.666667pt;}
.fs1_c00463{font-size:61.333333pt;}
.fs6_c00463{font-size:66.666667pt;}
.fs5_c00463{font-size:82.666667pt;}
.fs0_c00463{font-size:104.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1b_c00463{bottom:2.760000pt;}
.y1a_c00463{bottom:6.425212pt;}
.y19_c00463{bottom:51.200000pt;}
.y18_c00463{bottom:73.200000pt;}
.y17_c00463{bottom:118.400000pt;}
.y16_c00463{bottom:141.200000pt;}
.y15_c00463{bottom:185.066667pt;}
.y14_c00463{bottom:252.266667pt;}
.y13_c00463{bottom:274.533333pt;}
.y12_c00463{bottom:295.866667pt;}
.y11_c00463{bottom:317.466667pt;}
.y10_c00463{bottom:339.866667pt;}
.yf_c00463{bottom:361.733333pt;}
.ye_c00463{bottom:383.733333pt;}
.yd_c00463{bottom:406.133333pt;}
.yc_c00463{bottom:428.133333pt;}
.yb_c00463{bottom:449.333333pt;}
.ya_c00463{bottom:472.000000pt;}
.y9_c00463{bottom:494.133333pt;}
.y8_c00463{bottom:516.266667pt;}
.y7_c00463{bottom:538.400000pt;}
.y6_c00463{bottom:560.400000pt;}
.y5_c00463{bottom:582.266667pt;}
.y4_c00463{bottom:624.000000pt;}
.y3_c00463{bottom:648.266667pt;}
.y2_c00463{bottom:679.600000pt;}
.y1_c00463{bottom:692.933333pt;}
.ha_c00463{height:11.733399pt;}
.hb_c00463{height:38.937500pt;}
.h3_c00463{height:39.834667pt;}
.h5_c00463{height:56.179688pt;}
.h4_c00463{height:71.785156pt;}
.h6_c00463{height:77.654948pt;}
.h7_c00463{height:78.188281pt;}
.h9_c00463{height:84.407552pt;}
.h8_c00463{height:96.753906pt;}
.h2_c00463{height:131.675781pt;}
.h0_c00463{height:727.200000pt;}
.h1_c00463{height:727.333333pt;}
.w2_c00463{width:93.222667pt;}
.w0_c00463{width:502.533333pt;}
.w1_c00463{width:502.666667pt;}
.x0_c00463{left:0.000000pt;}
.x5_c00463{left:27.866667pt;}
.x8_c00463{left:30.000000pt;}
.xd_c00463{left:56.133333pt;}
.x6_c00463{left:62.933333pt;}
.x9_c00463{left:85.866667pt;}
.x7_c00463{left:86.800000pt;}
.xa_c00463{left:88.000000pt;}
.x4_c00463{left:89.200000pt;}
.x1_c00463{left:95.733333pt;}
.xc_c00463{left:113.066667pt;}
.x2_c00463{left:152.800000pt;}
.xb_c00463{left:180.400000pt;}
.xe_c00463{left:208.434896pt;}
.x3_c00463{left:216.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_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_0ad7cefcf7cdc03db40e4512.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_ea1bdd21291b3fbda4cd11b7.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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00464{font-family:ff3_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;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls2_c00464{letter-spacing:3.000000px;}
.ls0_c00464{letter-spacing:5.370000px;}
.ls3_c00464{letter-spacing:15.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:-31.629000px;}
.ws2_c00464{word-spacing:-16.629000px;}
.ws3_c00464{word-spacing:0.000000px;}
.ws1_c00464{word-spacing:0.966000px;}
._6_c00464{margin-left:-11.730000px;}
._19_c00464{margin-left:-9.798000px;}
._1d_c00464{margin-left:-8.763000px;}
._16_c00464{margin-left:-7.452000px;}
._12_c00464{margin-left:-5.829000px;}
._17_c00464{margin-left:-4.245000px;}
._3_c00464{margin-left:-2.691000px;}
._2_c00464{margin-left:-1.311000px;}
._7_c00464{width:1.173000px;}
._1_c00464{width:2.484000px;}
._8_c00464{width:3.588000px;}
._a_c00464{width:4.761000px;}
._1c_c00464{width:5.796000px;}
._0_c00464{width:6.831000px;}
._10_c00464{width:8.004000px;}
._d_c00464{width:9.039000px;}
._c_c00464{width:11.040000px;}
._e_c00464{width:12.351000px;}
._9_c00464{width:14.076000px;}
._13_c00464{width:15.801000px;}
._f_c00464{width:17.319000px;}
._b_c00464{width:18.423000px;}
._11_c00464{width:20.838000px;}
._1a_c00464{width:23.862000px;}
._18_c00464{width:31.533000px;}
._14_c00464{width:41.952000px;}
._1e_c00464{width:78.522000px;}
._1b_c00464{width:98.154000px;}
._4_c00464{width:103.914000px;}
._15_c00464{width:105.018000px;}
._5_c00464{width:240.813000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(128,128,128);}
.fc0_c00464{color:rgb(0,0,0);}
.fs1_c00464{font-size:48.000000px;}
.fs0_c00464{font-size:69.000000px;}
.y0_c00464{bottom:0.000000px;}
.y1a_c00464{bottom:3.105000px;}
.y19_c00464{bottom:7.228371px;}
.y18_c00464{bottom:205.665000px;}
.y17_c00464{bottom:231.315000px;}
.y16_c00464{bottom:256.515000px;}
.y15_c00464{bottom:280.815000px;}
.y14_c00464{bottom:305.865000px;}
.y13_c00464{bottom:330.465000px;}
.y12_c00464{bottom:356.115000px;}
.y11_c00464{bottom:380.115000px;}
.y10_c00464{bottom:405.465000px;}
.yf_c00464{bottom:430.065000px;}
.ye_c00464{bottom:454.965000px;}
.yd_c00464{bottom:479.715000px;}
.yc_c00464{bottom:504.315000px;}
.yb_c00464{bottom:528.915000px;}
.ya_c00464{bottom:553.965000px;}
.y9_c00464{bottom:578.565000px;}
.y8_c00464{bottom:603.765000px;}
.y7_c00464{bottom:628.215000px;}
.y6_c00464{bottom:652.365000px;}
.y5_c00464{bottom:678.465000px;}
.y4_c00464{bottom:702.765000px;}
.y3_c00464{bottom:727.965000px;}
.y2_c00464{bottom:752.415000px;}
.y1_c00464{bottom:777.015000px;}
.h3_c00464{height:13.200074px;}
.h4_c00464{height:43.804688px;}
.h2_c00464{height:87.361816px;}
.h1_c00464{height:817.500000px;}
.h0_c00464{height:817.575000px;}
.w1_c00464{width:104.875500px;}
.w0_c00464{width:567.000000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:29.400000px;}
.x3_c00464{left:30.750000px;}
.x4_c00464{left:31.800000px;}
.x5_c00464{left:32.850000px;}
.x7_c00464{left:34.050000px;}
.x6_c00464{left:35.100000px;}
.x1_c00464{left:180.900000px;}
.x8_c00464{left:235.314240px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls2_c00464{letter-spacing:2.666667pt;}
.ls0_c00464{letter-spacing:4.773333pt;}
.ls3_c00464{letter-spacing:13.333333pt;}
.ws0_c00464{word-spacing:-28.114667pt;}
.ws2_c00464{word-spacing:-14.781333pt;}
.ws3_c00464{word-spacing:0.000000pt;}
.ws1_c00464{word-spacing:0.858667pt;}
._6_c00464{margin-left:-10.426667pt;}
._19_c00464{margin-left:-8.709333pt;}
._1d_c00464{margin-left:-7.789333pt;}
._16_c00464{margin-left:-6.624000pt;}
._12_c00464{margin-left:-5.181333pt;}
._17_c00464{margin-left:-3.773333pt;}
._3_c00464{margin-left:-2.392000pt;}
._2_c00464{margin-left:-1.165333pt;}
._7_c00464{width:1.042667pt;}
._1_c00464{width:2.208000pt;}
._8_c00464{width:3.189333pt;}
._a_c00464{width:4.232000pt;}
._1c_c00464{width:5.152000pt;}
._0_c00464{width:6.072000pt;}
._10_c00464{width:7.114667pt;}
._d_c00464{width:8.034667pt;}
._c_c00464{width:9.813333pt;}
._e_c00464{width:10.978667pt;}
._9_c00464{width:12.512000pt;}
._13_c00464{width:14.045333pt;}
._f_c00464{width:15.394667pt;}
._b_c00464{width:16.376000pt;}
._11_c00464{width:18.522667pt;}
._1a_c00464{width:21.210667pt;}
._18_c00464{width:28.029333pt;}
._14_c00464{width:37.290667pt;}
._1e_c00464{width:69.797333pt;}
._1b_c00464{width:87.248000pt;}
._4_c00464{width:92.368000pt;}
._15_c00464{width:93.349333pt;}
._5_c00464{width:214.056000pt;}
.fs1_c00464{font-size:42.666667pt;}
.fs0_c00464{font-size:61.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y1a_c00464{bottom:2.760000pt;}
.y19_c00464{bottom:6.425219pt;}
.y18_c00464{bottom:182.813333pt;}
.y17_c00464{bottom:205.613333pt;}
.y16_c00464{bottom:228.013333pt;}
.y15_c00464{bottom:249.613333pt;}
.y14_c00464{bottom:271.880000pt;}
.y13_c00464{bottom:293.746667pt;}
.y12_c00464{bottom:316.546667pt;}
.y11_c00464{bottom:337.880000pt;}
.y10_c00464{bottom:360.413333pt;}
.yf_c00464{bottom:382.280000pt;}
.ye_c00464{bottom:404.413333pt;}
.yd_c00464{bottom:426.413333pt;}
.yc_c00464{bottom:448.280000pt;}
.yb_c00464{bottom:470.146667pt;}
.ya_c00464{bottom:492.413333pt;}
.y9_c00464{bottom:514.280000pt;}
.y8_c00464{bottom:536.680000pt;}
.y7_c00464{bottom:558.413333pt;}
.y6_c00464{bottom:579.880000pt;}
.y5_c00464{bottom:603.080000pt;}
.y4_c00464{bottom:624.680000pt;}
.y3_c00464{bottom:647.080000pt;}
.y2_c00464{bottom:668.813333pt;}
.y1_c00464{bottom:690.680000pt;}
.h3_c00464{height:11.733399pt;}
.h4_c00464{height:38.937500pt;}
.h2_c00464{height:77.654948pt;}
.h1_c00464{height:726.666667pt;}
.h0_c00464{height:726.733333pt;}
.w1_c00464{width:93.222667pt;}
.w0_c00464{width:504.000000pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:26.133333pt;}
.x3_c00464{left:27.333333pt;}
.x4_c00464{left:28.266667pt;}
.x5_c00464{left:29.200000pt;}
.x7_c00464{left:30.266667pt;}
.x6_c00464{left:31.200000pt;}
.x1_c00464{left:160.800000pt;}
.x8_c00464{left:209.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_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_fb86030cd73b678958e946b1.woff2')format("woff");}.ff1_c00465{font-family:ff1_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:ff2_c00465;src:url('chunks/assets/font_30d7532f1c0ef493dc1e6da3.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_4fa36cc3abf92e586e45615b.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.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;}
.ls2_c00465{letter-spacing:0.000000px;}
.ls1_c00465{letter-spacing:3.000000px;}
.ls0_c00465{letter-spacing:13.125000px;}
.ls4_c00465{letter-spacing:15.000000px;}
.ls3_c00465{letter-spacing:18.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;}
}
.ws5_c00465{word-spacing:-44.022000px;}
.ws3_c00465{word-spacing:-34.629000px;}
.ws2_c00465{word-spacing:-31.629000px;}
.ws0_c00465{word-spacing:-16.629000px;}
.ws1_c00465{word-spacing:-13.737000px;}
.ws4_c00465{word-spacing:-0.102000px;}
.ws6_c00465{word-spacing:0.000000px;}
._11_c00465{margin-left:-17.319000px;}
._b_c00465{margin-left:-15.042000px;}
._1e_c00465{margin-left:-13.209000px;}
._1c_c00465{margin-left:-10.833000px;}
._17_c00465{margin-left:-9.591000px;}
._10_c00465{margin-left:-7.245000px;}
._e_c00465{margin-left:-6.003000px;}
._c_c00465{margin-left:-4.761000px;}
._f_c00465{margin-left:-3.174000px;}
._3_c00465{margin-left:-1.587000px;}
._d_c00465{width:1.104000px;}
._1_c00465{width:2.208000px;}
._0_c00465{width:3.933000px;}
._13_c00465{width:4.968000px;}
._15_c00465{width:6.141000px;}
._16_c00465{width:7.182000px;}
._a_c00465{width:9.315000px;}
._20_c00465{width:10.551000px;}
._1d_c00465{width:12.006000px;}
._1b_c00465{width:13.041000px;}
._7_c00465{width:15.105000px;}
._8_c00465{width:16.359000px;}
._12_c00465{width:17.733000px;}
._6_c00465{width:18.981000px;}
._4_c00465{width:20.064000px;}
._9_c00465{width:22.230000px;}
._5_c00465{width:23.940000px;}
._1a_c00465{width:26.076000px;}
._18_c00465{width:32.130000px;}
._23_c00465{width:39.606000px;}
._19_c00465{width:50.271000px;}
._22_c00465{width:94.047000px;}
._14_c00465{width:132.291000px;}
._1f_c00465{width:162.771000px;}
._21_c00465{width:295.044000px;}
._2_c00465{width:321.750000px;}
._24_c00465{width:1560.021000px;}
.fc2_c00465{color:transparent;}
.fc1_c00465{color:rgb(128,128,128);}
.fc0_c00465{color:rgb(0,0,0);}
.fs4_c00465{font-size:48.000000px;}
.fs1_c00465{font-size:57.000000px;}
.fs2_c00465{font-size:66.000000px;}
.fs0_c00465{font-size:69.000000px;}
.fs3_c00465{font-size:75.000000px;}
.y0_c00465{bottom:0.000000px;}
.y1d_c00465{bottom:3.105000px;}
.y1c_c00465{bottom:7.228363px;}
.y1b_c00465{bottom:59.400000px;}
.y1a_c00465{bottom:84.150000px;}
.y19_c00465{bottom:110.400000px;}
.y18_c00465{bottom:133.650000px;}
.y17_c00465{bottom:160.350000px;}
.y16_c00465{bottom:184.350000px;}
.y15_c00465{bottom:209.700000px;}
.y14_c00465{bottom:234.900000px;}
.y13_c00465{bottom:259.950000px;}
.y12_c00465{bottom:284.850000px;}
.y11_c00465{bottom:310.500000px;}
.y10_c00465{bottom:333.900000px;}
.yf_c00465{bottom:358.500000px;}
.ye_c00465{bottom:408.750000px;}
.yd_c00465{bottom:433.350000px;}
.yc_c00465{bottom:458.700000px;}
.yb_c00465{bottom:483.900000px;}
.ya_c00465{bottom:508.500000px;}
.y9_c00465{bottom:533.250000px;}
.y8_c00465{bottom:558.600000px;}
.y7_c00465{bottom:582.900000px;}
.y6_c00465{bottom:607.950000px;}
.y5_c00465{bottom:633.150000px;}
.y4_c00465{bottom:658.350000px;}
.y3_c00465{bottom:682.800000px;}
.y2_c00465{bottom:733.050000px;}
.y1_c00465{bottom:782.700000px;}
.h6_c00465{height:13.200074px;}
.h7_c00465{height:43.804688px;}
.h3_c00465{height:66.713379px;}
.h4_c00465{height:80.758301px;}
.h2_c00465{height:87.361816px;}
.h5_c00465{height:94.958496px;}
.h1_c00465{height:827.250000px;}
.h0_c00465{height:827.550000px;}
.w2_c00465{width:104.875500px;}
.w0_c00465{width:572.100000px;}
.w1_c00465{width:572.250000px;}
.x0_c00465{left:0.000000px;}
.xc_c00465{left:31.050000px;}
.x6_c00465{left:32.700000px;}
.xd_c00465{left:47.550000px;}
.x5_c00465{left:67.800000px;}
.x7_c00465{left:72.450000px;}
.xe_c00465{left:93.450000px;}
.x9_c00465{left:95.400000px;}
.x8_c00465{left:97.200000px;}
.x4_c00465{left:99.150000px;}
.x1_c00465{left:110.400000px;}
.xb_c00465{left:120.750000px;}
.x3_c00465{left:123.150000px;}
.xf_c00465{left:126.450000px;}
.x2_c00465{left:192.600000px;}
.xa_c00465{left:222.450000px;}
.x10_c00465{left:237.864258px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls2_c00465{letter-spacing:0.000000pt;}
.ls1_c00465{letter-spacing:2.666667pt;}
.ls0_c00465{letter-spacing:11.666667pt;}
.ls4_c00465{letter-spacing:13.333333pt;}
.ls3_c00465{letter-spacing:16.000000pt;}
.ws5_c00465{word-spacing:-39.130667pt;}
.ws3_c00465{word-spacing:-30.781333pt;}
.ws2_c00465{word-spacing:-28.114667pt;}
.ws0_c00465{word-spacing:-14.781333pt;}
.ws1_c00465{word-spacing:-12.210667pt;}
.ws4_c00465{word-spacing:-0.090667pt;}
.ws6_c00465{word-spacing:0.000000pt;}
._11_c00465{margin-left:-15.394667pt;}
._b_c00465{margin-left:-13.370667pt;}
._1e_c00465{margin-left:-11.741333pt;}
._1c_c00465{margin-left:-9.629333pt;}
._17_c00465{margin-left:-8.525333pt;}
._10_c00465{margin-left:-6.440000pt;}
._e_c00465{margin-left:-5.336000pt;}
._c_c00465{margin-left:-4.232000pt;}
._f_c00465{margin-left:-2.821333pt;}
._3_c00465{margin-left:-1.410667pt;}
._d_c00465{width:0.981333pt;}
._1_c00465{width:1.962667pt;}
._0_c00465{width:3.496000pt;}
._13_c00465{width:4.416000pt;}
._15_c00465{width:5.458667pt;}
._16_c00465{width:6.384000pt;}
._a_c00465{width:8.280000pt;}
._20_c00465{width:9.378667pt;}
._1d_c00465{width:10.672000pt;}
._1b_c00465{width:11.592000pt;}
._7_c00465{width:13.426667pt;}
._8_c00465{width:14.541333pt;}
._12_c00465{width:15.762667pt;}
._6_c00465{width:16.872000pt;}
._4_c00465{width:17.834667pt;}
._9_c00465{width:19.760000pt;}
._5_c00465{width:21.280000pt;}
._1a_c00465{width:23.178667pt;}
._18_c00465{width:28.560000pt;}
._23_c00465{width:35.205333pt;}
._19_c00465{width:44.685333pt;}
._22_c00465{width:83.597333pt;}
._14_c00465{width:117.592000pt;}
._1f_c00465{width:144.685333pt;}
._21_c00465{width:262.261333pt;}
._2_c00465{width:286.000000pt;}
._24_c00465{width:1386.685333pt;}
.fs4_c00465{font-size:42.666667pt;}
.fs1_c00465{font-size:50.666667pt;}
.fs2_c00465{font-size:58.666667pt;}
.fs0_c00465{font-size:61.333333pt;}
.fs3_c00465{font-size:66.666667pt;}
.y0_c00465{bottom:0.000000pt;}
.y1d_c00465{bottom:2.760000pt;}
.y1c_c00465{bottom:6.425212pt;}
.y1b_c00465{bottom:52.800000pt;}
.y1a_c00465{bottom:74.800000pt;}
.y19_c00465{bottom:98.133333pt;}
.y18_c00465{bottom:118.800000pt;}
.y17_c00465{bottom:142.533333pt;}
.y16_c00465{bottom:163.866667pt;}
.y15_c00465{bottom:186.400000pt;}
.y14_c00465{bottom:208.800000pt;}
.y13_c00465{bottom:231.066667pt;}
.y12_c00465{bottom:253.200000pt;}
.y11_c00465{bottom:276.000000pt;}
.y10_c00465{bottom:296.800000pt;}
.yf_c00465{bottom:318.666667pt;}
.ye_c00465{bottom:363.333333pt;}
.yd_c00465{bottom:385.200000pt;}
.yc_c00465{bottom:407.733333pt;}
.yb_c00465{bottom:430.133333pt;}
.ya_c00465{bottom:452.000000pt;}
.y9_c00465{bottom:474.000000pt;}
.y8_c00465{bottom:496.533333pt;}
.y7_c00465{bottom:518.133333pt;}
.y6_c00465{bottom:540.400000pt;}
.y5_c00465{bottom:562.800000pt;}
.y4_c00465{bottom:585.200000pt;}
.y3_c00465{bottom:606.933333pt;}
.y2_c00465{bottom:651.600000pt;}
.y1_c00465{bottom:695.733333pt;}
.h6_c00465{height:11.733399pt;}
.h7_c00465{height:38.937500pt;}
.h3_c00465{height:59.300781pt;}
.h4_c00465{height:71.785156pt;}
.h2_c00465{height:77.654948pt;}
.h5_c00465{height:84.407552pt;}
.h1_c00465{height:735.333333pt;}
.h0_c00465{height:735.600000pt;}
.w2_c00465{width:93.222667pt;}
.w0_c00465{width:508.533333pt;}
.w1_c00465{width:508.666667pt;}
.x0_c00465{left:0.000000pt;}
.xc_c00465{left:27.600000pt;}
.x6_c00465{left:29.066667pt;}
.xd_c00465{left:42.266667pt;}
.x5_c00465{left:60.266667pt;}
.x7_c00465{left:64.400000pt;}
.xe_c00465{left:83.066667pt;}
.x9_c00465{left:84.800000pt;}
.x8_c00465{left:86.400000pt;}
.x4_c00465{left:88.133333pt;}
.x1_c00465{left:98.133333pt;}
.xb_c00465{left:107.333333pt;}
.x3_c00465{left:109.466667pt;}
.xf_c00465{left:112.400000pt;}
.x2_c00465{left:171.200000pt;}
.xa_c00465{left:197.733333pt;}
.x10_c00465{left:211.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_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_c0a0a3ca3ced4d63ba4aa3c5.woff2')format("woff");}.ff1_c00466{font-family:ff1_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:ff2_c00466;src:url('chunks/assets/font_d87968d39503098b96619f73.woff2')format("woff");}.ff2_c00466{font-family:ff2_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:ff3_c00466;src:url('chunks/assets/font_a879dfe0e3f5f7eaff1fba68.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_75d502e2afbc1217f75b18f4.woff2')format("woff");}.ff4_c00466{font-family:ff4_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:ff5_c00466;src:url('chunks/assets/font_5242f963924a835137842044.woff2')format("woff");}.ff5_c00466{font-family:ff5_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:ff6_c00466;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00466{font-family:ff6_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;}
.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;}
.ls4_c00466{letter-spacing:0.000000px;}
.ls5_c00466{letter-spacing:3.000000px;}
.ls2_c00466{letter-spacing:4.200000px;}
.ls7_c00466{letter-spacing:6.000000px;}
.ls0_c00466{letter-spacing:6.771000px;}
.ls6_c00466{letter-spacing:15.000000px;}
.ls3_c00466{letter-spacing:19.500000px;}
.ls1_c00466{letter-spacing:27.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:-39.100800px;}
.ws1_c00466{word-spacing:-31.629000px;}
.ws2_c00466{word-spacing:-22.629000px;}
.ws4_c00466{word-spacing:-16.629000px;}
.ws5_c00466{word-spacing:0.000000px;}
.ws3_c00466{word-spacing:0.966000px;}
._1f_c00466{margin-left:-16.641000px;}
._1c_c00466{margin-left:-11.730000px;}
._18_c00466{margin-left:-8.260800px;}
._15_c00466{margin-left:-7.140000px;}
._11_c00466{margin-left:-5.175000px;}
._d_c00466{margin-left:-3.657000px;}
._10_c00466{margin-left:-2.415000px;}
._2_c00466{margin-left:-1.380000px;}
._0_c00466{width:1.104000px;}
._8_c00466{width:2.898000px;}
._5_c00466{width:3.933000px;}
._7_c00466{width:5.382000px;}
._4_c00466{width:6.900000px;}
._1_c00466{width:7.935000px;}
._a_c00466{width:9.867000px;}
._9_c00466{width:11.247000px;}
._c_c00466{width:12.765000px;}
._b_c00466{width:14.628000px;}
._16_c00466{width:16.077000px;}
._f_c00466{width:17.319000px;}
._e_c00466{width:18.561000px;}
._13_c00466{width:20.976000px;}
._14_c00466{width:23.322000px;}
._12_c00466{width:24.495000px;}
._19_c00466{width:25.497000px;}
._17_c00466{width:30.810000px;}
._1a_c00466{width:33.543000px;}
._1d_c00466{width:35.934000px;}
._1e_c00466{width:40.020000px;}
._1b_c00466{width:71.886000px;}
._21_c00466{width:125.685000px;}
._6_c00466{width:158.562000px;}
._20_c00466{width:236.739000px;}
._22_c00466{width:393.396000px;}
._3_c00466{width:493.791000px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(128,128,128);}
.fc0_c00466{color:rgb(0,0,0);}
.fs6_c00466{font-size:48.000000px;}
.fs1_c00466{font-size:55.200000px;}
.fs2_c00466{font-size:66.000000px;}
.fs0_c00466{font-size:69.000000px;}
.fs4_c00466{font-size:75.000000px;}
.fs5_c00466{font-size:78.000000px;}
.fs3_c00466{font-size:81.000000px;}
.y0_c00466{bottom:0.000000px;}
.y1e_c00466{bottom:3.105000px;}
.y1d_c00466{bottom:7.228363px;}
.y1c_c00466{bottom:61.500000px;}
.y1b_c00466{bottom:85.350000px;}
.y1a_c00466{bottom:111.150000px;}
.y19_c00466{bottom:135.750000px;}
.y18_c00466{bottom:160.950000px;}
.y17_c00466{bottom:186.300000px;}
.y16_c00466{bottom:212.250000px;}
.y15_c00466{bottom:236.250000px;}
.y14_c00466{bottom:261.600000px;}
.y13_c00466{bottom:287.550000px;}
.y12_c00466{bottom:311.850000px;}
.y11_c00466{bottom:337.500000px;}
.y10_c00466{bottom:361.800000px;}
.yf_c00466{bottom:387.150000px;}
.ye_c00466{bottom:437.100000px;}
.yd_c00466{bottom:487.050000px;}
.yc_c00466{bottom:512.400000px;}
.yb_c00466{bottom:537.750000px;}
.ya_c00466{bottom:562.350000px;}
.y9_c00466{bottom:587.550000px;}
.y8_c00466{bottom:612.900000px;}
.y7_c00466{bottom:636.300000px;}
.y6_c00466{bottom:662.250000px;}
.y5_c00466{bottom:687.450000px;}
.y4_c00466{bottom:713.100000px;}
.y3_c00466{bottom:737.400000px;}
.y2_c00466{bottom:763.050000px;}
.y1_c00466{bottom:787.350000px;}
.h6_c00466{height:13.200074px;}
.h7_c00466{height:43.804688px;}
.h3_c00466{height:80.758301px;}
.h2_c00466{height:87.361816px;}
.h4_c00466{height:94.958496px;}
.h5_c00466{height:98.756836px;}
.h0_c00466{height:831.600000px;}
.h1_c00466{height:831.750000px;}
.w1_c00466{width:104.875500px;}
.w0_c00466{width:576.750000px;}
.x0_c00466{left:0.000000px;}
.x7_c00466{left:18.150000px;}
.x3_c00466{left:19.200000px;}
.x4_c00466{left:20.250000px;}
.x5_c00466{left:21.300000px;}
.x6_c00466{left:22.500000px;}
.x9_c00466{left:45.150000px;}
.xa_c00466{left:56.400000px;}
.x2_c00466{left:58.350000px;}
.x8_c00466{left:127.200000px;}
.x1_c00466{left:172.050000px;}
.xc_c00466{left:240.189240px;}
.xb_c00466{left:262.950000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls4_c00466{letter-spacing:0.000000pt;}
.ls5_c00466{letter-spacing:2.666667pt;}
.ls2_c00466{letter-spacing:3.733333pt;}
.ls7_c00466{letter-spacing:5.333333pt;}
.ls0_c00466{letter-spacing:6.018667pt;}
.ls6_c00466{letter-spacing:13.333333pt;}
.ls3_c00466{letter-spacing:17.333333pt;}
.ls1_c00466{letter-spacing:24.000000pt;}
.ws0_c00466{word-spacing:-34.756267pt;}
.ws1_c00466{word-spacing:-28.114667pt;}
.ws2_c00466{word-spacing:-20.114667pt;}
.ws4_c00466{word-spacing:-14.781333pt;}
.ws5_c00466{word-spacing:0.000000pt;}
.ws3_c00466{word-spacing:0.858667pt;}
._1f_c00466{margin-left:-14.792000pt;}
._1c_c00466{margin-left:-10.426667pt;}
._18_c00466{margin-left:-7.342933pt;}
._15_c00466{margin-left:-6.346667pt;}
._11_c00466{margin-left:-4.600000pt;}
._d_c00466{margin-left:-3.250667pt;}
._10_c00466{margin-left:-2.146667pt;}
._2_c00466{margin-left:-1.226667pt;}
._0_c00466{width:0.981333pt;}
._8_c00466{width:2.576000pt;}
._5_c00466{width:3.496000pt;}
._7_c00466{width:4.784000pt;}
._4_c00466{width:6.133333pt;}
._1_c00466{width:7.053333pt;}
._a_c00466{width:8.770667pt;}
._9_c00466{width:9.997333pt;}
._c_c00466{width:11.346667pt;}
._b_c00466{width:13.002667pt;}
._16_c00466{width:14.290667pt;}
._f_c00466{width:15.394667pt;}
._e_c00466{width:16.498667pt;}
._13_c00466{width:18.645333pt;}
._14_c00466{width:20.730667pt;}
._12_c00466{width:21.773333pt;}
._19_c00466{width:22.664000pt;}
._17_c00466{width:27.386667pt;}
._1a_c00466{width:29.816000pt;}
._1d_c00466{width:31.941333pt;}
._1e_c00466{width:35.573333pt;}
._1b_c00466{width:63.898667pt;}
._21_c00466{width:111.720000pt;}
._6_c00466{width:140.944000pt;}
._20_c00466{width:210.434667pt;}
._22_c00466{width:349.685333pt;}
._3_c00466{width:438.925333pt;}
.fs6_c00466{font-size:42.666667pt;}
.fs1_c00466{font-size:49.066667pt;}
.fs2_c00466{font-size:58.666667pt;}
.fs0_c00466{font-size:61.333333pt;}
.fs4_c00466{font-size:66.666667pt;}
.fs5_c00466{font-size:69.333333pt;}
.fs3_c00466{font-size:72.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y1e_c00466{bottom:2.760000pt;}
.y1d_c00466{bottom:6.425212pt;}
.y1c_c00466{bottom:54.666667pt;}
.y1b_c00466{bottom:75.866667pt;}
.y1a_c00466{bottom:98.800000pt;}
.y19_c00466{bottom:120.666667pt;}
.y18_c00466{bottom:143.066667pt;}
.y17_c00466{bottom:165.600000pt;}
.y16_c00466{bottom:188.666667pt;}
.y15_c00466{bottom:210.000000pt;}
.y14_c00466{bottom:232.533333pt;}
.y13_c00466{bottom:255.600000pt;}
.y12_c00466{bottom:277.200000pt;}
.y11_c00466{bottom:300.000000pt;}
.y10_c00466{bottom:321.600000pt;}
.yf_c00466{bottom:344.133333pt;}
.ye_c00466{bottom:388.533333pt;}
.yd_c00466{bottom:432.933333pt;}
.yc_c00466{bottom:455.466667pt;}
.yb_c00466{bottom:478.000000pt;}
.ya_c00466{bottom:499.866667pt;}
.y9_c00466{bottom:522.266667pt;}
.y8_c00466{bottom:544.800000pt;}
.y7_c00466{bottom:565.600000pt;}
.y6_c00466{bottom:588.666667pt;}
.y5_c00466{bottom:611.066667pt;}
.y4_c00466{bottom:633.866667pt;}
.y3_c00466{bottom:655.466667pt;}
.y2_c00466{bottom:678.266667pt;}
.y1_c00466{bottom:699.866667pt;}
.h6_c00466{height:11.733399pt;}
.h7_c00466{height:38.937500pt;}
.h3_c00466{height:71.785156pt;}
.h2_c00466{height:77.654948pt;}
.h4_c00466{height:84.407552pt;}
.h5_c00466{height:87.783854pt;}
.h0_c00466{height:739.200000pt;}
.h1_c00466{height:739.333333pt;}
.w1_c00466{width:93.222667pt;}
.w0_c00466{width:512.666667pt;}
.x0_c00466{left:0.000000pt;}
.x7_c00466{left:16.133333pt;}
.x3_c00466{left:17.066667pt;}
.x4_c00466{left:18.000000pt;}
.x5_c00466{left:18.933333pt;}
.x6_c00466{left:20.000000pt;}
.x9_c00466{left:40.133333pt;}
.xa_c00466{left:50.133333pt;}
.x2_c00466{left:51.866667pt;}
.x8_c00466{left:113.066667pt;}
.x1_c00466{left:152.933333pt;}
.xc_c00466{left:213.501546pt;}
.xb_c00466{left:233.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_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_8d1589dfc3859237444f0855.woff2')format("woff");}.ff1_c00467{font-family:ff1_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:ff2_c00467;src:url('chunks/assets/font_a3426b5ad1b76fb021c3a4cf.woff2')format("woff");}.ff2_c00467{font-family:ff2_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:ff3_c00467;src:url('chunks/assets/font_84494749a1ce02f21cd4bfed.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;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_c00467;src:url('chunks/assets/font_c2f3a2d533a344befa929220.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00467;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00467{font-family:ff5_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);}
.v1_c00467{vertical-align:-99.000000px;}
.v0_c00467{vertical-align:0.000000px;}
.ls5_c00467{letter-spacing:0.000000px;}
.ls4_c00467{letter-spacing:3.000000px;}
.ls0_c00467{letter-spacing:6.000000px;}
.ls3_c00467{letter-spacing:7.200000px;}
.ls6_c00467{letter-spacing:15.000000px;}
.ls1_c00467{letter-spacing:17.325000px;}
.ls2_c00467{letter-spacing:18.600000px;}
.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;}
}
.ws4_c00467{word-spacing:-31.629000px;}
.ws3_c00467{word-spacing:-22.629000px;}
.ws0_c00467{word-spacing:-18.798000px;}
.ws2_c00467{word-spacing:-16.629000px;}
.ws5_c00467{word-spacing:-0.171000px;}
.ws1_c00467{word-spacing:-0.072000px;}
.ws6_c00467{word-spacing:0.000000px;}
._21_c00467{margin-left:-16.284000px;}
._1c_c00467{margin-left:-12.396000px;}
._16_c00467{margin-left:-10.599000px;}
._9_c00467{margin-left:-8.418000px;}
._18_c00467{margin-left:-7.281000px;}
._5_c00467{margin-left:-5.976000px;}
._3_c00467{margin-left:-4.212000px;}
._7_c00467{margin-left:-3.117000px;}
._4_c00467{margin-left:-2.028000px;}
._1a_c00467{margin-left:-1.026000px;}
._6_c00467{width:2.001000px;}
._0_c00467{width:3.384000px;}
._1_c00467{width:4.896000px;}
._12_c00467{width:6.420000px;}
._15_c00467{width:7.521000px;}
._19_c00467{width:8.865000px;}
._e_c00467{width:9.867000px;}
._11_c00467{width:11.592000px;}
._14_c00467{width:13.098000px;}
._b_c00467{width:14.355000px;}
._c_c00467{width:15.732000px;}
._f_c00467{width:17.112000px;}
._a_c00467{width:18.216000px;}
._10_c00467{width:21.804000px;}
._1f_c00467{width:23.454000px;}
._20_c00467{width:24.681000px;}
._17_c00467{width:27.519000px;}
._d_c00467{width:29.739000px;}
._23_c00467{width:42.636000px;}
._1b_c00467{width:52.347000px;}
._22_c00467{width:81.765000px;}
._1e_c00467{width:104.445000px;}
._8_c00467{width:163.692000px;}
._13_c00467{width:206.997000px;}
._2_c00467{width:407.640000px;}
._24_c00467{width:1033.746000px;}
._1d_c00467{width:1156.755000px;}
.fc2_c00467{color:transparent;}
.fc1_c00467{color:rgb(128,128,128);}
.fc0_c00467{color:rgb(0,0,0);}
.fs5_c00467{font-size:48.000000px;}
.fs4_c00467{font-size:60.000000px;}
.fs3_c00467{font-size:66.000000px;}
.fs2_c00467{font-size:69.000000px;}
.fs0_c00467{font-size:72.000000px;}
.fs1_c00467{font-size:78.000000px;}
.y0_c00467{bottom:0.000000px;}
.y1e_c00467{bottom:3.105000px;}
.y1d_c00467{bottom:7.228363px;}
.y1c_c00467{bottom:79.350000px;}
.y1b_c00467{bottom:106.200000px;}
.y1a_c00467{bottom:132.300000px;}
.y19_c00467{bottom:157.200000px;}
.y18_c00467{bottom:182.550000px;}
.y17_c00467{bottom:207.450000px;}
.y16_c00467{bottom:233.100000px;}
.y15_c00467{bottom:258.450000px;}
.y14_c00467{bottom:282.750000px;}
.y13_c00467{bottom:308.100000px;}
.y12_c00467{bottom:332.700000px;}
.y11_c00467{bottom:357.450000px;}
.y10_c00467{bottom:383.100000px;}
.yf_c00467{bottom:408.000000px;}
.ye_c00467{bottom:433.950000px;}
.yd_c00467{bottom:458.250000px;}
.yc_c00467{bottom:508.500000px;}
.yb_c00467{bottom:534.150000px;}
.ya_c00467{bottom:558.900000px;}
.y9_c00467{bottom:583.800000px;}
.y8_c00467{bottom:609.150000px;}
.y7_c00467{bottom:633.750000px;}
.y6_c00467{bottom:658.800000px;}
.y5_c00467{bottom:684.000000px;}
.y4_c00467{bottom:708.300000px;}
.y3_c00467{bottom:733.950000px;}
.y2_c00467{bottom:758.400000px;}
.y1_c00467{bottom:783.450000px;}
.h4_c00467{height:13.200074px;}
.h5_c00467{height:43.804688px;}
.h3_c00467{height:87.361816px;}
.h2_c00467{height:91.291992px;}
.h1_c00467{height:827.250000px;}
.h0_c00467{height:827.550000px;}
.w2_c00467{width:104.875500px;}
.w0_c00467{width:572.100000px;}
.w1_c00467{width:572.250000px;}
.x0_c00467{left:0.000000px;}
.xc_c00467{left:42.150000px;}
.xb_c00467{left:53.250000px;}
.xe_c00467{left:76.500000px;}
.x2_c00467{left:105.600000px;}
.xd_c00467{left:108.300000px;}
.x9_c00467{left:109.350000px;}
.x5_c00467{left:112.350000px;}
.x3_c00467{left:113.400000px;}
.x1_c00467{left:119.400000px;}
.x8_c00467{left:137.100000px;}
.xa_c00467{left:138.300000px;}
.x4_c00467{left:170.400000px;}
.x6_c00467{left:175.800000px;}
.xf_c00467{left:237.864258px;}
.x7_c00467{left:239.850000px;}
@media print{
.v1_c00467{vertical-align:-88.000000pt;}
.v0_c00467{vertical-align:0.000000pt;}
.ls5_c00467{letter-spacing:0.000000pt;}
.ls4_c00467{letter-spacing:2.666667pt;}
.ls0_c00467{letter-spacing:5.333333pt;}
.ls3_c00467{letter-spacing:6.400000pt;}
.ls6_c00467{letter-spacing:13.333333pt;}
.ls1_c00467{letter-spacing:15.400000pt;}
.ls2_c00467{letter-spacing:16.533333pt;}
.ws4_c00467{word-spacing:-28.114667pt;}
.ws3_c00467{word-spacing:-20.114667pt;}
.ws0_c00467{word-spacing:-16.709333pt;}
.ws2_c00467{word-spacing:-14.781333pt;}
.ws5_c00467{word-spacing:-0.152000pt;}
.ws1_c00467{word-spacing:-0.064000pt;}
.ws6_c00467{word-spacing:0.000000pt;}
._21_c00467{margin-left:-14.474667pt;}
._1c_c00467{margin-left:-11.018667pt;}
._16_c00467{margin-left:-9.421333pt;}
._9_c00467{margin-left:-7.482667pt;}
._18_c00467{margin-left:-6.472000pt;}
._5_c00467{margin-left:-5.312000pt;}
._3_c00467{margin-left:-3.744000pt;}
._7_c00467{margin-left:-2.770667pt;}
._4_c00467{margin-left:-1.802667pt;}
._1a_c00467{margin-left:-0.912000pt;}
._6_c00467{width:1.778667pt;}
._0_c00467{width:3.008000pt;}
._1_c00467{width:4.352000pt;}
._12_c00467{width:5.706667pt;}
._15_c00467{width:6.685333pt;}
._19_c00467{width:7.880000pt;}
._e_c00467{width:8.770667pt;}
._11_c00467{width:10.304000pt;}
._14_c00467{width:11.642667pt;}
._b_c00467{width:12.760000pt;}
._c_c00467{width:13.984000pt;}
._f_c00467{width:15.210667pt;}
._a_c00467{width:16.192000pt;}
._10_c00467{width:19.381333pt;}
._1f_c00467{width:20.848000pt;}
._20_c00467{width:21.938667pt;}
._17_c00467{width:24.461333pt;}
._d_c00467{width:26.434667pt;}
._23_c00467{width:37.898667pt;}
._1b_c00467{width:46.530667pt;}
._22_c00467{width:72.680000pt;}
._1e_c00467{width:92.840000pt;}
._8_c00467{width:145.504000pt;}
._13_c00467{width:183.997333pt;}
._2_c00467{width:362.346667pt;}
._24_c00467{width:918.885333pt;}
._1d_c00467{width:1028.226667pt;}
.fs5_c00467{font-size:42.666667pt;}
.fs4_c00467{font-size:53.333333pt;}
.fs3_c00467{font-size:58.666667pt;}
.fs2_c00467{font-size:61.333333pt;}
.fs0_c00467{font-size:64.000000pt;}
.fs1_c00467{font-size:69.333333pt;}
.y0_c00467{bottom:0.000000pt;}
.y1e_c00467{bottom:2.760000pt;}
.y1d_c00467{bottom:6.425212pt;}
.y1c_c00467{bottom:70.533333pt;}
.y1b_c00467{bottom:94.400000pt;}
.y1a_c00467{bottom:117.600000pt;}
.y19_c00467{bottom:139.733333pt;}
.y18_c00467{bottom:162.266667pt;}
.y17_c00467{bottom:184.400000pt;}
.y16_c00467{bottom:207.200000pt;}
.y15_c00467{bottom:229.733333pt;}
.y14_c00467{bottom:251.333333pt;}
.y13_c00467{bottom:273.866667pt;}
.y12_c00467{bottom:295.733333pt;}
.y11_c00467{bottom:317.733333pt;}
.y10_c00467{bottom:340.533333pt;}
.yf_c00467{bottom:362.666667pt;}
.ye_c00467{bottom:385.733333pt;}
.yd_c00467{bottom:407.333333pt;}
.yc_c00467{bottom:452.000000pt;}
.yb_c00467{bottom:474.800000pt;}
.ya_c00467{bottom:496.800000pt;}
.y9_c00467{bottom:518.933333pt;}
.y8_c00467{bottom:541.466667pt;}
.y7_c00467{bottom:563.333333pt;}
.y6_c00467{bottom:585.600000pt;}
.y5_c00467{bottom:608.000000pt;}
.y4_c00467{bottom:629.600000pt;}
.y3_c00467{bottom:652.400000pt;}
.y2_c00467{bottom:674.133333pt;}
.y1_c00467{bottom:696.400000pt;}
.h4_c00467{height:11.733399pt;}
.h5_c00467{height:38.937500pt;}
.h3_c00467{height:77.654948pt;}
.h2_c00467{height:81.148438pt;}
.h1_c00467{height:735.333333pt;}
.h0_c00467{height:735.600000pt;}
.w2_c00467{width:93.222667pt;}
.w0_c00467{width:508.533333pt;}
.w1_c00467{width:508.666667pt;}
.x0_c00467{left:0.000000pt;}
.xc_c00467{left:37.466667pt;}
.xb_c00467{left:47.333333pt;}
.xe_c00467{left:68.000000pt;}
.x2_c00467{left:93.866667pt;}
.xd_c00467{left:96.266667pt;}
.x9_c00467{left:97.200000pt;}
.x5_c00467{left:99.866667pt;}
.x3_c00467{left:100.800000pt;}
.x1_c00467{left:106.133333pt;}
.x8_c00467{left:121.866667pt;}
.xa_c00467{left:122.933333pt;}
.x4_c00467{left:151.466667pt;}
.x6_c00467{left:156.266667pt;}
.xf_c00467{left:211.434896pt;}
.x7_c00467{left:213.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_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_b7755695c9bd7190ea0faa03.woff2')format("woff");}.ff1_c00468{font-family:ff1_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:ff2_c00468;src:url('chunks/assets/font_79e8a9bc7ab94850e21421b8.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.568848;font-style:normal;font-weight:normal;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_e82cb5a4891df68981aacc9c.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.568848;font-style:normal;font-weight:normal;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_97ccdfcb8b4910661ac216f7.woff2')format("woff");}.ff4_c00468{font-family:ff4_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:ff5_c00468;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff5_c00468{font-family:ff5_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:3.000000px;}
.ls2_c00468{letter-spacing:6.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;}
}
.ws2_c00468{word-spacing:-44.022000px;}
.ws1_c00468{word-spacing:-22.629000px;}
.ws3_c00468{word-spacing:-19.629000px;}
.ws0_c00468{word-spacing:-16.629000px;}
.ws4_c00468{word-spacing:0.000000px;}
._18_c00468{margin-left:-28.152000px;}
._1b_c00468{margin-left:-16.146000px;}
._1c_c00468{margin-left:-12.972000px;}
._10_c00468{margin-left:-10.833000px;}
._4_c00468{margin-left:-9.039000px;}
._11_c00468{margin-left:-7.935000px;}
._e_c00468{margin-left:-6.486000px;}
._d_c00468{margin-left:-5.244000px;}
._c_c00468{margin-left:-3.726000px;}
._f_c00468{margin-left:-2.691000px;}
._7_c00468{margin-left:-1.656000px;}
._2_c00468{width:1.242000px;}
._1_c00468{width:2.277000px;}
._0_c00468{width:3.519000px;}
._12_c00468{width:4.728000px;}
._b_c00468{width:6.279000px;}
._5_c00468{width:7.383000px;}
._16_c00468{width:8.676000px;}
._1d_c00468{width:9.729000px;}
._9_c00468{width:10.764000px;}
._6_c00468{width:12.627000px;}
._8_c00468{width:14.007000px;}
._19_c00468{width:16.146000px;}
._17_c00468{width:17.694000px;}
._1a_c00468{width:21.087000px;}
._14_c00468{width:23.109000px;}
._a_c00468{width:30.126000px;}
._15_c00468{width:91.527000px;}
._13_c00468{width:197.409000px;}
._3_c00468{width:311.379000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(128,128,128);}
.fc0_c00468{color:rgb(0,0,0);}
.fs3_c00468{font-size:48.000000px;}
.fs1_c00468{font-size:60.000000px;}
.fs2_c00468{font-size:66.000000px;}
.fs0_c00468{font-size:69.000000px;}
.y0_c00468{bottom:0.000000px;}
.y14_c00468{bottom:3.105000px;}
.y13_c00468{bottom:7.228355px;}
.y12_c00468{bottom:283.785000px;}
.y11_c00468{bottom:334.035000px;}
.y10_c00468{bottom:358.335000px;}
.yf_c00468{bottom:383.385000px;}
.ye_c00468{bottom:408.285000px;}
.yd_c00468{bottom:432.885000px;}
.yc_c00468{bottom:458.235000px;}
.yb_c00468{bottom:482.985000px;}
.ya_c00468{bottom:507.585000px;}
.y9_c00468{bottom:532.485000px;}
.y8_c00468{bottom:557.235000px;}
.y7_c00468{bottom:581.835000px;}
.y6_c00468{bottom:608.385000px;}
.y5_c00468{bottom:632.685000px;}
.y4_c00468{bottom:657.435000px;}
.y3_c00468{bottom:682.335000px;}
.y2_c00468{bottom:731.385000px;}
.y1_c00468{bottom:781.635000px;}
.h4_c00468{height:13.200074px;}
.h5_c00468{height:43.804688px;}
.h3_c00468{height:80.758301px;}
.h2_c00468{height:87.361816px;}
.h0_c00468{height:818.625000px;}
.h1_c00468{height:819.000000px;}
.w2_c00468{width:104.875500px;}
.w0_c00468{width:567.525000px;}
.w1_c00468{width:567.750000px;}
.x0_c00468{left:0.000000px;}
.x4_c00468{left:31.350000px;}
.x6_c00468{left:32.400000px;}
.x7_c00468{left:33.750000px;}
.x3_c00468{left:55.350000px;}
.x5_c00468{left:58.350000px;}
.xa_c00468{left:84.600000px;}
.x8_c00468{left:94.800000px;}
.x2_c00468{left:154.650000px;}
.x1_c00468{left:193.950000px;}
.x9_c00468{left:211.650000px;}
.xb_c00468{left:235.576767px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:2.666667pt;}
.ls2_c00468{letter-spacing:5.333333pt;}
.ws2_c00468{word-spacing:-39.130667pt;}
.ws1_c00468{word-spacing:-20.114667pt;}
.ws3_c00468{word-spacing:-17.448000pt;}
.ws0_c00468{word-spacing:-14.781333pt;}
.ws4_c00468{word-spacing:0.000000pt;}
._18_c00468{margin-left:-25.024000pt;}
._1b_c00468{margin-left:-14.352000pt;}
._1c_c00468{margin-left:-11.530667pt;}
._10_c00468{margin-left:-9.629333pt;}
._4_c00468{margin-left:-8.034667pt;}
._11_c00468{margin-left:-7.053333pt;}
._e_c00468{margin-left:-5.765333pt;}
._d_c00468{margin-left:-4.661333pt;}
._c_c00468{margin-left:-3.312000pt;}
._f_c00468{margin-left:-2.392000pt;}
._7_c00468{margin-left:-1.472000pt;}
._2_c00468{width:1.104000pt;}
._1_c00468{width:2.024000pt;}
._0_c00468{width:3.128000pt;}
._12_c00468{width:4.202667pt;}
._b_c00468{width:5.581333pt;}
._5_c00468{width:6.562667pt;}
._16_c00468{width:7.712000pt;}
._1d_c00468{width:8.648000pt;}
._9_c00468{width:9.568000pt;}
._6_c00468{width:11.224000pt;}
._8_c00468{width:12.450667pt;}
._19_c00468{width:14.352000pt;}
._17_c00468{width:15.728000pt;}
._1a_c00468{width:18.744000pt;}
._14_c00468{width:20.541333pt;}
._a_c00468{width:26.778667pt;}
._15_c00468{width:81.357333pt;}
._13_c00468{width:175.474667pt;}
._3_c00468{width:276.781333pt;}
.fs3_c00468{font-size:42.666667pt;}
.fs1_c00468{font-size:53.333333pt;}
.fs2_c00468{font-size:58.666667pt;}
.fs0_c00468{font-size:61.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y14_c00468{bottom:2.760000pt;}
.y13_c00468{bottom:6.425204pt;}
.y12_c00468{bottom:252.253333pt;}
.y11_c00468{bottom:296.920000pt;}
.y10_c00468{bottom:318.520000pt;}
.yf_c00468{bottom:340.786667pt;}
.ye_c00468{bottom:362.920000pt;}
.yd_c00468{bottom:384.786667pt;}
.yc_c00468{bottom:407.320000pt;}
.yb_c00468{bottom:429.320000pt;}
.ya_c00468{bottom:451.186667pt;}
.y9_c00468{bottom:473.320000pt;}
.y8_c00468{bottom:495.320000pt;}
.y7_c00468{bottom:517.186667pt;}
.y6_c00468{bottom:540.786667pt;}
.y5_c00468{bottom:562.386667pt;}
.y4_c00468{bottom:584.386667pt;}
.y3_c00468{bottom:606.520000pt;}
.y2_c00468{bottom:650.120000pt;}
.y1_c00468{bottom:694.786667pt;}
.h4_c00468{height:11.733399pt;}
.h5_c00468{height:38.937500pt;}
.h3_c00468{height:71.785156pt;}
.h2_c00468{height:77.654948pt;}
.h0_c00468{height:727.666667pt;}
.h1_c00468{height:728.000000pt;}
.w2_c00468{width:93.222667pt;}
.w0_c00468{width:504.466667pt;}
.w1_c00468{width:504.666667pt;}
.x0_c00468{left:0.000000pt;}
.x4_c00468{left:27.866667pt;}
.x6_c00468{left:28.800000pt;}
.x7_c00468{left:30.000000pt;}
.x3_c00468{left:49.200000pt;}
.x5_c00468{left:51.866667pt;}
.xa_c00468{left:75.200000pt;}
.x8_c00468{left:84.266667pt;}
.x2_c00468{left:137.466667pt;}
.x1_c00468{left:172.400000pt;}
.x9_c00468{left:188.133333pt;}
.xb_c00468{left:209.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_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_4e5ef28d0a5b9655104dc178.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.568848;font-style:normal;font-weight:normal;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_907af2208fc34c7e0bac8b98.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;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_c00469;src:url('chunks/assets/font_2e7bb9b29103471dd5b42312.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_607d2ecb0a2399506eef2030.woff2')format("woff");}.ff4_c00469{font-family:ff4_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:ff5_c00469;src:url('chunks/assets/font_17e0ba646f12449b7ab0ff43.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00469;src:url('chunks/assets/font_8c1b2a65f725b0892ad239dd.woff2')format("woff");}.ff6_c00469{font-family:ff6_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:ff7_c00469;src:url('chunks/assets/font_8c57f506e69f09d301cc5cdb.woff2')format("woff");}.ff7_c00469{font-family:ff7_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:ff8_c00469;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c00469{font-family:ff8_c00469;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_c00469;src:url('chunks/assets/font_1fa7a38f43d258ae2f4e96d7.woff2')format("woff");}.ff9_c00469{font-family:ff9_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:ffa_c00469;src:url('chunks/assets/font_2fba38409dea5f0b7c89d4be.woff2')format("woff");}.ffa_c00469{font-family:ffa_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:ffb_c00469;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00469{font-family:ffb_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.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_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:36.600000px;}
.ls4_c00469{letter-spacing:-3.000000px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:2.400000px;}
.ls3_c00469{letter-spacing:3.000000px;}
.ls0_c00469{letter-spacing:6.000000px;}
.ls6_c00469{letter-spacing:15.000000px;}
.ls5_c00469{letter-spacing:24.000000px;}
.ls7_c00469{letter-spacing:48.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00469{word-spacing:-56.235000px;}
.ws5_c00469{word-spacing:-47.517000px;}
.ws0_c00469{word-spacing:-44.022000px;}
.ws3_c00469{word-spacing:-40.629000px;}
.ws1_c00469{word-spacing:-22.629000px;}
.ws7_c00469{word-spacing:-17.652000px;}
.ws2_c00469{word-spacing:-17.352000px;}
.ws4_c00469{word-spacing:-16.629000px;}
.ws8_c00469{word-spacing:0.000000px;}
._6_c00469{margin-left:-67.824000px;}
._41_c00469{margin-left:-57.159000px;}
._42_c00469{margin-left:-50.736000px;}
._2d_c00469{margin-left:-41.940000px;}
._35_c00469{margin-left:-35.400000px;}
._31_c00469{margin-left:-33.501000px;}
._4b_c00469{margin-left:-30.606000px;}
._20_c00469{margin-left:-27.876000px;}
._18_c00469{margin-left:-25.044000px;}
._37_c00469{margin-left:-23.106000px;}
._4a_c00469{margin-left:-21.378000px;}
._11_c00469{margin-left:-20.010000px;}
._13_c00469{margin-left:-17.457000px;}
._16_c00469{margin-left:-15.732000px;}
._15_c00469{margin-left:-14.628000px;}
._12_c00469{margin-left:-13.440000px;}
._10_c00469{margin-left:-11.799000px;}
._a_c00469{margin-left:-10.626000px;}
._d_c00469{margin-left:-9.576000px;}
._9_c00469{margin-left:-8.418000px;}
._e_c00469{margin-left:-6.636000px;}
._8_c00469{margin-left:-4.899000px;}
._c_c00469{margin-left:-2.982000px;}
._28_c00469{margin-left:-1.293000px;}
._19_c00469{width:2.001000px;}
._1e_c00469{width:3.075000px;}
._2f_c00469{width:4.881000px;}
._1_c00469{width:5.976000px;}
._0_c00469{width:7.128000px;}
._23_c00469{width:8.310000px;}
._3_c00469{width:9.648000px;}
._29_c00469{width:10.692000px;}
._4_c00469{width:12.096000px;}
._34_c00469{width:13.560000px;}
._25_c00469{width:15.390000px;}
._17_c00469{width:16.971000px;}
._27_c00469{width:18.264000px;}
._3e_c00469{width:20.754000px;}
._f_c00469{width:21.954000px;}
._7_c00469{width:23.760000px;}
._38_c00469{width:26.565000px;}
._3a_c00469{width:30.471000px;}
._2a_c00469{width:31.848000px;}
._26_c00469{width:37.569000px;}
._32_c00469{width:44.415000px;}
._3b_c00469{width:49.647000px;}
._4e_c00469{width:52.359000px;}
._21_c00469{width:55.065000px;}
._4d_c00469{width:56.295000px;}
._3f_c00469{width:57.549000px;}
._44_c00469{width:68.445000px;}
._3c_c00469{width:69.468000px;}
._24_c00469{width:71.274000px;}
._4c_c00469{width:72.456000px;}
._1d_c00469{width:79.971000px;}
._2c_c00469{width:91.152000px;}
._22_c00469{width:97.470000px;}
._46_c00469{width:102.708000px;}
._1a_c00469{width:107.847000px;}
._1c_c00469{width:114.195000px;}
._2b_c00469{width:115.995000px;}
._39_c00469{width:117.015000px;}
._5_c00469{width:132.984000px;}
._45_c00469{width:148.272000px;}
._49_c00469{width:154.317000px;}
._2e_c00469{width:157.437000px;}
._1b_c00469{width:163.875000px;}
._40_c00469{width:168.714000px;}
._30_c00469{width:180.243000px;}
._47_c00469{width:200.088000px;}
._33_c00469{width:227.220000px;}
._b_c00469{width:231.861000px;}
._1f_c00469{width:235.260000px;}
._4f_c00469{width:258.066000px;}
._14_c00469{width:291.456000px;}
._3d_c00469{width:305.931000px;}
._43_c00469{width:352.500000px;}
._2_c00469{width:422.424000px;}
._36_c00469{width:1043.817000px;}
._48_c00469{width:1205.358000px;}
.fc2_c00469{color:transparent;}
.fc1_c00469{color:rgb(128,128,128);}
.fc0_c00469{color:rgb(0,0,0);}
.fs8_c00469{font-size:24.000000px;}
.fs9_c00469{font-size:33.000000px;}
.fs2_c00469{font-size:42.000000px;}
.fsb_c00469{font-size:48.000000px;}
.fs5_c00469{font-size:51.000000px;}
.fs4_c00469{font-size:54.000000px;}
.fs7_c00469{font-size:55.200000px;}
.fsa_c00469{font-size:57.000000px;}
.fs3_c00469{font-size:66.000000px;}
.fs1_c00469{font-size:69.000000px;}
.fs0_c00469{font-size:72.000000px;}
.fs6_c00469{font-size:87.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1a_c00469{bottom:0.285000px;}
.y1c_c00469{bottom:3.105000px;}
.y1b_c00469{bottom:7.228355px;}
.y19_c00469{bottom:158.985000px;}
.y18_c00469{bottom:164.985000px;}
.y17_c00469{bottom:199.785000px;}
.y16_c00469{bottom:204.885000px;}
.y14_c00469{bottom:228.435000px;}
.y15_c00469{bottom:229.785000px;}
.y13_c00469{bottom:246.585000px;}
.y12_c00469{bottom:256.485000px;}
.y11_c00469{bottom:354.585000px;}
.yf_c00469{bottom:370.785000px;}
.y10_c00469{bottom:376.635000px;}
.ye_c00469{bottom:395.835000px;}
.yd_c00469{bottom:420.885000px;}
.yc_c00469{bottom:445.785000px;}
.yb_c00469{bottom:470.835000px;}
.ya_c00469{bottom:495.735000px;}
.y9_c00469{bottom:521.085000px;}
.y8_c00469{bottom:546.285000px;}
.y7_c00469{bottom:571.935000px;}
.y5_c00469{bottom:594.285000px;}
.y6_c00469{bottom:595.635000px;}
.y4_c00469{bottom:640.485000px;}
.y3_c00469{bottom:645.885000px;}
.y2_c00469{bottom:670.485000px;}
.y1_c00469{bottom:741.435000px;}
.hb_c00469{height:13.200074px;}
.h7_c00469{height:30.386719px;}
.hc_c00469{height:43.804688px;}
.h8_c00469{height:44.814000px;}
.h5_c00469{height:64.571777px;}
.h4_c00469{height:68.370117px;}
.ha_c00469{height:80.758301px;}
.h9_c00469{height:81.414000px;}
.h3_c00469{height:87.361816px;}
.h2_c00469{height:91.160156px;}
.h6_c00469{height:91.176000px;}
.h0_c00469{height:838.875000px;}
.h1_c00469{height:839.250000px;}
.w1_c00469{width:104.875500px;}
.w0_c00469{width:587.250000px;}
.x0_c00469{left:0.000000px;}
.x7_c00469{left:42.600000px;}
.x8_c00469{left:49.350000px;}
.xe_c00469{left:91.800000px;}
.xd_c00469{left:97.500000px;}
.x2_c00469{left:103.350000px;}
.x3_c00469{left:104.400000px;}
.x4_c00469{left:121.500000px;}
.x5_c00469{left:135.000000px;}
.x6_c00469{left:144.750000px;}
.x10_c00469{left:160.350000px;}
.xf_c00469{left:171.450000px;}
.x16_c00469{left:192.150000px;}
.x12_c00469{left:229.950000px;}
.x1_c00469{left:232.500000px;}
.x1a_c00469{left:245.439240px;}
.x13_c00469{left:249.450000px;}
.x18_c00469{left:254.850000px;}
.x9_c00469{left:259.650000px;}
.xa_c00469{left:264.600000px;}
.xb_c00469{left:283.800000px;}
.xc_c00469{left:286.500000px;}
.x17_c00469{left:315.300000px;}
.x15_c00469{left:316.350000px;}
.x11_c00469{left:356.850000px;}
.x14_c00469{left:403.950000px;}
.x19_c00469{left:434.100000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:32.533333pt;}
.ls4_c00469{letter-spacing:-2.666667pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:2.133333pt;}
.ls3_c00469{letter-spacing:2.666667pt;}
.ls0_c00469{letter-spacing:5.333333pt;}
.ls6_c00469{letter-spacing:13.333333pt;}
.ls5_c00469{letter-spacing:21.333333pt;}
.ls7_c00469{letter-spacing:42.666667pt;}
.ws6_c00469{word-spacing:-49.986667pt;}
.ws5_c00469{word-spacing:-42.237333pt;}
.ws0_c00469{word-spacing:-39.130667pt;}
.ws3_c00469{word-spacing:-36.114667pt;}
.ws1_c00469{word-spacing:-20.114667pt;}
.ws7_c00469{word-spacing:-15.690667pt;}
.ws2_c00469{word-spacing:-15.424000pt;}
.ws4_c00469{word-spacing:-14.781333pt;}
.ws8_c00469{word-spacing:0.000000pt;}
._6_c00469{margin-left:-60.288000pt;}
._41_c00469{margin-left:-50.808000pt;}
._42_c00469{margin-left:-45.098667pt;}
._2d_c00469{margin-left:-37.280000pt;}
._35_c00469{margin-left:-31.466667pt;}
._31_c00469{margin-left:-29.778667pt;}
._4b_c00469{margin-left:-27.205333pt;}
._20_c00469{margin-left:-24.778667pt;}
._18_c00469{margin-left:-22.261333pt;}
._37_c00469{margin-left:-20.538667pt;}
._4a_c00469{margin-left:-19.002667pt;}
._11_c00469{margin-left:-17.786667pt;}
._13_c00469{margin-left:-15.517333pt;}
._16_c00469{margin-left:-13.984000pt;}
._15_c00469{margin-left:-13.002667pt;}
._12_c00469{margin-left:-11.946667pt;}
._10_c00469{margin-left:-10.488000pt;}
._a_c00469{margin-left:-9.445333pt;}
._d_c00469{margin-left:-8.512000pt;}
._9_c00469{margin-left:-7.482667pt;}
._e_c00469{margin-left:-5.898667pt;}
._8_c00469{margin-left:-4.354667pt;}
._c_c00469{margin-left:-2.650667pt;}
._28_c00469{margin-left:-1.149333pt;}
._19_c00469{width:1.778667pt;}
._1e_c00469{width:2.733333pt;}
._2f_c00469{width:4.338667pt;}
._1_c00469{width:5.312000pt;}
._0_c00469{width:6.336000pt;}
._23_c00469{width:7.386667pt;}
._3_c00469{width:8.576000pt;}
._29_c00469{width:9.504000pt;}
._4_c00469{width:10.752000pt;}
._34_c00469{width:12.053333pt;}
._25_c00469{width:13.680000pt;}
._17_c00469{width:15.085333pt;}
._27_c00469{width:16.234667pt;}
._3e_c00469{width:18.448000pt;}
._f_c00469{width:19.514667pt;}
._7_c00469{width:21.120000pt;}
._38_c00469{width:23.613333pt;}
._3a_c00469{width:27.085333pt;}
._2a_c00469{width:28.309333pt;}
._26_c00469{width:33.394667pt;}
._32_c00469{width:39.480000pt;}
._3b_c00469{width:44.130667pt;}
._4e_c00469{width:46.541333pt;}
._21_c00469{width:48.946667pt;}
._4d_c00469{width:50.040000pt;}
._3f_c00469{width:51.154667pt;}
._44_c00469{width:60.840000pt;}
._3c_c00469{width:61.749333pt;}
._24_c00469{width:63.354667pt;}
._4c_c00469{width:64.405333pt;}
._1d_c00469{width:71.085333pt;}
._2c_c00469{width:81.024000pt;}
._22_c00469{width:86.640000pt;}
._46_c00469{width:91.296000pt;}
._1a_c00469{width:95.864000pt;}
._1c_c00469{width:101.506667pt;}
._2b_c00469{width:103.106667pt;}
._39_c00469{width:104.013333pt;}
._5_c00469{width:118.208000pt;}
._45_c00469{width:131.797333pt;}
._49_c00469{width:137.170667pt;}
._2e_c00469{width:139.944000pt;}
._1b_c00469{width:145.666667pt;}
._40_c00469{width:149.968000pt;}
._30_c00469{width:160.216000pt;}
._47_c00469{width:177.856000pt;}
._33_c00469{width:201.973333pt;}
._b_c00469{width:206.098667pt;}
._1f_c00469{width:209.120000pt;}
._4f_c00469{width:229.392000pt;}
._14_c00469{width:259.072000pt;}
._3d_c00469{width:271.938667pt;}
._43_c00469{width:313.333333pt;}
._2_c00469{width:375.488000pt;}
._36_c00469{width:927.837333pt;}
._48_c00469{width:1071.429333pt;}
.fs8_c00469{font-size:21.333333pt;}
.fs9_c00469{font-size:29.333333pt;}
.fs2_c00469{font-size:37.333333pt;}
.fsb_c00469{font-size:42.666667pt;}
.fs5_c00469{font-size:45.333333pt;}
.fs4_c00469{font-size:48.000000pt;}
.fs7_c00469{font-size:49.066667pt;}
.fsa_c00469{font-size:50.666667pt;}
.fs3_c00469{font-size:58.666667pt;}
.fs1_c00469{font-size:61.333333pt;}
.fs0_c00469{font-size:64.000000pt;}
.fs6_c00469{font-size:77.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y1a_c00469{bottom:0.253333pt;}
.y1c_c00469{bottom:2.760000pt;}
.y1b_c00469{bottom:6.425204pt;}
.y19_c00469{bottom:141.320000pt;}
.y18_c00469{bottom:146.653333pt;}
.y17_c00469{bottom:177.586667pt;}
.y16_c00469{bottom:182.120000pt;}
.y14_c00469{bottom:203.053333pt;}
.y15_c00469{bottom:204.253333pt;}
.y13_c00469{bottom:219.186667pt;}
.y12_c00469{bottom:227.986667pt;}
.y11_c00469{bottom:315.186667pt;}
.yf_c00469{bottom:329.586667pt;}
.y10_c00469{bottom:334.786667pt;}
.ye_c00469{bottom:351.853333pt;}
.yd_c00469{bottom:374.120000pt;}
.yc_c00469{bottom:396.253333pt;}
.yb_c00469{bottom:418.520000pt;}
.ya_c00469{bottom:440.653333pt;}
.y9_c00469{bottom:463.186667pt;}
.y8_c00469{bottom:485.586667pt;}
.y7_c00469{bottom:508.386667pt;}
.y5_c00469{bottom:528.253333pt;}
.y6_c00469{bottom:529.453333pt;}
.y4_c00469{bottom:569.320000pt;}
.y3_c00469{bottom:574.120000pt;}
.y2_c00469{bottom:595.986667pt;}
.y1_c00469{bottom:659.053333pt;}
.hb_c00469{height:11.733399pt;}
.h7_c00469{height:27.010417pt;}
.hc_c00469{height:38.937500pt;}
.h8_c00469{height:39.834667pt;}
.h5_c00469{height:57.397135pt;}
.h4_c00469{height:60.773438pt;}
.ha_c00469{height:71.785156pt;}
.h9_c00469{height:72.368000pt;}
.h3_c00469{height:77.654948pt;}
.h2_c00469{height:81.031250pt;}
.h6_c00469{height:81.045333pt;}
.h0_c00469{height:745.666667pt;}
.h1_c00469{height:746.000000pt;}
.w1_c00469{width:93.222667pt;}
.w0_c00469{width:522.000000pt;}
.x0_c00469{left:0.000000pt;}
.x7_c00469{left:37.866667pt;}
.x8_c00469{left:43.866667pt;}
.xe_c00469{left:81.600000pt;}
.xd_c00469{left:86.666667pt;}
.x2_c00469{left:91.866667pt;}
.x3_c00469{left:92.800000pt;}
.x4_c00469{left:108.000000pt;}
.x5_c00469{left:120.000000pt;}
.x6_c00469{left:128.666667pt;}
.x10_c00469{left:142.533333pt;}
.xf_c00469{left:152.400000pt;}
.x16_c00469{left:170.800000pt;}
.x12_c00469{left:204.400000pt;}
.x1_c00469{left:206.666667pt;}
.x1a_c00469{left:218.168213pt;}
.x13_c00469{left:221.733333pt;}
.x18_c00469{left:226.533333pt;}
.x9_c00469{left:230.800000pt;}
.xa_c00469{left:235.200000pt;}
.xb_c00469{left:252.266667pt;}
.xc_c00469{left:254.666667pt;}
.x17_c00469{left:280.266667pt;}
.x15_c00469{left:281.200000pt;}
.x11_c00469{left:317.200000pt;}
.x14_c00469{left:359.066667pt;}
.x19_c00469{left:385.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_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_f420e8bb9b80bd03624d044f.woff2')format("woff");}.ff1_c00470{font-family:ff1_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:ff2_c00470;src:url('chunks/assets/font_92ee139026b62bb93ebb228a.woff2')format("woff");}.ff2_c00470{font-family:ff2_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:ff3_c00470;src:url('chunks/assets/font_d964af0a3d48677fd9ce8b20.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;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_c00470;src:url('chunks/assets/font_081b318d3f89b28c557ebae6.woff2')format("woff");}.ff4_c00470{font-family:ff4_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:ff5_c00470;src:url('chunks/assets/font_cedd5e0fdb094bb83b67fbe7.woff2')format("woff");}.ff5_c00470{font-family:ff5_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:ff6_c00470;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00470{font-family:ff6_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;}
.ls4_c00470{letter-spacing:-3.000000px;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls3_c00470{letter-spacing:3.000000px;}
.ls5_c00470{letter-spacing:9.000000px;}
.ls0_c00470{letter-spacing:18.600000px;}
.ls1_c00470{letter-spacing:147.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;}
}
.ws2_c00470{word-spacing:-54.750000px;}
.ws0_c00470{word-spacing:-44.022000px;}
.ws1_c00470{word-spacing:-19.629000px;}
.ws3_c00470{word-spacing:0.000000px;}
._a_c00470{margin-left:-55.896000px;}
._8_c00470{margin-left:-46.782000px;}
._b_c00470{margin-left:-30.222000px;}
._9_c00470{margin-left:-21.963000px;}
._1_c00470{margin-left:-14.904000px;}
._12_c00470{margin-left:-9.696000px;}
._0_c00470{margin-left:-8.400000px;}
._4_c00470{margin-left:-7.350000px;}
._3_c00470{margin-left:-4.578000px;}
._2_c00470{margin-left:-2.856000px;}
._11_c00470{width:5.952000px;}
._10_c00470{width:14.808000px;}
._d_c00470{width:37.248000px;}
._c_c00470{width:39.120000px;}
._f_c00470{width:41.232000px;}
._e_c00470{width:42.672000px;}
._6_c00470{width:75.969000px;}
._5_c00470{width:102.942000px;}
._7_c00470{width:371.772000px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(128,128,128);}
.fc0_c00470{color:rgb(0,0,0);}
.fs2_c00470{font-size:42.000000px;}
.fs5_c00470{font-size:48.000000px;}
.fs4_c00470{font-size:60.000000px;}
.fs0_c00470{font-size:66.000000px;}
.fs1_c00470{font-size:69.000000px;}
.fs3_c00470{font-size:207.000000px;}
.y0_c00470{bottom:0.000000px;}
.y6_c00470{bottom:3.105000px;}
.y5_c00470{bottom:7.228355px;}
.y1_c00470{bottom:255.435000px;}
.y4_c00470{bottom:478.185000px;}
.y3_c00470{bottom:485.985000px;}
.y2_c00470{bottom:515.235000px;}
.h6_c00470{height:13.200074px;}
.h7_c00470{height:43.804688px;}
.h3_c00470{height:44.814000px;}
.h5_c00470{height:60.773438px;}
.h2_c00470{height:87.361816px;}
.h4_c00470{height:216.936000px;}
.h0_c00470{height:851.025000px;}
.h1_c00470{height:851.250000px;}
.w1_c00470{width:104.875500px;}
.w0_c00470{width:1188.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:346.950000px;}
.x5_c00470{left:545.814240px;}
.x2_c00470{left:651.000000px;}
.x3_c00470{left:704.700000px;}
.x4_c00470{left:853.950000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls4_c00470{letter-spacing:-2.666667pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls3_c00470{letter-spacing:2.666667pt;}
.ls5_c00470{letter-spacing:8.000000pt;}
.ls0_c00470{letter-spacing:16.533333pt;}
.ls1_c00470{letter-spacing:130.666667pt;}
.ws2_c00470{word-spacing:-48.666667pt;}
.ws0_c00470{word-spacing:-39.130667pt;}
.ws1_c00470{word-spacing:-17.448000pt;}
.ws3_c00470{word-spacing:0.000000pt;}
._a_c00470{margin-left:-49.685333pt;}
._8_c00470{margin-left:-41.584000pt;}
._b_c00470{margin-left:-26.864000pt;}
._9_c00470{margin-left:-19.522667pt;}
._1_c00470{margin-left:-13.248000pt;}
._12_c00470{margin-left:-8.618667pt;}
._0_c00470{margin-left:-7.466667pt;}
._4_c00470{margin-left:-6.533333pt;}
._3_c00470{margin-left:-4.069333pt;}
._2_c00470{margin-left:-2.538667pt;}
._11_c00470{width:5.290667pt;}
._10_c00470{width:13.162667pt;}
._d_c00470{width:33.109333pt;}
._c_c00470{width:34.773333pt;}
._f_c00470{width:36.650667pt;}
._e_c00470{width:37.930667pt;}
._6_c00470{width:67.528000pt;}
._5_c00470{width:91.504000pt;}
._7_c00470{width:330.464000pt;}
.fs2_c00470{font-size:37.333333pt;}
.fs5_c00470{font-size:42.666667pt;}
.fs4_c00470{font-size:53.333333pt;}
.fs0_c00470{font-size:58.666667pt;}
.fs1_c00470{font-size:61.333333pt;}
.fs3_c00470{font-size:184.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y6_c00470{bottom:2.760000pt;}
.y5_c00470{bottom:6.425204pt;}
.y1_c00470{bottom:227.053333pt;}
.y4_c00470{bottom:425.053333pt;}
.y3_c00470{bottom:431.986667pt;}
.y2_c00470{bottom:457.986667pt;}
.h6_c00470{height:11.733399pt;}
.h7_c00470{height:38.937500pt;}
.h3_c00470{height:39.834667pt;}
.h5_c00470{height:54.020833pt;}
.h2_c00470{height:77.654948pt;}
.h4_c00470{height:192.832000pt;}
.h0_c00470{height:756.466667pt;}
.h1_c00470{height:756.666667pt;}
.w1_c00470{width:93.222667pt;}
.w0_c00470{width:1056.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:308.400000pt;}
.x5_c00470{left:485.168213pt;}
.x2_c00470{left:578.666667pt;}
.x3_c00470{left:626.400000pt;}
.x4_c00470{left:759.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_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_12542de6b2716960b5b630f0.woff2')format("woff");}.ff1_c00471{font-family:ff1_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:ff2_c00471;src:url('chunks/assets/font_ad69afea91d02b58ef166cca.woff2')format("woff");}.ff2_c00471{font-family:ff2_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:ff3_c00471;src:url('chunks/assets/font_82b613f0c11c7da846baa2d4.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00471{font-family:ff4_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;}
.ls0_c00471{letter-spacing:0.000000px;}
.ls1_c00471{letter-spacing:3.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:-44.022000px;}
.ws1_c00471{word-spacing:0.000000px;}
._2_c00471{margin-left:-21.912000px;}
._0_c00471{margin-left:-13.593000px;}
._1_c00471{width:58.029000px;}
.fc2_c00471{color:transparent;}
.fc1_c00471{color:rgb(128,128,128);}
.fc0_c00471{color:rgb(0,0,0);}
.fs2_c00471{font-size:48.000000px;}
.fs1_c00471{font-size:66.000000px;}
.fs0_c00471{font-size:69.000000px;}
.y0_c00471{bottom:0.000000px;}
.y5_c00471{bottom:3.105000px;}
.y4_c00471{bottom:7.228371px;}
.y3_c00471{bottom:652.515000px;}
.y2_c00471{bottom:722.565000px;}
.y1_c00471{bottom:814.065000px;}
.h4_c00471{height:13.200074px;}
.h5_c00471{height:43.804688px;}
.h2_c00471{height:80.758301px;}
.h3_c00471{height:87.361816px;}
.h0_c00471{height:832.425000px;}
.h1_c00471{height:832.500000px;}
.w2_c00471{width:104.875500px;}
.w0_c00471{width:1157.775000px;}
.w1_c00471{width:1158.000000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:9.750000px;}
.x1_c00471{left:14.850000px;}
.x3_c00471{left:530.701721px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ls1_c00471{letter-spacing:2.666667pt;}
.ws0_c00471{word-spacing:-39.130667pt;}
.ws1_c00471{word-spacing:0.000000pt;}
._2_c00471{margin-left:-19.477333pt;}
._0_c00471{margin-left:-12.082667pt;}
._1_c00471{width:51.581333pt;}
.fs2_c00471{font-size:42.666667pt;}
.fs1_c00471{font-size:58.666667pt;}
.fs0_c00471{font-size:61.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y5_c00471{bottom:2.760000pt;}
.y4_c00471{bottom:6.425219pt;}
.y3_c00471{bottom:580.013333pt;}
.y2_c00471{bottom:642.280000pt;}
.y1_c00471{bottom:723.613333pt;}
.h4_c00471{height:11.733399pt;}
.h5_c00471{height:38.937500pt;}
.h2_c00471{height:71.785156pt;}
.h3_c00471{height:77.654948pt;}
.h0_c00471{height:739.933333pt;}
.h1_c00471{height:740.000000pt;}
.w2_c00471{width:93.222667pt;}
.w0_c00471{width:1029.133333pt;}
.w1_c00471{width:1029.333333pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:8.666667pt;}
.x1_c00471{left:13.200000pt;}
.x3_c00471{left:471.734863pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_819973ba1cc7c892bbd9891f.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;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_c00472;src:url('chunks/assets/font_bbf2723dae6071139bbb4934.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_ad94c88034a7450254e65f5e.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_44247a2f5d8167600504a426.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_d7bc2871f707192bb35fcd73.woff2')format("woff");}.ff5_c00472{font-family:ff5_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:ff6_c00472;src:url('chunks/assets/font_095226653466983f1fd8a94d.woff2')format("woff");}.ff6_c00472{font-family:ff6_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:ff7_c00472;src:url('chunks/assets/font_52acf6ec78890d7c641a4611.woff2')format("woff");}.ff7_c00472{font-family:ff7_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:ff8_c00472;src:url('chunks/assets/font_e092b5a4d93ef38d1260bed8.woff2')format("woff");}.ff8_c00472{font-family:ff8_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:ff9_c00472;src:url('chunks/assets/font_b59938b6f7e5de35f46ddaee.woff2')format("woff");}.ff9_c00472{font-family:ff9_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:ffa_c00472;src:url('chunks/assets/font_36846478be132f0b8b2c72f9.woff2')format("woff");}.ffa_c00472{font-family:ffa_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:ffb_c00472;src:url('chunks/assets/font_210ee6f6a32d1a6976a1c7a2.woff2')format("woff");}.ffb_c00472{font-family:ffb_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00472;src:url('chunks/assets/font_29085c3394ecbfecb2fce814.woff2')format("woff");}.ffc_c00472{font-family:ffc_c00472;line-height:1.012793;font-style:normal;font-weight: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_c00472;src:url('chunks/assets/font_8fe84095af3c41722b5b6097.woff2')format("woff");}.ffd_c00472{font-family:ffd_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00472;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffe_c00472{font-family:ffe_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);}
.m2_c00472{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);}
.m1_c00472{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);}
.m3_c00472{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_c00472{vertical-align:0.000000px;}
.ls4_c00472{letter-spacing:-3.000000px;}
.ls5_c00472{letter-spacing:0.000000px;}
.ls6_c00472{letter-spacing:3.000000px;}
.ls0_c00472{letter-spacing:4.800000px;}
.ls8_c00472{letter-spacing:9.000000px;}
.ls7_c00472{letter-spacing:12.000000px;}
.ls1_c00472{letter-spacing:17.400000px;}
.ls2_c00472{letter-spacing:27.186000px;}
.ls3_c00472{letter-spacing:54.600000px;}
.ls9_c00472{letter-spacing:123.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00472{word-spacing:-139.629000px;}
.ws2_c00472{word-spacing:-19.629000px;}
.ws1_c00472{word-spacing:-19.182000px;}
.ws6_c00472{word-spacing:-17.352000px;}
.ws3_c00472{word-spacing:-16.629000px;}
.ws5_c00472{word-spacing:-14.460000px;}
.ws0_c00472{word-spacing:-7.500000px;}
.ws7_c00472{word-spacing:0.000000px;}
._46_c00472{margin-left:-127.926000px;}
._47_c00472{margin-left:-112.614000px;}
._45_c00472{margin-left:-91.080000px;}
._44_c00472{margin-left:-83.559000px;}
._48_c00472{margin-left:-66.309000px;}
._4a_c00472{margin-left:-60.111000px;}
._4b_c00472{margin-left:-57.819000px;}
._13_c00472{margin-left:-53.682000px;}
._50_c00472{margin-left:-52.269000px;}
._4e_c00472{margin-left:-49.893000px;}
._3d_c00472{margin-left:-47.733000px;}
._68_c00472{margin-left:-45.900000px;}
._2e_c00472{margin-left:-38.385000px;}
._2f_c00472{margin-left:-37.215000px;}
._7_c00472{margin-left:-35.994000px;}
._4d_c00472{margin-left:-30.903000px;}
._4_c00472{margin-left:-29.694000px;}
._4c_c00472{margin-left:-28.635000px;}
._1f_c00472{margin-left:-27.324000px;}
._d_c00472{margin-left:-25.326000px;}
._0_c00472{margin-left:-23.856000px;}
._3b_c00472{margin-left:-21.657000px;}
._2_c00472{margin-left:-20.244000px;}
._1c_c00472{margin-left:-18.285000px;}
._2a_c00472{margin-left:-16.794000px;}
._28_c00472{margin-left:-15.387000px;}
._5_c00472{margin-left:-13.902000px;}
._c_c00472{margin-left:-12.306000px;}
._11_c00472{margin-left:-10.716000px;}
._3_c00472{margin-left:-9.156000px;}
._10_c00472{margin-left:-8.118000px;}
._a_c00472{margin-left:-6.972000px;}
._1d_c00472{margin-left:-5.865000px;}
._9_c00472{margin-left:-4.452000px;}
._58_c00472{margin-left:-3.291000px;}
._21_c00472{margin-left:-2.277000px;}
._24_c00472{margin-left:-1.035000px;}
._25_c00472{width:1.128000px;}
._e_c00472{width:2.436000px;}
._31_c00472{width:3.732000px;}
._15_c00472{width:4.770000px;}
._2c_c00472{width:5.994000px;}
._b_c00472{width:7.224000px;}
._2d_c00472{width:8.700000px;}
._30_c00472{width:9.900000px;}
._16_c00472{width:11.592000px;}
._33_c00472{width:12.762000px;}
._8_c00472{width:14.742000px;}
._39_c00472{width:16.254000px;}
._53_c00472{width:17.442000px;}
._17_c00472{width:18.513000px;}
._26_c00472{width:20.907000px;}
._69_c00472{width:21.909000px;}
._3e_c00472{width:24.081000px;}
._34_c00472{width:25.200000px;}
._42_c00472{width:26.772000px;}
._6_c00472{width:28.182000px;}
._43_c00472{width:31.119000px;}
._67_c00472{width:32.190000px;}
._3f_c00472{width:33.534000px;}
._14_c00472{width:35.535000px;}
._3a_c00472{width:38.298000px;}
._1b_c00472{width:39.726000px;}
._3c_c00472{width:42.843000px;}
._63_c00472{width:44.529000px;}
._37_c00472{width:46.350000px;}
._32_c00472{width:48.585000px;}
._60_c00472{width:49.719000px;}
._4f_c00472{width:51.309000px;}
._5a_c00472{width:53.016000px;}
._66_c00472{width:55.704000px;}
._19_c00472{width:62.031000px;}
._5b_c00472{width:64.653000px;}
._49_c00472{width:66.792000px;}
._61_c00472{width:74.844000px;}
._65_c00472{width:79.596000px;}
._40_c00472{width:85.491000px;}
._36_c00472{width:92.757000px;}
._56_c00472{width:95.940000px;}
._6a_c00472{width:103.839000px;}
._1e_c00472{width:106.398000px;}
._59_c00472{width:111.504000px;}
._1_c00472{width:112.812000px;}
._51_c00472{width:129.009000px;}
._23_c00472{width:135.222000px;}
._62_c00472{width:138.933000px;}
._35_c00472{width:147.714000px;}
._27_c00472{width:153.774000px;}
._55_c00472{width:162.000000px;}
._20_c00472{width:176.133000px;}
._38_c00472{width:181.344000px;}
._1a_c00472{width:190.095000px;}
._5f_c00472{width:212.394000px;}
._2b_c00472{width:217.512000px;}
._12_c00472{width:223.353000px;}
._f_c00472{width:260.682000px;}
._22_c00472{width:283.590000px;}
._29_c00472{width:312.363000px;}
._64_c00472{width:336.891000px;}
._5d_c00472{width:379.692000px;}
._18_c00472{width:397.671000px;}
._5c_c00472{width:589.890000px;}
._57_c00472{width:616.053000px;}
._5e_c00472{width:628.320000px;}
._54_c00472{width:651.624000px;}
._52_c00472{width:701.883000px;}
._41_c00472{width:842.283000px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(128,128,128);}
.fc0_c00472{color:rgb(0,0,0);}
.fs8_c00472{font-size:24.000000px;}
.fs7_c00472{font-size:30.000000px;}
.fs0_c00472{font-size:42.000000px;}
.fs5_c00472{font-size:45.000000px;}
.fs6_c00472{font-size:48.000000px;}
.fs3_c00472{font-size:54.000000px;}
.fs4_c00472{font-size:60.000000px;}
.fs2_c00472{font-size:66.000000px;}
.fs1_c00472{font-size:69.000000px;}
.fs9_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y16_c00472{bottom:0.285000px;}
.y18_c00472{bottom:3.105000px;}
.y17_c00472{bottom:7.228355px;}
.y15_c00472{bottom:81.285000px;}
.y12_c00472{bottom:81.885000px;}
.y11_c00472{bottom:92.385000px;}
.y14_c00472{bottom:110.985000px;}
.y13_c00472{bottom:119.085000px;}
.y10_c00472{bottom:137.985000px;}
.yf_c00472{bottom:145.035000px;}
.ye_c00472{bottom:159.585000px;}
.yd_c00472{bottom:172.035000px;}
.yc_c00472{bottom:222.735000px;}
.yb_c00472{bottom:239.835000px;}
.ya_c00472{bottom:282.435000px;}
.y9_c00472{bottom:369.885000px;}
.y8_c00472{bottom:404.685000px;}
.y7_c00472{bottom:469.485000px;}
.y6_c00472{bottom:486.885000px;}
.y4_c00472{bottom:521.385000px;}
.y5_c00472{bottom:527.835000px;}
.y3_c00472{bottom:560.235000px;}
.y2_c00472{bottom:778.635000px;}
.y1_c00472{bottom:794.385000px;}
.he_c00472{height:13.200074px;}
.h8_c00472{height:31.289062px;}
.hf_c00472{height:43.804688px;}
.hd_c00472{height:44.016000px;}
.h2_c00472{height:44.814000px;}
.h9_c00472{height:56.975098px;}
.h6_c00472{height:58.886719px;}
.h7_c00472{height:60.773438px;}
.h3_c00472{height:67.686035px;}
.hb_c00472{height:68.370117px;}
.ha_c00472{height:75.966797px;}
.h5_c00472{height:80.758301px;}
.h4_c00472{height:87.361816px;}
.hc_c00472{height:91.160156px;}
.h1_c00472{height:833.250000px;}
.h0_c00472{height:833.475000px;}
.w2_c00472{width:104.875500px;}
.w0_c00472{width:606.450000px;}
.w1_c00472{width:606.750000px;}
.x0_c00472{left:0.000000px;}
.xb_c00472{left:4.500000px;}
.xc_c00472{left:11.100000px;}
.xe_c00472{left:14.250000px;}
.xa_c00472{left:16.500000px;}
.x12_c00472{left:18.300000px;}
.xf_c00472{left:20.250000px;}
.x11_c00472{left:21.900000px;}
.xd_c00472{left:26.100000px;}
.x8_c00472{left:45.300000px;}
.x4_c00472{left:114.750000px;}
.x9_c00472{left:131.400000px;}
.x16_c00472{left:187.650000px;}
.x13_c00472{left:205.500000px;}
.x17_c00472{left:217.650000px;}
.x5_c00472{left:231.900000px;}
.x18_c00472{left:255.039230px;}
.x6_c00472{left:258.450000px;}
.x3_c00472{left:264.300000px;}
.x15_c00472{left:384.750000px;}
.x14_c00472{left:387.900000px;}
.x7_c00472{left:396.900000px;}
.x10_c00472{left:426.300000px;}
.x2_c00472{left:438.450000px;}
.x1_c00472{left:447.450000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls4_c00472{letter-spacing:-2.666667pt;}
.ls5_c00472{letter-spacing:0.000000pt;}
.ls6_c00472{letter-spacing:2.666667pt;}
.ls0_c00472{letter-spacing:4.266667pt;}
.ls8_c00472{letter-spacing:8.000000pt;}
.ls7_c00472{letter-spacing:10.666667pt;}
.ls1_c00472{letter-spacing:15.466667pt;}
.ls2_c00472{letter-spacing:24.165333pt;}
.ls3_c00472{letter-spacing:48.533333pt;}
.ls9_c00472{letter-spacing:109.333333pt;}
.ws4_c00472{word-spacing:-124.114667pt;}
.ws2_c00472{word-spacing:-17.448000pt;}
.ws1_c00472{word-spacing:-17.050667pt;}
.ws6_c00472{word-spacing:-15.424000pt;}
.ws3_c00472{word-spacing:-14.781333pt;}
.ws5_c00472{word-spacing:-12.853333pt;}
.ws0_c00472{word-spacing:-6.666667pt;}
.ws7_c00472{word-spacing:0.000000pt;}
._46_c00472{margin-left:-113.712000pt;}
._47_c00472{margin-left:-100.101333pt;}
._45_c00472{margin-left:-80.960000pt;}
._44_c00472{margin-left:-74.274667pt;}
._48_c00472{margin-left:-58.941333pt;}
._4a_c00472{margin-left:-53.432000pt;}
._4b_c00472{margin-left:-51.394667pt;}
._13_c00472{margin-left:-47.717333pt;}
._50_c00472{margin-left:-46.461333pt;}
._4e_c00472{margin-left:-44.349333pt;}
._3d_c00472{margin-left:-42.429333pt;}
._68_c00472{margin-left:-40.800000pt;}
._2e_c00472{margin-left:-34.120000pt;}
._2f_c00472{margin-left:-33.080000pt;}
._7_c00472{margin-left:-31.994667pt;}
._4d_c00472{margin-left:-27.469333pt;}
._4_c00472{margin-left:-26.394667pt;}
._4c_c00472{margin-left:-25.453333pt;}
._1f_c00472{margin-left:-24.288000pt;}
._d_c00472{margin-left:-22.512000pt;}
._0_c00472{margin-left:-21.205333pt;}
._3b_c00472{margin-left:-19.250667pt;}
._2_c00472{margin-left:-17.994667pt;}
._1c_c00472{margin-left:-16.253333pt;}
._2a_c00472{margin-left:-14.928000pt;}
._28_c00472{margin-left:-13.677333pt;}
._5_c00472{margin-left:-12.357333pt;}
._c_c00472{margin-left:-10.938667pt;}
._11_c00472{margin-left:-9.525333pt;}
._3_c00472{margin-left:-8.138667pt;}
._10_c00472{margin-left:-7.216000pt;}
._a_c00472{margin-left:-6.197333pt;}
._1d_c00472{margin-left:-5.213333pt;}
._9_c00472{margin-left:-3.957333pt;}
._58_c00472{margin-left:-2.925333pt;}
._21_c00472{margin-left:-2.024000pt;}
._24_c00472{margin-left:-0.920000pt;}
._25_c00472{width:1.002667pt;}
._e_c00472{width:2.165333pt;}
._31_c00472{width:3.317333pt;}
._15_c00472{width:4.240000pt;}
._2c_c00472{width:5.328000pt;}
._b_c00472{width:6.421333pt;}
._2d_c00472{width:7.733333pt;}
._30_c00472{width:8.800000pt;}
._16_c00472{width:10.304000pt;}
._33_c00472{width:11.344000pt;}
._8_c00472{width:13.104000pt;}
._39_c00472{width:14.448000pt;}
._53_c00472{width:15.504000pt;}
._17_c00472{width:16.456000pt;}
._26_c00472{width:18.584000pt;}
._69_c00472{width:19.474667pt;}
._3e_c00472{width:21.405333pt;}
._34_c00472{width:22.400000pt;}
._42_c00472{width:23.797333pt;}
._6_c00472{width:25.050667pt;}
._43_c00472{width:27.661333pt;}
._67_c00472{width:28.613333pt;}
._3f_c00472{width:29.808000pt;}
._14_c00472{width:31.586667pt;}
._3a_c00472{width:34.042667pt;}
._1b_c00472{width:35.312000pt;}
._3c_c00472{width:38.082667pt;}
._63_c00472{width:39.581333pt;}
._37_c00472{width:41.200000pt;}
._32_c00472{width:43.186667pt;}
._60_c00472{width:44.194667pt;}
._4f_c00472{width:45.608000pt;}
._5a_c00472{width:47.125333pt;}
._66_c00472{width:49.514667pt;}
._19_c00472{width:55.138667pt;}
._5b_c00472{width:57.469333pt;}
._49_c00472{width:59.370667pt;}
._61_c00472{width:66.528000pt;}
._65_c00472{width:70.752000pt;}
._40_c00472{width:75.992000pt;}
._36_c00472{width:82.450667pt;}
._56_c00472{width:85.280000pt;}
._6a_c00472{width:92.301333pt;}
._1e_c00472{width:94.576000pt;}
._59_c00472{width:99.114667pt;}
._1_c00472{width:100.277333pt;}
._51_c00472{width:114.674667pt;}
._23_c00472{width:120.197333pt;}
._62_c00472{width:123.496000pt;}
._35_c00472{width:131.301333pt;}
._27_c00472{width:136.688000pt;}
._55_c00472{width:144.000000pt;}
._20_c00472{width:156.562667pt;}
._38_c00472{width:161.194667pt;}
._1a_c00472{width:168.973333pt;}
._5f_c00472{width:188.794667pt;}
._2b_c00472{width:193.344000pt;}
._12_c00472{width:198.536000pt;}
._f_c00472{width:231.717333pt;}
._22_c00472{width:252.080000pt;}
._29_c00472{width:277.656000pt;}
._64_c00472{width:299.458667pt;}
._5d_c00472{width:337.504000pt;}
._18_c00472{width:353.485333pt;}
._5c_c00472{width:524.346667pt;}
._57_c00472{width:547.602667pt;}
._5e_c00472{width:558.506667pt;}
._54_c00472{width:579.221333pt;}
._52_c00472{width:623.896000pt;}
._41_c00472{width:748.696000pt;}
.fs8_c00472{font-size:21.333333pt;}
.fs7_c00472{font-size:26.666667pt;}
.fs0_c00472{font-size:37.333333pt;}
.fs5_c00472{font-size:40.000000pt;}
.fs6_c00472{font-size:42.666667pt;}
.fs3_c00472{font-size:48.000000pt;}
.fs4_c00472{font-size:53.333333pt;}
.fs2_c00472{font-size:58.666667pt;}
.fs1_c00472{font-size:61.333333pt;}
.fs9_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y16_c00472{bottom:0.253333pt;}
.y18_c00472{bottom:2.760000pt;}
.y17_c00472{bottom:6.425204pt;}
.y15_c00472{bottom:72.253333pt;}
.y12_c00472{bottom:72.786667pt;}
.y11_c00472{bottom:82.120000pt;}
.y14_c00472{bottom:98.653333pt;}
.y13_c00472{bottom:105.853333pt;}
.y10_c00472{bottom:122.653333pt;}
.yf_c00472{bottom:128.920000pt;}
.ye_c00472{bottom:141.853333pt;}
.yd_c00472{bottom:152.920000pt;}
.yc_c00472{bottom:197.986667pt;}
.yb_c00472{bottom:213.186667pt;}
.ya_c00472{bottom:251.053333pt;}
.y9_c00472{bottom:328.786667pt;}
.y8_c00472{bottom:359.720000pt;}
.y7_c00472{bottom:417.320000pt;}
.y6_c00472{bottom:432.786667pt;}
.y4_c00472{bottom:463.453333pt;}
.y5_c00472{bottom:469.186667pt;}
.y3_c00472{bottom:497.986667pt;}
.y2_c00472{bottom:692.120000pt;}
.y1_c00472{bottom:706.120000pt;}
.he_c00472{height:11.733399pt;}
.h8_c00472{height:27.812500pt;}
.hf_c00472{height:38.937500pt;}
.hd_c00472{height:39.125333pt;}
.h2_c00472{height:39.834667pt;}
.h9_c00472{height:50.644531pt;}
.h6_c00472{height:52.343750pt;}
.h7_c00472{height:54.020833pt;}
.h3_c00472{height:60.165365pt;}
.hb_c00472{height:60.773438pt;}
.ha_c00472{height:67.526042pt;}
.h5_c00472{height:71.785156pt;}
.h4_c00472{height:77.654948pt;}
.hc_c00472{height:81.031250pt;}
.h1_c00472{height:740.666667pt;}
.h0_c00472{height:740.866667pt;}
.w2_c00472{width:93.222667pt;}
.w0_c00472{width:539.066667pt;}
.w1_c00472{width:539.333333pt;}
.x0_c00472{left:0.000000pt;}
.xb_c00472{left:4.000000pt;}
.xc_c00472{left:9.866667pt;}
.xe_c00472{left:12.666667pt;}
.xa_c00472{left:14.666667pt;}
.x12_c00472{left:16.266667pt;}
.xf_c00472{left:18.000000pt;}
.x11_c00472{left:19.466667pt;}
.xd_c00472{left:23.200000pt;}
.x8_c00472{left:40.266667pt;}
.x4_c00472{left:102.000000pt;}
.x9_c00472{left:116.800000pt;}
.x16_c00472{left:166.800000pt;}
.x13_c00472{left:182.666667pt;}
.x17_c00472{left:193.466667pt;}
.x5_c00472{left:206.133333pt;}
.x18_c00472{left:226.701538pt;}
.x6_c00472{left:229.733333pt;}
.x3_c00472{left:234.933333pt;}
.x15_c00472{left:342.000000pt;}
.x14_c00472{left:344.800000pt;}
.x7_c00472{left:352.800000pt;}
.x10_c00472{left:378.933333pt;}
.x2_c00472{left:389.733333pt;}
.x1_c00472{left:397.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_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_15b9bb13945456ff57055c12.woff2')format("woff");}.ff1_c00473{font-family:ff1_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:ff2_c00473;src:url('chunks/assets/font_cbe27ef8c81987391a5c35e0.woff2')format("woff");}.ff2_c00473{font-family:ff2_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:ff3_c00473;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff3_c00473{font-family:ff3_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;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:3.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:-32.361000px;}
.ws1_c00473{word-spacing:0.000000px;}
._1e_c00473{margin-left:-56.625000px;}
._10_c00473{margin-left:-37.191000px;}
._b_c00473{margin-left:-32.085000px;}
._20_c00473{margin-left:-27.324000px;}
._1_c00473{margin-left:-24.288000px;}
._3_c00473{margin-left:-20.079000px;}
._1a_c00473{margin-left:-18.768000px;}
._5_c00473{margin-left:-15.249000px;}
._11_c00473{margin-left:-13.455000px;}
._19_c00473{margin-left:-11.178000px;}
._f_c00473{margin-left:-8.556000px;}
._0_c00473{margin-left:-6.072000px;}
._d_c00473{margin-left:-4.968000px;}
._7_c00473{margin-left:-3.594000px;}
._15_c00473{margin-left:-1.518000px;}
._9_c00473{width:1.242000px;}
._c_c00473{width:2.898000px;}
._17_c00473{width:5.175000px;}
._21_c00473{width:8.055000px;}
._18_c00473{width:9.867000px;}
._1c_c00473{width:16.029000px;}
._6_c00473{width:18.177000px;}
._4_c00473{width:21.183000px;}
._1f_c00473{width:22.884000px;}
._1b_c00473{width:28.290000px;}
._14_c00473{width:53.199000px;}
._1d_c00473{width:63.960000px;}
._e_c00473{width:67.965000px;}
._2_c00473{width:82.938000px;}
._12_c00473{width:101.499000px;}
._16_c00473{width:112.056000px;}
._13_c00473{width:146.022000px;}
._8_c00473{width:415.656000px;}
._a_c00473{width:482.586000px;}
.fc2_c00473{color:transparent;}
.fc1_c00473{color:rgb(128,128,128);}
.fc0_c00473{color:rgb(0,0,0);}
.fs1_c00473{font-size:48.000000px;}
.fs0_c00473{font-size:69.000000px;}
.y0_c00473{bottom:0.000000px;}
.y5_c00473{bottom:3.105000px;}
.y4_c00473{bottom:7.228369px;}
.y3_c00473{bottom:585.870000px;}
.y2_c00473{bottom:735.420000px;}
.y1_c00473{bottom:750.570000px;}
.h3_c00473{height:13.200073px;}
.h4_c00473{height:43.804688px;}
.h2_c00473{height:87.361816px;}
.h1_c00473{height:832.500000px;}
.h0_c00473{height:832.650000px;}
.w2_c00473{width:104.875500px;}
.w0_c00473{width:599.700000px;}
.w1_c00473{width:600.000000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:150.450000px;}
.x2_c00473{left:199.800000px;}
.x4_c00473{left:251.664230px;}
.x3_c00473{left:374.400000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:2.666667pt;}
.ws0_c00473{word-spacing:-28.765333pt;}
.ws1_c00473{word-spacing:0.000000pt;}
._1e_c00473{margin-left:-50.333333pt;}
._10_c00473{margin-left:-33.058667pt;}
._b_c00473{margin-left:-28.520000pt;}
._20_c00473{margin-left:-24.288000pt;}
._1_c00473{margin-left:-21.589333pt;}
._3_c00473{margin-left:-17.848000pt;}
._1a_c00473{margin-left:-16.682667pt;}
._5_c00473{margin-left:-13.554667pt;}
._11_c00473{margin-left:-11.960000pt;}
._19_c00473{margin-left:-9.936000pt;}
._f_c00473{margin-left:-7.605333pt;}
._0_c00473{margin-left:-5.397333pt;}
._d_c00473{margin-left:-4.416000pt;}
._7_c00473{margin-left:-3.194667pt;}
._15_c00473{margin-left:-1.349333pt;}
._9_c00473{width:1.104000pt;}
._c_c00473{width:2.576000pt;}
._17_c00473{width:4.600000pt;}
._21_c00473{width:7.160000pt;}
._18_c00473{width:8.770667pt;}
._1c_c00473{width:14.248000pt;}
._6_c00473{width:16.157333pt;}
._4_c00473{width:18.829333pt;}
._1f_c00473{width:20.341333pt;}
._1b_c00473{width:25.146667pt;}
._14_c00473{width:47.288000pt;}
._1d_c00473{width:56.853333pt;}
._e_c00473{width:60.413333pt;}
._2_c00473{width:73.722667pt;}
._12_c00473{width:90.221333pt;}
._16_c00473{width:99.605333pt;}
._13_c00473{width:129.797333pt;}
._8_c00473{width:369.472000pt;}
._a_c00473{width:428.965333pt;}
.fs1_c00473{font-size:42.666667pt;}
.fs0_c00473{font-size:61.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.y5_c00473{bottom:2.760000pt;}
.y4_c00473{bottom:6.425217pt;}
.y3_c00473{bottom:520.773333pt;}
.y2_c00473{bottom:653.706667pt;}
.y1_c00473{bottom:667.173333pt;}
.h3_c00473{height:11.733399pt;}
.h4_c00473{height:38.937500pt;}
.h2_c00473{height:77.654948pt;}
.h1_c00473{height:740.000000pt;}
.h0_c00473{height:740.133333pt;}
.w2_c00473{width:93.222667pt;}
.w0_c00473{width:533.066667pt;}
.w1_c00473{width:533.333333pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:133.733333pt;}
.x2_c00473{left:177.600000pt;}
.x4_c00473{left:223.701538pt;}
.x3_c00473{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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00474{font-family:ff1_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;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:0.000000px;}
.fc0_c00474{color:rgb(128,128,128);}
.fs0_c00474{font-size:48.000000px;}
.y0_c00474{bottom:0.000000px;}
.y2_c00474{bottom:3.105000px;}
.y1_c00474{bottom:7.228371px;}
.h2_c00474{height:13.200074px;}
.h3_c00474{height:43.804688px;}
.h0_c00474{height:818.925000px;}
.h1_c00474{height:819.000000px;}
.w2_c00474{width:104.875500px;}
.w1_c00474{width:1172.250000px;}
.w0_c00474{width:1172.325000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:537.976730px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs0_c00474{font-size:42.666667pt;}
.y0_c00474{bottom:0.000000pt;}
.y2_c00474{bottom:2.760000pt;}
.y1_c00474{bottom:6.425219pt;}
.h2_c00474{height:11.733399pt;}
.h3_c00474{height:38.937500pt;}
.h0_c00474{height:727.933333pt;}
.h1_c00474{height:728.000000pt;}
.w2_c00474{width:93.222667pt;}
.w1_c00474{width:1042.000000pt;}
.w0_c00474{width:1042.066667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:478.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_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_c31ecc457b4ceb7f9bb87984.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_ff03088d3056746c08281c21.woff2')format("woff");}.ff2_c00475{font-family:ff2_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:ff3_c00475;src:url('chunks/assets/font_235a7561f571beb453d94d60.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.437000;font-style:normal;font-weight:normal;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_629b4dc42882510276c7dbc6.woff2')format("woff");}.ff4_c00475{font-family:ff4_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:ff5_c00475;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.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_256e047d8d5d3595f1015870.woff2')format("woff");}.ff6_c00475{font-family:ff6_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:ff7_c00475;src:url('chunks/assets/font_0e7d6edfc9400d3d7bc4321f.woff2')format("woff");}.ff7_c00475{font-family:ff7_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:ff8_c00475;src:url('chunks/assets/font_eadf597095f12d903ae5fc93.woff2')format("woff");}.ff8_c00475{font-family:ff8_c00475;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_c00475;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00475{font-family:ff9_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);}
.m2_c00475{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);}
.m1_c00475{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.v1_c00475{vertical-align:-62.400000px;}
.v2_c00475{vertical-align:-16.200000px;}
.v0_c00475{vertical-align:0.000000px;}
.ls5_c00475{letter-spacing:-3.000000px;}
.ls3_c00475{letter-spacing:0.000000px;}
.ls4_c00475{letter-spacing:3.000000px;}
.ls7_c00475{letter-spacing:24.000000px;}
.ls2_c00475{letter-spacing:33.600000px;}
.ls1_c00475{letter-spacing:43.233000px;}
.ls6_c00475{letter-spacing:48.000000px;}
.ls0_c00475{letter-spacing:57.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00475{word-spacing:-64.629000px;}
.ws7_c00475{word-spacing:-24.138000px;}
.ws8_c00475{word-spacing:-17.352000px;}
.ws5_c00475{word-spacing:-17.250000px;}
.ws0_c00475{word-spacing:-16.629000px;}
.ws4_c00475{word-spacing:-16.500000px;}
.ws2_c00475{word-spacing:-13.014000px;}
.ws3_c00475{word-spacing:-0.345000px;}
.wsa_c00475{word-spacing:0.000000px;}
.ws1_c00475{word-spacing:330.432000px;}
.ws9_c00475{word-spacing:785.118000px;}
._2c_c00475{margin-left:-66.789000px;}
._22_c00475{margin-left:-64.515000px;}
._2f_c00475{margin-left:-62.100000px;}
._3a_c00475{margin-left:-59.961000px;}
._46_c00475{margin-left:-57.471000px;}
._29_c00475{margin-left:-48.162000px;}
._40_c00475{margin-left:-38.427000px;}
._3c_c00475{margin-left:-34.959000px;}
._4b_c00475{margin-left:-33.765000px;}
._1e_c00475{margin-left:-32.157000px;}
._32_c00475{margin-left:-30.384000px;}
._6_c00475{margin-left:-26.979000px;}
._12_c00475{margin-left:-25.089000px;}
._5_c00475{margin-left:-23.322000px;}
._54_c00475{margin-left:-22.212000px;}
._2a_c00475{margin-left:-20.562000px;}
._11_c00475{margin-left:-19.251000px;}
._18_c00475{margin-left:-16.836000px;}
._2_c00475{margin-left:-15.705000px;}
._7_c00475{margin-left:-13.800000px;}
._4_c00475{margin-left:-12.696000px;}
._f_c00475{margin-left:-11.205000px;}
._1a_c00475{margin-left:-9.702000px;}
._10_c00475{margin-left:-8.694000px;}
._e_c00475{margin-left:-7.659000px;}
._15_c00475{margin-left:-6.279000px;}
._14_c00475{margin-left:-5.106000px;}
._17_c00475{margin-left:-3.225000px;}
._9_c00475{margin-left:-1.932000px;}
._c_c00475{width:1.035000px;}
._37_c00475{width:2.139000px;}
._38_c00475{width:3.243000px;}
._1c_c00475{width:4.257000px;}
._1d_c00475{width:5.796000px;}
._1b_c00475{width:6.837000px;}
._2b_c00475{width:8.895000px;}
._33_c00475{width:9.936000px;}
._8_c00475{width:11.178000px;}
._26_c00475{width:13.317000px;}
._0_c00475{width:14.580000px;}
._34_c00475{width:15.594000px;}
._52_c00475{width:16.935000px;}
._30_c00475{width:18.147000px;}
._4e_c00475{width:20.232000px;}
._b_c00475{width:21.735000px;}
._16_c00475{width:23.571000px;}
._28_c00475{width:24.771000px;}
._4c_c00475{width:26.094000px;}
._3b_c00475{width:29.646000px;}
._31_c00475{width:30.843000px;}
._49_c00475{width:33.525000px;}
._4d_c00475{width:36.249000px;}
._21_c00475{width:37.899000px;}
._51_c00475{width:44.289000px;}
._53_c00475{width:46.782000px;}
._2d_c00475{width:48.744000px;}
._3e_c00475{width:51.708000px;}
._25_c00475{width:53.490000px;}
._24_c00475{width:55.662000px;}
._41_c00475{width:56.856000px;}
._13_c00475{width:64.722000px;}
._a_c00475{width:69.345000px;}
._2e_c00475{width:72.657000px;}
._3f_c00475{width:74.217000px;}
._39_c00475{width:79.392000px;}
._45_c00475{width:95.451000px;}
._19_c00475{width:103.707000px;}
._56_c00475{width:108.075000px;}
._d_c00475{width:112.815000px;}
._50_c00475{width:119.946000px;}
._3_c00475{width:127.365000px;}
._48_c00475{width:154.485000px;}
._43_c00475{width:191.958000px;}
._42_c00475{width:201.990000px;}
._57_c00475{width:209.208000px;}
._44_c00475{width:234.351000px;}
._55_c00475{width:261.480000px;}
._3d_c00475{width:284.556000px;}
._4f_c00475{width:285.987000px;}
._23_c00475{width:322.644000px;}
._47_c00475{width:328.992000px;}
._27_c00475{width:335.616000px;}
._1_c00475{width:340.650000px;}
._35_c00475{width:375.936000px;}
._20_c00475{width:496.221000px;}
._36_c00475{width:709.389000px;}
._1f_c00475{width:922.944000px;}
._4a_c00475{width:1520.592000px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(128,128,128);}
.fc0_c00475{color:rgb(0,0,0);}
.fs6_c00475{font-size:24.000000px;}
.fs0_c00475{font-size:45.000000px;}
.fs7_c00475{font-size:48.000000px;}
.fs3_c00475{font-size:54.000000px;}
.fs4_c00475{font-size:66.000000px;}
.fs1_c00475{font-size:69.000000px;}
.fs5_c00475{font-size:72.000000px;}
.fs2_c00475{font-size:207.000000px;}
.y0_c00475{bottom:0.000000px;}
.y13_c00475{bottom:3.105000px;}
.y12_c00475{bottom:7.228371px;}
.y11_c00475{bottom:15.315000px;}
.y10_c00475{bottom:39.165000px;}
.yf_c00475{bottom:192.165000px;}
.ye_c00475{bottom:231.615000px;}
.yd_c00475{bottom:247.065000px;}
.yc_c00475{bottom:315.315000px;}
.yb_c00475{bottom:338.565000px;}
.ya_c00475{bottom:354.465000px;}
.y9_c00475{bottom:391.515000px;}
.y8_c00475{bottom:429.315000px;}
.y7_c00475{bottom:446.565000px;}
.y6_c00475{bottom:500.265000px;}
.y5_c00475{bottom:679.815000px;}
.y3_c00475{bottom:708.165000px;}
.y2_c00475{bottom:719.265000px;}
.y4_c00475{bottom:743.565000px;}
.y1_c00475{bottom:759.765000px;}
.h8_c00475{height:13.200074px;}
.h9_c00475{height:43.804688px;}
.h7_c00475{height:63.202148px;}
.h4_c00475{height:68.370117px;}
.h5_c00475{height:69.539062px;}
.h2_c00475{height:87.361816px;}
.h6_c00475{height:91.160156px;}
.h3_c00475{height:216.936000px;}
.h0_c00475{height:852.675000px;}
.h1_c00475{height:852.750000px;}
.w2_c00475{width:104.875500px;}
.w0_c00475{width:1191.525000px;}
.w1_c00475{width:1191.750000px;}
.x0_c00475{left:0.000000px;}
.x10_c00475{left:17.550000px;}
.xd_c00475{left:34.800000px;}
.xb_c00475{left:41.250000px;}
.x9_c00475{left:51.300000px;}
.xe_c00475{left:82.350000px;}
.xa_c00475{left:101.250000px;}
.xf_c00475{left:102.900000px;}
.xc_c00475{left:119.100000px;}
.x2_c00475{left:231.750000px;}
.x1_c00475{left:314.550000px;}
.x3_c00475{left:379.950000px;}
.x8_c00475{left:464.700000px;}
.x4_c00475{left:485.700000px;}
.x5_c00475{left:500.100000px;}
.x13_c00475{left:547.576721px;}
.x6_c00475{left:587.850000px;}
.x7_c00475{left:694.950000px;}
.x11_c00475{left:896.400000px;}
.x12_c00475{left:1108.050000px;}
@media print{
.v1_c00475{vertical-align:-55.466667pt;}
.v2_c00475{vertical-align:-14.400000pt;}
.v0_c00475{vertical-align:0.000000pt;}
.ls5_c00475{letter-spacing:-2.666667pt;}
.ls3_c00475{letter-spacing:0.000000pt;}
.ls4_c00475{letter-spacing:2.666667pt;}
.ls7_c00475{letter-spacing:21.333333pt;}
.ls2_c00475{letter-spacing:29.866667pt;}
.ls1_c00475{letter-spacing:38.429333pt;}
.ls6_c00475{letter-spacing:42.666667pt;}
.ls0_c00475{letter-spacing:50.666667pt;}
.ws6_c00475{word-spacing:-57.448000pt;}
.ws7_c00475{word-spacing:-21.456000pt;}
.ws8_c00475{word-spacing:-15.424000pt;}
.ws5_c00475{word-spacing:-15.333333pt;}
.ws0_c00475{word-spacing:-14.781333pt;}
.ws4_c00475{word-spacing:-14.666667pt;}
.ws2_c00475{word-spacing:-11.568000pt;}
.ws3_c00475{word-spacing:-0.306667pt;}
.wsa_c00475{word-spacing:0.000000pt;}
.ws1_c00475{word-spacing:293.717333pt;}
.ws9_c00475{word-spacing:697.882667pt;}
._2c_c00475{margin-left:-59.368000pt;}
._22_c00475{margin-left:-57.346667pt;}
._2f_c00475{margin-left:-55.200000pt;}
._3a_c00475{margin-left:-53.298667pt;}
._46_c00475{margin-left:-51.085333pt;}
._29_c00475{margin-left:-42.810667pt;}
._40_c00475{margin-left:-34.157333pt;}
._3c_c00475{margin-left:-31.074667pt;}
._4b_c00475{margin-left:-30.013333pt;}
._1e_c00475{margin-left:-28.584000pt;}
._32_c00475{margin-left:-27.008000pt;}
._6_c00475{margin-left:-23.981333pt;}
._12_c00475{margin-left:-22.301333pt;}
._5_c00475{margin-left:-20.730667pt;}
._54_c00475{margin-left:-19.744000pt;}
._2a_c00475{margin-left:-18.277333pt;}
._11_c00475{margin-left:-17.112000pt;}
._18_c00475{margin-left:-14.965333pt;}
._2_c00475{margin-left:-13.960000pt;}
._7_c00475{margin-left:-12.266667pt;}
._4_c00475{margin-left:-11.285333pt;}
._f_c00475{margin-left:-9.960000pt;}
._1a_c00475{margin-left:-8.624000pt;}
._10_c00475{margin-left:-7.728000pt;}
._e_c00475{margin-left:-6.808000pt;}
._15_c00475{margin-left:-5.581333pt;}
._14_c00475{margin-left:-4.538667pt;}
._17_c00475{margin-left:-2.866667pt;}
._9_c00475{margin-left:-1.717333pt;}
._c_c00475{width:0.920000pt;}
._37_c00475{width:1.901333pt;}
._38_c00475{width:2.882667pt;}
._1c_c00475{width:3.784000pt;}
._1d_c00475{width:5.152000pt;}
._1b_c00475{width:6.077333pt;}
._2b_c00475{width:7.906667pt;}
._33_c00475{width:8.832000pt;}
._8_c00475{width:9.936000pt;}
._26_c00475{width:11.837333pt;}
._0_c00475{width:12.960000pt;}
._34_c00475{width:13.861333pt;}
._52_c00475{width:15.053333pt;}
._30_c00475{width:16.130667pt;}
._4e_c00475{width:17.984000pt;}
._b_c00475{width:19.320000pt;}
._16_c00475{width:20.952000pt;}
._28_c00475{width:22.018667pt;}
._4c_c00475{width:23.194667pt;}
._3b_c00475{width:26.352000pt;}
._31_c00475{width:27.416000pt;}
._49_c00475{width:29.800000pt;}
._4d_c00475{width:32.221333pt;}
._21_c00475{width:33.688000pt;}
._51_c00475{width:39.368000pt;}
._53_c00475{width:41.584000pt;}
._2d_c00475{width:43.328000pt;}
._3e_c00475{width:45.962667pt;}
._25_c00475{width:47.546667pt;}
._24_c00475{width:49.477333pt;}
._41_c00475{width:50.538667pt;}
._13_c00475{width:57.530667pt;}
._a_c00475{width:61.640000pt;}
._2e_c00475{width:64.584000pt;}
._3f_c00475{width:65.970667pt;}
._39_c00475{width:70.570667pt;}
._45_c00475{width:84.845333pt;}
._19_c00475{width:92.184000pt;}
._56_c00475{width:96.066667pt;}
._d_c00475{width:100.280000pt;}
._50_c00475{width:106.618667pt;}
._3_c00475{width:113.213333pt;}
._48_c00475{width:137.320000pt;}
._43_c00475{width:170.629333pt;}
._42_c00475{width:179.546667pt;}
._57_c00475{width:185.962667pt;}
._44_c00475{width:208.312000pt;}
._55_c00475{width:232.426667pt;}
._3d_c00475{width:252.938667pt;}
._4f_c00475{width:254.210667pt;}
._23_c00475{width:286.794667pt;}
._47_c00475{width:292.437333pt;}
._27_c00475{width:298.325333pt;}
._1_c00475{width:302.800000pt;}
._35_c00475{width:334.165333pt;}
._20_c00475{width:441.085333pt;}
._36_c00475{width:630.568000pt;}
._1f_c00475{width:820.394667pt;}
._4a_c00475{width:1351.637333pt;}
.fs6_c00475{font-size:21.333333pt;}
.fs0_c00475{font-size:40.000000pt;}
.fs7_c00475{font-size:42.666667pt;}
.fs3_c00475{font-size:48.000000pt;}
.fs4_c00475{font-size:58.666667pt;}
.fs1_c00475{font-size:61.333333pt;}
.fs5_c00475{font-size:64.000000pt;}
.fs2_c00475{font-size:184.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y13_c00475{bottom:2.760000pt;}
.y12_c00475{bottom:6.425219pt;}
.y11_c00475{bottom:13.613333pt;}
.y10_c00475{bottom:34.813333pt;}
.yf_c00475{bottom:170.813333pt;}
.ye_c00475{bottom:205.880000pt;}
.yd_c00475{bottom:219.613333pt;}
.yc_c00475{bottom:280.280000pt;}
.yb_c00475{bottom:300.946667pt;}
.ya_c00475{bottom:315.080000pt;}
.y9_c00475{bottom:348.013333pt;}
.y8_c00475{bottom:381.613333pt;}
.y7_c00475{bottom:396.946667pt;}
.y6_c00475{bottom:444.680000pt;}
.y5_c00475{bottom:604.280000pt;}
.y3_c00475{bottom:629.480000pt;}
.y2_c00475{bottom:639.346667pt;}
.y4_c00475{bottom:660.946667pt;}
.y1_c00475{bottom:675.346667pt;}
.h8_c00475{height:11.733399pt;}
.h9_c00475{height:38.937500pt;}
.h7_c00475{height:56.179688pt;}
.h4_c00475{height:60.773438pt;}
.h5_c00475{height:61.812500pt;}
.h2_c00475{height:77.654948pt;}
.h6_c00475{height:81.031250pt;}
.h3_c00475{height:192.832000pt;}
.h0_c00475{height:757.933333pt;}
.h1_c00475{height:758.000000pt;}
.w2_c00475{width:93.222667pt;}
.w0_c00475{width:1059.133333pt;}
.w1_c00475{width:1059.333333pt;}
.x0_c00475{left:0.000000pt;}
.x10_c00475{left:15.600000pt;}
.xd_c00475{left:30.933333pt;}
.xb_c00475{left:36.666667pt;}
.x9_c00475{left:45.600000pt;}
.xe_c00475{left:73.200000pt;}
.xa_c00475{left:90.000000pt;}
.xf_c00475{left:91.466667pt;}
.xc_c00475{left:105.866667pt;}
.x2_c00475{left:206.000000pt;}
.x1_c00475{left:279.600000pt;}
.x3_c00475{left:337.733333pt;}
.x8_c00475{left:413.066667pt;}
.x4_c00475{left:431.733333pt;}
.x5_c00475{left:444.533333pt;}
.x13_c00475{left:486.734863pt;}
.x6_c00475{left:522.533333pt;}
.x7_c00475{left:617.733333pt;}
.x11_c00475{left:796.800000pt;}
.x12_c00475{left:984.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_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_46656fb7692ccebf44ad9705.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.568848;font-style:normal;font-weight:normal;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_2021d4f74c939887dc6bc037.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_cd04c51bc06d15aee173e622.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;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_c00476;src:url('chunks/assets/font_5ed028d0b62c07a7ace181a8.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_2d93971f8088a5bcd621e2a0.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_f21ef2d5e437bdcee6f2dabc.woff2')format("woff");}.ff6_c00476{font-family:ff6_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:ff7_c00476;src:url('chunks/assets/font_2a0c3a87e54b5a6d6003f793.woff2')format("woff");}.ff7_c00476{font-family:ff7_c00476;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_c00476;src:url('chunks/assets/font_24a477e43191c33847ab6173.woff2')format("woff");}.ff8_c00476{font-family:ff8_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:ff9_c00476;src:url('chunks/assets/font_8f99aedb24de8c96b17f70d8.woff2')format("woff");}.ff9_c00476{font-family:ff9_c00476;line-height:1.568848;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_b2e2bbeb2400f4c0d6936128.woff2')format("woff");}.ffa_c00476{font-family:ffa_c00476;line-height:1.437000;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_999ce5beca75996c025155f6.woff2')format("woff");}.ffb_c00476{font-family:ffb_c00476;line-height:1.012793;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_ca18d204e3a2ee073100db6a.woff2')format("woff");}.ffc_c00476{font-family:ffc_c00476;line-height:1.012793;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_aac3133a7a9469a97376df80.woff2')format("woff");}.ffd_c00476{font-family:ffd_c00476;line-height:1.437000;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_cdac37781d5e59af3ca55fca.woff2')format("woff");}.ffe_c00476{font-family:ffe_c00476;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:fff_c00476;src:url('chunks/assets/font_a28ede80cd60ad12432ae373.woff2')format("woff");}.fff_c00476{font-family:fff_c00476;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:ff10_c00476;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff10_c00476{font-family:ff10_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);}
.m3_c00476{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);}
.m1_c00476{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);}
.m5_c00476{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{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_c00476{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);}
.v9_c00476{vertical-align:-94.200000px;}
.v2_c00476{vertical-align:-54.600000px;}
.va_c00476{vertical-align:-15.000000px;}
.v4_c00476{vertical-align:-9.600000px;}
.v7_c00476{vertical-align:-6.000000px;}
.v5_c00476{vertical-align:-3.000000px;}
.v0_c00476{vertical-align:0.000000px;}
.v8_c00476{vertical-align:3.000000px;}
.v6_c00476{vertical-align:5.400000px;}
.v1_c00476{vertical-align:14.400000px;}
.v3_c00476{vertical-align:79.800000px;}
.lsf_c00476{letter-spacing:-6.000000px;}
.lsa_c00476{letter-spacing:-3.000000px;}
.ls9_c00476{letter-spacing:0.000000px;}
.ls4_c00476{letter-spacing:1.353000px;}
.ls8_c00476{letter-spacing:3.000000px;}
.ls6_c00476{letter-spacing:8.100000px;}
.lsc_c00476{letter-spacing:9.000000px;}
.ls3_c00476{letter-spacing:13.500000px;}
.lsd_c00476{letter-spacing:15.000000px;}
.lse_c00476{letter-spacing:18.000000px;}
.ls7_c00476{letter-spacing:39.171000px;}
.ls0_c00476{letter-spacing:46.971000px;}
.lsb_c00476{letter-spacing:48.000000px;}
.ls2_c00476{letter-spacing:259.101000px;}
.ls1_c00476{letter-spacing:528.750000px;}
.ls5_c00476{letter-spacing:828.171000px;}
.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;}
}
.ws3_c00476{word-spacing:-64.629000px;}
.ws13_c00476{word-spacing:-44.022000px;}
.ws12_c00476{word-spacing:-34.104000px;}
.ws9_c00476{word-spacing:-31.629000px;}
.ws0_c00476{word-spacing:-19.629000px;}
.ws5_c00476{word-spacing:-17.295000px;}
.ws2_c00476{word-spacing:-16.629000px;}
.ws1_c00476{word-spacing:-15.012000px;}
.wsd_c00476{word-spacing:-13.845000px;}
.ws8_c00476{word-spacing:-13.716000px;}
.wsa_c00476{word-spacing:-13.014000px;}
.ws6_c00476{word-spacing:-7.992000px;}
.ws4_c00476{word-spacing:-7.392000px;}
.ws15_c00476{word-spacing:0.000000px;}
.ws7_c00476{word-spacing:3.312000px;}
.ws14_c00476{word-spacing:14.640000px;}
.ws11_c00476{word-spacing:15.024000px;}
.wsb_c00476{word-spacing:19.368000px;}
.ws10_c00476{word-spacing:30.936000px;}
.wsc_c00476{word-spacing:31.680000px;}
.wse_c00476{word-spacing:37.188000px;}
.wsf_c00476{word-spacing:57.276000px;}
._38_c00476{margin-left:-67.869000px;}
._f_c00476{margin-left:-66.585000px;}
._3a_c00476{margin-left:-63.618000px;}
._42_c00476{margin-left:-61.188000px;}
._44_c00476{margin-left:-54.054000px;}
._53_c00476{margin-left:-51.267000px;}
._72_c00476{margin-left:-49.884000px;}
._33_c00476{margin-left:-44.973000px;}
._4c_c00476{margin-left:-40.779000px;}
._4d_c00476{margin-left:-37.950000px;}
._73_c00476{margin-left:-36.354000px;}
._6a_c00476{margin-left:-35.190000px;}
._74_c00476{margin-left:-31.527000px;}
._34_c00476{margin-left:-29.670000px;}
._55_c00476{margin-left:-27.879000px;}
._56_c00476{margin-left:-26.772000px;}
._3f_c00476{margin-left:-25.530000px;}
._37_c00476{margin-left:-24.357000px;}
._9_c00476{margin-left:-22.356000px;}
._64_c00476{margin-left:-21.246000px;}
._25_c00476{margin-left:-19.860000px;}
._5_c00476{margin-left:-18.837000px;}
._17_c00476{margin-left:-17.733000px;}
._4a_c00476{margin-left:-16.629000px;}
._b_c00476{margin-left:-15.594000px;}
._0_c00476{margin-left:-13.593000px;}
._7_c00476{margin-left:-11.730000px;}
._2_c00476{margin-left:-9.936000px;}
._d_c00476{margin-left:-8.694000px;}
._28_c00476{margin-left:-7.506000px;}
._1_c00476{margin-left:-6.348000px;}
._3_c00476{margin-left:-4.209000px;}
._2c_c00476{margin-left:-2.838000px;}
._8_c00476{margin-left:-1.311000px;}
._c_c00476{width:2.001000px;}
._14_c00476{width:3.726000px;}
._4_c00476{width:5.037000px;}
._1a_c00476{width:6.510000px;}
._15_c00476{width:8.142000px;}
._24_c00476{width:9.534000px;}
._65_c00476{width:10.539000px;}
._1c_c00476{width:11.661000px;}
._6b_c00476{width:12.732000px;}
._10_c00476{width:13.938000px;}
._1d_c00476{width:15.801000px;}
._12_c00476{width:17.364000px;}
._1e_c00476{width:18.435000px;}
._41_c00476{width:19.698000px;}
._e_c00476{width:21.183000px;}
._43_c00476{width:22.356000px;}
._32_c00476{width:23.568000px;}
._1b_c00476{width:25.668000px;}
._4f_c00476{width:27.543000px;}
._3b_c00476{width:28.980000px;}
._51_c00476{width:30.546000px;}
._59_c00476{width:31.821000px;}
._20_c00476{width:32.913000px;}
._5d_c00476{width:34.707000px;}
._46_c00476{width:36.090000px;}
._5a_c00476{width:38.142000px;}
._49_c00476{width:39.816000px;}
._39_c00476{width:40.986000px;}
._16_c00476{width:42.573000px;}
._40_c00476{width:48.954000px;}
._71_c00476{width:51.045000px;}
._2a_c00476{width:52.812000px;}
._19_c00476{width:54.234000px;}
._62_c00476{width:60.108000px;}
._1f_c00476{width:61.152000px;}
._69_c00476{width:63.900000px;}
._23_c00476{width:65.082000px;}
._58_c00476{width:70.035000px;}
._3d_c00476{width:72.114000px;}
._54_c00476{width:74.175000px;}
._3c_c00476{width:76.746000px;}
._2b_c00476{width:79.482000px;}
._4e_c00476{width:81.039000px;}
._21_c00476{width:86.736000px;}
._60_c00476{width:90.006000px;}
._48_c00476{width:92.739000px;}
._45_c00476{width:95.139000px;}
._35_c00476{width:98.049000px;}
._75_c00476{width:103.413000px;}
._6f_c00476{width:105.927000px;}
._66_c00476{width:107.787000px;}
._47_c00476{width:109.905000px;}
._27_c00476{width:112.083000px;}
._22_c00476{width:114.816000px;}
._29_c00476{width:117.882000px;}
._5c_c00476{width:120.255000px;}
._18_c00476{width:123.678000px;}
._50_c00476{width:129.843000px;}
._67_c00476{width:132.300000px;}
._2e_c00476{width:133.653000px;}
._52_c00476{width:142.125000px;}
._5b_c00476{width:145.935000px;}
._57_c00476{width:149.562000px;}
._6e_c00476{width:153.447000px;}
._3e_c00476{width:175.956000px;}
._2d_c00476{width:182.712000px;}
._68_c00476{width:223.236000px;}
._6d_c00476{width:225.264000px;}
._63_c00476{width:227.898000px;}
._26_c00476{width:260.388000px;}
._5f_c00476{width:266.751000px;}
._4b_c00476{width:286.428000px;}
._6c_c00476{width:327.972000px;}
._11_c00476{width:343.065000px;}
._6_c00476{width:351.141000px;}
._36_c00476{width:415.896000px;}
._70_c00476{width:445.671000px;}
._31_c00476{width:517.683000px;}
._30_c00476{width:526.038000px;}
._2f_c00476{width:535.293000px;}
._5e_c00476{width:587.259000px;}
._a_c00476{width:679.995000px;}
._61_c00476{width:706.341000px;}
._13_c00476{width:1166.718000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(128,128,128);}
.fc0_c00476{color:rgb(0,0,0);}
.fs9_c00476{font-size:24.000000px;}
.fsb_c00476{font-size:33.000000px;}
.fs8_c00476{font-size:36.000000px;}
.fs5_c00476{font-size:42.000000px;}
.fs4_c00476{font-size:45.000000px;}
.fs6_c00476{font-size:48.000000px;}
.fs3_c00476{font-size:54.000000px;}
.fs2_c00476{font-size:66.000000px;}
.fs0_c00476{font-size:69.000000px;}
.fs1_c00476{font-size:78.000000px;}
.fs7_c00476{font-size:81.000000px;}
.fsa_c00476{font-size:123.000000px;}
.y0_c00476{bottom:0.000000px;}
.y32_c00476{bottom:3.105000px;}
.y31_c00476{bottom:7.228363px;}
.y1f_c00476{bottom:28.050000px;}
.y1e_c00476{bottom:46.650000px;}
.y2b_c00476{bottom:58.650000px;}
.y1d_c00476{bottom:65.700000px;}
.y1c_c00476{bottom:77.400000px;}
.y20_c00476{bottom:79.200000px;}
.y30_c00476{bottom:115.350000px;}
.y2f_c00476{bottom:125.850000px;}
.y2a_c00476{bottom:145.050000px;}
.y1b_c00476{bottom:149.850000px;}
.y29_c00476{bottom:151.950000px;}
.y2e_c00476{bottom:155.850000px;}
.y28_c00476{bottom:171.750000px;}
.y27_c00476{bottom:183.900000px;}
.y2d_c00476{bottom:201.450000px;}
.y26_c00476{bottom:202.050000px;}
.y25_c00476{bottom:215.700000px;}
.y1a_c00476{bottom:220.050000px;}
.y24_c00476{bottom:232.200000px;}
.y23_c00476{bottom:252.450000px;}
.y22_c00476{bottom:253.200000px;}
.y21_c00476{bottom:271.050000px;}
.y2c_c00476{bottom:311.850000px;}
.y19_c00476{bottom:327.000000px;}
.y12_c00476{bottom:351.900000px;}
.y18_c00476{bottom:361.050000px;}
.y11_c00476{bottom:387.450000px;}
.y17_c00476{bottom:411.150000px;}
.y14_c00476{bottom:417.750000px;}
.y16_c00476{bottom:420.150000px;}
.y10_c00476{bottom:427.950000px;}
.y15_c00476{bottom:432.900000px;}
.y13_c00476{bottom:440.400000px;}
.ye_c00476{bottom:493.500000px;}
.yd_c00476{bottom:499.200000px;}
.yc_c00476{bottom:524.250000px;}
.yf_c00476{bottom:573.450000px;}
.yb_c00476{bottom:584.100000px;}
.ya_c00476{bottom:591.000000px;}
.y9_c00476{bottom:633.600000px;}
.y8_c00476{bottom:667.950000px;}
.y7_c00476{bottom:689.100000px;}
.y6_c00476{bottom:720.600000px;}
.y5_c00476{bottom:738.750000px;}
.y4_c00476{bottom:754.950000px;}
.y3_c00476{bottom:772.800000px;}
.y2_c00476{bottom:793.050000px;}
.y1_c00476{bottom:813.750000px;}
.hf_c00476{height:13.200074px;}
.h6_c00476{height:31.011328px;}
.h10_c00476{height:43.804688px;}
.hb_c00476{height:52.668457px;}
.h4_c00476{height:56.320312px;}
.h9_c00476{height:68.370117px;}
.hd_c00476{height:71.370117px;}
.ha_c00476{height:73.623000px;}
.hc_c00476{height:73.770117px;}
.h5_c00476{height:80.758301px;}
.he_c00476{height:84.888000px;}
.h2_c00476{height:87.361816px;}
.h3_c00476{height:91.291992px;}
.h7_c00476{height:128.904000px;}
.h8_c00476{height:167.161816px;}
.h0_c00476{height:846.450000px;}
.h1_c00476{height:846.750000px;}
.w2_c00476{width:104.875500px;}
.w1_c00476{width:611.250000px;}
.w0_c00476{width:611.550000px;}
.x0_c00476{left:0.000000px;}
.x5_c00476{left:20.250000px;}
.x8_c00476{left:21.900000px;}
.x4_c00476{left:25.200000px;}
.xd_c00476{left:26.700000px;}
.x23_c00476{left:28.050000px;}
.x1_c00476{left:30.000000px;}
.xe_c00476{left:32.700000px;}
.x17_c00476{left:35.400000px;}
.x22_c00476{left:36.450000px;}
.x18_c00476{left:57.750000px;}
.x21_c00476{left:67.050000px;}
.x12_c00476{left:79.200000px;}
.x10_c00476{left:82.350000px;}
.xf_c00476{left:96.150000px;}
.x13_c00476{left:102.300000px;}
.x2_c00476{left:121.200000px;}
.x11_c00476{left:145.500000px;}
.x6_c00476{left:155.700000px;}
.x14_c00476{left:160.950000px;}
.x7_c00476{left:172.050000px;}
.x20_c00476{left:211.500000px;}
.x24_c00476{left:222.450000px;}
.x9_c00476{left:225.450000px;}
.x26_c00476{left:228.600000px;}
.x28_c00476{left:232.200000px;}
.xa_c00476{left:252.450000px;}
.x29_c00476{left:256.800000px;}
.x27_c00476{left:261.300000px;}
.x25_c00476{left:263.850000px;}
.x3_c00476{left:268.350000px;}
.x2e_c00476{left:287.550000px;}
.x2d_c00476{left:288.900000px;}
.x2c_c00476{left:308.550000px;}
.x1e_c00476{left:329.400000px;}
.x2a_c00476{left:339.150000px;}
.x2b_c00476{left:348.600000px;}
.x1b_c00476{left:350.550000px;}
.x1a_c00476{left:351.900000px;}
.x1c_c00476{left:359.100000px;}
.x1d_c00476{left:392.100000px;}
.x1f_c00476{left:393.900000px;}
.xb_c00476{left:405.600000px;}
.xc_c00476{left:422.100000px;}
.x19_c00476{left:449.550000px;}
.x16_c00476{left:559.200000px;}
.x15_c00476{left:581.400000px;}
@media print{
.v9_c00476{vertical-align:-83.733333pt;}
.v2_c00476{vertical-align:-48.533333pt;}
.va_c00476{vertical-align:-13.333333pt;}
.v4_c00476{vertical-align:-8.533333pt;}
.v7_c00476{vertical-align:-5.333333pt;}
.v5_c00476{vertical-align:-2.666667pt;}
.v0_c00476{vertical-align:0.000000pt;}
.v8_c00476{vertical-align:2.666667pt;}
.v6_c00476{vertical-align:4.800000pt;}
.v1_c00476{vertical-align:12.800000pt;}
.v3_c00476{vertical-align:70.933333pt;}
.lsf_c00476{letter-spacing:-5.333333pt;}
.lsa_c00476{letter-spacing:-2.666667pt;}
.ls9_c00476{letter-spacing:0.000000pt;}
.ls4_c00476{letter-spacing:1.202667pt;}
.ls8_c00476{letter-spacing:2.666667pt;}
.ls6_c00476{letter-spacing:7.200000pt;}
.lsc_c00476{letter-spacing:8.000000pt;}
.ls3_c00476{letter-spacing:12.000000pt;}
.lsd_c00476{letter-spacing:13.333333pt;}
.lse_c00476{letter-spacing:16.000000pt;}
.ls7_c00476{letter-spacing:34.818667pt;}
.ls0_c00476{letter-spacing:41.752000pt;}
.lsb_c00476{letter-spacing:42.666667pt;}
.ls2_c00476{letter-spacing:230.312000pt;}
.ls1_c00476{letter-spacing:470.000000pt;}
.ls5_c00476{letter-spacing:736.152000pt;}
.ws3_c00476{word-spacing:-57.448000pt;}
.ws13_c00476{word-spacing:-39.130667pt;}
.ws12_c00476{word-spacing:-30.314667pt;}
.ws9_c00476{word-spacing:-28.114667pt;}
.ws0_c00476{word-spacing:-17.448000pt;}
.ws5_c00476{word-spacing:-15.373333pt;}
.ws2_c00476{word-spacing:-14.781333pt;}
.ws1_c00476{word-spacing:-13.344000pt;}
.wsd_c00476{word-spacing:-12.306667pt;}
.ws8_c00476{word-spacing:-12.192000pt;}
.wsa_c00476{word-spacing:-11.568000pt;}
.ws6_c00476{word-spacing:-7.104000pt;}
.ws4_c00476{word-spacing:-6.570667pt;}
.ws15_c00476{word-spacing:0.000000pt;}
.ws7_c00476{word-spacing:2.944000pt;}
.ws14_c00476{word-spacing:13.013333pt;}
.ws11_c00476{word-spacing:13.354667pt;}
.wsb_c00476{word-spacing:17.216000pt;}
.ws10_c00476{word-spacing:27.498667pt;}
.wsc_c00476{word-spacing:28.160000pt;}
.wse_c00476{word-spacing:33.056000pt;}
.wsf_c00476{word-spacing:50.912000pt;}
._38_c00476{margin-left:-60.328000pt;}
._f_c00476{margin-left:-59.186667pt;}
._3a_c00476{margin-left:-56.549333pt;}
._42_c00476{margin-left:-54.389333pt;}
._44_c00476{margin-left:-48.048000pt;}
._53_c00476{margin-left:-45.570667pt;}
._72_c00476{margin-left:-44.341333pt;}
._33_c00476{margin-left:-39.976000pt;}
._4c_c00476{margin-left:-36.248000pt;}
._4d_c00476{margin-left:-33.733333pt;}
._73_c00476{margin-left:-32.314667pt;}
._6a_c00476{margin-left:-31.280000pt;}
._74_c00476{margin-left:-28.024000pt;}
._34_c00476{margin-left:-26.373333pt;}
._55_c00476{margin-left:-24.781333pt;}
._56_c00476{margin-left:-23.797333pt;}
._3f_c00476{margin-left:-22.693333pt;}
._37_c00476{margin-left:-21.650667pt;}
._9_c00476{margin-left:-19.872000pt;}
._64_c00476{margin-left:-18.885333pt;}
._25_c00476{margin-left:-17.653333pt;}
._5_c00476{margin-left:-16.744000pt;}
._17_c00476{margin-left:-15.762667pt;}
._4a_c00476{margin-left:-14.781333pt;}
._b_c00476{margin-left:-13.861333pt;}
._0_c00476{margin-left:-12.082667pt;}
._7_c00476{margin-left:-10.426667pt;}
._2_c00476{margin-left:-8.832000pt;}
._d_c00476{margin-left:-7.728000pt;}
._28_c00476{margin-left:-6.672000pt;}
._1_c00476{margin-left:-5.642667pt;}
._3_c00476{margin-left:-3.741333pt;}
._2c_c00476{margin-left:-2.522667pt;}
._8_c00476{margin-left:-1.165333pt;}
._c_c00476{width:1.778667pt;}
._14_c00476{width:3.312000pt;}
._4_c00476{width:4.477333pt;}
._1a_c00476{width:5.786667pt;}
._15_c00476{width:7.237333pt;}
._24_c00476{width:8.474667pt;}
._65_c00476{width:9.368000pt;}
._1c_c00476{width:10.365333pt;}
._6b_c00476{width:11.317333pt;}
._10_c00476{width:12.389333pt;}
._1d_c00476{width:14.045333pt;}
._12_c00476{width:15.434667pt;}
._1e_c00476{width:16.386667pt;}
._41_c00476{width:17.509333pt;}
._e_c00476{width:18.829333pt;}
._43_c00476{width:19.872000pt;}
._32_c00476{width:20.949333pt;}
._1b_c00476{width:22.816000pt;}
._4f_c00476{width:24.482667pt;}
._3b_c00476{width:25.760000pt;}
._51_c00476{width:27.152000pt;}
._59_c00476{width:28.285333pt;}
._20_c00476{width:29.256000pt;}
._5d_c00476{width:30.850667pt;}
._46_c00476{width:32.080000pt;}
._5a_c00476{width:33.904000pt;}
._49_c00476{width:35.392000pt;}
._39_c00476{width:36.432000pt;}
._16_c00476{width:37.842667pt;}
._40_c00476{width:43.514667pt;}
._71_c00476{width:45.373333pt;}
._2a_c00476{width:46.944000pt;}
._19_c00476{width:48.208000pt;}
._62_c00476{width:53.429333pt;}
._1f_c00476{width:54.357333pt;}
._69_c00476{width:56.800000pt;}
._23_c00476{width:57.850667pt;}
._58_c00476{width:62.253333pt;}
._3d_c00476{width:64.101333pt;}
._54_c00476{width:65.933333pt;}
._3c_c00476{width:68.218667pt;}
._2b_c00476{width:70.650667pt;}
._4e_c00476{width:72.034667pt;}
._21_c00476{width:77.098667pt;}
._60_c00476{width:80.005333pt;}
._48_c00476{width:82.434667pt;}
._45_c00476{width:84.568000pt;}
._35_c00476{width:87.154667pt;}
._75_c00476{width:91.922667pt;}
._6f_c00476{width:94.157333pt;}
._66_c00476{width:95.810667pt;}
._47_c00476{width:97.693333pt;}
._27_c00476{width:99.629333pt;}
._22_c00476{width:102.058667pt;}
._29_c00476{width:104.784000pt;}
._5c_c00476{width:106.893333pt;}
._18_c00476{width:109.936000pt;}
._50_c00476{width:115.416000pt;}
._67_c00476{width:117.600000pt;}
._2e_c00476{width:118.802667pt;}
._52_c00476{width:126.333333pt;}
._5b_c00476{width:129.720000pt;}
._57_c00476{width:132.944000pt;}
._6e_c00476{width:136.397333pt;}
._3e_c00476{width:156.405333pt;}
._2d_c00476{width:162.410667pt;}
._68_c00476{width:198.432000pt;}
._6d_c00476{width:200.234667pt;}
._63_c00476{width:202.576000pt;}
._26_c00476{width:231.456000pt;}
._5f_c00476{width:237.112000pt;}
._4b_c00476{width:254.602667pt;}
._6c_c00476{width:291.530667pt;}
._11_c00476{width:304.946667pt;}
._6_c00476{width:312.125333pt;}
._36_c00476{width:369.685333pt;}
._70_c00476{width:396.152000pt;}
._31_c00476{width:460.162667pt;}
._30_c00476{width:467.589333pt;}
._2f_c00476{width:475.816000pt;}
._5e_c00476{width:522.008000pt;}
._a_c00476{width:604.440000pt;}
._61_c00476{width:627.858667pt;}
._13_c00476{width:1037.082667pt;}
.fs9_c00476{font-size:21.333333pt;}
.fsb_c00476{font-size:29.333333pt;}
.fs8_c00476{font-size:32.000000pt;}
.fs5_c00476{font-size:37.333333pt;}
.fs4_c00476{font-size:40.000000pt;}
.fs6_c00476{font-size:42.666667pt;}
.fs3_c00476{font-size:48.000000pt;}
.fs2_c00476{font-size:58.666667pt;}
.fs0_c00476{font-size:61.333333pt;}
.fs1_c00476{font-size:69.333333pt;}
.fs7_c00476{font-size:72.000000pt;}
.fsa_c00476{font-size:109.333333pt;}
.y0_c00476{bottom:0.000000pt;}
.y32_c00476{bottom:2.760000pt;}
.y31_c00476{bottom:6.425212pt;}
.y1f_c00476{bottom:24.933333pt;}
.y1e_c00476{bottom:41.466667pt;}
.y2b_c00476{bottom:52.133333pt;}
.y1d_c00476{bottom:58.400000pt;}
.y1c_c00476{bottom:68.800000pt;}
.y20_c00476{bottom:70.400000pt;}
.y30_c00476{bottom:102.533333pt;}
.y2f_c00476{bottom:111.866667pt;}
.y2a_c00476{bottom:128.933333pt;}
.y1b_c00476{bottom:133.200000pt;}
.y29_c00476{bottom:135.066667pt;}
.y2e_c00476{bottom:138.533333pt;}
.y28_c00476{bottom:152.666667pt;}
.y27_c00476{bottom:163.466667pt;}
.y2d_c00476{bottom:179.066667pt;}
.y26_c00476{bottom:179.600000pt;}
.y25_c00476{bottom:191.733333pt;}
.y1a_c00476{bottom:195.600000pt;}
.y24_c00476{bottom:206.400000pt;}
.y23_c00476{bottom:224.400000pt;}
.y22_c00476{bottom:225.066667pt;}
.y21_c00476{bottom:240.933333pt;}
.y2c_c00476{bottom:277.200000pt;}
.y19_c00476{bottom:290.666667pt;}
.y12_c00476{bottom:312.800000pt;}
.y18_c00476{bottom:320.933333pt;}
.y11_c00476{bottom:344.400000pt;}
.y17_c00476{bottom:365.466667pt;}
.y14_c00476{bottom:371.333333pt;}
.y16_c00476{bottom:373.466667pt;}
.y10_c00476{bottom:380.400000pt;}
.y15_c00476{bottom:384.800000pt;}
.y13_c00476{bottom:391.466667pt;}
.ye_c00476{bottom:438.666667pt;}
.yd_c00476{bottom:443.733333pt;}
.yc_c00476{bottom:466.000000pt;}
.yf_c00476{bottom:509.733333pt;}
.yb_c00476{bottom:519.200000pt;}
.ya_c00476{bottom:525.333333pt;}
.y9_c00476{bottom:563.200000pt;}
.y8_c00476{bottom:593.733333pt;}
.y7_c00476{bottom:612.533333pt;}
.y6_c00476{bottom:640.533333pt;}
.y5_c00476{bottom:656.666667pt;}
.y4_c00476{bottom:671.066667pt;}
.y3_c00476{bottom:686.933333pt;}
.y2_c00476{bottom:704.933333pt;}
.y1_c00476{bottom:723.333333pt;}
.hf_c00476{height:11.733399pt;}
.h6_c00476{height:27.565625pt;}
.h10_c00476{height:38.937500pt;}
.hb_c00476{height:46.816406pt;}
.h4_c00476{height:50.062500pt;}
.h9_c00476{height:60.773438pt;}
.hd_c00476{height:63.440104pt;}
.ha_c00476{height:65.442667pt;}
.hc_c00476{height:65.573437pt;}
.h5_c00476{height:71.785156pt;}
.he_c00476{height:75.456000pt;}
.h2_c00476{height:77.654948pt;}
.h3_c00476{height:81.148438pt;}
.h7_c00476{height:114.581333pt;}
.h8_c00476{height:148.588281pt;}
.h0_c00476{height:752.400000pt;}
.h1_c00476{height:752.666667pt;}
.w2_c00476{width:93.222667pt;}
.w1_c00476{width:543.333333pt;}
.w0_c00476{width:543.600000pt;}
.x0_c00476{left:0.000000pt;}
.x5_c00476{left:18.000000pt;}
.x8_c00476{left:19.466667pt;}
.x4_c00476{left:22.400000pt;}
.xd_c00476{left:23.733333pt;}
.x23_c00476{left:24.933333pt;}
.x1_c00476{left:26.666667pt;}
.xe_c00476{left:29.066667pt;}
.x17_c00476{left:31.466667pt;}
.x22_c00476{left:32.400000pt;}
.x18_c00476{left:51.333333pt;}
.x21_c00476{left:59.600000pt;}
.x12_c00476{left:70.400000pt;}
.x10_c00476{left:73.200000pt;}
.xf_c00476{left:85.466667pt;}
.x13_c00476{left:90.933333pt;}
.x2_c00476{left:107.733333pt;}
.x11_c00476{left:129.333333pt;}
.x6_c00476{left:138.400000pt;}
.x14_c00476{left:143.066667pt;}
.x7_c00476{left:152.933333pt;}
.x20_c00476{left:188.000000pt;}
.x24_c00476{left:197.733333pt;}
.x9_c00476{left:200.400000pt;}
.x26_c00476{left:203.200000pt;}
.x28_c00476{left:206.400000pt;}
.xa_c00476{left:224.400000pt;}
.x29_c00476{left:228.266667pt;}
.x27_c00476{left:232.266667pt;}
.x25_c00476{left:234.533333pt;}
.x3_c00476{left:238.533333pt;}
.x2e_c00476{left:255.600000pt;}
.x2d_c00476{left:256.800000pt;}
.x2c_c00476{left:274.266667pt;}
.x1e_c00476{left:292.800000pt;}
.x2a_c00476{left:301.466667pt;}
.x2b_c00476{left:309.866667pt;}
.x1b_c00476{left:311.600000pt;}
.x1a_c00476{left:312.800000pt;}
.x1c_c00476{left:319.200000pt;}
.x1d_c00476{left:348.533333pt;}
.x1f_c00476{left:350.133333pt;}
.xb_c00476{left:360.533333pt;}
.xc_c00476{left:375.200000pt;}
.x19_c00476{left:399.600000pt;}
.x16_c00476{left:497.066667pt;}
.x15_c00476{left:516.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00477{font-family:ff1_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;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
.fc0_c00477{color:rgb(128,128,128);}
.fs0_c00477{font-size:48.000000px;}
.y0_c00477{bottom:0.000000px;}
.y2_c00477{bottom:3.105000px;}
.y1_c00477{bottom:7.228371px;}
.h2_c00477{height:13.200074px;}
.h3_c00477{height:43.804688px;}
.h1_c00477{height:804.000000px;}
.h0_c00477{height:804.075000px;}
.w1_c00477{width:104.875500px;}
.w0_c00477{width:611.250000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:257.439240px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs0_c00477{font-size:42.666667pt;}
.y0_c00477{bottom:0.000000pt;}
.y2_c00477{bottom:2.760000pt;}
.y1_c00477{bottom:6.425219pt;}
.h2_c00477{height:11.733399pt;}
.h3_c00477{height:38.937500pt;}
.h1_c00477{height:714.666667pt;}
.h0_c00477{height:714.733333pt;}
.w1_c00477{width:93.222667pt;}
.w0_c00477{width:543.333333pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:228.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00478{font-family:ff1_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;}
.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:0.000000px;}
.fc0_c00478{color:rgb(128,128,128);}
.fs0_c00478{font-size:48.000000px;}
.y0_c00478{bottom:0.000000px;}
.y2_c00478{bottom:3.105000px;}
.y1_c00478{bottom:7.228357px;}
.h2_c00478{height:13.200074px;}
.h3_c00478{height:43.804688px;}
.h0_c00478{height:854.850000px;}
.h1_c00478{height:855.000000px;}
.w2_c00478{width:104.875500px;}
.w1_c00478{width:1195.500000px;}
.w0_c00478{width:1195.800000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:549.714249px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs0_c00478{font-size:42.666667pt;}
.y0_c00478{bottom:0.000000pt;}
.y2_c00478{bottom:2.760000pt;}
.y1_c00478{bottom:6.425206pt;}
.h2_c00478{height:11.733399pt;}
.h3_c00478{height:38.937500pt;}
.h0_c00478{height:759.866667pt;}
.h1_c00478{height:760.000000pt;}
.w2_c00478{width:93.222667pt;}
.w1_c00478{width:1062.666667pt;}
.w0_c00478{width:1062.933333pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:488.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a37d26ef86f1179455ff39a.woff2')format("woff");}.ff1_c00479{font-family:ff1_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:ff2_c00479;src:url('chunks/assets/font_99d70067c268aea67cc7a26a.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;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_c00479;src:url('chunks/assets/font_8c4d15f6752927ae14e0ef63.woff2')format("woff");}.ff3_c00479{font-family:ff3_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:ff4_c00479;src:url('chunks/assets/font_e60aec43f524b8192ecfb336.woff2')format("woff");}.ff4_c00479{font-family:ff4_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:ff5_c00479;src:url('chunks/assets/font_36a624546dd2456be8f24886.woff2')format("woff");}.ff5_c00479{font-family:ff5_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:ff6_c00479;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff6_c00479{font-family:ff6_c00479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00479;src:url('chunks/assets/font_fa9a49aa108ed410e14b7775.woff2')format("woff");}.ff7_c00479{font-family:ff7_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:ff8_c00479;src:url('chunks/assets/font_f90615accac227f31734de46.woff2')format("woff");}.ff8_c00479{font-family:ff8_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:ff9_c00479;src:url('chunks/assets/font_0ca9232161e43b37e744fdc7.woff2')format("woff");}.ff9_c00479{font-family:ff9_c00479;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_c00479;src:url('chunks/assets/font_4ce64bef559f22f6f1c31a60.woff2')format("woff");}.ffa_c00479{font-family:ffa_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:ffb_c00479;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00479{font-family:ffb_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;}
.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);}
.m3_c00479{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);}
.m2_c00479{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);}
.m1_c00479{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);}
.m5_c00479{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);}
.m4_c00479{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);}
.v13_c00479{vertical-align:-48.600000px;}
.v9_c00479{vertical-align:-45.000000px;}
.v7_c00479{vertical-align:-33.600000px;}
.va_c00479{vertical-align:-24.600000px;}
.v4_c00479{vertical-align:-10.800000px;}
.v1a_c00479{vertical-align:-9.600000px;}
.vf_c00479{vertical-align:-2.400000px;}
.v0_c00479{vertical-align:0.000000px;}
.v5_c00479{vertical-align:6.600000px;}
.v14_c00479{vertical-align:9.600000px;}
.ve_c00479{vertical-align:13.200000px;}
.vc_c00479{vertical-align:19.200000px;}
.v12_c00479{vertical-align:22.800000px;}
.vb_c00479{vertical-align:24.600000px;}
.vd_c00479{vertical-align:30.600000px;}
.v17_c00479{vertical-align:38.400000px;}
.v6_c00479{vertical-align:40.200000px;}
.v8_c00479{vertical-align:41.400000px;}
.v11_c00479{vertical-align:43.200000px;}
.v16_c00479{vertical-align:49.800000px;}
.v10_c00479{vertical-align:54.000000px;}
.v18_c00479{vertical-align:58.800000px;}
.v15_c00479{vertical-align:66.000000px;}
.v19_c00479{vertical-align:70.200000px;}
.v1_c00479{vertical-align:73.200000px;}
.v2_c00479{vertical-align:83.400000px;}
.v3_c00479{vertical-align:89.400000px;}
.ls11_c00479{letter-spacing:-6.000000px;}
.ls10_c00479{letter-spacing:-3.000000px;}
.lse_c00479{letter-spacing:0.000000px;}
.ls1_c00479{letter-spacing:0.600000px;}
.ls2_c00479{letter-spacing:3.000000px;}
.lsf_c00479{letter-spacing:6.000000px;}
.ls9_c00479{letter-spacing:6.168000px;}
.lsd_c00479{letter-spacing:9.000000px;}
.lsb_c00479{letter-spacing:15.000000px;}
.lsc_c00479{letter-spacing:24.000000px;}
.ls3_c00479{letter-spacing:32.883000px;}
.ls7_c00479{letter-spacing:37.536000px;}
.ls4_c00479{letter-spacing:57.690000px;}
.ls8_c00479{letter-spacing:86.481000px;}
.ls0_c00479{letter-spacing:125.970000px;}
.ls5_c00479{letter-spacing:128.004000px;}
.ls6_c00479{letter-spacing:214.290000px;}
.lsa_c00479{letter-spacing:773.340000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-40.629000px;}
.ws6_c00479{word-spacing:-33.000000px;}
.wsf_c00479{word-spacing:-24.000000px;}
.ws9_c00479{word-spacing:-22.629000px;}
.ws3_c00479{word-spacing:-19.629000px;}
.ws7_c00479{word-spacing:-18.183000px;}
.ws2_c00479{word-spacing:-16.629000px;}
.wse_c00479{word-spacing:-15.183000px;}
.ws8_c00479{word-spacing:-14.460000px;}
.wsc_c00479{word-spacing:-14.250000px;}
.ws10_c00479{word-spacing:-13.014000px;}
.ws17_c00479{word-spacing:-12.735000px;}
.ws1d_c00479{word-spacing:-11.250000px;}
.ws1e_c00479{word-spacing:-9.954000px;}
.ws13_c00479{word-spacing:-9.000000px;}
.ws1_c00479{word-spacing:-3.060000px;}
.ws21_c00479{word-spacing:-2.475000px;}
.ws1b_c00479{word-spacing:-1.890000px;}
.wsd_c00479{word-spacing:-1.620000px;}
.ws1f_c00479{word-spacing:-1.350000px;}
.ws15_c00479{word-spacing:-1.260000px;}
.ws1c_c00479{word-spacing:-0.450000px;}
.ws23_c00479{word-spacing:0.000000px;}
.ws4_c00479{word-spacing:0.384000px;}
.ws18_c00479{word-spacing:2.925000px;}
.ws11_c00479{word-spacing:2.931000px;}
.ws12_c00479{word-spacing:2.944800px;}
.ws5_c00479{word-spacing:3.147000px;}
.wsa_c00479{word-spacing:7.170000px;}
.wsb_c00479{word-spacing:14.400000px;}
.ws1a_c00479{word-spacing:17.154000px;}
.ws19_c00479{word-spacing:40.623000px;}
.ws14_c00479{word-spacing:65.844000px;}
.ws20_c00479{word-spacing:89.355000px;}
.ws16_c00479{word-spacing:103.125000px;}
.ws22_c00479{word-spacing:177.015000px;}
._20_c00479{margin-left:-66.585000px;}
._61_c00479{margin-left:-64.047000px;}
._39_c00479{margin-left:-62.130000px;}
._2c_c00479{margin-left:-59.706000px;}
._28_c00479{margin-left:-53.523000px;}
._3e_c00479{margin-left:-52.023000px;}
._4a_c00479{margin-left:-45.870000px;}
._54_c00479{margin-left:-44.421000px;}
._51_c00479{margin-left:-42.747000px;}
._e_c00479{margin-left:-41.124000px;}
._57_c00479{margin-left:-39.627000px;}
._45_c00479{margin-left:-37.848000px;}
._36_c00479{margin-left:-36.258000px;}
._18_c00479{margin-left:-34.218000px;}
._4f_c00479{margin-left:-32.787000px;}
._16_c00479{margin-left:-30.726000px;}
._22_c00479{margin-left:-29.718000px;}
._5f_c00479{margin-left:-28.566000px;}
._58_c00479{margin-left:-27.132000px;}
._27_c00479{margin-left:-25.344000px;}
._38_c00479{margin-left:-23.331000px;}
._26_c00479{margin-left:-21.528000px;}
._12_c00479{margin-left:-19.872000px;}
._14_c00479{margin-left:-17.922000px;}
._2f_c00479{margin-left:-16.905000px;}
._2a_c00479{margin-left:-15.732000px;}
._d_c00479{margin-left:-13.986000px;}
._f_c00479{margin-left:-12.372000px;}
._10_c00479{margin-left:-10.419000px;}
._13_c00479{margin-left:-8.400000px;}
._24_c00479{margin-left:-7.245000px;}
._1f_c00479{margin-left:-5.553000px;}
._17_c00479{margin-left:-3.831000px;}
._3_c00479{margin-left:-1.932000px;}
._9_c00479{width:1.647000px;}
._31_c00479{width:3.174000px;}
._b_c00479{width:4.485000px;}
._1b_c00479{width:5.865000px;}
._46_c00479{width:6.990000px;}
._c_c00479{width:8.004000px;}
._6_c00479{width:10.074000px;}
._a_c00479{width:11.592000px;}
._7_c00479{width:13.455000px;}
._63_c00479{width:14.979000px;}
._8_c00479{width:16.146000px;}
._1_c00479{width:17.871000px;}
._5_c00479{width:20.286000px;}
._1d_c00479{width:21.321000px;}
._2b_c00479{width:22.701000px;}
._25_c00479{width:24.150000px;}
._50_c00479{width:25.611000px;}
._33_c00479{width:26.874000px;}
._3b_c00479{width:28.083000px;}
._3c_c00479{width:30.066000px;}
._0_c00479{width:31.257000px;}
._1a_c00479{width:32.499000px;}
._37_c00479{width:34.275000px;}
._5a_c00479{width:35.286000px;}
._4_c00479{width:36.363000px;}
._5b_c00479{width:38.010000px;}
._49_c00479{width:39.846000px;}
._34_c00479{width:40.848000px;}
._52_c00479{width:42.459000px;}
._2e_c00479{width:43.746000px;}
._15_c00479{width:46.368000px;}
._21_c00479{width:48.438000px;}
._30_c00479{width:50.577000px;}
._1e_c00479{width:52.233000px;}
._23_c00479{width:53.817000px;}
._40_c00479{width:54.819000px;}
._5d_c00479{width:58.236000px;}
._35_c00479{width:63.963000px;}
._56_c00479{width:65.019000px;}
._43_c00479{width:67.926000px;}
._3f_c00479{width:69.690000px;}
._5e_c00479{width:72.225000px;}
._59_c00479{width:81.180000px;}
._3a_c00479{width:86.211000px;}
._55_c00479{width:89.415000px;}
._2d_c00479{width:91.701000px;}
._42_c00479{width:96.189000px;}
._2_c00479{width:98.580000px;}
._3d_c00479{width:111.849000px;}
._44_c00479{width:120.051000px;}
._48_c00479{width:123.840000px;}
._53_c00479{width:126.996000px;}
._47_c00479{width:138.201000px;}
._32_c00479{width:176.280000px;}
._5c_c00479{width:180.900000px;}
._4c_c00479{width:181.944000px;}
._19_c00479{width:189.567000px;}
._4e_c00479{width:207.048000px;}
._4b_c00479{width:326.718000px;}
._4d_c00479{width:371.300400px;}
._11_c00479{width:676.593000px;}
._29_c00479{width:885.591000px;}
._62_c00479{width:1003.383000px;}
._1c_c00479{width:1033.206000px;}
._41_c00479{width:1479.927000px;}
._60_c00479{width:2404.611000px;}
.fc2_c00479{color:transparent;}
.fc1_c00479{color:rgb(128,128,128);}
.fc0_c00479{color:rgb(0,0,0);}
.fs3_c00479{font-size:24.000000px;}
.fs9_c00479{font-size:45.000000px;}
.fs7_c00479{font-size:48.000000px;}
.fs2_c00479{font-size:51.000000px;}
.fs5_c00479{font-size:54.000000px;}
.fs8_c00479{font-size:55.200000px;}
.fs1_c00479{font-size:60.000000px;}
.fs4_c00479{font-size:63.000000px;}
.fs6_c00479{font-size:66.000000px;}
.fs0_c00479{font-size:69.000000px;}
.y0_c00479{bottom:0.000000px;}
.y44_c00479{bottom:3.105000px;}
.y43_c00479{bottom:7.228363px;}
.y42_c00479{bottom:67.050000px;}
.y41_c00479{bottom:90.750000px;}
.y37_c00479{bottom:92.100000px;}
.y39_c00479{bottom:96.150000px;}
.y3b_c00479{bottom:96.450000px;}
.y3e_c00479{bottom:97.650000px;}
.y40_c00479{bottom:99.000000px;}
.y22_c00479{bottom:100.500000px;}
.y3c_c00479{bottom:103.650000px;}
.y3d_c00479{bottom:108.300000px;}
.y38_c00479{bottom:110.250000px;}
.y3a_c00479{bottom:117.450000px;}
.y3f_c00479{bottom:117.750000px;}
.y36_c00479{bottom:125.250000px;}
.y2c_c00479{bottom:128.550000px;}
.y31_c00479{bottom:129.300000px;}
.y2d_c00479{bottom:130.650000px;}
.y35_c00479{bottom:132.300000px;}
.y2e_c00479{bottom:132.600000px;}
.y33_c00479{bottom:138.000000px;}
.y30_c00479{bottom:138.750000px;}
.y2b_c00479{bottom:144.150000px;}
.y32_c00479{bottom:147.900000px;}
.y34_c00479{bottom:152.250000px;}
.y2f_c00479{bottom:153.900000px;}
.y2a_c00479{bottom:156.600000px;}
.y29_c00479{bottom:165.750000px;}
.y27_c00479{bottom:168.450000px;}
.y28_c00479{bottom:170.100000px;}
.y26_c00479{bottom:191.400000px;}
.y23_c00479{bottom:194.400000px;}
.y24_c00479{bottom:196.800000px;}
.y25_c00479{bottom:197.400000px;}
.y21_c00479{bottom:355.350000px;}
.y20_c00479{bottom:414.750000px;}
.y1f_c00479{bottom:432.000000px;}
.y1e_c00479{bottom:456.300000px;}
.y1b_c00479{bottom:467.100000px;}
.y1d_c00479{bottom:467.400000px;}
.y1a_c00479{bottom:499.500000px;}
.y19_c00479{bottom:517.800000px;}
.y16_c00479{bottom:518.100000px;}
.y15_c00479{bottom:522.150000px;}
.y18_c00479{bottom:527.550000px;}
.y14_c00479{bottom:542.250000px;}
.y1c_c00479{bottom:557.250000px;}
.y11_c00479{bottom:572.100000px;}
.y17_c00479{bottom:575.700000px;}
.y13_c00479{bottom:579.450000px;}
.y10_c00479{bottom:583.650000px;}
.y12_c00479{bottom:607.200000px;}
.yd_c00479{bottom:609.300000px;}
.yf_c00479{bottom:611.850000px;}
.y9_c00479{bottom:614.700000px;}
.yc_c00479{bottom:619.350000px;}
.y8_c00479{bottom:630.450000px;}
.yb_c00479{bottom:652.050000px;}
.y7_c00479{bottom:666.300000px;}
.ya_c00479{bottom:667.200000px;}
.ye_c00479{bottom:670.050000px;}
.y6_c00479{bottom:683.700000px;}
.y5_c00479{bottom:700.950000px;}
.y4_c00479{bottom:741.450000px;}
.y3_c00479{bottom:753.750000px;}
.y2_c00479{bottom:764.100000px;}
.y1_c00479{bottom:776.250000px;}
.h1e_c00479{height:13.200074px;}
.hd_c00479{height:23.554688px;}
.hc_c00479{height:30.386719px;}
.h1f_c00479{height:43.804688px;}
.h17_c00479{height:44.165039px;}
.h19_c00479{height:53.765039px;}
.h3_c00479{height:58.886719px;}
.hb_c00479{height:64.571777px;}
.h2_c00479{height:65.040000px;}
.h18_c00479{height:66.965039px;}
.h7_c00479{height:68.370117px;}
.ha_c00479{height:69.539062px;}
.he_c00479{height:71.171777px;}
.h12_c00479{height:73.566797px;}
.h6_c00479{height:73.735840px;}
.h4_c00479{height:75.966797px;}
.h11_c00479{height:77.771777px;}
.h13_c00479{height:84.371777px;}
.h1_c00479{height:87.361816px;}
.h15_c00479{height:87.365039px;}
.h1b_c00479{height:93.965039px;}
.h10_c00479{height:95.171777px;}
.h14_c00479{height:98.165039px;}
.h5_c00479{height:103.586719px;}
.h16_c00479{height:104.171777px;}
.hf_c00479{height:105.971777px;}
.h1a_c00479{height:110.165039px;}
.h1c_c00479{height:161.771777px;}
.h8_c00479{height:170.761816px;}
.h9_c00479{height:176.761816px;}
.h1d_c00479{height:206.761816px;}
.h0_c00479{height:850.500000px;}
.w2_c00479{width:104.875500px;}
.w0_c00479{width:1166.925000px;}
.w1_c00479{width:1167.000000px;}
.x0_c00479{left:0.000000px;}
.x4_c00479{left:10.500000px;}
.x23_c00479{left:17.250000px;}
.x1_c00479{left:33.150000px;}
.x1b_c00479{left:34.800000px;}
.x1f_c00479{left:38.551500px;}
.x1a_c00479{left:39.750000px;}
.x36_c00479{left:49.650000px;}
.x35_c00479{left:51.300000px;}
.x9_c00479{left:53.250000px;}
.x16_c00479{left:54.450000px;}
.x8_c00479{left:68.850000px;}
.x2a_c00479{left:71.250000px;}
.x24_c00479{left:84.750000px;}
.x2d_c00479{left:93.600000px;}
.x2e_c00479{left:116.550000px;}
.x7_c00479{left:125.550000px;}
.x10_c00479{left:129.300000px;}
.x1d_c00479{left:132.900000px;}
.x11_c00479{left:136.050000px;}
.x1e_c00479{left:146.850000px;}
.x5_c00479{left:148.200000px;}
.x37_c00479{left:151.200000px;}
.x2f_c00479{left:152.550000px;}
.x25_c00479{left:157.650000px;}
.x6_c00479{left:167.700000px;}
.xc_c00479{left:195.300000px;}
.x19_c00479{left:196.350000px;}
.x38_c00479{left:208.650000px;}
.xd_c00479{left:210.300000px;}
.x17_c00479{left:214.200000px;}
.xb_c00479{left:225.450000px;}
.x18_c00479{left:233.250000px;}
.x30_c00479{left:234.900000px;}
.x39_c00479{left:236.550000px;}
.xa_c00479{left:243.000000px;}
.x15_c00479{left:248.400000px;}
.x26_c00479{left:268.950000px;}
.x12_c00479{left:282.600000px;}
.x2b_c00479{left:292.050000px;}
.x3a_c00479{left:294.000000px;}
.x27_c00479{left:301.050000px;}
.x31_c00479{left:309.450000px;}
.x28_c00479{left:313.650000px;}
.x3c_c00479{left:320.250000px;}
.x3b_c00479{left:322.350000px;}
.x20_c00479{left:326.101500px;}
.x32_c00479{left:343.950000px;}
.x21_c00479{left:354.600000px;}
.x33_c00479{left:368.250000px;}
.x2c_c00479{left:370.650000px;}
.x22_c00479{left:371.850000px;}
.x29_c00479{left:374.400000px;}
.x2_c00479{left:393.900000px;}
.x3d_c00479{left:401.250000px;}
.x3_c00479{left:405.750000px;}
.x34_c00479{left:407.100000px;}
.x13_c00479{left:429.600000px;}
.x14_c00479{left:441.000000px;}
.xf_c00479{left:447.750000px;}
.xe_c00479{left:457.350000px;}
.x3e_c00479{left:535.276749px;}
.x1c_c00479{left:545.400000px;}
@media print{
.v13_c00479{vertical-align:-43.200000pt;}
.v9_c00479{vertical-align:-40.000000pt;}
.v7_c00479{vertical-align:-29.866667pt;}
.va_c00479{vertical-align:-21.866667pt;}
.v4_c00479{vertical-align:-9.600000pt;}
.v1a_c00479{vertical-align:-8.533333pt;}
.vf_c00479{vertical-align:-2.133333pt;}
.v0_c00479{vertical-align:0.000000pt;}
.v5_c00479{vertical-align:5.866667pt;}
.v14_c00479{vertical-align:8.533333pt;}
.ve_c00479{vertical-align:11.733333pt;}
.vc_c00479{vertical-align:17.066667pt;}
.v12_c00479{vertical-align:20.266667pt;}
.vb_c00479{vertical-align:21.866667pt;}
.vd_c00479{vertical-align:27.200000pt;}
.v17_c00479{vertical-align:34.133333pt;}
.v6_c00479{vertical-align:35.733333pt;}
.v8_c00479{vertical-align:36.800000pt;}
.v11_c00479{vertical-align:38.400000pt;}
.v16_c00479{vertical-align:44.266667pt;}
.v10_c00479{vertical-align:48.000000pt;}
.v18_c00479{vertical-align:52.266667pt;}
.v15_c00479{vertical-align:58.666667pt;}
.v19_c00479{vertical-align:62.400000pt;}
.v1_c00479{vertical-align:65.066667pt;}
.v2_c00479{vertical-align:74.133333pt;}
.v3_c00479{vertical-align:79.466667pt;}
.ls11_c00479{letter-spacing:-5.333333pt;}
.ls10_c00479{letter-spacing:-2.666667pt;}
.lse_c00479{letter-spacing:0.000000pt;}
.ls1_c00479{letter-spacing:0.533333pt;}
.ls2_c00479{letter-spacing:2.666667pt;}
.lsf_c00479{letter-spacing:5.333333pt;}
.ls9_c00479{letter-spacing:5.482667pt;}
.lsd_c00479{letter-spacing:8.000000pt;}
.lsb_c00479{letter-spacing:13.333333pt;}
.lsc_c00479{letter-spacing:21.333333pt;}
.ls3_c00479{letter-spacing:29.229333pt;}
.ls7_c00479{letter-spacing:33.365333pt;}
.ls4_c00479{letter-spacing:51.280000pt;}
.ls8_c00479{letter-spacing:76.872000pt;}
.ls0_c00479{letter-spacing:111.973333pt;}
.ls5_c00479{letter-spacing:113.781333pt;}
.ls6_c00479{letter-spacing:190.480000pt;}
.lsa_c00479{letter-spacing:687.413333pt;}
.ws0_c00479{word-spacing:-36.114667pt;}
.ws6_c00479{word-spacing:-29.333333pt;}
.wsf_c00479{word-spacing:-21.333333pt;}
.ws9_c00479{word-spacing:-20.114667pt;}
.ws3_c00479{word-spacing:-17.448000pt;}
.ws7_c00479{word-spacing:-16.162667pt;}
.ws2_c00479{word-spacing:-14.781333pt;}
.wse_c00479{word-spacing:-13.496000pt;}
.ws8_c00479{word-spacing:-12.853333pt;}
.wsc_c00479{word-spacing:-12.666667pt;}
.ws10_c00479{word-spacing:-11.568000pt;}
.ws17_c00479{word-spacing:-11.320000pt;}
.ws1d_c00479{word-spacing:-10.000000pt;}
.ws1e_c00479{word-spacing:-8.848000pt;}
.ws13_c00479{word-spacing:-8.000000pt;}
.ws1_c00479{word-spacing:-2.720000pt;}
.ws21_c00479{word-spacing:-2.200000pt;}
.ws1b_c00479{word-spacing:-1.680000pt;}
.wsd_c00479{word-spacing:-1.440000pt;}
.ws1f_c00479{word-spacing:-1.200000pt;}
.ws15_c00479{word-spacing:-1.120000pt;}
.ws1c_c00479{word-spacing:-0.400000pt;}
.ws23_c00479{word-spacing:0.000000pt;}
.ws4_c00479{word-spacing:0.341333pt;}
.ws18_c00479{word-spacing:2.600000pt;}
.ws11_c00479{word-spacing:2.605333pt;}
.ws12_c00479{word-spacing:2.617600pt;}
.ws5_c00479{word-spacing:2.797333pt;}
.wsa_c00479{word-spacing:6.373333pt;}
.wsb_c00479{word-spacing:12.800000pt;}
.ws1a_c00479{word-spacing:15.248000pt;}
.ws19_c00479{word-spacing:36.109333pt;}
.ws14_c00479{word-spacing:58.528000pt;}
.ws20_c00479{word-spacing:79.426667pt;}
.ws16_c00479{word-spacing:91.666667pt;}
.ws22_c00479{word-spacing:157.346667pt;}
._20_c00479{margin-left:-59.186667pt;}
._61_c00479{margin-left:-56.930667pt;}
._39_c00479{margin-left:-55.226667pt;}
._2c_c00479{margin-left:-53.072000pt;}
._28_c00479{margin-left:-47.576000pt;}
._3e_c00479{margin-left:-46.242667pt;}
._4a_c00479{margin-left:-40.773333pt;}
._54_c00479{margin-left:-39.485333pt;}
._51_c00479{margin-left:-37.997333pt;}
._e_c00479{margin-left:-36.554667pt;}
._57_c00479{margin-left:-35.224000pt;}
._45_c00479{margin-left:-33.642667pt;}
._36_c00479{margin-left:-32.229333pt;}
._18_c00479{margin-left:-30.416000pt;}
._4f_c00479{margin-left:-29.144000pt;}
._16_c00479{margin-left:-27.312000pt;}
._22_c00479{margin-left:-26.416000pt;}
._5f_c00479{margin-left:-25.392000pt;}
._58_c00479{margin-left:-24.117333pt;}
._27_c00479{margin-left:-22.528000pt;}
._38_c00479{margin-left:-20.738667pt;}
._26_c00479{margin-left:-19.136000pt;}
._12_c00479{margin-left:-17.664000pt;}
._14_c00479{margin-left:-15.930667pt;}
._2f_c00479{margin-left:-15.026667pt;}
._2a_c00479{margin-left:-13.984000pt;}
._d_c00479{margin-left:-12.432000pt;}
._f_c00479{margin-left:-10.997333pt;}
._10_c00479{margin-left:-9.261333pt;}
._13_c00479{margin-left:-7.466667pt;}
._24_c00479{margin-left:-6.440000pt;}
._1f_c00479{margin-left:-4.936000pt;}
._17_c00479{margin-left:-3.405333pt;}
._3_c00479{margin-left:-1.717333pt;}
._9_c00479{width:1.464000pt;}
._31_c00479{width:2.821333pt;}
._b_c00479{width:3.986667pt;}
._1b_c00479{width:5.213333pt;}
._46_c00479{width:6.213333pt;}
._c_c00479{width:7.114667pt;}
._6_c00479{width:8.954667pt;}
._a_c00479{width:10.304000pt;}
._7_c00479{width:11.960000pt;}
._63_c00479{width:13.314667pt;}
._8_c00479{width:14.352000pt;}
._1_c00479{width:15.885333pt;}
._5_c00479{width:18.032000pt;}
._1d_c00479{width:18.952000pt;}
._2b_c00479{width:20.178667pt;}
._25_c00479{width:21.466667pt;}
._50_c00479{width:22.765333pt;}
._33_c00479{width:23.888000pt;}
._3b_c00479{width:24.962667pt;}
._3c_c00479{width:26.725333pt;}
._0_c00479{width:27.784000pt;}
._1a_c00479{width:28.888000pt;}
._37_c00479{width:30.466667pt;}
._5a_c00479{width:31.365333pt;}
._4_c00479{width:32.322667pt;}
._5b_c00479{width:33.786667pt;}
._49_c00479{width:35.418667pt;}
._34_c00479{width:36.309333pt;}
._52_c00479{width:37.741333pt;}
._2e_c00479{width:38.885333pt;}
._15_c00479{width:41.216000pt;}
._21_c00479{width:43.056000pt;}
._30_c00479{width:44.957333pt;}
._1e_c00479{width:46.429333pt;}
._23_c00479{width:47.837333pt;}
._40_c00479{width:48.728000pt;}
._5d_c00479{width:51.765333pt;}
._35_c00479{width:56.856000pt;}
._56_c00479{width:57.794667pt;}
._43_c00479{width:60.378667pt;}
._3f_c00479{width:61.946667pt;}
._5e_c00479{width:64.200000pt;}
._59_c00479{width:72.160000pt;}
._3a_c00479{width:76.632000pt;}
._55_c00479{width:79.480000pt;}
._2d_c00479{width:81.512000pt;}
._42_c00479{width:85.501333pt;}
._2_c00479{width:87.626667pt;}
._3d_c00479{width:99.421333pt;}
._44_c00479{width:106.712000pt;}
._48_c00479{width:110.080000pt;}
._53_c00479{width:112.885333pt;}
._47_c00479{width:122.845333pt;}
._32_c00479{width:156.693333pt;}
._5c_c00479{width:160.800000pt;}
._4c_c00479{width:161.728000pt;}
._19_c00479{width:168.504000pt;}
._4e_c00479{width:184.042667pt;}
._4b_c00479{width:290.416000pt;}
._4d_c00479{width:330.044800pt;}
._11_c00479{width:601.416000pt;}
._29_c00479{width:787.192000pt;}
._62_c00479{width:891.896000pt;}
._1c_c00479{width:918.405333pt;}
._41_c00479{width:1315.490667pt;}
._60_c00479{width:2137.432000pt;}
.fs3_c00479{font-size:21.333333pt;}
.fs9_c00479{font-size:40.000000pt;}
.fs7_c00479{font-size:42.666667pt;}
.fs2_c00479{font-size:45.333333pt;}
.fs5_c00479{font-size:48.000000pt;}
.fs8_c00479{font-size:49.066667pt;}
.fs1_c00479{font-size:53.333333pt;}
.fs4_c00479{font-size:56.000000pt;}
.fs6_c00479{font-size:58.666667pt;}
.fs0_c00479{font-size:61.333333pt;}
.y0_c00479{bottom:0.000000pt;}
.y44_c00479{bottom:2.760000pt;}
.y43_c00479{bottom:6.425212pt;}
.y42_c00479{bottom:59.600000pt;}
.y41_c00479{bottom:80.666667pt;}
.y37_c00479{bottom:81.866667pt;}
.y39_c00479{bottom:85.466667pt;}
.y3b_c00479{bottom:85.733333pt;}
.y3e_c00479{bottom:86.800000pt;}
.y40_c00479{bottom:88.000000pt;}
.y22_c00479{bottom:89.333333pt;}
.y3c_c00479{bottom:92.133333pt;}
.y3d_c00479{bottom:96.266667pt;}
.y38_c00479{bottom:98.000000pt;}
.y3a_c00479{bottom:104.400000pt;}
.y3f_c00479{bottom:104.666667pt;}
.y36_c00479{bottom:111.333333pt;}
.y2c_c00479{bottom:114.266667pt;}
.y31_c00479{bottom:114.933333pt;}
.y2d_c00479{bottom:116.133333pt;}
.y35_c00479{bottom:117.600000pt;}
.y2e_c00479{bottom:117.866667pt;}
.y33_c00479{bottom:122.666667pt;}
.y30_c00479{bottom:123.333333pt;}
.y2b_c00479{bottom:128.133333pt;}
.y32_c00479{bottom:131.466667pt;}
.y34_c00479{bottom:135.333333pt;}
.y2f_c00479{bottom:136.800000pt;}
.y2a_c00479{bottom:139.200000pt;}
.y29_c00479{bottom:147.333333pt;}
.y27_c00479{bottom:149.733333pt;}
.y28_c00479{bottom:151.200000pt;}
.y26_c00479{bottom:170.133333pt;}
.y23_c00479{bottom:172.800000pt;}
.y24_c00479{bottom:174.933333pt;}
.y25_c00479{bottom:175.466667pt;}
.y21_c00479{bottom:315.866667pt;}
.y20_c00479{bottom:368.666667pt;}
.y1f_c00479{bottom:384.000000pt;}
.y1e_c00479{bottom:405.600000pt;}
.y1b_c00479{bottom:415.200000pt;}
.y1d_c00479{bottom:415.466667pt;}
.y1a_c00479{bottom:444.000000pt;}
.y19_c00479{bottom:460.266667pt;}
.y16_c00479{bottom:460.533333pt;}
.y15_c00479{bottom:464.133333pt;}
.y18_c00479{bottom:468.933333pt;}
.y14_c00479{bottom:482.000000pt;}
.y1c_c00479{bottom:495.333333pt;}
.y11_c00479{bottom:508.533333pt;}
.y17_c00479{bottom:511.733333pt;}
.y13_c00479{bottom:515.066667pt;}
.y10_c00479{bottom:518.800000pt;}
.y12_c00479{bottom:539.733333pt;}
.yd_c00479{bottom:541.600000pt;}
.yf_c00479{bottom:543.866667pt;}
.y9_c00479{bottom:546.400000pt;}
.yc_c00479{bottom:550.533333pt;}
.y8_c00479{bottom:560.400000pt;}
.yb_c00479{bottom:579.600000pt;}
.y7_c00479{bottom:592.266667pt;}
.ya_c00479{bottom:593.066667pt;}
.ye_c00479{bottom:595.600000pt;}
.y6_c00479{bottom:607.733333pt;}
.y5_c00479{bottom:623.066667pt;}
.y4_c00479{bottom:659.066667pt;}
.y3_c00479{bottom:670.000000pt;}
.y2_c00479{bottom:679.200000pt;}
.y1_c00479{bottom:690.000000pt;}
.h1e_c00479{height:11.733399pt;}
.hd_c00479{height:20.937500pt;}
.hc_c00479{height:27.010417pt;}
.h1f_c00479{height:38.937500pt;}
.h17_c00479{height:39.257812pt;}
.h19_c00479{height:47.791146pt;}
.h3_c00479{height:52.343750pt;}
.hb_c00479{height:57.397135pt;}
.h2_c00479{height:57.813333pt;}
.h18_c00479{height:59.524479pt;}
.h7_c00479{height:60.773438pt;}
.ha_c00479{height:61.812500pt;}
.he_c00479{height:63.263802pt;}
.h12_c00479{height:65.392708pt;}
.h6_c00479{height:65.542969pt;}
.h4_c00479{height:67.526042pt;}
.h11_c00479{height:69.130469pt;}
.h13_c00479{height:74.997135pt;}
.h1_c00479{height:77.654948pt;}
.h15_c00479{height:77.657813pt;}
.h1b_c00479{height:83.524479pt;}
.h10_c00479{height:84.597135pt;}
.h14_c00479{height:87.257812pt;}
.h5_c00479{height:92.077083pt;}
.h16_c00479{height:92.597135pt;}
.hf_c00479{height:94.197135pt;}
.h1a_c00479{height:97.924479pt;}
.h1c_c00479{height:143.797135pt;}
.h8_c00479{height:151.788281pt;}
.h9_c00479{height:157.121615pt;}
.h1d_c00479{height:183.788281pt;}
.h0_c00479{height:756.000000pt;}
.w2_c00479{width:93.222667pt;}
.w0_c00479{width:1037.266667pt;}
.w1_c00479{width:1037.333333pt;}
.x0_c00479{left:0.000000pt;}
.x4_c00479{left:9.333333pt;}
.x23_c00479{left:15.333333pt;}
.x1_c00479{left:29.466667pt;}
.x1b_c00479{left:30.933333pt;}
.x1f_c00479{left:34.268000pt;}
.x1a_c00479{left:35.333333pt;}
.x36_c00479{left:44.133333pt;}
.x35_c00479{left:45.600000pt;}
.x9_c00479{left:47.333333pt;}
.x16_c00479{left:48.400000pt;}
.x8_c00479{left:61.200000pt;}
.x2a_c00479{left:63.333333pt;}
.x24_c00479{left:75.333333pt;}
.x2d_c00479{left:83.200000pt;}
.x2e_c00479{left:103.600000pt;}
.x7_c00479{left:111.600000pt;}
.x10_c00479{left:114.933333pt;}
.x1d_c00479{left:118.133333pt;}
.x11_c00479{left:120.933333pt;}
.x1e_c00479{left:130.533333pt;}
.x5_c00479{left:131.733333pt;}
.x37_c00479{left:134.400000pt;}
.x2f_c00479{left:135.600000pt;}
.x25_c00479{left:140.133333pt;}
.x6_c00479{left:149.066667pt;}
.xc_c00479{left:173.600000pt;}
.x19_c00479{left:174.533333pt;}
.x38_c00479{left:185.466667pt;}
.xd_c00479{left:186.933333pt;}
.x17_c00479{left:190.400000pt;}
.xb_c00479{left:200.400000pt;}
.x18_c00479{left:207.333333pt;}
.x30_c00479{left:208.800000pt;}
.x39_c00479{left:210.266667pt;}
.xa_c00479{left:216.000000pt;}
.x15_c00479{left:220.800000pt;}
.x26_c00479{left:239.066667pt;}
.x12_c00479{left:251.200000pt;}
.x2b_c00479{left:259.600000pt;}
.x3a_c00479{left:261.333333pt;}
.x27_c00479{left:267.600000pt;}
.x31_c00479{left:275.066667pt;}
.x28_c00479{left:278.800000pt;}
.x3c_c00479{left:284.666667pt;}
.x3b_c00479{left:286.533333pt;}
.x20_c00479{left:289.868000pt;}
.x32_c00479{left:305.733333pt;}
.x21_c00479{left:315.200000pt;}
.x33_c00479{left:327.333333pt;}
.x2c_c00479{left:329.466667pt;}
.x22_c00479{left:330.533333pt;}
.x29_c00479{left:332.800000pt;}
.x2_c00479{left:350.133333pt;}
.x3d_c00479{left:356.666667pt;}
.x3_c00479{left:360.666667pt;}
.x34_c00479{left:361.866667pt;}
.x13_c00479{left:381.866667pt;}
.x14_c00479{left:392.000000pt;}
.xf_c00479{left:398.000000pt;}
.xe_c00479{left:406.533333pt;}
.x3e_c00479{left:475.801554pt;}
.x1c_c00479{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_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_77db1303a7717acd15ba1268.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_4377e23162ab9af8476d6735.woff2')format("woff");}.ff2_c00480{font-family:ff2_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:ff3_c00480;src:url('chunks/assets/font_ec1a8d8a2d642b7db1acb591.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_8106e066fd8c5f2506983f51.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.437000;font-style:normal;font-weight:normal;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_7a1188a1b7195b4bf904666b.woff2')format("woff");}.ff5_c00480{font-family:ff5_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:ff6_c00480;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00480{font-family:ff6_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;}
.m1_c00480{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_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls2_c00480{letter-spacing:-9.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:3.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;}
}
.ws2_c00480{word-spacing:-78.516000px;}
.ws0_c00480{word-spacing:-16.629000px;}
.ws1_c00480{word-spacing:-0.057000px;}
.ws3_c00480{word-spacing:0.000000px;}
._6_c00480{margin-left:-49.473000px;}
._11_c00480{margin-left:-28.620000px;}
._e_c00480{margin-left:-27.324000px;}
._14_c00480{margin-left:-26.097000px;}
._9_c00480{margin-left:-24.702000px;}
._7_c00480{margin-left:-19.803000px;}
._10_c00480{margin-left:-18.198000px;}
._15_c00480{margin-left:-15.912000px;}
._1_c00480{margin-left:-11.070000px;}
._b_c00480{margin-left:-9.660000px;}
._4_c00480{margin-left:-6.426000px;}
._5_c00480{margin-left:-4.644000px;}
._0_c00480{margin-left:-2.214000px;}
._d_c00480{width:3.036000px;}
._3_c00480{width:7.722000px;}
._13_c00480{width:10.146000px;}
._12_c00480{width:11.970000px;}
._a_c00480{width:51.474000px;}
._c_c00480{width:80.310000px;}
._8_c00480{width:232.047000px;}
._f_c00480{width:447.114000px;}
._2_c00480{width:481.410000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(128,128,128);}
.fc0_c00480{color:rgb(0,0,0);}
.fs5_c00480{font-size:48.000000px;}
.fs0_c00480{font-size:54.000000px;}
.fs3_c00480{font-size:57.000000px;}
.fs2_c00480{font-size:60.000000px;}
.fs1_c00480{font-size:69.000000px;}
.fs4_c00480{font-size:153.000000px;}
.y0_c00480{bottom:0.000000px;}
.y8_c00480{bottom:3.105000px;}
.y7_c00480{bottom:7.228357px;}
.y6_c00480{bottom:54.630000px;}
.y5_c00480{bottom:222.030000px;}
.y4_c00480{bottom:298.080000px;}
.y3_c00480{bottom:655.380000px;}
.y2_c00480{bottom:675.780000px;}
.y1_c00480{bottom:693.930000px;}
.h8_c00480{height:13.200074px;}
.h9_c00480{height:43.804688px;}
.h6_c00480{height:59.736000px;}
.h5_c00480{height:60.468750px;}
.h4_c00480{height:63.202148px;}
.h2_c00480{height:68.370117px;}
.h3_c00480{height:87.361816px;}
.h7_c00480{height:193.715332px;}
.h0_c00480{height:841.350000px;}
.h1_c00480{height:841.500000px;}
.w2_c00480{width:104.875500px;}
.w0_c00480{width:607.200000px;}
.w1_c00480{width:607.500000px;}
.x0_c00480{left:0.000000px;}
.x5_c00480{left:26.100000px;}
.x4_c00480{left:32.100000px;}
.x3_c00480{left:46.650000px;}
.x6_c00480{left:255.414230px;}
.x2_c00480{left:412.500000px;}
.x1_c00480{left:437.700000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:-8.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:2.666667pt;}
.ws2_c00480{word-spacing:-69.792000pt;}
.ws0_c00480{word-spacing:-14.781333pt;}
.ws1_c00480{word-spacing:-0.050667pt;}
.ws3_c00480{word-spacing:0.000000pt;}
._6_c00480{margin-left:-43.976000pt;}
._11_c00480{margin-left:-25.440000pt;}
._e_c00480{margin-left:-24.288000pt;}
._14_c00480{margin-left:-23.197333pt;}
._9_c00480{margin-left:-21.957333pt;}
._7_c00480{margin-left:-17.602667pt;}
._10_c00480{margin-left:-16.176000pt;}
._15_c00480{margin-left:-14.144000pt;}
._1_c00480{margin-left:-9.840000pt;}
._b_c00480{margin-left:-8.586667pt;}
._4_c00480{margin-left:-5.712000pt;}
._5_c00480{margin-left:-4.128000pt;}
._0_c00480{margin-left:-1.968000pt;}
._d_c00480{width:2.698667pt;}
._3_c00480{width:6.864000pt;}
._13_c00480{width:9.018667pt;}
._12_c00480{width:10.640000pt;}
._a_c00480{width:45.754667pt;}
._c_c00480{width:71.386667pt;}
._8_c00480{width:206.264000pt;}
._f_c00480{width:397.434667pt;}
._2_c00480{width:427.920000pt;}
.fs5_c00480{font-size:42.666667pt;}
.fs0_c00480{font-size:48.000000pt;}
.fs3_c00480{font-size:50.666667pt;}
.fs2_c00480{font-size:53.333333pt;}
.fs1_c00480{font-size:61.333333pt;}
.fs4_c00480{font-size:136.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y8_c00480{bottom:2.760000pt;}
.y7_c00480{bottom:6.425206pt;}
.y6_c00480{bottom:48.560000pt;}
.y5_c00480{bottom:197.360000pt;}
.y4_c00480{bottom:264.960000pt;}
.y3_c00480{bottom:582.560000pt;}
.y2_c00480{bottom:600.693333pt;}
.y1_c00480{bottom:616.826667pt;}
.h8_c00480{height:11.733399pt;}
.h9_c00480{height:38.937500pt;}
.h6_c00480{height:53.098667pt;}
.h5_c00480{height:53.750000pt;}
.h4_c00480{height:56.179688pt;}
.h2_c00480{height:60.773438pt;}
.h3_c00480{height:77.654948pt;}
.h7_c00480{height:172.191406pt;}
.h0_c00480{height:747.866667pt;}
.h1_c00480{height:748.000000pt;}
.w2_c00480{width:93.222667pt;}
.w0_c00480{width:539.733333pt;}
.w1_c00480{width:540.000000pt;}
.x0_c00480{left:0.000000pt;}
.x5_c00480{left:23.200000pt;}
.x4_c00480{left:28.533333pt;}
.x3_c00480{left:41.466667pt;}
.x6_c00480{left:227.034871pt;}
.x2_c00480{left:366.666667pt;}
.x1_c00480{left:389.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00481{font-family:ff1_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;}
.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;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:0.000000px;}
.fc0_c00481{color:rgb(128,128,128);}
.fs0_c00481{font-size:48.000000px;}
.y0_c00481{bottom:0.000000px;}
.y2_c00481{bottom:3.105000px;}
.y1_c00481{bottom:7.228357px;}
.h2_c00481{height:13.200074px;}
.h3_c00481{height:43.804688px;}
.h1_c00481{height:837.000000px;}
.h0_c00481{height:837.300000px;}
.w2_c00481{width:104.875500px;}
.w1_c00481{width:604.500000px;}
.w0_c00481{width:604.800000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:254.214249px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs0_c00481{font-size:42.666667pt;}
.y0_c00481{bottom:0.000000pt;}
.y2_c00481{bottom:2.760000pt;}
.y1_c00481{bottom:6.425206pt;}
.h2_c00481{height:11.733399pt;}
.h3_c00481{height:38.937500pt;}
.h1_c00481{height:744.000000pt;}
.h0_c00481{height:744.266667pt;}
.w2_c00481{width:93.222667pt;}
.w1_c00481{width:537.333333pt;}
.w0_c00481{width:537.600000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:225.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_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_c49bd20920a078371468a15c.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff2_c00482{font-family:ff2_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;}
.ls1_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:3.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:0.000000px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(128,128,128);}
.fc0_c00482{color:rgb(0,0,0);}
.fs1_c00482{font-size:48.000000px;}
.fs0_c00482{font-size:69.000000px;}
.y0_c00482{bottom:0.000000px;}
.y3_c00482{bottom:3.105000px;}
.y2_c00482{bottom:7.228357px;}
.y1_c00482{bottom:758.430000px;}
.h3_c00482{height:13.200074px;}
.h4_c00482{height:43.804688px;}
.h2_c00482{height:87.361816px;}
.h0_c00482{height:848.100000px;}
.h1_c00482{height:848.250000px;}
.w2_c00482{width:104.875500px;}
.w0_c00482{width:1163.700000px;}
.w1_c00482{width:1164.000000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:533.664230px;}
.x1_c00482{left:539.700000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:2.666667pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs1_c00482{font-size:42.666667pt;}
.fs0_c00482{font-size:61.333333pt;}
.y0_c00482{bottom:0.000000pt;}
.y3_c00482{bottom:2.760000pt;}
.y2_c00482{bottom:6.425206pt;}
.y1_c00482{bottom:674.160000pt;}
.h3_c00482{height:11.733399pt;}
.h4_c00482{height:38.937500pt;}
.h2_c00482{height:77.654948pt;}
.h0_c00482{height:753.866667pt;}
.h1_c00482{height:754.000000pt;}
.w2_c00482{width:93.222667pt;}
.w0_c00482{width:1034.400000pt;}
.w1_c00482{width:1034.666667pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:474.368205pt;}
.x1_c00482{left:479.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_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_e9ca4972c7dc2580ef3def79.woff2')format("woff");}.ff1_c00483{font-family:ff1_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:ff2_c00483;src:url('chunks/assets/font_9d49189a2031040c7eabab40.woff2')format("woff");}.ff2_c00483{font-family:ff2_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:ff3_c00483;src:url('chunks/assets/font_c2904dee217a0d6cfbda9929.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;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_c00483;src:url('chunks/assets/font_03969976f673936b7dbeee31.woff2')format("woff");}.ff4_c00483{font-family:ff4_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:ff5_c00483;src:url('chunks/assets/font_0beda857ca53d0321f1d1e2b.woff2')format("woff");}.ff5_c00483{font-family:ff5_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:ff6_c00483;src:url('chunks/assets/font_e118e182d2c8e43e1c03d425.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;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_c00483;src:url('chunks/assets/font_2e414aaf825a1eeae1e275fe.woff2')format("woff");}.ff7_c00483{font-family:ff7_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:ff8_c00483;src:url('chunks/assets/font_f2688f0c73e0501b81e72ea6.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_438c4b1988a1f5cd4c8d6250.woff2')format("woff");}.ff9_c00483{font-family:ff9_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:ffa_c00483;src:url('chunks/assets/font_6387d686e23a3ebfa431abeb.woff2')format("woff");}.ffa_c00483{font-family:ffa_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:ffb_c00483;src:url('chunks/assets/font_fee145801c6d35fe73955e93.woff2')format("woff");}.ffb_c00483{font-family:ffb_c00483;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_c00483;src:url('chunks/assets/font_df7537b00c2a5b1234a25109.woff2')format("woff");}.ffc_c00483{font-family:ffc_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:ffd_c00483;src:url('chunks/assets/font_3dee5c1a51f8380f14ee91d5.woff2')format("woff");}.ffd_c00483{font-family:ffd_c00483;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:ffe_c00483;src:url('chunks/assets/font_c460f74e3cce4b70e0dc5477.woff2')format("woff");}.ffe_c00483{font-family:ffe_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:fff_c00483;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.fff_c00483{font-family:fff_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;}
.m3_c00483{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,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);}
.m6_c00483{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);}
.m5_c00483{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);}
.m2_c00483{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);}
.m4_c00483{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);}
.m1_c00483{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_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:73.200000px;}
.ls6_c00483{letter-spacing:-9.000000px;}
.ls7_c00483{letter-spacing:-3.000000px;}
.ls8_c00483{letter-spacing:0.000000px;}
.ls1_c00483{letter-spacing:1.803000px;}
.ls5_c00483{letter-spacing:3.000000px;}
.ls0_c00483{letter-spacing:4.500000px;}
.lsb_c00483{letter-spacing:6.000000px;}
.ls9_c00483{letter-spacing:9.000000px;}
.lsa_c00483{letter-spacing:15.000000px;}
.ls2_c00483{letter-spacing:16.831200px;}
.ls4_c00483{letter-spacing:52.200000px;}
.ls3_c00483{letter-spacing:177.750000px;}
.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;}
}
.ws7_c00483{word-spacing:-31.104000px;}
.ws6_c00483{word-spacing:-26.250000px;}
.ws5_c00483{word-spacing:-24.000000px;}
.ws0_c00483{word-spacing:-19.629000px;}
.ws1_c00483{word-spacing:-16.629000px;}
.ws2_c00483{word-spacing:-13.014000px;}
.ws4_c00483{word-spacing:-11.250000px;}
.ws9_c00483{word-spacing:0.000000px;}
.ws3_c00483{word-spacing:1.242000px;}
.ws8_c00483{word-spacing:33.240000px;}
._13_c00483{margin-left:-60.582000px;}
._5_c00483{margin-left:-59.211000px;}
._44_c00483{margin-left:-53.406000px;}
._8_c00483{margin-left:-50.184000px;}
._3b_c00483{margin-left:-48.306000px;}
._43_c00483{margin-left:-45.450000px;}
._2e_c00483{margin-left:-41.607000px;}
._36_c00483{margin-left:-39.390000px;}
._7_c00483{margin-left:-36.456000px;}
._23_c00483{margin-left:-33.180000px;}
._2_c00483{margin-left:-28.014000px;}
._6_c00483{margin-left:-24.924000px;}
._2d_c00483{margin-left:-23.865000px;}
._2b_c00483{margin-left:-22.356000px;}
._1e_c00483{margin-left:-21.000000px;}
._1_c00483{margin-left:-18.906000px;}
._25_c00483{margin-left:-16.767000px;}
._0_c00483{margin-left:-15.387000px;}
._2f_c00483{margin-left:-13.317000px;}
._3_c00483{margin-left:-11.169000px;}
._19_c00483{margin-left:-9.384000px;}
._2c_c00483{margin-left:-8.244000px;}
._3e_c00483{margin-left:-7.128000px;}
._1a_c00483{margin-left:-6.003000px;}
._16_c00483{margin-left:-4.830000px;}
._18_c00483{margin-left:-3.312000px;}
._34_c00483{margin-left:-2.190000px;}
._15_c00483{margin-left:-1.005000px;}
._1c_c00483{width:2.001000px;}
._a_c00483{width:3.213000px;}
._e_c00483{width:5.175000px;}
._b_c00483{width:6.732000px;}
._27_c00483{width:7.758000px;}
._c_c00483{width:9.000000px;}
._14_c00483{width:10.509000px;}
._20_c00483{width:12.819000px;}
._d_c00483{width:14.283000px;}
._f_c00483{width:17.604000px;}
._21_c00483{width:18.726000px;}
._11_c00483{width:20.199000px;}
._1f_c00483{width:22.341000px;}
._17_c00483{width:23.943000px;}
._10_c00483{width:26.289000px;}
._31_c00483{width:28.905000px;}
._3a_c00483{width:31.578000px;}
._22_c00483{width:32.979000px;}
._1d_c00483{width:34.044000px;}
._24_c00483{width:43.959000px;}
._28_c00483{width:46.260000px;}
._39_c00483{width:50.790000px;}
._3c_c00483{width:52.380000px;}
._3f_c00483{width:55.380000px;}
._3d_c00483{width:57.078000px;}
._38_c00483{width:59.175000px;}
._33_c00483{width:60.726000px;}
._37_c00483{width:68.331000px;}
._35_c00483{width:72.105000px;}
._12_c00483{width:76.797000px;}
._40_c00483{width:79.320000px;}
._45_c00483{width:82.179000px;}
._41_c00483{width:87.060000px;}
._2a_c00483{width:105.180000px;}
._32_c00483{width:107.037000px;}
._30_c00483{width:152.613000px;}
._4_c00483{width:156.978000px;}
._26_c00483{width:175.950000px;}
._46_c00483{width:183.234000px;}
._29_c00483{width:223.773000px;}
._48_c00483{width:226.863000px;}
._47_c00483{width:438.537000px;}
._9_c00483{width:526.320000px;}
._42_c00483{width:614.997000px;}
._1b_c00483{width:684.480000px;}
.fc2_c00483{color:transparent;}
.fc1_c00483{color:rgb(128,128,128);}
.fc0_c00483{color:rgb(0,0,0);}
.fs3_c00483{font-size:24.000000px;}
.fs9_c00483{font-size:36.000000px;}
.fs7_c00483{font-size:42.000000px;}
.fs8_c00483{font-size:45.000000px;}
.fsb_c00483{font-size:48.000000px;}
.fs5_c00483{font-size:54.000000px;}
.fs6_c00483{font-size:55.200000px;}
.fs4_c00483{font-size:60.000000px;}
.fs0_c00483{font-size:69.000000px;}
.fs2_c00483{font-size:81.000000px;}
.fs1_c00483{font-size:153.000000px;}
.fsa_c00483{font-size:207.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1a_c00483{bottom:3.105000px;}
.y19_c00483{bottom:7.228357px;}
.y17_c00483{bottom:56.730000px;}
.y18_c00483{bottom:81.330000px;}
.y16_c00483{bottom:149.130000px;}
.y15_c00483{bottom:186.030000px;}
.y14_c00483{bottom:200.580000px;}
.y11_c00483{bottom:282.180000px;}
.y13_c00483{bottom:290.280000px;}
.y12_c00483{bottom:295.080000px;}
.y10_c00483{bottom:323.280000px;}
.yd_c00483{bottom:349.080000px;}
.yf_c00483{bottom:364.230000px;}
.yc_c00483{bottom:372.330000px;}
.ye_c00483{bottom:379.980000px;}
.ya_c00483{bottom:399.330000px;}
.yb_c00483{bottom:410.730000px;}
.y9_c00483{bottom:431.280000px;}
.y8_c00483{bottom:450.930000px;}
.y7_c00483{bottom:451.680000px;}
.y6_c00483{bottom:466.380000px;}
.y5_c00483{bottom:475.530000px;}
.y4_c00483{bottom:559.980000px;}
.y3_c00483{bottom:578.880000px;}
.y2_c00483{bottom:597.480000px;}
.y1_c00483{bottom:690.480000px;}
.h10_c00483{height:13.200074px;}
.h9_c00483{height:23.554688px;}
.h6_c00483{height:26.016000px;}
.h5_c00483{height:30.386719px;}
.h11_c00483{height:43.804688px;}
.hc_c00483{height:44.165039px;}
.he_c00483{height:44.814000px;}
.hd_c00483{height:68.370117px;}
.hb_c00483{height:69.539062px;}
.h7_c00483{height:75.966797px;}
.h8_c00483{height:80.758301px;}
.h4_c00483{height:84.888000px;}
.h2_c00483{height:87.361816px;}
.ha_c00483{height:160.561816px;}
.h3_c00483{height:193.715332px;}
.hf_c00483{height:216.936000px;}
.h1_c00483{height:858.750000px;}
.h0_c00483{height:858.900000px;}
.w1_c00483{width:104.875500px;}
.w0_c00483{width:1198.500000px;}
.x0_c00483{left:0.000000px;}
.x11_c00483{left:14.250000px;}
.x5_c00483{left:18.300000px;}
.x3_c00483{left:24.600000px;}
.x4_c00483{left:26.100000px;}
.x18_c00483{left:36.000000px;}
.x6_c00483{left:39.150000px;}
.x14_c00483{left:44.550000px;}
.x15_c00483{left:47.850000px;}
.xa_c00483{left:73.950000px;}
.x7_c00483{left:83.400000px;}
.x19_c00483{left:87.300000px;}
.xb_c00483{left:105.300000px;}
.xd_c00483{left:110.400000px;}
.x16_c00483{left:126.900000px;}
.xc_c00483{left:131.400000px;}
.x9_c00483{left:134.700000px;}
.x8_c00483{left:139.350000px;}
.x13_c00483{left:164.700000px;}
.x17_c00483{left:173.850000px;}
.x12_c00483{left:209.700000px;}
.x2_c00483{left:231.900000px;}
.xe_c00483{left:418.800000px;}
.xf_c00483{left:484.050000px;}
.x1b_c00483{left:551.064240px;}
.x10_c00483{left:592.350000px;}
.x1_c00483{left:598.950000px;}
.x1a_c00483{left:795.108000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:65.066667pt;}
.ls6_c00483{letter-spacing:-8.000000pt;}
.ls7_c00483{letter-spacing:-2.666667pt;}
.ls8_c00483{letter-spacing:0.000000pt;}
.ls1_c00483{letter-spacing:1.602667pt;}
.ls5_c00483{letter-spacing:2.666667pt;}
.ls0_c00483{letter-spacing:4.000000pt;}
.lsb_c00483{letter-spacing:5.333333pt;}
.ls9_c00483{letter-spacing:8.000000pt;}
.lsa_c00483{letter-spacing:13.333333pt;}
.ls2_c00483{letter-spacing:14.961067pt;}
.ls4_c00483{letter-spacing:46.400000pt;}
.ls3_c00483{letter-spacing:158.000000pt;}
.ws7_c00483{word-spacing:-27.648000pt;}
.ws6_c00483{word-spacing:-23.333333pt;}
.ws5_c00483{word-spacing:-21.333333pt;}
.ws0_c00483{word-spacing:-17.448000pt;}
.ws1_c00483{word-spacing:-14.781333pt;}
.ws2_c00483{word-spacing:-11.568000pt;}
.ws4_c00483{word-spacing:-10.000000pt;}
.ws9_c00483{word-spacing:0.000000pt;}
.ws3_c00483{word-spacing:1.104000pt;}
.ws8_c00483{word-spacing:29.546667pt;}
._13_c00483{margin-left:-53.850667pt;}
._5_c00483{margin-left:-52.632000pt;}
._44_c00483{margin-left:-47.472000pt;}
._8_c00483{margin-left:-44.608000pt;}
._3b_c00483{margin-left:-42.938667pt;}
._43_c00483{margin-left:-40.400000pt;}
._2e_c00483{margin-left:-36.984000pt;}
._36_c00483{margin-left:-35.013333pt;}
._7_c00483{margin-left:-32.405333pt;}
._23_c00483{margin-left:-29.493333pt;}
._2_c00483{margin-left:-24.901333pt;}
._6_c00483{margin-left:-22.154667pt;}
._2d_c00483{margin-left:-21.213333pt;}
._2b_c00483{margin-left:-19.872000pt;}
._1e_c00483{margin-left:-18.666667pt;}
._1_c00483{margin-left:-16.805333pt;}
._25_c00483{margin-left:-14.904000pt;}
._0_c00483{margin-left:-13.677333pt;}
._2f_c00483{margin-left:-11.837333pt;}
._3_c00483{margin-left:-9.928000pt;}
._19_c00483{margin-left:-8.341333pt;}
._2c_c00483{margin-left:-7.328000pt;}
._3e_c00483{margin-left:-6.336000pt;}
._1a_c00483{margin-left:-5.336000pt;}
._16_c00483{margin-left:-4.293333pt;}
._18_c00483{margin-left:-2.944000pt;}
._34_c00483{margin-left:-1.946667pt;}
._15_c00483{margin-left:-0.893333pt;}
._1c_c00483{width:1.778667pt;}
._a_c00483{width:2.856000pt;}
._e_c00483{width:4.600000pt;}
._b_c00483{width:5.984000pt;}
._27_c00483{width:6.896000pt;}
._c_c00483{width:8.000000pt;}
._14_c00483{width:9.341333pt;}
._20_c00483{width:11.394667pt;}
._d_c00483{width:12.696000pt;}
._f_c00483{width:15.648000pt;}
._21_c00483{width:16.645333pt;}
._11_c00483{width:17.954667pt;}
._1f_c00483{width:19.858667pt;}
._17_c00483{width:21.282667pt;}
._10_c00483{width:23.368000pt;}
._31_c00483{width:25.693333pt;}
._3a_c00483{width:28.069333pt;}
._22_c00483{width:29.314667pt;}
._1d_c00483{width:30.261333pt;}
._24_c00483{width:39.074667pt;}
._28_c00483{width:41.120000pt;}
._39_c00483{width:45.146667pt;}
._3c_c00483{width:46.560000pt;}
._3f_c00483{width:49.226667pt;}
._3d_c00483{width:50.736000pt;}
._38_c00483{width:52.600000pt;}
._33_c00483{width:53.978667pt;}
._37_c00483{width:60.738667pt;}
._35_c00483{width:64.093333pt;}
._12_c00483{width:68.264000pt;}
._40_c00483{width:70.506667pt;}
._45_c00483{width:73.048000pt;}
._41_c00483{width:77.386667pt;}
._2a_c00483{width:93.493333pt;}
._32_c00483{width:95.144000pt;}
._30_c00483{width:135.656000pt;}
._4_c00483{width:139.536000pt;}
._26_c00483{width:156.400000pt;}
._46_c00483{width:162.874667pt;}
._29_c00483{width:198.909333pt;}
._48_c00483{width:201.656000pt;}
._47_c00483{width:389.810667pt;}
._9_c00483{width:467.840000pt;}
._42_c00483{width:546.664000pt;}
._1b_c00483{width:608.426667pt;}
.fs3_c00483{font-size:21.333333pt;}
.fs9_c00483{font-size:32.000000pt;}
.fs7_c00483{font-size:37.333333pt;}
.fs8_c00483{font-size:40.000000pt;}
.fsb_c00483{font-size:42.666667pt;}
.fs5_c00483{font-size:48.000000pt;}
.fs6_c00483{font-size:49.066667pt;}
.fs4_c00483{font-size:53.333333pt;}
.fs0_c00483{font-size:61.333333pt;}
.fs2_c00483{font-size:72.000000pt;}
.fs1_c00483{font-size:136.000000pt;}
.fsa_c00483{font-size:184.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1a_c00483{bottom:2.760000pt;}
.y19_c00483{bottom:6.425206pt;}
.y17_c00483{bottom:50.426667pt;}
.y18_c00483{bottom:72.293333pt;}
.y16_c00483{bottom:132.560000pt;}
.y15_c00483{bottom:165.360000pt;}
.y14_c00483{bottom:178.293333pt;}
.y11_c00483{bottom:250.826667pt;}
.y13_c00483{bottom:258.026667pt;}
.y12_c00483{bottom:262.293333pt;}
.y10_c00483{bottom:287.360000pt;}
.yd_c00483{bottom:310.293333pt;}
.yf_c00483{bottom:323.760000pt;}
.yc_c00483{bottom:330.960000pt;}
.ye_c00483{bottom:337.760000pt;}
.ya_c00483{bottom:354.960000pt;}
.yb_c00483{bottom:365.093333pt;}
.y9_c00483{bottom:383.360000pt;}
.y8_c00483{bottom:400.826667pt;}
.y7_c00483{bottom:401.493333pt;}
.y6_c00483{bottom:414.560000pt;}
.y5_c00483{bottom:422.693333pt;}
.y4_c00483{bottom:497.760000pt;}
.y3_c00483{bottom:514.560000pt;}
.y2_c00483{bottom:531.093333pt;}
.y1_c00483{bottom:613.760000pt;}
.h10_c00483{height:11.733399pt;}
.h9_c00483{height:20.937500pt;}
.h6_c00483{height:23.125333pt;}
.h5_c00483{height:27.010417pt;}
.h11_c00483{height:38.937500pt;}
.hc_c00483{height:39.257812pt;}
.he_c00483{height:39.834667pt;}
.hd_c00483{height:60.773438pt;}
.hb_c00483{height:61.812500pt;}
.h7_c00483{height:67.526042pt;}
.h8_c00483{height:71.785156pt;}
.h4_c00483{height:75.456000pt;}
.h2_c00483{height:77.654948pt;}
.ha_c00483{height:142.721615pt;}
.h3_c00483{height:172.191406pt;}
.hf_c00483{height:192.832000pt;}
.h1_c00483{height:763.333333pt;}
.h0_c00483{height:763.466667pt;}
.w1_c00483{width:93.222667pt;}
.w0_c00483{width:1065.333333pt;}
.x0_c00483{left:0.000000pt;}
.x11_c00483{left:12.666667pt;}
.x5_c00483{left:16.266667pt;}
.x3_c00483{left:21.866667pt;}
.x4_c00483{left:23.200000pt;}
.x18_c00483{left:32.000000pt;}
.x6_c00483{left:34.800000pt;}
.x14_c00483{left:39.600000pt;}
.x15_c00483{left:42.533333pt;}
.xa_c00483{left:65.733333pt;}
.x7_c00483{left:74.133333pt;}
.x19_c00483{left:77.600000pt;}
.xb_c00483{left:93.600000pt;}
.xd_c00483{left:98.133333pt;}
.x16_c00483{left:112.800000pt;}
.xc_c00483{left:116.800000pt;}
.x9_c00483{left:119.733333pt;}
.x8_c00483{left:123.866667pt;}
.x13_c00483{left:146.400000pt;}
.x17_c00483{left:154.533333pt;}
.x12_c00483{left:186.400000pt;}
.x2_c00483{left:206.133333pt;}
.xe_c00483{left:372.266667pt;}
.xf_c00483{left:430.266667pt;}
.x1b_c00483{left:489.834880pt;}
.x10_c00483{left:526.533333pt;}
.x1_c00483{left:532.400000pt;}
.x1a_c00483{left:706.762667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03dd0bf7cea938a6acdce8b6.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;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_c00484;src:url('chunks/assets/font_8f539ce15286a2aa7d160a76.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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:0.000000px;}
._0_c00484{margin-left:-5.280000px;}
._1_c00484{width:26.952000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(128,128,128);}
.fc0_c00484{color:rgb(0,0,0);}
.fs0_c00484{font-size:24.000000px;}
.fs1_c00484{font-size:48.000000px;}
.y1_c00484{bottom:-1.065000px;}
.y0_c00484{bottom:0.000000px;}
.y3_c00484{bottom:3.105000px;}
.y2_c00484{bottom:7.228355px;}
.h3_c00484{height:13.200074px;}
.h2_c00484{height:30.386719px;}
.h4_c00484{height:43.804688px;}
.h0_c00484{height:842.925000px;}
.h1_c00484{height:843.000000px;}
.w2_c00484{width:104.875500px;}
.w1_c00484{width:594.000000px;}
.w0_c00484{width:594.300000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:248.964249px;}
.x1_c00484{left:461.400000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
._0_c00484{margin-left:-4.693333pt;}
._1_c00484{width:23.957333pt;}
.fs0_c00484{font-size:21.333333pt;}
.fs1_c00484{font-size:42.666667pt;}
.y1_c00484{bottom:-0.946667pt;}
.y0_c00484{bottom:0.000000pt;}
.y3_c00484{bottom:2.760000pt;}
.y2_c00484{bottom:6.425204pt;}
.h3_c00484{height:11.733399pt;}
.h2_c00484{height:27.010417pt;}
.h4_c00484{height:38.937500pt;}
.h0_c00484{height:749.266667pt;}
.h1_c00484{height:749.333333pt;}
.w2_c00484{width:93.222667pt;}
.w1_c00484{width:528.000000pt;}
.w0_c00484{width:528.266667pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:221.301554pt;}
.x1_c00484{left:410.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_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_4adf2886ec6fbb97975fb965.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;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_c00485;src:url('chunks/assets/font_30802858ddfb92b47fe7c4ff.woff2')format("woff");}.ff2_c00485{font-family:ff2_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:ff3_c00485;src:url('chunks/assets/font_fb6841dabd7b7d3410185f06.woff2')format("woff");}.ff3_c00485{font-family:ff3_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:ff4_c00485;src:url('chunks/assets/font_87db97eb53df2527370ca4fc.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_0dfb7637227c9dfd2028f5dd.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00485;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00485{font-family:ff6_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);}
.v0_c00485{vertical-align:0.000000px;}
.ls1_c00485{letter-spacing:-3.000000px;}
.ls2_c00485{letter-spacing:0.000000px;}
.ls3_c00485{letter-spacing:3.000000px;}
.ls0_c00485{letter-spacing:5.400000px;}
.ls4_c00485{letter-spacing:9.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00485{word-spacing:-44.022000px;}
.ws0_c00485{word-spacing:-35.640000px;}
.ws1_c00485{word-spacing:-25.326000px;}
.ws3_c00485{word-spacing:0.000000px;}
._28_c00485{margin-left:-40.500000px;}
._26_c00485{margin-left:-32.433000px;}
._9_c00485{margin-left:-24.546000px;}
._0_c00485{margin-left:-22.344000px;}
._5_c00485{margin-left:-19.488000px;}
._6_c00485{margin-left:-18.144000px;}
._1b_c00485{margin-left:-14.634000px;}
._1d_c00485{margin-left:-13.014000px;}
._4_c00485{margin-left:-11.298000px;}
._8_c00485{margin-left:-9.828000px;}
._29_c00485{margin-left:-8.763000px;}
._1c_c00485{margin-left:-7.632000px;}
._1_c00485{margin-left:-5.964000px;}
._14_c00485{margin-left:-4.200000px;}
._18_c00485{margin-left:-2.460000px;}
._2_c00485{margin-left:-1.050000px;}
._d_c00485{width:2.160000px;}
._b_c00485{width:4.209000px;}
._15_c00485{width:5.940000px;}
._27_c00485{width:7.449000px;}
._17_c00485{width:9.600000px;}
._16_c00485{width:11.460000px;}
._3_c00485{width:16.506000px;}
._c_c00485{width:17.733000px;}
._25_c00485{width:20.007000px;}
._1f_c00485{width:22.914000px;}
._f_c00485{width:35.820000px;}
._23_c00485{width:40.086000px;}
._11_c00485{width:41.220000px;}
._e_c00485{width:42.540000px;}
._19_c00485{width:47.040000px;}
._22_c00485{width:54.618000px;}
._20_c00485{width:58.710000px;}
._12_c00485{width:67.740000px;}
._10_c00485{width:74.340000px;}
._1e_c00485{width:86.226000px;}
._24_c00485{width:104.436000px;}
._a_c00485{width:119.892000px;}
._7_c00485{width:132.300000px;}
._13_c00485{width:164.427000px;}
._1a_c00485{width:178.500000px;}
._21_c00485{width:302.856000px;}
.fc2_c00485{color:transparent;}
.fc1_c00485{color:rgb(128,128,128);}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:42.000000px;}
.fs5_c00485{font-size:45.000000px;}
.fs6_c00485{font-size:48.000000px;}
.fs1_c00485{font-size:54.000000px;}
.fs3_c00485{font-size:60.000000px;}
.fs4_c00485{font-size:66.000000px;}
.fs2_c00485{font-size:69.000000px;}
.y0_c00485{bottom:0.000000px;}
.y7_c00485{bottom:3.105000px;}
.y6_c00485{bottom:7.228355px;}
.y5_c00485{bottom:429.285000px;}
.y4_c00485{bottom:436.335000px;}
.y3_c00485{bottom:442.485000px;}
.y2_c00485{bottom:451.935000px;}
.y1_c00485{bottom:516.585000px;}
.h7_c00485{height:13.200074px;}
.h8_c00485{height:43.804688px;}
.h2_c00485{height:44.814000px;}
.h6_c00485{height:56.975098px;}
.h5_c00485{height:68.370117px;}
.h4_c00485{height:75.966797px;}
.h3_c00485{height:87.361816px;}
.h0_c00485{height:832.125000px;}
.h1_c00485{height:832.500000px;}
.w2_c00485{width:104.875500px;}
.w0_c00485{width:602.625000px;}
.w1_c00485{width:603.000000px;}
.x0_c00485{left:0.000000px;}
.x6_c00485{left:253.126740px;}
.x3_c00485{left:257.550000px;}
.x4_c00485{left:305.400000px;}
.x5_c00485{left:378.000000px;}
.x2_c00485{left:484.650000px;}
.x1_c00485{left:498.900000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls1_c00485{letter-spacing:-2.666667pt;}
.ls2_c00485{letter-spacing:0.000000pt;}
.ls3_c00485{letter-spacing:2.666667pt;}
.ls0_c00485{letter-spacing:4.800000pt;}
.ls4_c00485{letter-spacing:8.000000pt;}
.ws2_c00485{word-spacing:-39.130667pt;}
.ws0_c00485{word-spacing:-31.680000pt;}
.ws1_c00485{word-spacing:-22.512000pt;}
.ws3_c00485{word-spacing:0.000000pt;}
._28_c00485{margin-left:-36.000000pt;}
._26_c00485{margin-left:-28.829333pt;}
._9_c00485{margin-left:-21.818667pt;}
._0_c00485{margin-left:-19.861333pt;}
._5_c00485{margin-left:-17.322667pt;}
._6_c00485{margin-left:-16.128000pt;}
._1b_c00485{margin-left:-13.008000pt;}
._1d_c00485{margin-left:-11.568000pt;}
._4_c00485{margin-left:-10.042667pt;}
._8_c00485{margin-left:-8.736000pt;}
._29_c00485{margin-left:-7.789333pt;}
._1c_c00485{margin-left:-6.784000pt;}
._1_c00485{margin-left:-5.301333pt;}
._14_c00485{margin-left:-3.733333pt;}
._18_c00485{margin-left:-2.186667pt;}
._2_c00485{margin-left:-0.933333pt;}
._d_c00485{width:1.920000pt;}
._b_c00485{width:3.741333pt;}
._15_c00485{width:5.280000pt;}
._27_c00485{width:6.621333pt;}
._17_c00485{width:8.533333pt;}
._16_c00485{width:10.186667pt;}
._3_c00485{width:14.672000pt;}
._c_c00485{width:15.762667pt;}
._25_c00485{width:17.784000pt;}
._1f_c00485{width:20.368000pt;}
._f_c00485{width:31.840000pt;}
._23_c00485{width:35.632000pt;}
._11_c00485{width:36.640000pt;}
._e_c00485{width:37.813333pt;}
._19_c00485{width:41.813333pt;}
._22_c00485{width:48.549333pt;}
._20_c00485{width:52.186667pt;}
._12_c00485{width:60.213333pt;}
._10_c00485{width:66.080000pt;}
._1e_c00485{width:76.645333pt;}
._24_c00485{width:92.832000pt;}
._a_c00485{width:106.570667pt;}
._7_c00485{width:117.600000pt;}
._13_c00485{width:146.157333pt;}
._1a_c00485{width:158.666667pt;}
._21_c00485{width:269.205333pt;}
.fs0_c00485{font-size:37.333333pt;}
.fs5_c00485{font-size:40.000000pt;}
.fs6_c00485{font-size:42.666667pt;}
.fs1_c00485{font-size:48.000000pt;}
.fs3_c00485{font-size:53.333333pt;}
.fs4_c00485{font-size:58.666667pt;}
.fs2_c00485{font-size:61.333333pt;}
.y0_c00485{bottom:0.000000pt;}
.y7_c00485{bottom:2.760000pt;}
.y6_c00485{bottom:6.425204pt;}
.y5_c00485{bottom:381.586667pt;}
.y4_c00485{bottom:387.853333pt;}
.y3_c00485{bottom:393.320000pt;}
.y2_c00485{bottom:401.720000pt;}
.y1_c00485{bottom:459.186667pt;}
.h7_c00485{height:11.733399pt;}
.h8_c00485{height:38.937500pt;}
.h2_c00485{height:39.834667pt;}
.h6_c00485{height:50.644531pt;}
.h5_c00485{height:60.773438pt;}
.h4_c00485{height:67.526042pt;}
.h3_c00485{height:77.654948pt;}
.h0_c00485{height:739.666667pt;}
.h1_c00485{height:740.000000pt;}
.w2_c00485{width:93.222667pt;}
.w0_c00485{width:535.666667pt;}
.w1_c00485{width:536.000000pt;}
.x0_c00485{left:0.000000pt;}
.x6_c00485{left:225.001546pt;}
.x3_c00485{left:228.933333pt;}
.x4_c00485{left:271.466667pt;}
.x5_c00485{left:336.000000pt;}
.x2_c00485{left:430.800000pt;}
.x1_c00485{left:443.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00486{font-family:ff1_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;}
.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;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:rgb(128,128,128);}
.fs0_c00486{font-size:48.000000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:3.105000px;}
.y1_c00486{bottom:7.228371px;}
.h2_c00486{height:13.200074px;}
.h3_c00486{height:43.804688px;}
.h0_c00486{height:845.925000px;}
.h1_c00486{height:846.000000px;}
.w2_c00486{width:104.875500px;}
.w0_c00486{width:1173.675000px;}
.w1_c00486{width:1173.750000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:538.651749px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs0_c00486{font-size:42.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:2.760000pt;}
.y1_c00486{bottom:6.425219pt;}
.h2_c00486{height:11.733399pt;}
.h3_c00486{height:38.937500pt;}
.h0_c00486{height:751.933333pt;}
.h1_c00486{height:752.000000pt;}
.w2_c00486{width:93.222667pt;}
.w0_c00486{width:1043.266667pt;}
.w1_c00486{width:1043.333333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:478.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_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_bb2f78ffe0b762df5c1a15b7.woff2')format("woff");}.ff1_c00487{font-family:ff1_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:ff2_c00487;src:url('chunks/assets/font_01a9e0784ea519899990526b.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_d449d57c8d1b84dce89405c5.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_12ad86e731e05a49bf291bee.woff2')format("woff");}.ff4_c00487{font-family:ff4_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:ff5_c00487;src:url('chunks/assets/font_79527be1419c153060c9b686.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.012793;font-style:normal;font-weight:normal;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_7324a93f7853e5587002a0b2.woff2')format("woff");}.ff6_c00487{font-family:ff6_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:ff7_c00487;src:url('chunks/assets/font_0c5161f76dd27c077d812592.woff2')format("woff");}.ff7_c00487{font-family:ff7_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:ff8_c00487;src:url('chunks/assets/font_c2b442a61ccfdb1ef547dcbd.woff2')format("woff");}.ff8_c00487{font-family:ff8_c00487;line-height:1.012793;font-style:normal;font-weight: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_c00487;src:url('chunks/assets/font_871596e12cc319e40390f0ee.woff2')format("woff");}.ff9_c00487{font-family:ff9_c00487;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_c00487;src:url('chunks/assets/font_68e9b7a9cf414e76380b9ddf.woff2')format("woff");}.ffa_c00487{font-family:ffa_c00487;line-height:1.437000;font-style:normal;font-weight: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_c00487;src:url('chunks/assets/font_ab8c3d8cc5b3000faf0c6f31.woff2')format("woff");}.ffb_c00487{font-family:ffb_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:ffc_c00487;src:url('chunks/assets/font_7315c6eb226a6830a6f128c7.woff2')format("woff");}.ffc_c00487{font-family:ffc_c00487;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:ffd_c00487;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffd_c00487{font-family:ffd_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;}
.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);}
.m1_c00487{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);}
.m3_c00487{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);}
.m2_c00487{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);}
.m4_c00487{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5_c00487{vertical-align:-32.400000px;}
.v4_c00487{vertical-align:-3.000000px;}
.v0_c00487{vertical-align:0.000000px;}
.v7_c00487{vertical-align:9.000000px;}
.v1_c00487{vertical-align:13.800000px;}
.v6_c00487{vertical-align:28.200000px;}
.v2_c00487{vertical-align:40.800000px;}
.v3_c00487{vertical-align:73.800000px;}
.ls9_c00487{letter-spacing:-6.000000px;}
.lsd_c00487{letter-spacing:-3.000000px;}
.ls8_c00487{letter-spacing:0.000000px;}
.lsb_c00487{letter-spacing:3.000000px;}
.lsa_c00487{letter-spacing:6.000000px;}
.ls7_c00487{letter-spacing:9.000000px;}
.ls2_c00487{letter-spacing:9.810000px;}
.lse_c00487{letter-spacing:15.000000px;}
.ls4_c00487{letter-spacing:16.315200px;}
.lsc_c00487{letter-spacing:18.000000px;}
.ls3_c00487{letter-spacing:21.441600px;}
.lsf_c00487{letter-spacing:24.000000px;}
.ls5_c00487{letter-spacing:24.588000px;}
.ls1_c00487{letter-spacing:49.845000px;}
.ls6_c00487{letter-spacing:172.620000px;}
.ls0_c00487{letter-spacing:211.188000px;}
.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;}
}
.ws8_c00487{word-spacing:-28.014000px;}
.ws9_c00487{word-spacing:-23.250000px;}
.ws1_c00487{word-spacing:-22.197000px;}
.ws2_c00487{word-spacing:-21.012000px;}
.wsc_c00487{word-spacing:-17.250000px;}
.ws5_c00487{word-spacing:-16.629000px;}
.ws3_c00487{word-spacing:-16.500000px;}
.ws0_c00487{word-spacing:-15.012000px;}
.wsa_c00487{word-spacing:-14.460000px;}
.wsd_c00487{word-spacing:-13.014000px;}
.wsb_c00487{word-spacing:-11.250000px;}
.wsf_c00487{word-spacing:-8.988000px;}
.ws7_c00487{word-spacing:-7.992000px;}
.ws4_c00487{word-spacing:-7.500000px;}
.ws6_c00487{word-spacing:-3.984000px;}
.wse_c00487{word-spacing:-3.600000px;}
.ws10_c00487{word-spacing:0.000000px;}
._48_c00487{margin-left:-64.698000px;}
._1d_c00487{margin-left:-61.410000px;}
._16_c00487{margin-left:-60.306000px;}
._12_c00487{margin-left:-57.270000px;}
._40_c00487{margin-left:-55.821000px;}
._3e_c00487{margin-left:-54.027000px;}
._3f_c00487{margin-left:-52.938000px;}
._35_c00487{margin-left:-50.991000px;}
._46_c00487{margin-left:-48.543000px;}
._56_c00487{margin-left:-44.136000px;}
._5a_c00487{margin-left:-42.531000px;}
._57_c00487{margin-left:-40.476000px;}
._33_c00487{margin-left:-37.686000px;}
._6d_c00487{margin-left:-35.448000px;}
._6a_c00487{margin-left:-33.804000px;}
._5c_c00487{margin-left:-31.029000px;}
._74_c00487{margin-left:-29.769000px;}
._21_c00487{margin-left:-28.191000px;}
._2c_c00487{margin-left:-26.298000px;}
._26_c00487{margin-left:-25.185000px;}
._3_c00487{margin-left:-23.976000px;}
._54_c00487{margin-left:-22.824000px;}
._10_c00487{margin-left:-21.489000px;}
._6_c00487{margin-left:-19.926000px;}
._55_c00487{margin-left:-18.882000px;}
._18_c00487{margin-left:-17.871000px;}
._23_c00487{margin-left:-15.870000px;}
._13_c00487{margin-left:-14.283000px;}
._1f_c00487{margin-left:-12.420000px;}
._0_c00487{margin-left:-11.394000px;}
._45_c00487{margin-left:-10.104000px;}
._8_c00487{margin-left:-8.694000px;}
._2f_c00487{margin-left:-7.350000px;}
._e_c00487{margin-left:-6.270000px;}
._c_c00487{margin-left:-4.212000px;}
._b_c00487{margin-left:-2.754000px;}
._2_c00487{margin-left:-1.620000px;}
._2d_c00487{width:1.188000px;}
._5_c00487{width:2.223000px;}
._4_c00487{width:3.276000px;}
._2b_c00487{width:4.302000px;}
._31_c00487{width:5.994000px;}
._9_c00487{width:7.776000px;}
._47_c00487{width:9.522000px;}
._3a_c00487{width:11.286000px;}
._14_c00487{width:13.662000px;}
._36_c00487{width:16.314000px;}
._25_c00487{width:17.469000px;}
._95_c00487{width:18.804000px;}
._38_c00487{width:20.040000px;}
._4c_c00487{width:21.330000px;}
._22_c00487{width:22.824000px;}
._2a_c00487{width:24.210000px;}
._19_c00487{width:25.668000px;}
._7c_c00487{width:26.730000px;}
._7_c00487{width:28.188000px;}
._42_c00487{width:29.724000px;}
._37_c00487{width:31.608000px;}
._66_c00487{width:32.643000px;}
._4a_c00487{width:34.923000px;}
._41_c00487{width:36.048000px;}
._a_c00487{width:37.098000px;}
._29_c00487{width:38.826000px;}
._4b_c00487{width:40.923000px;}
._4f_c00487{width:42.588000px;}
._52_c00487{width:44.706000px;}
._62_c00487{width:45.741000px;}
._1e_c00487{width:48.438000px;}
._3b_c00487{width:49.464000px;}
._84_c00487{width:51.582000px;}
._50_c00487{width:53.433000px;}
._76_c00487{width:55.626000px;}
._8c_c00487{width:57.024000px;}
._17_c00487{width:58.374000px;}
._1_c00487{width:59.670000px;}
._70_c00487{width:61.932000px;}
._64_c00487{width:63.126000px;}
._72_c00487{width:65.337000px;}
._20_c00487{width:66.792000px;}
._1b_c00487{width:71.241000px;}
._8d_c00487{width:72.576000px;}
._67_c00487{width:75.387000px;}
._1c_c00487{width:77.142000px;}
._90_c00487{width:79.194000px;}
._7b_c00487{width:80.694000px;}
._96_c00487{width:81.720000px;}
._82_c00487{width:83.448000px;}
._92_c00487{width:86.820000px;}
._81_c00487{width:89.652000px;}
._f_c00487{width:94.620000px;}
._24_c00487{width:95.910000px;}
._6c_c00487{width:98.064000px;}
._94_c00487{width:103.224000px;}
._87_c00487{width:108.420000px;}
._71_c00487{width:111.456000px;}
._69_c00487{width:116.034000px;}
._80_c00487{width:117.414000px;}
._5f_c00487{width:119.364000px;}
._1a_c00487{width:123.381000px;}
._60_c00487{width:125.442000px;}
._58_c00487{width:126.612000px;}
._5b_c00487{width:128.682000px;}
._75_c00487{width:135.255000px;}
._d_c00487{width:137.082000px;}
._6f_c00487{width:140.700000px;}
._15_c00487{width:144.771000px;}
._28_c00487{width:148.431000px;}
._11_c00487{width:151.791000px;}
._88_c00487{width:158.988000px;}
._53_c00487{width:163.236000px;}
._44_c00487{width:165.324000px;}
._6e_c00487{width:166.536000px;}
._93_c00487{width:172.248000px;}
._91_c00487{width:174.426000px;}
._51_c00487{width:179.370000px;}
._79_c00487{width:185.646000px;}
._68_c00487{width:187.230000px;}
._8e_c00487{width:198.612000px;}
._61_c00487{width:199.773000px;}
._8a_c00487{width:203.124000px;}
._86_c00487{width:209.406000px;}
._63_c00487{width:211.290000px;}
._85_c00487{width:221.382000px;}
._78_c00487{width:237.156000px;}
._7e_c00487{width:251.082000px;}
._65_c00487{width:254.187000px;}
._77_c00487{width:260.190000px;}
._59_c00487{width:274.002000px;}
._83_c00487{width:278.538000px;}
._8b_c00487{width:281.112000px;}
._4e_c00487{width:290.241000px;}
._7a_c00487{width:313.269000px;}
._3c_c00487{width:316.650000px;}
._6b_c00487{width:323.424000px;}
._73_c00487{width:325.689000px;}
._7f_c00487{width:346.758000px;}
._39_c00487{width:348.624000px;}
._89_c00487{width:356.529000px;}
._43_c00487{width:388.746000px;}
._5e_c00487{width:399.990000px;}
._32_c00487{width:402.867000px;}
._2e_c00487{width:463.425000px;}
._27_c00487{width:492.186000px;}
._30_c00487{width:587.508000px;}
._49_c00487{width:611.892000px;}
._8f_c00487{width:675.939000px;}
._5d_c00487{width:821.946000px;}
._3d_c00487{width:833.058000px;}
._34_c00487{width:889.503000px;}
._7d_c00487{width:960.303000px;}
._4d_c00487{width:1768.641000px;}
._97_c00487{width:2274.285000px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(128,128,128);}
.fc0_c00487{color:rgb(0,0,0);}
.fs7_c00487{font-size:24.000000px;}
.fs4_c00487{font-size:36.000000px;}
.fs8_c00487{font-size:42.000000px;}
.fsa_c00487{font-size:45.000000px;}
.fsb_c00487{font-size:48.000000px;}
.fs1_c00487{font-size:54.000000px;}
.fs0_c00487{font-size:57.000000px;}
.fs9_c00487{font-size:60.000000px;}
.fs5_c00487{font-size:66.000000px;}
.fs3_c00487{font-size:69.000000px;}
.fs6_c00487{font-size:93.600000px;}
.fs2_c00487{font-size:117.000000px;}
.y0_c00487{bottom:0.000000px;}
.y27_c00487{bottom:3.105000px;}
.y26_c00487{bottom:7.228369px;}
.y25_c00487{bottom:96.570000px;}
.y24_c00487{bottom:106.920000px;}
.y23_c00487{bottom:188.370000px;}
.y22_c00487{bottom:200.070000px;}
.y21_c00487{bottom:221.070000px;}
.y20_c00487{bottom:227.520000px;}
.y1f_c00487{bottom:249.420000px;}
.y1e_c00487{bottom:285.870000px;}
.y1d_c00487{bottom:307.020000px;}
.y1c_c00487{bottom:317.970000px;}
.y1b_c00487{bottom:343.620000px;}
.y19_c00487{bottom:385.470000px;}
.y16_c00487{bottom:394.920000px;}
.y15_c00487{bottom:403.920000px;}
.y14_c00487{bottom:418.470000px;}
.y18_c00487{bottom:434.070000px;}
.y13_c00487{bottom:444.870000px;}
.y1a_c00487{bottom:451.920000px;}
.y17_c00487{bottom:458.220000px;}
.y12_c00487{bottom:469.170000px;}
.y10_c00487{bottom:496.770000px;}
.y11_c00487{bottom:502.770000px;}
.yf_c00487{bottom:513.720000px;}
.ye_c00487{bottom:523.470000px;}
.yc_c00487{bottom:562.620000px;}
.yd_c00487{bottom:563.520000px;}
.yb_c00487{bottom:568.620000px;}
.ya_c00487{bottom:575.670000px;}
.y9_c00487{bottom:600.420000px;}
.y8_c00487{bottom:673.920000px;}
.y7_c00487{bottom:686.370000px;}
.y6_c00487{bottom:699.270000px;}
.y5_c00487{bottom:766.770000px;}
.y4_c00487{bottom:777.270000px;}
.y3_c00487{bottom:789.120000px;}
.y2_c00487{bottom:820.170000px;}
.y1_c00487{bottom:832.170000px;}
.h10_c00487{height:13.200073px;}
.h6_c00487{height:31.011328px;}
.h9_c00487{height:43.566797px;}
.h11_c00487{height:43.804688px;}
.ha_c00487{height:44.165039px;}
.h7_c00487{height:44.814000px;}
.h2_c00487{height:55.914551px;}
.h3_c00487{height:56.320312px;}
.hf_c00487{height:65.320312px;}
.hc_c00487{height:66.515625px;}
.he_c00487{height:67.686035px;}
.hb_c00487{height:68.370117px;}
.hd_c00487{height:69.539062px;}
.h5_c00487{height:87.361816px;}
.h4_c00487{height:148.135254px;}
.h8_c00487{height:201.961816px;}
.h1_c00487{height:851.250000px;}
.h0_c00487{height:851.550000px;}
.w2_c00487{width:104.875500px;}
.w0_c00487{width:1183.950000px;}
.w1_c00487{width:1184.250000px;}
.x0_c00487{left:0.000000px;}
.xe_c00487{left:7.200000px;}
.xb_c00487{left:8.850000px;}
.x3_c00487{left:10.800000px;}
.xf_c00487{left:12.450000px;}
.x18_c00487{left:14.250000px;}
.xd_c00487{left:15.900000px;}
.x9_c00487{left:17.850000px;}
.xc_c00487{left:20.250000px;}
.xa_c00487{left:30.750000px;}
.x4_c00487{left:38.250000px;}
.x1d_c00487{left:42.900000px;}
.x1b_c00487{left:49.350000px;}
.x1e_c00487{left:56.700000px;}
.x1c_c00487{left:63.150000px;}
.x11_c00487{left:69.150000px;}
.x5_c00487{left:97.200000px;}
.x17_c00487{left:106.650000px;}
.x12_c00487{left:135.000000px;}
.x19_c00487{left:156.600000px;}
.x15_c00487{left:205.500000px;}
.x13_c00487{left:207.900000px;}
.x14_c00487{left:209.550000px;}
.x6_c00487{left:215.400000px;}
.x7_c00487{left:275.850000px;}
.x8_c00487{left:291.900000px;}
.x1a_c00487{left:467.100000px;}
.x1f_c00487{left:543.789230px;}
.x10_c00487{left:573.450000px;}
.x16_c00487{left:576.150000px;}
.x2_c00487{left:579.150000px;}
.x1_c00487{left:580.500000px;}
@media print{
.v5_c00487{vertical-align:-28.800000pt;}
.v4_c00487{vertical-align:-2.666667pt;}
.v0_c00487{vertical-align:0.000000pt;}
.v7_c00487{vertical-align:8.000000pt;}
.v1_c00487{vertical-align:12.266667pt;}
.v6_c00487{vertical-align:25.066667pt;}
.v2_c00487{vertical-align:36.266667pt;}
.v3_c00487{vertical-align:65.600000pt;}
.ls9_c00487{letter-spacing:-5.333333pt;}
.lsd_c00487{letter-spacing:-2.666667pt;}
.ls8_c00487{letter-spacing:0.000000pt;}
.lsb_c00487{letter-spacing:2.666667pt;}
.lsa_c00487{letter-spacing:5.333333pt;}
.ls7_c00487{letter-spacing:8.000000pt;}
.ls2_c00487{letter-spacing:8.720000pt;}
.lse_c00487{letter-spacing:13.333333pt;}
.ls4_c00487{letter-spacing:14.502400pt;}
.lsc_c00487{letter-spacing:16.000000pt;}
.ls3_c00487{letter-spacing:19.059200pt;}
.lsf_c00487{letter-spacing:21.333333pt;}
.ls5_c00487{letter-spacing:21.856000pt;}
.ls1_c00487{letter-spacing:44.306667pt;}
.ls6_c00487{letter-spacing:153.440000pt;}
.ls0_c00487{letter-spacing:187.722667pt;}
.ws8_c00487{word-spacing:-24.901333pt;}
.ws9_c00487{word-spacing:-20.666667pt;}
.ws1_c00487{word-spacing:-19.730667pt;}
.ws2_c00487{word-spacing:-18.677333pt;}
.wsc_c00487{word-spacing:-15.333333pt;}
.ws5_c00487{word-spacing:-14.781333pt;}
.ws3_c00487{word-spacing:-14.666667pt;}
.ws0_c00487{word-spacing:-13.344000pt;}
.wsa_c00487{word-spacing:-12.853333pt;}
.wsd_c00487{word-spacing:-11.568000pt;}
.wsb_c00487{word-spacing:-10.000000pt;}
.wsf_c00487{word-spacing:-7.989333pt;}
.ws7_c00487{word-spacing:-7.104000pt;}
.ws4_c00487{word-spacing:-6.666667pt;}
.ws6_c00487{word-spacing:-3.541333pt;}
.wse_c00487{word-spacing:-3.200000pt;}
.ws10_c00487{word-spacing:0.000000pt;}
._48_c00487{margin-left:-57.509333pt;}
._1d_c00487{margin-left:-54.586667pt;}
._16_c00487{margin-left:-53.605333pt;}
._12_c00487{margin-left:-50.906667pt;}
._40_c00487{margin-left:-49.618667pt;}
._3e_c00487{margin-left:-48.024000pt;}
._3f_c00487{margin-left:-47.056000pt;}
._35_c00487{margin-left:-45.325333pt;}
._46_c00487{margin-left:-43.149333pt;}
._56_c00487{margin-left:-39.232000pt;}
._5a_c00487{margin-left:-37.805333pt;}
._57_c00487{margin-left:-35.978667pt;}
._33_c00487{margin-left:-33.498667pt;}
._6d_c00487{margin-left:-31.509333pt;}
._6a_c00487{margin-left:-30.048000pt;}
._5c_c00487{margin-left:-27.581333pt;}
._74_c00487{margin-left:-26.461333pt;}
._21_c00487{margin-left:-25.058667pt;}
._2c_c00487{margin-left:-23.376000pt;}
._26_c00487{margin-left:-22.386667pt;}
._3_c00487{margin-left:-21.312000pt;}
._54_c00487{margin-left:-20.288000pt;}
._10_c00487{margin-left:-19.101333pt;}
._6_c00487{margin-left:-17.712000pt;}
._55_c00487{margin-left:-16.784000pt;}
._18_c00487{margin-left:-15.885333pt;}
._23_c00487{margin-left:-14.106667pt;}
._13_c00487{margin-left:-12.696000pt;}
._1f_c00487{margin-left:-11.040000pt;}
._0_c00487{margin-left:-10.128000pt;}
._45_c00487{margin-left:-8.981333pt;}
._8_c00487{margin-left:-7.728000pt;}
._2f_c00487{margin-left:-6.533333pt;}
._e_c00487{margin-left:-5.573333pt;}
._c_c00487{margin-left:-3.744000pt;}
._b_c00487{margin-left:-2.448000pt;}
._2_c00487{margin-left:-1.440000pt;}
._2d_c00487{width:1.056000pt;}
._5_c00487{width:1.976000pt;}
._4_c00487{width:2.912000pt;}
._2b_c00487{width:3.824000pt;}
._31_c00487{width:5.328000pt;}
._9_c00487{width:6.912000pt;}
._47_c00487{width:8.464000pt;}
._3a_c00487{width:10.032000pt;}
._14_c00487{width:12.144000pt;}
._36_c00487{width:14.501333pt;}
._25_c00487{width:15.528000pt;}
._95_c00487{width:16.714667pt;}
._38_c00487{width:17.813333pt;}
._4c_c00487{width:18.960000pt;}
._22_c00487{width:20.288000pt;}
._2a_c00487{width:21.520000pt;}
._19_c00487{width:22.816000pt;}
._7c_c00487{width:23.760000pt;}
._7_c00487{width:25.056000pt;}
._42_c00487{width:26.421333pt;}
._37_c00487{width:28.096000pt;}
._66_c00487{width:29.016000pt;}
._4a_c00487{width:31.042667pt;}
._41_c00487{width:32.042667pt;}
._a_c00487{width:32.976000pt;}
._29_c00487{width:34.512000pt;}
._4b_c00487{width:36.376000pt;}
._4f_c00487{width:37.856000pt;}
._52_c00487{width:39.738667pt;}
._62_c00487{width:40.658667pt;}
._1e_c00487{width:43.056000pt;}
._3b_c00487{width:43.968000pt;}
._84_c00487{width:45.850667pt;}
._50_c00487{width:47.496000pt;}
._76_c00487{width:49.445333pt;}
._8c_c00487{width:50.688000pt;}
._17_c00487{width:51.888000pt;}
._1_c00487{width:53.040000pt;}
._70_c00487{width:55.050667pt;}
._64_c00487{width:56.112000pt;}
._72_c00487{width:58.077333pt;}
._20_c00487{width:59.370667pt;}
._1b_c00487{width:63.325333pt;}
._8d_c00487{width:64.512000pt;}
._67_c00487{width:67.010667pt;}
._1c_c00487{width:68.570667pt;}
._90_c00487{width:70.394667pt;}
._7b_c00487{width:71.728000pt;}
._96_c00487{width:72.640000pt;}
._82_c00487{width:74.176000pt;}
._92_c00487{width:77.173333pt;}
._81_c00487{width:79.690667pt;}
._f_c00487{width:84.106667pt;}
._24_c00487{width:85.253333pt;}
._6c_c00487{width:87.168000pt;}
._94_c00487{width:91.754667pt;}
._87_c00487{width:96.373333pt;}
._71_c00487{width:99.072000pt;}
._69_c00487{width:103.141333pt;}
._80_c00487{width:104.368000pt;}
._5f_c00487{width:106.101333pt;}
._1a_c00487{width:109.672000pt;}
._60_c00487{width:111.504000pt;}
._58_c00487{width:112.544000pt;}
._5b_c00487{width:114.384000pt;}
._75_c00487{width:120.226667pt;}
._d_c00487{width:121.850667pt;}
._6f_c00487{width:125.066667pt;}
._15_c00487{width:128.685333pt;}
._28_c00487{width:131.938667pt;}
._11_c00487{width:134.925333pt;}
._88_c00487{width:141.322667pt;}
._53_c00487{width:145.098667pt;}
._44_c00487{width:146.954667pt;}
._6e_c00487{width:148.032000pt;}
._93_c00487{width:153.109333pt;}
._91_c00487{width:155.045333pt;}
._51_c00487{width:159.440000pt;}
._79_c00487{width:165.018667pt;}
._68_c00487{width:166.426667pt;}
._8e_c00487{width:176.544000pt;}
._61_c00487{width:177.576000pt;}
._8a_c00487{width:180.554667pt;}
._86_c00487{width:186.138667pt;}
._63_c00487{width:187.813333pt;}
._85_c00487{width:196.784000pt;}
._78_c00487{width:210.805333pt;}
._7e_c00487{width:223.184000pt;}
._65_c00487{width:225.944000pt;}
._77_c00487{width:231.280000pt;}
._59_c00487{width:243.557333pt;}
._83_c00487{width:247.589333pt;}
._8b_c00487{width:249.877333pt;}
._4e_c00487{width:257.992000pt;}
._7a_c00487{width:278.461333pt;}
._3c_c00487{width:281.466667pt;}
._6b_c00487{width:287.488000pt;}
._73_c00487{width:289.501333pt;}
._7f_c00487{width:308.229333pt;}
._39_c00487{width:309.888000pt;}
._89_c00487{width:316.914667pt;}
._43_c00487{width:345.552000pt;}
._5e_c00487{width:355.546667pt;}
._32_c00487{width:358.104000pt;}
._2e_c00487{width:411.933333pt;}
._27_c00487{width:437.498667pt;}
._30_c00487{width:522.229333pt;}
._49_c00487{width:543.904000pt;}
._8f_c00487{width:600.834667pt;}
._5d_c00487{width:730.618667pt;}
._3d_c00487{width:740.496000pt;}
._34_c00487{width:790.669333pt;}
._7d_c00487{width:853.602667pt;}
._4d_c00487{width:1572.125333pt;}
._97_c00487{width:2021.586667pt;}
.fs7_c00487{font-size:21.333333pt;}
.fs4_c00487{font-size:32.000000pt;}
.fs8_c00487{font-size:37.333333pt;}
.fsa_c00487{font-size:40.000000pt;}
.fsb_c00487{font-size:42.666667pt;}
.fs1_c00487{font-size:48.000000pt;}
.fs0_c00487{font-size:50.666667pt;}
.fs9_c00487{font-size:53.333333pt;}
.fs5_c00487{font-size:58.666667pt;}
.fs3_c00487{font-size:61.333333pt;}
.fs6_c00487{font-size:83.200000pt;}
.fs2_c00487{font-size:104.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y27_c00487{bottom:2.760000pt;}
.y26_c00487{bottom:6.425217pt;}
.y25_c00487{bottom:85.840000pt;}
.y24_c00487{bottom:95.040000pt;}
.y23_c00487{bottom:167.440000pt;}
.y22_c00487{bottom:177.840000pt;}
.y21_c00487{bottom:196.506667pt;}
.y20_c00487{bottom:202.240000pt;}
.y1f_c00487{bottom:221.706667pt;}
.y1e_c00487{bottom:254.106667pt;}
.y1d_c00487{bottom:272.906667pt;}
.y1c_c00487{bottom:282.640000pt;}
.y1b_c00487{bottom:305.440000pt;}
.y19_c00487{bottom:342.640000pt;}
.y16_c00487{bottom:351.040000pt;}
.y15_c00487{bottom:359.040000pt;}
.y14_c00487{bottom:371.973333pt;}
.y18_c00487{bottom:385.840000pt;}
.y13_c00487{bottom:395.440000pt;}
.y1a_c00487{bottom:401.706667pt;}
.y17_c00487{bottom:407.306667pt;}
.y12_c00487{bottom:417.040000pt;}
.y10_c00487{bottom:441.573333pt;}
.y11_c00487{bottom:446.906667pt;}
.yf_c00487{bottom:456.640000pt;}
.ye_c00487{bottom:465.306667pt;}
.yc_c00487{bottom:500.106667pt;}
.yd_c00487{bottom:500.906667pt;}
.yb_c00487{bottom:505.440000pt;}
.ya_c00487{bottom:511.706667pt;}
.y9_c00487{bottom:533.706667pt;}
.y8_c00487{bottom:599.040000pt;}
.y7_c00487{bottom:610.106667pt;}
.y6_c00487{bottom:621.573333pt;}
.y5_c00487{bottom:681.573333pt;}
.y4_c00487{bottom:690.906667pt;}
.y3_c00487{bottom:701.440000pt;}
.y2_c00487{bottom:729.040000pt;}
.y1_c00487{bottom:739.706667pt;}
.h10_c00487{height:11.733399pt;}
.h6_c00487{height:27.565625pt;}
.h9_c00487{height:38.726042pt;}
.h11_c00487{height:38.937500pt;}
.ha_c00487{height:39.257812pt;}
.h7_c00487{height:39.834667pt;}
.h2_c00487{height:49.701823pt;}
.h3_c00487{height:50.062500pt;}
.hf_c00487{height:58.062500pt;}
.hc_c00487{height:59.125000pt;}
.he_c00487{height:60.165365pt;}
.hb_c00487{height:60.773438pt;}
.hd_c00487{height:61.812500pt;}
.h5_c00487{height:77.654948pt;}
.h4_c00487{height:131.675781pt;}
.h8_c00487{height:179.521615pt;}
.h1_c00487{height:756.666667pt;}
.h0_c00487{height:756.933333pt;}
.w2_c00487{width:93.222667pt;}
.w0_c00487{width:1052.400000pt;}
.w1_c00487{width:1052.666667pt;}
.x0_c00487{left:0.000000pt;}
.xe_c00487{left:6.400000pt;}
.xb_c00487{left:7.866667pt;}
.x3_c00487{left:9.600000pt;}
.xf_c00487{left:11.066667pt;}
.x18_c00487{left:12.666667pt;}
.xd_c00487{left:14.133333pt;}
.x9_c00487{left:15.866667pt;}
.xc_c00487{left:18.000000pt;}
.xa_c00487{left:27.333333pt;}
.x4_c00487{left:34.000000pt;}
.x1d_c00487{left:38.133333pt;}
.x1b_c00487{left:43.866667pt;}
.x1e_c00487{left:50.400000pt;}
.x1c_c00487{left:56.133333pt;}
.x11_c00487{left:61.466667pt;}
.x5_c00487{left:86.400000pt;}
.x17_c00487{left:94.800000pt;}
.x12_c00487{left:120.000000pt;}
.x19_c00487{left:139.200000pt;}
.x15_c00487{left:182.666667pt;}
.x13_c00487{left:184.800000pt;}
.x14_c00487{left:186.266667pt;}
.x6_c00487{left:191.466667pt;}
.x7_c00487{left:245.200000pt;}
.x8_c00487{left:259.466667pt;}
.x1a_c00487{left:415.200000pt;}
.x1f_c00487{left:483.368205pt;}
.x10_c00487{left:509.733333pt;}
.x16_c00487{left:512.133333pt;}
.x2_c00487{left:514.800000pt;}
.x1_c00487{left:516.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_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_eb5eb08a04704bbe860ca986.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.568848;font-style:normal;font-weight:normal;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_626cf1c77e5877ac29c9b29e.woff2')format("woff");}.ff2_c00488{font-family:ff2_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:ff3_c00488;src:url('chunks/assets/font_49379f5dacea03d60dc0a9ba.woff2')format("woff");}.ff3_c00488{font-family:ff3_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:ff4_c00488;src:url('chunks/assets/font_9dbaf6d4af69cfb12c9061c5.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;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_c00488;src:url('chunks/assets/font_e27939f5a401a38140ef2c7a.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;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_c00488;src:url('chunks/assets/font_3cc0288965c94af064ff4bf9.woff2')format("woff");}.ff6_c00488{font-family:ff6_c00488;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00488;src:url('chunks/assets/font_a828e1af844ed83bc90b544b.woff2')format("woff");}.ff7_c00488{font-family:ff7_c00488;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_c00488;src:url('chunks/assets/font_12ac1f2becfba1873ac31a9b.woff2')format("woff");}.ff8_c00488{font-family:ff8_c00488;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00488;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00488{font-family:ff9_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);}
.m1_c00488{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);}
.v5_c00488{vertical-align:-54.600000px;}
.v2_c00488{vertical-align:-40.800000px;}
.v1_c00488{vertical-align:-28.200000px;}
.v4_c00488{vertical-align:-25.200000px;}
.v0_c00488{vertical-align:0.000000px;}
.v3_c00488{vertical-align:5.400000px;}
.v6_c00488{vertical-align:49.200000px;}
.ls7_c00488{letter-spacing:-3.000000px;}
.ls6_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.621000px;}
.ls5_c00488{letter-spacing:3.000000px;}
.ls1_c00488{letter-spacing:18.000000px;}
.ls8_c00488{letter-spacing:24.000000px;}
.ls3_c00488{letter-spacing:154.350000px;}
.ls2_c00488{letter-spacing:251.736000px;}
.ls4_c00488{letter-spacing:436.032000px;}
.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;}
}
.ws8_c00488{word-spacing:-50.361000px;}
.wsd_c00488{word-spacing:-41.250000px;}
.ws0_c00488{word-spacing:-32.982000px;}
.ws5_c00488{word-spacing:-32.361000px;}
.ws6_c00488{word-spacing:-19.629000px;}
.ws1_c00488{word-spacing:-17.352000px;}
.ws7_c00488{word-spacing:-14.460000px;}
.wse_c00488{word-spacing:-14.250000px;}
.wsf_c00488{word-spacing:-13.014000px;}
.wsc_c00488{word-spacing:-9.027000px;}
.ws9_c00488{word-spacing:-9.000000px;}
.wsb_c00488{word-spacing:-0.054000px;}
.ws10_c00488{word-spacing:0.000000px;}
.ws4_c00488{word-spacing:4.866000px;}
.wsa_c00488{word-spacing:19.665000px;}
.ws3_c00488{word-spacing:191.700000px;}
.ws2_c00488{word-spacing:519.060000px;}
._0_c00488{margin-left:-68.724000px;}
._33_c00488{margin-left:-66.741000px;}
._2e_c00488{margin-left:-52.098000px;}
._16_c00488{margin-left:-50.370000px;}
._7_c00488{margin-left:-48.006000px;}
._38_c00488{margin-left:-32.361000px;}
._1d_c00488{margin-left:-30.360000px;}
._14_c00488{margin-left:-29.118000px;}
._2c_c00488{margin-left:-27.132000px;}
._29_c00488{margin-left:-25.668000px;}
._19_c00488{margin-left:-23.439000px;}
._23_c00488{margin-left:-21.990000px;}
._2b_c00488{margin-left:-20.631000px;}
._18_c00488{margin-left:-18.768000px;}
._1f_c00488{margin-left:-17.733000px;}
._2_c00488{margin-left:-15.732000px;}
._b_c00488{margin-left:-14.076000px;}
._13_c00488{margin-left:-12.696000px;}
._11_c00488{margin-left:-10.833000px;}
._4_c00488{margin-left:-9.504000px;}
._f_c00488{margin-left:-8.496000px;}
._c_c00488{margin-left:-6.900000px;}
._e_c00488{margin-left:-5.328000px;}
._10_c00488{margin-left:-4.248000px;}
._6_c00488{margin-left:-2.322000px;}
._9_c00488{margin-left:-1.242000px;}
._17_c00488{width:1.242000px;}
._26_c00488{width:3.519000px;}
._5_c00488{width:5.292000px;}
._3_c00488{width:7.359000px;}
._39_c00488{width:9.090000px;}
._1b_c00488{width:11.247000px;}
._12_c00488{width:12.765000px;}
._34_c00488{width:14.439000px;}
._22_c00488{width:16.275000px;}
._8_c00488{width:18.198000px;}
._35_c00488{width:20.814000px;}
._1e_c00488{width:22.356000px;}
._15_c00488{width:23.460000px;}
._2a_c00488{width:25.668000px;}
._d_c00488{width:26.940000px;}
._27_c00488{width:27.945000px;}
._1a_c00488{width:29.403000px;}
._3a_c00488{width:30.756000px;}
._21_c00488{width:32.901000px;}
._3c_c00488{width:36.438000px;}
._36_c00488{width:39.606000px;}
._24_c00488{width:40.641000px;}
._37_c00488{width:43.332000px;}
._32_c00488{width:46.455000px;}
._31_c00488{width:51.984000px;}
._25_c00488{width:55.656000px;}
._3b_c00488{width:72.036000px;}
._28_c00488{width:75.978000px;}
._2d_c00488{width:79.392000px;}
._30_c00488{width:102.672000px;}
._1_c00488{width:104.604000px;}
._20_c00488{width:111.750000px;}
._a_c00488{width:128.097000px;}
._1c_c00488{width:143.721000px;}
._2f_c00488{width:281.565000px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(128,128,128);}
.fc0_c00488{color:rgb(0,0,0);}
.fs4_c00488{font-size:45.000000px;}
.fs7_c00488{font-size:48.000000px;}
.fs1_c00488{font-size:54.000000px;}
.fs5_c00488{font-size:57.000000px;}
.fs2_c00488{font-size:60.000000px;}
.fs0_c00488{font-size:69.000000px;}
.fs3_c00488{font-size:72.000000px;}
.fs6_c00488{font-size:84.000000px;}
.y0_c00488{bottom:0.000000px;}
.y1e_c00488{bottom:3.105000px;}
.y1d_c00488{bottom:7.228363px;}
.y1c_c00488{bottom:104.850000px;}
.y1b_c00488{bottom:139.950000px;}
.y18_c00488{bottom:155.700000px;}
.y19_c00488{bottom:155.850000px;}
.y17_c00488{bottom:178.650000px;}
.y1a_c00488{bottom:187.050000px;}
.y16_c00488{bottom:213.300000px;}
.y15_c00488{bottom:242.400000px;}
.ye_c00488{bottom:318.900000px;}
.y12_c00488{bottom:322.950000px;}
.yd_c00488{bottom:365.550000px;}
.y11_c00488{bottom:369.000000px;}
.yc_c00488{bottom:378.000000px;}
.y10_c00488{bottom:382.050000px;}
.yb_c00488{bottom:402.750000px;}
.y14_c00488{bottom:424.350000px;}
.y13_c00488{bottom:430.050000px;}
.ya_c00488{bottom:453.300000px;}
.y9_c00488{bottom:478.950000px;}
.yf_c00488{bottom:483.300000px;}
.y8_c00488{bottom:495.900000px;}
.y7_c00488{bottom:573.450000px;}
.y6_c00488{bottom:589.950000px;}
.y5_c00488{bottom:649.650000px;}
.y4_c00488{bottom:764.100000px;}
.y3_c00488{bottom:794.850000px;}
.y2_c00488{bottom:823.050000px;}
.y1_c00488{bottom:829.500000px;}
.hb_c00488{height:13.200074px;}
.hc_c00488{height:43.804688px;}
.h5_c00488{height:48.780000px;}
.h6_c00488{height:58.536000px;}
.h2_c00488{height:68.370117px;}
.h9_c00488{height:69.539062px;}
.h7_c00488{height:72.168457px;}
.h4_c00488{height:75.966797px;}
.h1_c00488{height:87.361816px;}
.h8_c00488{height:91.056000px;}
.h3_c00488{height:91.160156px;}
.ha_c00488{height:117.570117px;}
.h0_c00488{height:850.500000px;}
.w2_c00488{width:104.875500px;}
.w0_c00488{width:612.600000px;}
.w1_c00488{width:612.750000px;}
.x0_c00488{left:0.000000px;}
.x6_c00488{left:15.150000px;}
.x9_c00488{left:19.200000px;}
.xa_c00488{left:24.300000px;}
.xc_c00488{left:28.800000px;}
.xb_c00488{left:31.800000px;}
.x4_c00488{left:42.750000px;}
.x5_c00488{left:51.000000px;}
.x7_c00488{left:95.250000px;}
.x8_c00488{left:112.800000px;}
.x1_c00488{left:139.050000px;}
.x2_c00488{left:141.750000px;}
.xd_c00488{left:175.200000px;}
.x17_c00488{left:252.150000px;}
.x19_c00488{left:258.114258px;}
.x14_c00488{left:270.000000px;}
.x10_c00488{left:288.300000px;}
.xe_c00488{left:305.400000px;}
.xf_c00488{left:312.600000px;}
.x15_c00488{left:321.300000px;}
.x11_c00488{left:327.750000px;}
.x16_c00488{left:351.900000px;}
.x18_c00488{left:420.300000px;}
.x3_c00488{left:526.200000px;}
.x13_c00488{left:581.250000px;}
.x12_c00488{left:592.050000px;}
@media print{
.v5_c00488{vertical-align:-48.533333pt;}
.v2_c00488{vertical-align:-36.266667pt;}
.v1_c00488{vertical-align:-25.066667pt;}
.v4_c00488{vertical-align:-22.400000pt;}
.v0_c00488{vertical-align:0.000000pt;}
.v3_c00488{vertical-align:4.800000pt;}
.v6_c00488{vertical-align:43.733333pt;}
.ls7_c00488{letter-spacing:-2.666667pt;}
.ls6_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.552000pt;}
.ls5_c00488{letter-spacing:2.666667pt;}
.ls1_c00488{letter-spacing:16.000000pt;}
.ls8_c00488{letter-spacing:21.333333pt;}
.ls3_c00488{letter-spacing:137.200000pt;}
.ls2_c00488{letter-spacing:223.765333pt;}
.ls4_c00488{letter-spacing:387.584000pt;}
.ws8_c00488{word-spacing:-44.765333pt;}
.wsd_c00488{word-spacing:-36.666667pt;}
.ws0_c00488{word-spacing:-29.317333pt;}
.ws5_c00488{word-spacing:-28.765333pt;}
.ws6_c00488{word-spacing:-17.448000pt;}
.ws1_c00488{word-spacing:-15.424000pt;}
.ws7_c00488{word-spacing:-12.853333pt;}
.wse_c00488{word-spacing:-12.666667pt;}
.wsf_c00488{word-spacing:-11.568000pt;}
.wsc_c00488{word-spacing:-8.024000pt;}
.ws9_c00488{word-spacing:-8.000000pt;}
.wsb_c00488{word-spacing:-0.048000pt;}
.ws10_c00488{word-spacing:0.000000pt;}
.ws4_c00488{word-spacing:4.325333pt;}
.wsa_c00488{word-spacing:17.480000pt;}
.ws3_c00488{word-spacing:170.400000pt;}
.ws2_c00488{word-spacing:461.386667pt;}
._0_c00488{margin-left:-61.088000pt;}
._33_c00488{margin-left:-59.325333pt;}
._2e_c00488{margin-left:-46.309333pt;}
._16_c00488{margin-left:-44.773333pt;}
._7_c00488{margin-left:-42.672000pt;}
._38_c00488{margin-left:-28.765333pt;}
._1d_c00488{margin-left:-26.986667pt;}
._14_c00488{margin-left:-25.882667pt;}
._2c_c00488{margin-left:-24.117333pt;}
._29_c00488{margin-left:-22.816000pt;}
._19_c00488{margin-left:-20.834667pt;}
._23_c00488{margin-left:-19.546667pt;}
._2b_c00488{margin-left:-18.338667pt;}
._18_c00488{margin-left:-16.682667pt;}
._1f_c00488{margin-left:-15.762667pt;}
._2_c00488{margin-left:-13.984000pt;}
._b_c00488{margin-left:-12.512000pt;}
._13_c00488{margin-left:-11.285333pt;}
._11_c00488{margin-left:-9.629333pt;}
._4_c00488{margin-left:-8.448000pt;}
._f_c00488{margin-left:-7.552000pt;}
._c_c00488{margin-left:-6.133333pt;}
._e_c00488{margin-left:-4.736000pt;}
._10_c00488{margin-left:-3.776000pt;}
._6_c00488{margin-left:-2.064000pt;}
._9_c00488{margin-left:-1.104000pt;}
._17_c00488{width:1.104000pt;}
._26_c00488{width:3.128000pt;}
._5_c00488{width:4.704000pt;}
._3_c00488{width:6.541333pt;}
._39_c00488{width:8.080000pt;}
._1b_c00488{width:9.997333pt;}
._12_c00488{width:11.346667pt;}
._34_c00488{width:12.834667pt;}
._22_c00488{width:14.466667pt;}
._8_c00488{width:16.176000pt;}
._35_c00488{width:18.501333pt;}
._1e_c00488{width:19.872000pt;}
._15_c00488{width:20.853333pt;}
._2a_c00488{width:22.816000pt;}
._d_c00488{width:23.946667pt;}
._27_c00488{width:24.840000pt;}
._1a_c00488{width:26.136000pt;}
._3a_c00488{width:27.338667pt;}
._21_c00488{width:29.245333pt;}
._3c_c00488{width:32.389333pt;}
._36_c00488{width:35.205333pt;}
._24_c00488{width:36.125333pt;}
._37_c00488{width:38.517333pt;}
._32_c00488{width:41.293333pt;}
._31_c00488{width:46.208000pt;}
._25_c00488{width:49.472000pt;}
._3b_c00488{width:64.032000pt;}
._28_c00488{width:67.536000pt;}
._2d_c00488{width:70.570667pt;}
._30_c00488{width:91.264000pt;}
._1_c00488{width:92.981333pt;}
._20_c00488{width:99.333333pt;}
._a_c00488{width:113.864000pt;}
._1c_c00488{width:127.752000pt;}
._2f_c00488{width:250.280000pt;}
.fs4_c00488{font-size:40.000000pt;}
.fs7_c00488{font-size:42.666667pt;}
.fs1_c00488{font-size:48.000000pt;}
.fs5_c00488{font-size:50.666667pt;}
.fs2_c00488{font-size:53.333333pt;}
.fs0_c00488{font-size:61.333333pt;}
.fs3_c00488{font-size:64.000000pt;}
.fs6_c00488{font-size:74.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y1e_c00488{bottom:2.760000pt;}
.y1d_c00488{bottom:6.425212pt;}
.y1c_c00488{bottom:93.200000pt;}
.y1b_c00488{bottom:124.400000pt;}
.y18_c00488{bottom:138.400000pt;}
.y19_c00488{bottom:138.533333pt;}
.y17_c00488{bottom:158.800000pt;}
.y1a_c00488{bottom:166.266667pt;}
.y16_c00488{bottom:189.600000pt;}
.y15_c00488{bottom:215.466667pt;}
.ye_c00488{bottom:283.466667pt;}
.y12_c00488{bottom:287.066667pt;}
.yd_c00488{bottom:324.933333pt;}
.y11_c00488{bottom:328.000000pt;}
.yc_c00488{bottom:336.000000pt;}
.y10_c00488{bottom:339.600000pt;}
.yb_c00488{bottom:358.000000pt;}
.y14_c00488{bottom:377.200000pt;}
.y13_c00488{bottom:382.266667pt;}
.ya_c00488{bottom:402.933333pt;}
.y9_c00488{bottom:425.733333pt;}
.yf_c00488{bottom:429.600000pt;}
.y8_c00488{bottom:440.800000pt;}
.y7_c00488{bottom:509.733333pt;}
.y6_c00488{bottom:524.400000pt;}
.y5_c00488{bottom:577.466667pt;}
.y4_c00488{bottom:679.200000pt;}
.y3_c00488{bottom:706.533333pt;}
.y2_c00488{bottom:731.600000pt;}
.y1_c00488{bottom:737.333333pt;}
.hb_c00488{height:11.733399pt;}
.hc_c00488{height:38.937500pt;}
.h5_c00488{height:43.360000pt;}
.h6_c00488{height:52.032000pt;}
.h2_c00488{height:60.773438pt;}
.h9_c00488{height:61.812500pt;}
.h7_c00488{height:64.149740pt;}
.h4_c00488{height:67.526042pt;}
.h1_c00488{height:77.654948pt;}
.h8_c00488{height:80.938667pt;}
.h3_c00488{height:81.031250pt;}
.ha_c00488{height:104.506771pt;}
.h0_c00488{height:756.000000pt;}
.w2_c00488{width:93.222667pt;}
.w0_c00488{width:544.533333pt;}
.w1_c00488{width:544.666667pt;}
.x0_c00488{left:0.000000pt;}
.x6_c00488{left:13.466667pt;}
.x9_c00488{left:17.066667pt;}
.xa_c00488{left:21.600000pt;}
.xc_c00488{left:25.600000pt;}
.xb_c00488{left:28.266667pt;}
.x4_c00488{left:38.000000pt;}
.x5_c00488{left:45.333333pt;}
.x7_c00488{left:84.666667pt;}
.x8_c00488{left:100.266667pt;}
.x1_c00488{left:123.600000pt;}
.x2_c00488{left:126.000000pt;}
.xd_c00488{left:155.733333pt;}
.x17_c00488{left:224.133333pt;}
.x19_c00488{left:229.434896pt;}
.x14_c00488{left:240.000000pt;}
.x10_c00488{left:256.266667pt;}
.xe_c00488{left:271.466667pt;}
.xf_c00488{left:277.866667pt;}
.x15_c00488{left:285.600000pt;}
.x11_c00488{left:291.333333pt;}
.x16_c00488{left:312.800000pt;}
.x18_c00488{left:373.600000pt;}
.x3_c00488{left:467.733333pt;}
.x13_c00488{left:516.666667pt;}
.x12_c00488{left:526.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00489{font-family:ff1_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;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:0.000000px;}
.fc0_c00489{color:rgb(128,128,128);}
.fs0_c00489{font-size:48.000000px;}
.y0_c00489{bottom:0.000000px;}
.y2_c00489{bottom:3.105000px;}
.y1_c00489{bottom:7.228355px;}
.h2_c00489{height:13.200074px;}
.h3_c00489{height:43.804688px;}
.h0_c00489{height:829.425000px;}
.h1_c00489{height:829.500000px;}
.w2_c00489{width:104.875500px;}
.w0_c00489{width:613.200000px;}
.w1_c00489{width:613.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:258.414230px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fs0_c00489{font-size:42.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y2_c00489{bottom:2.760000pt;}
.y1_c00489{bottom:6.425204pt;}
.h2_c00489{height:11.733399pt;}
.h3_c00489{height:38.937500pt;}
.h0_c00489{height:737.266667pt;}
.h1_c00489{height:737.333333pt;}
.w2_c00489{width:93.222667pt;}
.w0_c00489{width:545.066667pt;}
.w1_c00489{width:545.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:229.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_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_d8c16533a6170911b71cb8cc.woff2')format("woff");}.ff1_c00490{font-family:ff1_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:ff2_c00490;src:url('chunks/assets/font_18423034f1045dbbb6272e78.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_5ddcf840563ce97a3eebe566.woff2')format("woff");}.ff3_c00490{font-family:ff3_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:ff4_c00490;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00490{font-family:ff4_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;}
.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;}
.v1_c00490{vertical-align:15.000000px;}
.ls1_c00490{letter-spacing:-3.000000px;}
.ls3_c00490{letter-spacing:0.000000px;}
.ls2_c00490{letter-spacing:3.000000px;}
.ls0_c00490{letter-spacing:5.700000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:0.000000px;}
._1_c00490{margin-left:-11.247000px;}
._3_c00490{margin-left:-9.039000px;}
._4_c00490{margin-left:-7.245000px;}
._2_c00490{margin-left:-5.244000px;}
._5_c00490{margin-left:-4.209000px;}
._0_c00490{width:88.941000px;}
._6_c00490{width:724.905000px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(128,128,128);}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:48.000000px;}
.fs0_c00490{font-size:69.000000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:0.330000px;}
.y3_c00490{bottom:3.105000px;}
.y2_c00490{bottom:7.228357px;}
.h3_c00490{height:13.200074px;}
.h4_c00490{height:43.804688px;}
.h2_c00490{height:102.361816px;}
.h1_c00490{height:845.250000px;}
.h0_c00490{height:845.400000px;}
.w2_c00490{width:104.875500px;}
.w1_c00490{width:1159.500000px;}
.w0_c00490{width:1159.650000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:417.450000px;}
.x2_c00490{left:531.639221px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:13.333333pt;}
.ls1_c00490{letter-spacing:-2.666667pt;}
.ls3_c00490{letter-spacing:0.000000pt;}
.ls2_c00490{letter-spacing:2.666667pt;}
.ls0_c00490{letter-spacing:5.066667pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._1_c00490{margin-left:-9.997333pt;}
._3_c00490{margin-left:-8.034667pt;}
._4_c00490{margin-left:-6.440000pt;}
._2_c00490{margin-left:-4.661333pt;}
._5_c00490{margin-left:-3.741333pt;}
._0_c00490{width:79.058667pt;}
._6_c00490{width:644.360000pt;}
.fs1_c00490{font-size:42.666667pt;}
.fs0_c00490{font-size:61.333333pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:0.293333pt;}
.y3_c00490{bottom:2.760000pt;}
.y2_c00490{bottom:6.425206pt;}
.h3_c00490{height:11.733399pt;}
.h4_c00490{height:38.937500pt;}
.h2_c00490{height:90.988281pt;}
.h1_c00490{height:751.333333pt;}
.h0_c00490{height:751.466667pt;}
.w2_c00490{width:93.222667pt;}
.w1_c00490{width:1030.666667pt;}
.w0_c00490{width:1030.800000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:371.066667pt;}
.x2_c00490{left:472.568197pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70d65feae7b11fd06161d95c.woff2')format("woff");}.ff1_c00491{font-family:ff1_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:ff2_c00491;src:url('chunks/assets/font_127ed72cde38fc7eb5b7d29a.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;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_c00491;src:url('chunks/assets/font_20b3345db19362bd0bc04fe7.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;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_c00491;src:url('chunks/assets/font_7939a0fb798dca002edf9e27.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.012793;font-style:normal;font-weight:normal;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_ef8f37b326ccc3684d568f9a.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_bf8deae95e0bf74e66720d0c.woff2')format("woff");}.ff6_c00491{font-family:ff6_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:ff7_c00491;src:url('chunks/assets/font_176770734a413f265f639ca8.woff2')format("woff");}.ff7_c00491{font-family:ff7_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:ff8_c00491;src:url('chunks/assets/font_518095f63594059383757ebc.woff2')format("woff");}.ff8_c00491{font-family:ff8_c00491;line-height:1.012793;font-style:normal;font-weight: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_c00491;src:url('chunks/assets/font_cad10fa16b7b75f9d666337e.woff2')format("woff");}.ff9_c00491{font-family:ff9_c00491;line-height:1.437000;font-style:normal;font-weight: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_c00491;src:url('chunks/assets/font_021add1ab1c96ef6f1c78311.woff2')format("woff");}.ffa_c00491{font-family:ffa_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:ffb_c00491;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ffb_c00491{font-family:ffb_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;}
.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);}
.m1_c00491{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.v1_c00491{vertical-align:22.800000px;}
.v2_c00491{vertical-align:81.000000px;}
.ls4_c00491{letter-spacing:-3.000000px;}
.ls5_c00491{letter-spacing:0.000000px;}
.ls3_c00491{letter-spacing:3.000000px;}
.ls1_c00491{letter-spacing:4.233000px;}
.ls2_c00491{letter-spacing:12.000000px;}
.ls0_c00491{letter-spacing:25.200000px;}
.ls6_c00491{letter-spacing:66.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00491{word-spacing:-82.629000px;}
.ws9_c00491{word-spacing:-19.629000px;}
.ws7_c00491{word-spacing:-16.500000px;}
.ws3_c00491{word-spacing:-14.250000px;}
.ws4_c00491{word-spacing:-13.014000px;}
.ws0_c00491{word-spacing:-11.364000px;}
.ws6_c00491{word-spacing:-8.988000px;}
.wsb_c00491{word-spacing:0.000000px;}
.ws5_c00491{word-spacing:1.125000px;}
.wsa_c00491{word-spacing:5.913000px;}
.ws2_c00491{word-spacing:30.327000px;}
.ws1_c00491{word-spacing:185.853000px;}
._3b_c00491{margin-left:-82.968000px;}
._3e_c00491{margin-left:-67.770000px;}
._0_c00491{margin-left:-65.412000px;}
._38_c00491{margin-left:-62.376000px;}
._26_c00491{margin-left:-53.298000px;}
._1a_c00491{margin-left:-46.686000px;}
._7_c00491{margin-left:-40.503000px;}
._21_c00491{margin-left:-38.640000px;}
._23_c00491{margin-left:-35.397000px;}
._8_c00491{margin-left:-33.258000px;}
._13_c00491{margin-left:-31.602000px;}
._5_c00491{margin-left:-26.151000px;}
._2e_c00491{margin-left:-24.642000px;}
._11_c00491{margin-left:-23.520000px;}
._18_c00491{margin-left:-21.252000px;}
._16_c00491{margin-left:-18.837000px;}
._1f_c00491{margin-left:-17.349000px;}
._30_c00491{margin-left:-14.697000px;}
._15_c00491{margin-left:-13.416000px;}
._32_c00491{margin-left:-11.913000px;}
._a_c00491{margin-left:-10.626000px;}
._27_c00491{margin-left:-9.291000px;}
._2_c00491{margin-left:-7.866000px;}
._4_c00491{margin-left:-6.417000px;}
._c_c00491{margin-left:-4.485000px;}
._3_c00491{margin-left:-3.318000px;}
._9_c00491{margin-left:-1.449000px;}
._d_c00491{width:1.836000px;}
._1e_c00491{width:3.231000px;}
._35_c00491{width:5.187000px;}
._1d_c00491{width:6.714000px;}
._1b_c00491{width:8.907000px;}
._1_c00491{width:10.695000px;}
._b_c00491{width:12.765000px;}
._39_c00491{width:13.938000px;}
._10_c00491{width:15.912000px;}
._2b_c00491{width:18.492000px;}
._33_c00491{width:22.845000px;}
._19_c00491{width:24.447000px;}
._20_c00491{width:26.316000px;}
._3a_c00491{width:29.715000px;}
._14_c00491{width:33.528000px;}
._e_c00491{width:44.424000px;}
._24_c00491{width:49.680000px;}
._2d_c00491{width:60.858000px;}
._17_c00491{width:71.169000px;}
._6_c00491{width:72.174000px;}
._12_c00491{width:75.324000px;}
._3c_c00491{width:82.938000px;}
._34_c00491{width:87.078000px;}
._22_c00491{width:91.701000px;}
._28_c00491{width:112.953000px;}
._3f_c00491{width:118.461000px;}
._f_c00491{width:133.815000px;}
._36_c00491{width:138.651000px;}
._37_c00491{width:162.219000px;}
._29_c00491{width:203.349000px;}
._31_c00491{width:229.701000px;}
._3d_c00491{width:251.160000px;}
._2a_c00491{width:254.994000px;}
._1c_c00491{width:284.544000px;}
._25_c00491{width:364.695000px;}
._2c_c00491{width:732.546000px;}
._2f_c00491{width:1136.223000px;}
.fc2_c00491{color:transparent;}
.fc1_c00491{color:rgb(128,128,128);}
.fc0_c00491{color:rgb(0,0,0);}
.fs3_c00491{font-size:24.000000px;}
.fs6_c00491{font-size:36.000000px;}
.fs1_c00491{font-size:42.000000px;}
.fs4_c00491{font-size:45.000000px;}
.fsa_c00491{font-size:48.000000px;}
.fs5_c00491{font-size:54.000000px;}
.fs7_c00491{font-size:66.000000px;}
.fs0_c00491{font-size:69.000000px;}
.fs9_c00491{font-size:81.000000px;}
.fs2_c00491{font-size:168.000000px;}
.fs8_c00491{font-size:207.000000px;}
.y0_c00491{bottom:0.000000px;}
.y19_c00491{bottom:3.105000px;}
.y18_c00491{bottom:7.228371px;}
.y17_c00491{bottom:21.615000px;}
.y16_c00491{bottom:111.165000px;}
.y15_c00491{bottom:149.865000px;}
.y14_c00491{bottom:175.815000px;}
.y13_c00491{bottom:204.915000px;}
.y12_c00491{bottom:240.015000px;}
.y11_c00491{bottom:297.015000px;}
.y10_c00491{bottom:307.215000px;}
.yf_c00491{bottom:357.465000px;}
.ye_c00491{bottom:413.115000px;}
.yd_c00491{bottom:426.315000px;}
.yc_c00491{bottom:457.365000px;}
.yb_c00491{bottom:493.515000px;}
.ya_c00491{bottom:502.515000px;}
.y7_c00491{bottom:568.665000px;}
.y6_c00491{bottom:607.515000px;}
.y5_c00491{bottom:625.365000px;}
.y4_c00491{bottom:645.315000px;}
.y9_c00491{bottom:686.565000px;}
.y3_c00491{bottom:758.715000px;}
.y2_c00491{bottom:805.965000px;}
.y1_c00491{bottom:829.365000px;}
.y8_c00491{bottom:841.065000px;}
.hc_c00491{height:13.200074px;}
.h9_c00491{height:31.011328px;}
.hd_c00491{height:43.804688px;}
.h8_c00491{height:44.165039px;}
.h3_c00491{height:44.814000px;}
.h7_c00491{height:68.370117px;}
.h6_c00491{height:69.539062px;}
.h2_c00491{height:87.361816px;}
.hb_c00491{height:102.555176px;}
.h5_c00491{height:150.539062px;}
.h4_c00491{height:179.256000px;}
.ha_c00491{height:216.936000px;}
.h0_c00491{height:852.675000px;}
.h1_c00491{height:852.750000px;}
.w2_c00491{width:104.875500px;}
.w1_c00491{width:1202.250000px;}
.w0_c00491{width:1202.550000px;}
.x0_c00491{left:0.000000px;}
.x5_c00491{left:7.200000px;}
.x10_c00491{left:9.450000px;}
.x4_c00491{left:10.500000px;}
.x7_c00491{left:16.500000px;}
.xb_c00491{left:22.950000px;}
.xf_c00491{left:24.600000px;}
.x6_c00491{left:32.700000px;}
.xe_c00491{left:39.150000px;}
.x2_c00491{left:46.200000px;}
.x1_c00491{left:60.450000px;}
.xd_c00491{left:96.600000px;}
.xc_c00491{left:106.800000px;}
.x11_c00491{left:118.050000px;}
.x3_c00491{left:202.200000px;}
.xa_c00491{left:240.600000px;}
.x12_c00491{left:415.500000px;}
.x9_c00491{left:468.150000px;}
.x13_c00491{left:553.089249px;}
.x8_c00491{left:827.250000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.v1_c00491{vertical-align:20.266667pt;}
.v2_c00491{vertical-align:72.000000pt;}
.ls4_c00491{letter-spacing:-2.666667pt;}
.ls5_c00491{letter-spacing:0.000000pt;}
.ls3_c00491{letter-spacing:2.666667pt;}
.ls1_c00491{letter-spacing:3.762667pt;}
.ls2_c00491{letter-spacing:10.666667pt;}
.ls0_c00491{letter-spacing:22.400000pt;}
.ls6_c00491{letter-spacing:58.666667pt;}
.ws8_c00491{word-spacing:-73.448000pt;}
.ws9_c00491{word-spacing:-17.448000pt;}
.ws7_c00491{word-spacing:-14.666667pt;}
.ws3_c00491{word-spacing:-12.666667pt;}
.ws4_c00491{word-spacing:-11.568000pt;}
.ws0_c00491{word-spacing:-10.101333pt;}
.ws6_c00491{word-spacing:-7.989333pt;}
.wsb_c00491{word-spacing:0.000000pt;}
.ws5_c00491{word-spacing:1.000000pt;}
.wsa_c00491{word-spacing:5.256000pt;}
.ws2_c00491{word-spacing:26.957333pt;}
.ws1_c00491{word-spacing:165.202667pt;}
._3b_c00491{margin-left:-73.749333pt;}
._3e_c00491{margin-left:-60.240000pt;}
._0_c00491{margin-left:-58.144000pt;}
._38_c00491{margin-left:-55.445333pt;}
._26_c00491{margin-left:-47.376000pt;}
._1a_c00491{margin-left:-41.498667pt;}
._7_c00491{margin-left:-36.002667pt;}
._21_c00491{margin-left:-34.346667pt;}
._23_c00491{margin-left:-31.464000pt;}
._8_c00491{margin-left:-29.562667pt;}
._13_c00491{margin-left:-28.090667pt;}
._5_c00491{margin-left:-23.245333pt;}
._2e_c00491{margin-left:-21.904000pt;}
._11_c00491{margin-left:-20.906667pt;}
._18_c00491{margin-left:-18.890667pt;}
._16_c00491{margin-left:-16.744000pt;}
._1f_c00491{margin-left:-15.421333pt;}
._30_c00491{margin-left:-13.064000pt;}
._15_c00491{margin-left:-11.925333pt;}
._32_c00491{margin-left:-10.589333pt;}
._a_c00491{margin-left:-9.445333pt;}
._27_c00491{margin-left:-8.258667pt;}
._2_c00491{margin-left:-6.992000pt;}
._4_c00491{margin-left:-5.704000pt;}
._c_c00491{margin-left:-3.986667pt;}
._3_c00491{margin-left:-2.949333pt;}
._9_c00491{margin-left:-1.288000pt;}
._d_c00491{width:1.632000pt;}
._1e_c00491{width:2.872000pt;}
._35_c00491{width:4.610667pt;}
._1d_c00491{width:5.968000pt;}
._1b_c00491{width:7.917333pt;}
._1_c00491{width:9.506667pt;}
._b_c00491{width:11.346667pt;}
._39_c00491{width:12.389333pt;}
._10_c00491{width:14.144000pt;}
._2b_c00491{width:16.437333pt;}
._33_c00491{width:20.306667pt;}
._19_c00491{width:21.730667pt;}
._20_c00491{width:23.392000pt;}
._3a_c00491{width:26.413333pt;}
._14_c00491{width:29.802667pt;}
._e_c00491{width:39.488000pt;}
._24_c00491{width:44.160000pt;}
._2d_c00491{width:54.096000pt;}
._17_c00491{width:63.261333pt;}
._6_c00491{width:64.154667pt;}
._12_c00491{width:66.954667pt;}
._3c_c00491{width:73.722667pt;}
._34_c00491{width:77.402667pt;}
._22_c00491{width:81.512000pt;}
._28_c00491{width:100.402667pt;}
._3f_c00491{width:105.298667pt;}
._f_c00491{width:118.946667pt;}
._36_c00491{width:123.245333pt;}
._37_c00491{width:144.194667pt;}
._29_c00491{width:180.754667pt;}
._31_c00491{width:204.178667pt;}
._3d_c00491{width:223.253333pt;}
._2a_c00491{width:226.661333pt;}
._1c_c00491{width:252.928000pt;}
._25_c00491{width:324.173333pt;}
._2c_c00491{width:651.152000pt;}
._2f_c00491{width:1009.976000pt;}
.fs3_c00491{font-size:21.333333pt;}
.fs6_c00491{font-size:32.000000pt;}
.fs1_c00491{font-size:37.333333pt;}
.fs4_c00491{font-size:40.000000pt;}
.fsa_c00491{font-size:42.666667pt;}
.fs5_c00491{font-size:48.000000pt;}
.fs7_c00491{font-size:58.666667pt;}
.fs0_c00491{font-size:61.333333pt;}
.fs9_c00491{font-size:72.000000pt;}
.fs2_c00491{font-size:149.333333pt;}
.fs8_c00491{font-size:184.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y19_c00491{bottom:2.760000pt;}
.y18_c00491{bottom:6.425219pt;}
.y17_c00491{bottom:19.213333pt;}
.y16_c00491{bottom:98.813333pt;}
.y15_c00491{bottom:133.213333pt;}
.y14_c00491{bottom:156.280000pt;}
.y13_c00491{bottom:182.146667pt;}
.y12_c00491{bottom:213.346667pt;}
.y11_c00491{bottom:264.013333pt;}
.y10_c00491{bottom:273.080000pt;}
.yf_c00491{bottom:317.746667pt;}
.ye_c00491{bottom:367.213333pt;}
.yd_c00491{bottom:378.946667pt;}
.yc_c00491{bottom:406.546667pt;}
.yb_c00491{bottom:438.680000pt;}
.ya_c00491{bottom:446.680000pt;}
.y7_c00491{bottom:505.480000pt;}
.y6_c00491{bottom:540.013333pt;}
.y5_c00491{bottom:555.880000pt;}
.y4_c00491{bottom:573.613333pt;}
.y9_c00491{bottom:610.280000pt;}
.y3_c00491{bottom:674.413333pt;}
.y2_c00491{bottom:716.413333pt;}
.y1_c00491{bottom:737.213333pt;}
.y8_c00491{bottom:747.613333pt;}
.hc_c00491{height:11.733399pt;}
.h9_c00491{height:27.565625pt;}
.hd_c00491{height:38.937500pt;}
.h8_c00491{height:39.257812pt;}
.h3_c00491{height:39.834667pt;}
.h7_c00491{height:60.773438pt;}
.h6_c00491{height:61.812500pt;}
.h2_c00491{height:77.654948pt;}
.hb_c00491{height:91.160156pt;}
.h5_c00491{height:133.812500pt;}
.h4_c00491{height:159.338667pt;}
.ha_c00491{height:192.832000pt;}
.h0_c00491{height:757.933333pt;}
.h1_c00491{height:758.000000pt;}
.w2_c00491{width:93.222667pt;}
.w1_c00491{width:1068.666667pt;}
.w0_c00491{width:1068.933333pt;}
.x0_c00491{left:0.000000pt;}
.x5_c00491{left:6.400000pt;}
.x10_c00491{left:8.400000pt;}
.x4_c00491{left:9.333333pt;}
.x7_c00491{left:14.666667pt;}
.xb_c00491{left:20.400000pt;}
.xf_c00491{left:21.866667pt;}
.x6_c00491{left:29.066667pt;}
.xe_c00491{left:34.800000pt;}
.x2_c00491{left:41.066667pt;}
.x1_c00491{left:53.733333pt;}
.xd_c00491{left:85.866667pt;}
.xc_c00491{left:94.933333pt;}
.x11_c00491{left:104.933333pt;}
.x3_c00491{left:179.733333pt;}
.xa_c00491{left:213.866667pt;}
.x12_c00491{left:369.333333pt;}
.x9_c00491{left:416.133333pt;}
.x13_c00491{left:491.634888pt;}
.x8_c00491{left:735.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_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_2fe4db45080bcc521b9f7156.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.568848;font-style:normal;font-weight:normal;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_b405b59e433f44db2bae7b90.woff2')format("woff");}.ff2_c00492{font-family:ff2_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:ff3_c00492;src:url('chunks/assets/font_c0b64883fda91c735602d324.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_c93dd384d09adacc0269b8be.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_ea45087d559be15b09f60851.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;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_c00492;src:url('chunks/assets/font_b980270dcc5673b29b152d56.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.568848;font-style:normal;font-weight:normal;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_6add831c2dca012501591ff0.woff2')format("woff");}.ff7_c00492{font-family:ff7_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:ff8_c00492;src:url('chunks/assets/font_7ed48f4d2006167d161dff40.woff2')format("woff");}.ff8_c00492{font-family:ff8_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:ff9_c00492;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff9_c00492{font-family:ff9_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);}
.v3_c00492{vertical-align:-1.200000px;}
.v0_c00492{vertical-align:0.000000px;}
.v2_c00492{vertical-align:1.800000px;}
.v1_c00492{vertical-align:39.600000px;}
.ls6_c00492{letter-spacing:-6.000000px;}
.ls4_c00492{letter-spacing:-3.000000px;}
.ls3_c00492{letter-spacing:0.000000px;}
.ls2_c00492{letter-spacing:3.000000px;}
.ls7_c00492{letter-spacing:6.000000px;}
.ls5_c00492{letter-spacing:12.000000px;}
.ls0_c00492{letter-spacing:102.171000px;}
.ls1_c00492{letter-spacing:291.882000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00492{word-spacing:-31.104000px;}
.wsb_c00492{word-spacing:-21.000000px;}
.wsc_c00492{word-spacing:-19.629000px;}
.ws2_c00492{word-spacing:-19.521000px;}
.ws0_c00492{word-spacing:-16.629000px;}
.ws3_c00492{word-spacing:-14.460000px;}
.ws8_c00492{word-spacing:-12.000000px;}
.wsd_c00492{word-spacing:-11.250000px;}
.ws4_c00492{word-spacing:-10.629000px;}
.wsa_c00492{word-spacing:-4.248000px;}
.ws6_c00492{word-spacing:-2.517000px;}
.ws9_c00492{word-spacing:-1.872000px;}
.wse_c00492{word-spacing:0.000000px;}
.ws7_c00492{word-spacing:16.752000px;}
.ws5_c00492{word-spacing:133.650000px;}
._f_c00492{margin-left:-64.725000px;}
._2c_c00492{margin-left:-59.250000px;}
._2e_c00492{margin-left:-47.127000px;}
._2b_c00492{margin-left:-29.556000px;}
._a_c00492{margin-left:-24.378000px;}
._12_c00492{margin-left:-21.942000px;}
._6_c00492{margin-left:-17.319000px;}
._3_c00492{margin-left:-16.215000px;}
._1_c00492{margin-left:-14.250000px;}
._2_c00492{margin-left:-12.903000px;}
._5_c00492{margin-left:-11.730000px;}
._2d_c00492{margin-left:-10.695000px;}
._9_c00492{margin-left:-9.000000px;}
._b_c00492{margin-left:-7.128000px;}
._1d_c00492{margin-left:-5.400000px;}
._0_c00492{margin-left:-4.242000px;}
._d_c00492{margin-left:-3.105000px;}
._e_c00492{margin-left:-1.035000px;}
._1f_c00492{width:1.434000px;}
._7_c00492{width:3.402000px;}
._27_c00492{width:4.566000px;}
._24_c00492{width:5.712000px;}
._8_c00492{width:7.128000px;}
._29_c00492{width:8.280000px;}
._4_c00492{width:9.789000px;}
._1a_c00492{width:11.109000px;}
._19_c00492{width:12.696000px;}
._18_c00492{width:14.145000px;}
._17_c00492{width:15.870000px;}
._1c_c00492{width:18.324000px;}
._23_c00492{width:19.584000px;}
._1e_c00492{width:22.488000px;}
._16_c00492{width:25.737000px;}
._1b_c00492{width:26.919000px;}
._26_c00492{width:28.104000px;}
._20_c00492{width:30.528000px;}
._14_c00492{width:33.534000px;}
._15_c00492{width:36.501000px;}
._13_c00492{width:40.986000px;}
._2a_c00492{width:44.712000px;}
._25_c00492{width:46.488000px;}
._22_c00492{width:50.985000px;}
._c_c00492{width:60.255000px;}
._2f_c00492{width:77.883000px;}
._10_c00492{width:106.443000px;}
._28_c00492{width:151.728000px;}
._11_c00492{width:161.253000px;}
._21_c00492{width:197.247000px;}
._30_c00492{width:2189.274000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(128,128,128);}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:24.000000px;}
.fs2_c00492{font-size:42.000000px;}
.fs7_c00492{font-size:45.000000px;}
.fs9_c00492{font-size:48.000000px;}
.fs5_c00492{font-size:51.000000px;}
.fs4_c00492{font-size:60.000000px;}
.fs0_c00492{font-size:69.000000px;}
.fs6_c00492{font-size:72.000000px;}
.fs3_c00492{font-size:81.000000px;}
.fs8_c00492{font-size:207.000000px;}
.y0_c00492{bottom:0.000000px;}
.y1f_c00492{bottom:0.300000px;}
.y21_c00492{bottom:3.105000px;}
.y20_c00492{bottom:7.228363px;}
.yd_c00492{bottom:146.850000px;}
.yc_c00492{bottom:195.300000px;}
.yb_c00492{bottom:223.350000px;}
.ya_c00492{bottom:239.250000px;}
.y1e_c00492{bottom:252.750000px;}
.y1d_c00492{bottom:256.950000px;}
.y1c_c00492{bottom:261.900000px;}
.y18_c00492{bottom:287.850000px;}
.y17_c00492{bottom:359.550000px;}
.y8_c00492{bottom:363.450000px;}
.y9_c00492{bottom:364.500000px;}
.y1b_c00492{bottom:365.850000px;}
.y16_c00492{bottom:382.350000px;}
.y7_c00492{bottom:384.450000px;}
.y15_c00492{bottom:402.750000px;}
.y6_c00492{bottom:405.900000px;}
.y1a_c00492{bottom:417.900000px;}
.y14_c00492{bottom:420.600000px;}
.y13_c00492{bottom:446.550000px;}
.y12_c00492{bottom:463.350000px;}
.y11_c00492{bottom:481.050000px;}
.y19_c00492{bottom:497.250000px;}
.y10_c00492{bottom:497.550000px;}
.yf_c00492{bottom:511.650000px;}
.ye_c00492{bottom:530.250000px;}
.y5_c00492{bottom:551.850000px;}
.y4_c00492{bottom:663.750000px;}
.y3_c00492{bottom:681.300000px;}
.y2_c00492{bottom:687.450000px;}
.y1_c00492{bottom:778.650000px;}
.hd_c00492{height:13.200074px;}
.h8_c00492{height:23.554688px;}
.h9_c00492{height:28.089844px;}
.ha_c00492{height:32.186719px;}
.he_c00492{height:43.804688px;}
.h6_c00492{height:64.571777px;}
.h3_c00492{height:69.539062px;}
.hb_c00492{height:72.562500px;}
.h7_c00492{height:80.758301px;}
.h2_c00492{height:87.361816px;}
.h4_c00492{height:94.803223px;}
.h5_c00492{height:115.566797px;}
.hc_c00492{height:215.736000px;}
.h1_c00492{height:847.500000px;}
.h0_c00492{height:847.800000px;}
.w2_c00492{width:104.875500px;}
.w1_c00492{width:611.250000px;}
.w0_c00492{width:611.550000px;}
.x0_c00492{left:0.000000px;}
.xd_c00492{left:2.400000px;}
.xb_c00492{left:35.100000px;}
.x9_c00492{left:37.500000px;}
.xc_c00492{left:39.450000px;}
.x6_c00492{left:65.850000px;}
.x4_c00492{left:69.150000px;}
.xa_c00492{left:88.650000px;}
.x5_c00492{left:144.900000px;}
.x8_c00492{left:152.100000px;}
.x7_c00492{left:168.300000px;}
.x1_c00492{left:204.150000px;}
.xe_c00492{left:225.150000px;}
.x10_c00492{left:228.450000px;}
.x15_c00492{left:240.600000px;}
.x19_c00492{left:246.450000px;}
.x13_c00492{left:247.950000px;}
.x11_c00492{left:252.000000px;}
.x1a_c00492{left:256.950000px;}
.xf_c00492{left:262.950000px;}
.x12_c00492{left:264.900000px;}
.x14_c00492{left:280.050000px;}
.x3_c00492{left:318.600000px;}
.x2_c00492{left:331.800000px;}
.x16_c00492{left:466.350000px;}
.x18_c00492{left:552.900000px;}
.x17_c00492{left:592.650000px;}
@media print{
.v3_c00492{vertical-align:-1.066667pt;}
.v0_c00492{vertical-align:0.000000pt;}
.v2_c00492{vertical-align:1.600000pt;}
.v1_c00492{vertical-align:35.200000pt;}
.ls6_c00492{letter-spacing:-5.333333pt;}
.ls4_c00492{letter-spacing:-2.666667pt;}
.ls3_c00492{letter-spacing:0.000000pt;}
.ls2_c00492{letter-spacing:2.666667pt;}
.ls7_c00492{letter-spacing:5.333333pt;}
.ls5_c00492{letter-spacing:10.666667pt;}
.ls0_c00492{letter-spacing:90.818667pt;}
.ls1_c00492{letter-spacing:259.450667pt;}
.ws1_c00492{word-spacing:-27.648000pt;}
.wsb_c00492{word-spacing:-18.666667pt;}
.wsc_c00492{word-spacing:-17.448000pt;}
.ws2_c00492{word-spacing:-17.352000pt;}
.ws0_c00492{word-spacing:-14.781333pt;}
.ws3_c00492{word-spacing:-12.853333pt;}
.ws8_c00492{word-spacing:-10.666667pt;}
.wsd_c00492{word-spacing:-10.000000pt;}
.ws4_c00492{word-spacing:-9.448000pt;}
.wsa_c00492{word-spacing:-3.776000pt;}
.ws6_c00492{word-spacing:-2.237333pt;}
.ws9_c00492{word-spacing:-1.664000pt;}
.wse_c00492{word-spacing:0.000000pt;}
.ws7_c00492{word-spacing:14.890667pt;}
.ws5_c00492{word-spacing:118.800000pt;}
._f_c00492{margin-left:-57.533333pt;}
._2c_c00492{margin-left:-52.666667pt;}
._2e_c00492{margin-left:-41.890667pt;}
._2b_c00492{margin-left:-26.272000pt;}
._a_c00492{margin-left:-21.669333pt;}
._12_c00492{margin-left:-19.504000pt;}
._6_c00492{margin-left:-15.394667pt;}
._3_c00492{margin-left:-14.413333pt;}
._1_c00492{margin-left:-12.666667pt;}
._2_c00492{margin-left:-11.469333pt;}
._5_c00492{margin-left:-10.426667pt;}
._2d_c00492{margin-left:-9.506667pt;}
._9_c00492{margin-left:-8.000000pt;}
._b_c00492{margin-left:-6.336000pt;}
._1d_c00492{margin-left:-4.800000pt;}
._0_c00492{margin-left:-3.770667pt;}
._d_c00492{margin-left:-2.760000pt;}
._e_c00492{margin-left:-0.920000pt;}
._1f_c00492{width:1.274667pt;}
._7_c00492{width:3.024000pt;}
._27_c00492{width:4.058667pt;}
._24_c00492{width:5.077333pt;}
._8_c00492{width:6.336000pt;}
._29_c00492{width:7.360000pt;}
._4_c00492{width:8.701333pt;}
._1a_c00492{width:9.874667pt;}
._19_c00492{width:11.285333pt;}
._18_c00492{width:12.573333pt;}
._17_c00492{width:14.106667pt;}
._1c_c00492{width:16.288000pt;}
._23_c00492{width:17.408000pt;}
._1e_c00492{width:19.989333pt;}
._16_c00492{width:22.877333pt;}
._1b_c00492{width:23.928000pt;}
._26_c00492{width:24.981333pt;}
._20_c00492{width:27.136000pt;}
._14_c00492{width:29.808000pt;}
._15_c00492{width:32.445333pt;}
._13_c00492{width:36.432000pt;}
._2a_c00492{width:39.744000pt;}
._25_c00492{width:41.322667pt;}
._22_c00492{width:45.320000pt;}
._c_c00492{width:53.560000pt;}
._2f_c00492{width:69.229333pt;}
._10_c00492{width:94.616000pt;}
._28_c00492{width:134.869333pt;}
._11_c00492{width:143.336000pt;}
._21_c00492{width:175.330667pt;}
._30_c00492{width:1946.021333pt;}
.fs1_c00492{font-size:21.333333pt;}
.fs2_c00492{font-size:37.333333pt;}
.fs7_c00492{font-size:40.000000pt;}
.fs9_c00492{font-size:42.666667pt;}
.fs5_c00492{font-size:45.333333pt;}
.fs4_c00492{font-size:53.333333pt;}
.fs0_c00492{font-size:61.333333pt;}
.fs6_c00492{font-size:64.000000pt;}
.fs3_c00492{font-size:72.000000pt;}
.fs8_c00492{font-size:184.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1f_c00492{bottom:0.266667pt;}
.y21_c00492{bottom:2.760000pt;}
.y20_c00492{bottom:6.425212pt;}
.yd_c00492{bottom:130.533333pt;}
.yc_c00492{bottom:173.600000pt;}
.yb_c00492{bottom:198.533333pt;}
.ya_c00492{bottom:212.666667pt;}
.y1e_c00492{bottom:224.666667pt;}
.y1d_c00492{bottom:228.400000pt;}
.y1c_c00492{bottom:232.800000pt;}
.y18_c00492{bottom:255.866667pt;}
.y17_c00492{bottom:319.600000pt;}
.y8_c00492{bottom:323.066667pt;}
.y9_c00492{bottom:324.000000pt;}
.y1b_c00492{bottom:325.200000pt;}
.y16_c00492{bottom:339.866667pt;}
.y7_c00492{bottom:341.733333pt;}
.y15_c00492{bottom:358.000000pt;}
.y6_c00492{bottom:360.800000pt;}
.y1a_c00492{bottom:371.466667pt;}
.y14_c00492{bottom:373.866667pt;}
.y13_c00492{bottom:396.933333pt;}
.y12_c00492{bottom:411.866667pt;}
.y11_c00492{bottom:427.600000pt;}
.y19_c00492{bottom:442.000000pt;}
.y10_c00492{bottom:442.266667pt;}
.yf_c00492{bottom:454.800000pt;}
.ye_c00492{bottom:471.333333pt;}
.y5_c00492{bottom:490.533333pt;}
.y4_c00492{bottom:590.000000pt;}
.y3_c00492{bottom:605.600000pt;}
.y2_c00492{bottom:611.066667pt;}
.y1_c00492{bottom:692.133333pt;}
.hd_c00492{height:11.733399pt;}
.h8_c00492{height:20.937500pt;}
.h9_c00492{height:24.968750pt;}
.ha_c00492{height:28.610417pt;}
.he_c00492{height:38.937500pt;}
.h6_c00492{height:57.397135pt;}
.h3_c00492{height:61.812500pt;}
.hb_c00492{height:64.500000pt;}
.h7_c00492{height:71.785156pt;}
.h2_c00492{height:77.654948pt;}
.h4_c00492{height:84.269531pt;}
.h5_c00492{height:102.726042pt;}
.hc_c00492{height:191.765333pt;}
.h1_c00492{height:753.333333pt;}
.h0_c00492{height:753.600000pt;}
.w2_c00492{width:93.222667pt;}
.w1_c00492{width:543.333333pt;}
.w0_c00492{width:543.600000pt;}
.x0_c00492{left:0.000000pt;}
.xd_c00492{left:2.133333pt;}
.xb_c00492{left:31.200000pt;}
.x9_c00492{left:33.333333pt;}
.xc_c00492{left:35.066667pt;}
.x6_c00492{left:58.533333pt;}
.x4_c00492{left:61.466667pt;}
.xa_c00492{left:78.800000pt;}
.x5_c00492{left:128.800000pt;}
.x8_c00492{left:135.200000pt;}
.x7_c00492{left:149.600000pt;}
.x1_c00492{left:181.466667pt;}
.xe_c00492{left:200.133333pt;}
.x10_c00492{left:203.066667pt;}
.x15_c00492{left:213.866667pt;}
.x19_c00492{left:219.066667pt;}
.x13_c00492{left:220.400000pt;}
.x11_c00492{left:224.000000pt;}
.x1a_c00492{left:228.400000pt;}
.xf_c00492{left:233.733333pt;}
.x12_c00492{left:235.466667pt;}
.x14_c00492{left:248.933333pt;}
.x3_c00492{left:283.200000pt;}
.x2_c00492{left:294.933333pt;}
.x16_c00492{left:414.533333pt;}
.x18_c00492{left:491.466667pt;}
.x17_c00492{left:526.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_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_45fc0fe42d46bb2dd466e8b6.woff2')format("woff");}.ff1_c00493{font-family:ff1_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:ff2_c00493;src:url('chunks/assets/font_9c0257a0cb0f3f29348d2598.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;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_c00493;src:url('chunks/assets/font_15da01ff29ed066990dde6d4.woff2')format("woff");}.ff3_c00493{font-family:ff3_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:ff4_c00493;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff4_c00493{font-family:ff4_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;}
.m1_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);}
.m0_c00493{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_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:-6.000000px;}
.ls1_c00493{letter-spacing:-3.000000px;}
.ls2_c00493{letter-spacing:0.000000px;}
.ls3_c00493{letter-spacing:3.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-32.361000px;}
.ws0_c00493{word-spacing:-8.460000px;}
.ws2_c00493{word-spacing:0.000000px;}
._4_c00493{margin-left:-9.660000px;}
._3_c00493{margin-left:-4.980000px;}
._2_c00493{margin-left:-2.880000px;}
._1_c00493{margin-left:-1.200000px;}
._b_c00493{width:2.346000px;}
._0_c00493{width:3.600000px;}
._c_c00493{width:6.831000px;}
._5_c00493{width:10.200000px;}
._9_c00493{width:19.680000px;}
._6_c00493{width:32.640000px;}
._8_c00493{width:102.990000px;}
._a_c00493{width:107.658000px;}
._d_c00493{width:128.067000px;}
._7_c00493{width:269.694000px;}
.fc2_c00493{color:transparent;}
.fc1_c00493{color:rgb(128,128,128);}
.fc0_c00493{color:rgb(0,0,0);}
.fs1_c00493{font-size:42.000000px;}
.fs3_c00493{font-size:48.000000px;}
.fs0_c00493{font-size:60.000000px;}
.fs2_c00493{font-size:69.000000px;}
.y0_c00493{bottom:0.000000px;}
.y4_c00493{bottom:3.105000px;}
.y3_c00493{bottom:7.228363px;}
.y2_c00493{bottom:12.600000px;}
.y1_c00493{bottom:28.800000px;}
.h4_c00493{height:13.200074px;}
.h5_c00493{height:43.804688px;}
.h2_c00493{height:75.966797px;}
.h3_c00493{height:87.361816px;}
.h0_c00493{height:831.600000px;}
.h1_c00493{height:831.750000px;}
.w2_c00493{width:104.875500px;}
.w1_c00493{width:623.250000px;}
.w0_c00493{width:623.400000px;}
.x0_c00493{left:0.000000px;}
.x4_c00493{left:263.514267px;}
.x1_c00493{left:357.450000px;}
.x3_c00493{left:371.700000px;}
.x2_c00493{left:380.400000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:-5.333333pt;}
.ls1_c00493{letter-spacing:-2.666667pt;}
.ls2_c00493{letter-spacing:0.000000pt;}
.ls3_c00493{letter-spacing:2.666667pt;}
.ws1_c00493{word-spacing:-28.765333pt;}
.ws0_c00493{word-spacing:-7.520000pt;}
.ws2_c00493{word-spacing:0.000000pt;}
._4_c00493{margin-left:-8.586667pt;}
._3_c00493{margin-left:-4.426667pt;}
._2_c00493{margin-left:-2.560000pt;}
._1_c00493{margin-left:-1.066667pt;}
._b_c00493{width:2.085333pt;}
._0_c00493{width:3.200000pt;}
._c_c00493{width:6.072000pt;}
._5_c00493{width:9.066667pt;}
._9_c00493{width:17.493333pt;}
._6_c00493{width:29.013333pt;}
._8_c00493{width:91.546667pt;}
._a_c00493{width:95.696000pt;}
._d_c00493{width:113.837333pt;}
._7_c00493{width:239.728000pt;}
.fs1_c00493{font-size:37.333333pt;}
.fs3_c00493{font-size:42.666667pt;}
.fs0_c00493{font-size:53.333333pt;}
.fs2_c00493{font-size:61.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y4_c00493{bottom:2.760000pt;}
.y3_c00493{bottom:6.425212pt;}
.y2_c00493{bottom:11.200000pt;}
.y1_c00493{bottom:25.600000pt;}
.h4_c00493{height:11.733399pt;}
.h5_c00493{height:38.937500pt;}
.h2_c00493{height:67.526042pt;}
.h3_c00493{height:77.654948pt;}
.h0_c00493{height:739.200000pt;}
.h1_c00493{height:739.333333pt;}
.w2_c00493{width:93.222667pt;}
.w1_c00493{width:554.000000pt;}
.w0_c00493{width:554.133333pt;}
.x0_c00493{left:0.000000pt;}
.x4_c00493{left:234.234904pt;}
.x1_c00493{left:317.733333pt;}
.x3_c00493{left:330.400000pt;}
.x2_c00493{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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00494{font-family:ff1_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;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
.fc0_c00494{color:rgb(128,128,128);}
.fs0_c00494{font-size:48.000000px;}
.y0_c00494{bottom:0.000000px;}
.y2_c00494{bottom:3.105000px;}
.y1_c00494{bottom:7.228371px;}
.h2_c00494{height:13.200074px;}
.h3_c00494{height:43.804688px;}
.h0_c00494{height:835.125000px;}
.h1_c00494{height:835.500000px;}
.w2_c00494{width:104.875500px;}
.w0_c00494{width:1152.600000px;}
.w1_c00494{width:1152.750000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:528.114258px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs0_c00494{font-size:42.666667pt;}
.y0_c00494{bottom:0.000000pt;}
.y2_c00494{bottom:2.760000pt;}
.y1_c00494{bottom:6.425219pt;}
.h2_c00494{height:11.733399pt;}
.h3_c00494{height:38.937500pt;}
.h0_c00494{height:742.333333pt;}
.h1_c00494{height:742.666667pt;}
.w2_c00494{width:93.222667pt;}
.w0_c00494{width:1024.533333pt;}
.w1_c00494{width:1024.666667pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:469.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_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_dea6ac9942f6344755b347bd.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.437000;font-style:normal;font-weight:normal;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_62d774a1f7d6b501d61b5c26.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_2fa680ca3130beb9a40c2180.woff2')format("woff");}.ff3_c00495{font-family:ff3_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:ff4_c00495;src:url('chunks/assets/font_47f1e635a7b38cbacbc88897.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.568848;font-style:normal;font-weight:normal;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_8928f98f87c3132e1cc3f21f.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;}
.ls4_c00495{letter-spacing:-6.000000px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:3.000000px;}
.ls1_c00495{letter-spacing:6.000000px;}
.ls3_c00495{letter-spacing:24.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:-40.629000px;}
.ws2_c00495{word-spacing:0.000000px;}
.ws0_c00495{word-spacing:10.980000px;}
._b_c00495{margin-left:-149.040000px;}
._12_c00495{margin-left:-62.376000px;}
._2_c00495{margin-left:-59.202000px;}
._3_c00495{margin-left:-45.126000px;}
._5_c00495{margin-left:-42.849000px;}
._15_c00495{margin-left:-35.328000px;}
._8_c00495{margin-left:-26.289000px;}
._9_c00495{margin-left:-21.114000px;}
._18_c00495{margin-left:-13.731000px;}
._7_c00495{margin-left:-11.799000px;}
._f_c00495{margin-left:-7.521000px;}
._0_c00495{margin-left:-6.210000px;}
._d_c00495{margin-left:-5.106000px;}
._1e_c00495{margin-left:-4.071000px;}
._10_c00495{width:1.656000px;}
._1c_c00495{width:3.933000px;}
._e_c00495{width:12.489000px;}
._a_c00495{width:13.869000px;}
._13_c00495{width:16.353000px;}
._1a_c00495{width:22.770000px;}
._21_c00495{width:28.152000px;}
._16_c00495{width:29.877000px;}
._20_c00495{width:35.121000px;}
._1_c00495{width:38.709000px;}
._c_c00495{width:43.629000px;}
._17_c00495{width:60.720000px;}
._11_c00495{width:63.240000px;}
._1f_c00495{width:64.311000px;}
._1d_c00495{width:74.082000px;}
._19_c00495{width:82.455000px;}
._4_c00495{width:86.940000px;}
._1b_c00495{width:110.439000px;}
._22_c00495{width:149.373000px;}
._6_c00495{width:155.871000px;}
._14_c00495{width:174.018000px;}
.fc2_c00495{color:transparent;}
.fc1_c00495{color:rgb(128,128,128);}
.fc0_c00495{color:rgb(0,0,0);}
.fs3_c00495{font-size:48.000000px;}
.fs1_c00495{font-size:60.000000px;}
.fs2_c00495{font-size:69.000000px;}
.fs0_c00495{font-size:207.000000px;}
.y0_c00495{bottom:0.000000px;}
.y6_c00495{bottom:3.105000px;}
.y5_c00495{bottom:7.228371px;}
.y4_c00495{bottom:608.865000px;}
.y3_c00495{bottom:626.715000px;}
.y2_c00495{bottom:690.915000px;}
.y1_c00495{bottom:711.465000px;}
.h4_c00495{height:13.200074px;}
.h5_c00495{height:43.804688px;}
.h3_c00495{height:87.361816px;}
.h2_c00495{height:216.936000px;}
.h1_c00495{height:843.000000px;}
.h0_c00495{height:843.225000px;}
.w1_c00495{width:104.875500px;}
.w0_c00495{width:1184.250000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:345.000000px;}
.x1_c00495{left:358.050000px;}
.x4_c00495{left:478.650000px;}
.x3_c00495{left:481.350000px;}
.x5_c00495{left:543.939240px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls4_c00495{letter-spacing:-5.333333pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:2.666667pt;}
.ls1_c00495{letter-spacing:5.333333pt;}
.ls3_c00495{letter-spacing:21.333333pt;}
.ws1_c00495{word-spacing:-36.114667pt;}
.ws2_c00495{word-spacing:0.000000pt;}
.ws0_c00495{word-spacing:9.760000pt;}
._b_c00495{margin-left:-132.480000pt;}
._12_c00495{margin-left:-55.445333pt;}
._2_c00495{margin-left:-52.624000pt;}
._3_c00495{margin-left:-40.112000pt;}
._5_c00495{margin-left:-38.088000pt;}
._15_c00495{margin-left:-31.402667pt;}
._8_c00495{margin-left:-23.368000pt;}
._9_c00495{margin-left:-18.768000pt;}
._18_c00495{margin-left:-12.205333pt;}
._7_c00495{margin-left:-10.488000pt;}
._f_c00495{margin-left:-6.685333pt;}
._0_c00495{margin-left:-5.520000pt;}
._d_c00495{margin-left:-4.538667pt;}
._1e_c00495{margin-left:-3.618667pt;}
._10_c00495{width:1.472000pt;}
._1c_c00495{width:3.496000pt;}
._e_c00495{width:11.101333pt;}
._a_c00495{width:12.328000pt;}
._13_c00495{width:14.536000pt;}
._1a_c00495{width:20.240000pt;}
._21_c00495{width:25.024000pt;}
._16_c00495{width:26.557333pt;}
._20_c00495{width:31.218667pt;}
._1_c00495{width:34.408000pt;}
._c_c00495{width:38.781333pt;}
._17_c00495{width:53.973333pt;}
._11_c00495{width:56.213333pt;}
._1f_c00495{width:57.165333pt;}
._1d_c00495{width:65.850667pt;}
._19_c00495{width:73.293333pt;}
._4_c00495{width:77.280000pt;}
._1b_c00495{width:98.168000pt;}
._22_c00495{width:132.776000pt;}
._6_c00495{width:138.552000pt;}
._14_c00495{width:154.682667pt;}
.fs3_c00495{font-size:42.666667pt;}
.fs1_c00495{font-size:53.333333pt;}
.fs2_c00495{font-size:61.333333pt;}
.fs0_c00495{font-size:184.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y6_c00495{bottom:2.760000pt;}
.y5_c00495{bottom:6.425219pt;}
.y4_c00495{bottom:541.213333pt;}
.y3_c00495{bottom:557.080000pt;}
.y2_c00495{bottom:614.146667pt;}
.y1_c00495{bottom:632.413333pt;}
.h4_c00495{height:11.733399pt;}
.h5_c00495{height:38.937500pt;}
.h3_c00495{height:77.654948pt;}
.h2_c00495{height:192.832000pt;}
.h1_c00495{height:749.333333pt;}
.h0_c00495{height:749.533333pt;}
.w1_c00495{width:93.222667pt;}
.w0_c00495{width:1052.666667pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:306.666667pt;}
.x1_c00495{left:318.266667pt;}
.x4_c00495{left:425.466667pt;}
.x3_c00495{left:427.866667pt;}
.x5_c00495{left:483.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_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_1c593e2d0f8fd54882c0ca07.woff2')format("woff");}.ff1_c00496{font-family:ff1_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:ff2_c00496;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff2_c00496{font-family:ff2_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;}
.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:-6.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-13.113000px;}
.ws1_c00496{word-spacing:0.000000px;}
._1_c00496{width:11.040000px;}
._0_c00496{width:34.224000px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(128,128,128);}
.fc0_c00496{color:rgb(0,0,0);}
.fs2_c00496{font-size:48.000000px;}
.fs0_c00496{font-size:60.000000px;}
.fs1_c00496{font-size:69.000000px;}
.y0_c00496{bottom:0.000000px;}
.y4_c00496{bottom:3.105000px;}
.y3_c00496{bottom:7.228371px;}
.y2_c00496{bottom:693.915000px;}
.y1_c00496{bottom:720.315000px;}
.h4_c00496{height:13.200074px;}
.h5_c00496{height:43.804688px;}
.h2_c00496{height:75.966797px;}
.h3_c00496{height:87.361816px;}
.h0_c00496{height:833.775000px;}
.h1_c00496{height:834.000000px;}
.w2_c00496{width:104.875500px;}
.w1_c00496{width:612.000000px;}
.w0_c00496{width:612.075000px;}
.x0_c00496{left:0.000000px;}
.x3_c00496{left:257.851730px;}
.x2_c00496{left:565.650000px;}
.x1_c00496{left:606.750000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:-5.333333pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:-11.656000pt;}
.ws1_c00496{word-spacing:0.000000pt;}
._1_c00496{width:9.813333pt;}
._0_c00496{width:30.421333pt;}
.fs2_c00496{font-size:42.666667pt;}
.fs0_c00496{font-size:53.333333pt;}
.fs1_c00496{font-size:61.333333pt;}
.y0_c00496{bottom:0.000000pt;}
.y4_c00496{bottom:2.760000pt;}
.y3_c00496{bottom:6.425219pt;}
.y2_c00496{bottom:616.813333pt;}
.y1_c00496{bottom:640.280000pt;}
.h4_c00496{height:11.733399pt;}
.h5_c00496{height:38.937500pt;}
.h2_c00496{height:67.526042pt;}
.h3_c00496{height:77.654948pt;}
.h0_c00496{height:741.133333pt;}
.h1_c00496{height:741.333333pt;}
.w2_c00496{width:93.222667pt;}
.w1_c00496{width:544.000000pt;}
.w0_c00496{width:544.066667pt;}
.x0_c00496{left:0.000000pt;}
.x3_c00496{left:229.201538pt;}
.x2_c00496{left:502.800000pt;}
.x1_c00496{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_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_6fb321a36817c57d2b5b28af.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_acc857029cbf23929d7fb996.woff2')format("woff");}.ff2_c00497{font-family:ff2_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:ff3_c00497;src:url('chunks/assets/font_d572ada8dce806ef093e08b7.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_bc36a57b1dc51224acfd10a3.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_c73b452ec09ab821f3ec9afe.woff2')format("woff");}.ff5_c00497{font-family:ff5_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:ff6_c00497;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff6_c00497{font-family:ff6_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);}
.m1_c00497{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);}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:51.600000px;}
.ls4_c00497{letter-spacing:-12.000000px;}
.ls5_c00497{letter-spacing:-6.000000px;}
.ls3_c00497{letter-spacing:-3.000000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:3.000000px;}
.ls2_c00497{letter-spacing:15.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;}
}
.ws2_c00497{word-spacing:-43.023000px;}
.ws1_c00497{word-spacing:-19.629000px;}
.ws0_c00497{word-spacing:-12.447000px;}
.ws3_c00497{word-spacing:-7.182000px;}
.ws5_c00497{word-spacing:0.000000px;}
.ws4_c00497{word-spacing:1025.364000px;}
._21_c00497{margin-left:-62.892000px;}
._d_c00497{margin-left:-58.236000px;}
._1e_c00497{margin-left:-38.502000px;}
._6_c00497{margin-left:-34.224000px;}
._27_c00497{margin-left:-32.292000px;}
._c_c00497{margin-left:-25.875000px;}
._a_c00497{margin-left:-24.219000px;}
._5_c00497{margin-left:-22.425000px;}
._23_c00497{margin-left:-17.664000px;}
._8_c00497{margin-left:-14.145000px;}
._24_c00497{margin-left:-13.110000px;}
._1f_c00497{margin-left:-11.730000px;}
._19_c00497{margin-left:-9.246000px;}
._1a_c00497{margin-left:-7.935000px;}
._2e_c00497{margin-left:-5.520000px;}
._18_c00497{margin-left:-4.485000px;}
._13_c00497{margin-left:-3.036000px;}
._26_c00497{margin-left:-1.173000px;}
._2d_c00497{width:1.311000px;}
._28_c00497{width:2.553000px;}
._12_c00497{width:4.140000px;}
._29_c00497{width:6.348000px;}
._0_c00497{width:7.935000px;}
._2c_c00497{width:9.039000px;}
._1_c00497{width:10.557000px;}
._3_c00497{width:12.903000px;}
._1d_c00497{width:13.938000px;}
._22_c00497{width:16.077000px;}
._2b_c00497{width:21.033000px;}
._7_c00497{width:24.495000px;}
._9_c00497{width:26.841000px;}
._2_c00497{width:31.326000px;}
._17_c00497{width:33.156000px;}
._14_c00497{width:34.353000px;}
._2a_c00497{width:38.709000px;}
._15_c00497{width:41.124000px;}
._16_c00497{width:43.401000px;}
._b_c00497{width:46.368000px;}
._10_c00497{width:48.093000px;}
._e_c00497{width:53.682000px;}
._11_c00497{width:56.856000px;}
._2f_c00497{width:59.409000px;}
._1c_c00497{width:72.657000px;}
._1b_c00497{width:78.765000px;}
._4_c00497{width:82.938000px;}
._f_c00497{width:91.701000px;}
._20_c00497{width:269.928000px;}
._30_c00497{width:362.457000px;}
._25_c00497{width:427.041000px;}
.fc2_c00497{color:transparent;}
.fc1_c00497{color:rgb(128,128,128);}
.fc0_c00497{color:rgb(0,0,0);}
.fs1_c00497{font-size:45.000000px;}
.fs3_c00497{font-size:48.000000px;}
.fs2_c00497{font-size:54.000000px;}
.fs0_c00497{font-size:69.000000px;}
.y0_c00497{bottom:0.000000px;}
.yd_c00497{bottom:3.105000px;}
.yc_c00497{bottom:7.228369px;}
.yb_c00497{bottom:637.470000px;}
.ya_c00497{bottom:650.370000px;}
.y9_c00497{bottom:670.320000px;}
.y4_c00497{bottom:709.320000px;}
.y3_c00497{bottom:714.870000px;}
.y2_c00497{bottom:735.420000px;}
.y1_c00497{bottom:761.070000px;}
.y8_c00497{bottom:773.520000px;}
.y7_c00497{bottom:793.020000px;}
.y6_c00497{bottom:800.820000px;}
.y5_c00497{bottom:810.270000px;}
.h7_c00497{height:13.200073px;}
.h8_c00497{height:43.804688px;}
.h4_c00497{height:67.686035px;}
.h3_c00497{height:69.539062px;}
.h5_c00497{height:80.758301px;}
.h2_c00497{height:87.361816px;}
.h6_c00497{height:138.961816px;}
.h0_c00497{height:836.700000px;}
.h1_c00497{height:837.000000px;}
.w2_c00497{width:104.875500px;}
.w1_c00497{width:608.250000px;}
.w0_c00497{width:608.325000px;}
.x0_c00497{left:0.000000px;}
.x2_c00497{left:108.900000px;}
.x7_c00497{left:122.850000px;}
.x1_c00497{left:169.800000px;}
.xa_c00497{left:255.976730px;}
.x8_c00497{left:336.600000px;}
.x9_c00497{left:364.800000px;}
.x3_c00497{left:379.650000px;}
.x6_c00497{left:497.100000px;}
.x4_c00497{left:532.950000px;}
.x5_c00497{left:537.300000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:45.866667pt;}
.ls4_c00497{letter-spacing:-10.666667pt;}
.ls5_c00497{letter-spacing:-5.333333pt;}
.ls3_c00497{letter-spacing:-2.666667pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:2.666667pt;}
.ls2_c00497{letter-spacing:13.333333pt;}
.ws2_c00497{word-spacing:-38.242667pt;}
.ws1_c00497{word-spacing:-17.448000pt;}
.ws0_c00497{word-spacing:-11.064000pt;}
.ws3_c00497{word-spacing:-6.384000pt;}
.ws5_c00497{word-spacing:0.000000pt;}
.ws4_c00497{word-spacing:911.434667pt;}
._21_c00497{margin-left:-55.904000pt;}
._d_c00497{margin-left:-51.765333pt;}
._1e_c00497{margin-left:-34.224000pt;}
._6_c00497{margin-left:-30.421333pt;}
._27_c00497{margin-left:-28.704000pt;}
._c_c00497{margin-left:-23.000000pt;}
._a_c00497{margin-left:-21.528000pt;}
._5_c00497{margin-left:-19.933333pt;}
._23_c00497{margin-left:-15.701333pt;}
._8_c00497{margin-left:-12.573333pt;}
._24_c00497{margin-left:-11.653333pt;}
._1f_c00497{margin-left:-10.426667pt;}
._19_c00497{margin-left:-8.218667pt;}
._1a_c00497{margin-left:-7.053333pt;}
._2e_c00497{margin-left:-4.906667pt;}
._18_c00497{margin-left:-3.986667pt;}
._13_c00497{margin-left:-2.698667pt;}
._26_c00497{margin-left:-1.042667pt;}
._2d_c00497{width:1.165333pt;}
._28_c00497{width:2.269333pt;}
._12_c00497{width:3.680000pt;}
._29_c00497{width:5.642667pt;}
._0_c00497{width:7.053333pt;}
._2c_c00497{width:8.034667pt;}
._1_c00497{width:9.384000pt;}
._3_c00497{width:11.469333pt;}
._1d_c00497{width:12.389333pt;}
._22_c00497{width:14.290667pt;}
._2b_c00497{width:18.696000pt;}
._7_c00497{width:21.773333pt;}
._9_c00497{width:23.858667pt;}
._2_c00497{width:27.845333pt;}
._17_c00497{width:29.472000pt;}
._14_c00497{width:30.536000pt;}
._2a_c00497{width:34.408000pt;}
._15_c00497{width:36.554667pt;}
._16_c00497{width:38.578667pt;}
._b_c00497{width:41.216000pt;}
._10_c00497{width:42.749333pt;}
._e_c00497{width:47.717333pt;}
._11_c00497{width:50.538667pt;}
._2f_c00497{width:52.808000pt;}
._1c_c00497{width:64.584000pt;}
._1b_c00497{width:70.013333pt;}
._4_c00497{width:73.722667pt;}
._f_c00497{width:81.512000pt;}
._20_c00497{width:239.936000pt;}
._30_c00497{width:322.184000pt;}
._25_c00497{width:379.592000pt;}
.fs1_c00497{font-size:40.000000pt;}
.fs3_c00497{font-size:42.666667pt;}
.fs2_c00497{font-size:48.000000pt;}
.fs0_c00497{font-size:61.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.yd_c00497{bottom:2.760000pt;}
.yc_c00497{bottom:6.425217pt;}
.yb_c00497{bottom:566.640000pt;}
.ya_c00497{bottom:578.106667pt;}
.y9_c00497{bottom:595.840000pt;}
.y4_c00497{bottom:630.506667pt;}
.y3_c00497{bottom:635.440000pt;}
.y2_c00497{bottom:653.706667pt;}
.y1_c00497{bottom:676.506667pt;}
.y8_c00497{bottom:687.573333pt;}
.y7_c00497{bottom:704.906667pt;}
.y6_c00497{bottom:711.840000pt;}
.y5_c00497{bottom:720.240000pt;}
.h7_c00497{height:11.733399pt;}
.h8_c00497{height:38.937500pt;}
.h4_c00497{height:60.165365pt;}
.h3_c00497{height:61.812500pt;}
.h5_c00497{height:71.785156pt;}
.h2_c00497{height:77.654948pt;}
.h6_c00497{height:123.521615pt;}
.h0_c00497{height:743.733333pt;}
.h1_c00497{height:744.000000pt;}
.w2_c00497{width:93.222667pt;}
.w1_c00497{width:540.666667pt;}
.w0_c00497{width:540.733333pt;}
.x0_c00497{left:0.000000pt;}
.x2_c00497{left:96.800000pt;}
.x7_c00497{left:109.200000pt;}
.x1_c00497{left:150.933333pt;}
.xa_c00497{left:227.534871pt;}
.x8_c00497{left:299.200000pt;}
.x9_c00497{left:324.266667pt;}
.x3_c00497{left:337.466667pt;}
.x6_c00497{left:441.866667pt;}
.x4_c00497{left:473.733333pt;}
.x5_c00497{left:477.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_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_aad39aa72110a49d0ed9848f.woff2')format("woff");}.ff1_c00498{font-family:ff1_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:ff2_c00498;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff2_c00498{font-family:ff2_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;}
.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:-10.764000px;}
.ws1_c00498{word-spacing:0.000000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(128,128,128);}
.fc0_c00498{color:rgb(0,0,0);}
.fs1_c00498{font-size:48.000000px;}
.fs0_c00498{font-size:69.000000px;}
.y0_c00498{bottom:0.000000px;}
.y3_c00498{bottom:3.105000px;}
.y2_c00498{bottom:7.228369px;}
.y1_c00498{bottom:689.820000px;}
.h3_c00498{height:13.200073px;}
.h4_c00498{height:43.804688px;}
.h2_c00498{height:80.758301px;}
.h1_c00498{height:839.250000px;}
.h0_c00498{height:839.400000px;}
.w2_c00498{width:104.875500px;}
.w0_c00498{width:582.375000px;}
.w1_c00498{width:582.750000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:2.400000px;}
.x2_c00498{left:243.001740px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:-9.568000pt;}
.ws1_c00498{word-spacing:0.000000pt;}
.fs1_c00498{font-size:42.666667pt;}
.fs0_c00498{font-size:61.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.y3_c00498{bottom:2.760000pt;}
.y2_c00498{bottom:6.425217pt;}
.y1_c00498{bottom:613.173333pt;}
.h3_c00498{height:11.733399pt;}
.h4_c00498{height:38.937500pt;}
.h2_c00498{height:71.785156pt;}
.h1_c00498{height:746.000000pt;}
.h0_c00498{height:746.133333pt;}
.w2_c00498{width:93.222667pt;}
.w0_c00498{width:517.666667pt;}
.w1_c00498{width:518.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:2.133333pt;}
.x2_c00498{left:216.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15072e5a09fcd3eeae7d2c9a.woff2')format("woff");}.ff1_c00499{font-family:ff1_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:ff2_c00499;src:url('chunks/assets/font_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff2_c00499{font-family:ff2_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;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc2_c00499{color:transparent;}
.fc1_c00499{color:rgb(128,128,128);}
.fc0_c00499{color:rgb(0,0,0);}
.fs1_c00499{font-size:48.000000px;}
.fs0_c00499{font-size:69.000000px;}
.y0_c00499{bottom:0.000000px;}
.y3_c00499{bottom:3.105000px;}
.y2_c00499{bottom:7.228371px;}
.y1_c00499{bottom:390.615000px;}
.h3_c00499{height:13.200074px;}
.h4_c00499{height:43.804688px;}
.h2_c00499{height:80.758301px;}
.h0_c00499{height:827.025000px;}
.h1_c00499{height:827.250000px;}
.w1_c00499{width:104.875500px;}
.w0_c00499{width:600.750000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:73.500000px;}
.x2_c00499{left:252.189240px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs1_c00499{font-size:42.666667pt;}
.fs0_c00499{font-size:61.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y3_c00499{bottom:2.760000pt;}
.y2_c00499{bottom:6.425219pt;}
.y1_c00499{bottom:347.213333pt;}
.h3_c00499{height:11.733399pt;}
.h4_c00499{height:38.937500pt;}
.h2_c00499{height:71.785156pt;}
.h0_c00499{height:735.133333pt;}
.h1_c00499{height:735.333333pt;}
.w1_c00499{width:93.222667pt;}
.w0_c00499{width:534.000000pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:65.333333pt;}
.x2_c00499{left:224.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_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_8928f98f87c3132e1cc3f21f.woff2')format("woff");}.ff1_c00001{font-family:ff1_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;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:rgb(128,128,128);}
.fs0_c00001{font-size:48.000000px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:3.105000px;}
.y4_c00001{bottom:7.228355px;}
.y1_c00001{bottom:7.228357px;}
.y3_c00001{bottom:7.228369px;}
.h2_c00001{height:13.200074px;}
.h3_c00001{height:43.804688px;}
.h5_c00001{height:844.500000px;}
.h4_c00001{height:844.800000px;}
.h0_c00001{height:848.100000px;}
.h1_c00001{height:848.250000px;}
.h6_c00001{height:910.425000px;}
.h7_c00001{height:910.500000px;}
.w2_c00001{width:104.875500px;}
.w5_c00001{width:177.375000px;}
.w6_c00001{width:177.750000px;}
.w0_c00001{width:615.600000px;}
.w1_c00001{width:615.750000px;}
.w3_c00001{width:616.425000px;}
.w4_c00001{width:616.500000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:40.501762px;}
.x1_c00001{left:259.614258px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:42.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:2.760000pt;}
.y4_c00001{bottom:6.425204pt;}
.y1_c00001{bottom:6.425206pt;}
.y3_c00001{bottom:6.425217pt;}
.h2_c00001{height:11.733399pt;}
.h3_c00001{height:38.937500pt;}
.h5_c00001{height:750.666667pt;}
.h4_c00001{height:750.933333pt;}
.h0_c00001{height:753.866667pt;}
.h1_c00001{height:754.000000pt;}
.h6_c00001{height:809.266667pt;}
.h7_c00001{height:809.333333pt;}
.w2_c00001{width:93.222667pt;}
.w5_c00001{width:157.666667pt;}
.w6_c00001{width:158.000000pt;}
.w0_c00001{width:547.200000pt;}
.w1_c00001{width:547.333333pt;}
.w3_c00001{width:547.933333pt;}
.w4_c00001{width:548.000000pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:36.001567pt;}
.x1_c00001{left:230.768229pt;}
}




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